Repository: afader/oqa
Branch: master
Commit: c59161c7bd0f
Files: 1065
Total size: 249.1 MB
Directory structure:
gitextract_8frwjrok/
├── README.md
├── oqa-core/
│ ├── README.md
│ ├── build.sbt
│ ├── models/
│ │ └── full.txt
│ ├── questions.txt
│ └── src/
│ └── main/
│ ├── resources/
│ │ ├── application.conf
│ │ ├── edu/
│ │ │ └── knowitall/
│ │ │ ├── execution/
│ │ │ │ ├── stoplist.txt
│ │ │ │ └── stopregex.txt
│ │ │ ├── paraphrasing/
│ │ │ │ ├── rules/
│ │ │ │ │ └── rules.txt
│ │ │ │ └── template/
│ │ │ │ └── templatesStops.txt
│ │ │ ├── parsing/
│ │ │ │ └── cg/
│ │ │ │ ├── argFilters.txt
│ │ │ │ ├── lexicon.txt
│ │ │ │ ├── macros.txt
│ │ │ │ └── relFilters.txt
│ │ │ └── search/
│ │ │ └── qa/
│ │ │ ├── isa.txt
│ │ │ └── tupleFeatures.txt
│ │ ├── log4j.properties
│ │ └── logback.xml
│ └── scala/
│ └── edu/
│ └── knowitall/
│ ├── eval/
│ │ ├── Oracle.scala
│ │ ├── OutputRecord.scala
│ │ ├── SystemOutput.scala
│ │ └── qa/
│ │ ├── QAOutputRecord.scala
│ │ ├── QASystemOutput.scala
│ │ └── QASystemRunner.scala
│ ├── execution/
│ │ ├── AnswerFilter.scala
│ │ ├── ConjunctiveQuery.scala
│ │ ├── JoinPlanner.scala
│ │ ├── QueryExecutor.scala
│ │ ├── RelationalAlgebra.scala
│ │ └── StopwordExecutor.scala
│ ├── learning/
│ │ ├── CorrectnessModel.scala
│ │ ├── FeatureFunction.scala
│ │ ├── HiddenVariableModel.scala
│ │ ├── InteractiveOracle.scala
│ │ ├── LabeledDataOracle.scala
│ │ ├── MemoryInteractiveOracle.scala
│ │ ├── Perceptron.scala
│ │ ├── QATrainer.scala
│ │ ├── QueryTupleSimilarity.scala
│ │ └── SparseVector.scala
│ ├── lm/
│ │ └── LanguageModel.scala
│ ├── model/
│ │ ├── Derivation.scala
│ │ └── QaModel.scala
│ ├── paraphrasing/
│ │ ├── Paraphrase.scala
│ │ ├── ParaphraseDerivation.scala
│ │ ├── Paraphraser.scala
│ │ ├── rules/
│ │ │ ├── ParaphraseRule.scala
│ │ │ └── ParaphraseRuleSet.scala
│ │ └── template/
│ │ ├── LmParaphraseScorer.scala
│ │ ├── ParaphraseScorer.scala
│ │ ├── PmiLmParaphraseScorer.scala
│ │ ├── PmiParaphraseScorer.scala
│ │ ├── Template.scala
│ │ ├── TemplateIndexer.scala
│ │ ├── TemplateParaphraseGenerator.scala
│ │ └── TemplateParaphraser.scala
│ ├── parsing/
│ │ └── cg/
│ │ ├── CKY.scala
│ │ ├── Categories.scala
│ │ ├── CategoryPattern.scala
│ │ ├── CgParser.scala
│ │ ├── Combinators.scala
│ │ ├── LexicalRule.scala
│ │ ├── LexiconPreprocessor.scala
│ │ ├── ParserFieldFilter.scala
│ │ ├── PatternExtractor.scala
│ │ └── SentencePattern.scala
│ ├── relsyn/
│ │ ├── IsaRelSynClient.scala
│ │ ├── ListRelSynClient.scala
│ │ ├── RelSynClient.scala
│ │ ├── RelSynRule.scala
│ │ └── SolrRelSynClient.scala
│ ├── search/
│ │ ├── Beam.scala
│ │ ├── BeamSearch.scala
│ │ ├── BestFirstSearch.scala
│ │ ├── SearchAlgorithm.scala
│ │ ├── SearchProblem.scala
│ │ ├── Transition.scala
│ │ └── qa/
│ │ ├── AbstractArgTransition.scala
│ │ ├── AbstractedArgState.scala
│ │ ├── AnswerState.scala
│ │ ├── CgParseTransition.scala
│ │ ├── DropQueryStopsTransition.scala
│ │ ├── ExecutionTransition.scala
│ │ ├── ParaphraseRuleTransition.scala
│ │ ├── ProjectionTransition.scala
│ │ ├── QaAction.scala
│ │ ├── QaBeamSearch.scala
│ │ ├── QaCostModel.scala
│ │ ├── QaFeatures.scala
│ │ ├── QaLayeredSearch.scala
│ │ ├── QaSearchProblem.scala
│ │ ├── QaState.scala
│ │ ├── QaStateComparator.scala
│ │ ├── QaStep.scala
│ │ ├── QaTransitionModel.scala
│ │ ├── QueryState.scala
│ │ ├── QuestionState.scala
│ │ ├── RelSynTransition.scala
│ │ ├── TemplateTransition.scala
│ │ ├── TupleFeatureTemplate.scala
│ │ └── TupleState.scala
│ ├── triplestore/
│ │ ├── IsaClient.scala
│ │ └── TriplestoreClient.scala
│ └── util/
│ ├── AlignedWordProcessor.scala
│ ├── Counter.scala
│ ├── DummyChunker.scala
│ ├── HadoopUtils.scala
│ ├── MathUtils.scala
│ ├── NlpTools.scala
│ ├── NlpUtils.scala
│ ├── PPDBParser.scala
│ ├── ResourceUtils.scala
│ ├── StringUtils.scala
│ ├── TimingUtils.scala
│ ├── TuplePrinter.scala
│ └── WikiAnswersSampler.scala
├── oqa-data/
│ ├── README.md
│ ├── predictions/
│ │ ├── README.md
│ │ ├── oqa-trec.txt
│ │ ├── oqa-webquestions.txt
│ │ ├── oqa-wikianswers.txt
│ │ ├── paralex-trec.txt
│ │ ├── paralex-webquestions.txt
│ │ ├── paralex-wikianswers.txt
│ │ ├── sempre-trec.txt
│ │ ├── sempre-webquestions.txt
│ │ └── sempre-wikianswers.txt
│ └── src/
│ └── main/
│ └── scripts/
│ └── download-oqa-data.sh
├── oqa-lm/
│ ├── README.md
│ └── src/
│ └── main/
│ └── scripts/
│ ├── build-lm.sh
│ ├── install-kenlm.sh
│ ├── server.py
│ ├── start.sh
│ └── stop.sh
└── oqa-solr/
├── README.md
├── paraphrase/
│ ├── README.txt
│ ├── cloud-scripts/
│ │ ├── zkcli.bat
│ │ └── zkcli.sh
│ ├── contexts/
│ │ └── solr-jetty-context.xml
│ ├── etc/
│ │ ├── create-solrtest.keystore.sh
│ │ ├── jetty.xml
│ │ ├── logging.properties
│ │ ├── solrtest.keystore
│ │ └── webdefault.xml
│ ├── example-DIH/
│ │ ├── README.txt
│ │ ├── hsqldb/
│ │ │ ├── ex.backup
│ │ │ ├── ex.data
│ │ │ ├── ex.log
│ │ │ ├── ex.properties
│ │ │ └── ex.script
│ │ └── solr/
│ │ ├── db/
│ │ │ ├── conf/
│ │ │ │ ├── admin-extra.html
│ │ │ │ ├── admin-extra.menu-bottom.html
│ │ │ │ ├── admin-extra.menu-top.html
│ │ │ │ ├── db-data-config.xml
│ │ │ │ ├── elevate.xml
│ │ │ │ ├── protwords.txt
│ │ │ │ ├── schema.xml
│ │ │ │ ├── scripts.conf
│ │ │ │ ├── solrconfig.xml
│ │ │ │ ├── stopwords.txt
│ │ │ │ ├── synonyms.txt
│ │ │ │ └── xslt/
│ │ │ │ ├── example.xsl
│ │ │ │ ├── example_atom.xsl
│ │ │ │ ├── example_rss.xsl
│ │ │ │ └── luke.xsl
│ │ │ └── lib/
│ │ │ ├── derby-10.9.1.0.jar
│ │ │ └── hsqldb-1.8.0.10.jar
│ │ ├── mail/
│ │ │ └── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── data-config.xml
│ │ │ ├── protwords.txt
│ │ │ ├── schema.xml
│ │ │ ├── solrconfig.xml
│ │ │ ├── stopwords.txt
│ │ │ └── synonyms.txt
│ │ ├── rss/
│ │ │ └── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── elevate.xml
│ │ │ ├── protwords.txt
│ │ │ ├── rss-data-config.xml
│ │ │ ├── schema.xml
│ │ │ ├── scripts.conf
│ │ │ ├── solrconfig.xml
│ │ │ ├── stopwords.txt
│ │ │ └── synonyms.txt
│ │ ├── solr/
│ │ │ └── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── elevate.xml
│ │ │ ├── protwords.txt
│ │ │ ├── schema.xml
│ │ │ ├── scripts.conf
│ │ │ ├── solr-data-config.xml
│ │ │ ├── solrconfig.xml
│ │ │ ├── stopwords.txt
│ │ │ └── synonyms.txt
│ │ ├── solr.xml
│ │ └── tika/
│ │ └── conf/
│ │ ├── admin-extra.html
│ │ ├── admin-extra.menu-bottom.html
│ │ ├── admin-extra.menu-top.html
│ │ ├── schema.xml
│ │ ├── solrconfig.xml
│ │ └── tika-data-config.xml
│ ├── exampledocs/
│ │ ├── books.csv
│ │ ├── books.json
│ │ ├── gb18030-example.xml
│ │ ├── hd.xml
│ │ ├── ipod_other.xml
│ │ ├── ipod_video.xml
│ │ ├── manufacturers.xml
│ │ ├── mem.xml
│ │ ├── money.xml
│ │ ├── monitor.xml
│ │ ├── monitor2.xml
│ │ ├── mp500.xml
│ │ ├── post.jar
│ │ ├── post.sh
│ │ ├── sd500.xml
│ │ ├── solr.xml
│ │ ├── test_utf8.sh
│ │ ├── utf8-example.xml
│ │ └── vidcard.xml
│ ├── lib/
│ │ ├── ext/
│ │ │ ├── jcl-over-slf4j-1.6.6.jar
│ │ │ ├── jul-to-slf4j-1.6.6.jar
│ │ │ ├── log4j-1.2.16.jar
│ │ │ ├── slf4j-api-1.6.6.jar
│ │ │ └── slf4j-log4j12-1.6.6.jar
│ │ ├── jetty-continuation-8.1.8.v20121106.jar
│ │ ├── jetty-deploy-8.1.8.v20121106.jar
│ │ ├── jetty-http-8.1.8.v20121106.jar
│ │ ├── jetty-io-8.1.8.v20121106.jar
│ │ ├── jetty-jmx-8.1.8.v20121106.jar
│ │ ├── jetty-security-8.1.8.v20121106.jar
│ │ ├── jetty-server-8.1.8.v20121106.jar
│ │ ├── jetty-servlet-8.1.8.v20121106.jar
│ │ ├── jetty-util-8.1.8.v20121106.jar
│ │ ├── jetty-webapp-8.1.8.v20121106.jar
│ │ ├── jetty-xml-8.1.8.v20121106.jar
│ │ └── servlet-api-3.0.jar
│ ├── multicore/
│ │ ├── README.txt
│ │ ├── core0/
│ │ │ └── conf/
│ │ │ ├── schema.xml
│ │ │ └── solrconfig.xml
│ │ ├── core1/
│ │ │ └── conf/
│ │ │ ├── schema.xml
│ │ │ └── solrconfig.xml
│ │ ├── exampledocs/
│ │ │ ├── ipod_other.xml
│ │ │ └── ipod_video.xml
│ │ ├── solr.xml
│ │ └── zoo.cfg
│ ├── resources/
│ │ └── log4j.properties
│ ├── solr/
│ │ ├── README.txt
│ │ ├── paraphrase/
│ │ │ ├── README.txt
│ │ │ ├── conf/
│ │ │ │ ├── admin-extra.html
│ │ │ │ ├── admin-extra.menu-bottom.html
│ │ │ │ ├── admin-extra.menu-top.html
│ │ │ │ ├── currency.xml
│ │ │ │ ├── elevate.xml
│ │ │ │ ├── lang/
│ │ │ │ │ ├── contractions_ca.txt
│ │ │ │ │ ├── contractions_fr.txt
│ │ │ │ │ ├── contractions_ga.txt
│ │ │ │ │ ├── contractions_it.txt
│ │ │ │ │ ├── hyphenations_ga.txt
│ │ │ │ │ ├── stemdict_nl.txt
│ │ │ │ │ ├── stoptags_ja.txt
│ │ │ │ │ ├── stopwords_ar.txt
│ │ │ │ │ ├── stopwords_bg.txt
│ │ │ │ │ ├── stopwords_ca.txt
│ │ │ │ │ ├── stopwords_cz.txt
│ │ │ │ │ ├── stopwords_da.txt
│ │ │ │ │ ├── stopwords_de.txt
│ │ │ │ │ ├── stopwords_el.txt
│ │ │ │ │ ├── stopwords_en.txt
│ │ │ │ │ ├── stopwords_es.txt
│ │ │ │ │ ├── stopwords_eu.txt
│ │ │ │ │ ├── stopwords_fa.txt
│ │ │ │ │ ├── stopwords_fi.txt
│ │ │ │ │ ├── stopwords_fr.txt
│ │ │ │ │ ├── stopwords_ga.txt
│ │ │ │ │ ├── stopwords_gl.txt
│ │ │ │ │ ├── stopwords_hi.txt
│ │ │ │ │ ├── stopwords_hu.txt
│ │ │ │ │ ├── stopwords_hy.txt
│ │ │ │ │ ├── stopwords_id.txt
│ │ │ │ │ ├── stopwords_it.txt
│ │ │ │ │ ├── stopwords_ja.txt
│ │ │ │ │ ├── stopwords_lv.txt
│ │ │ │ │ ├── stopwords_nl.txt
│ │ │ │ │ ├── stopwords_no.txt
│ │ │ │ │ ├── stopwords_pt.txt
│ │ │ │ │ ├── stopwords_ro.txt
│ │ │ │ │ ├── stopwords_ru.txt
│ │ │ │ │ ├── stopwords_sv.txt
│ │ │ │ │ ├── stopwords_th.txt
│ │ │ │ │ ├── stopwords_tr.txt
│ │ │ │ │ └── userdict_ja.txt
│ │ │ │ ├── mapping-FoldToASCII.txt
│ │ │ │ ├── mapping-ISOLatin1Accent.txt
│ │ │ │ ├── protwords.txt
│ │ │ │ ├── schema.xml
│ │ │ │ ├── scripts.conf
│ │ │ │ ├── solrconfig.xml
│ │ │ │ ├── spellings.txt
│ │ │ │ ├── stopwords.txt
│ │ │ │ ├── synonyms.txt
│ │ │ │ ├── update-script.js
│ │ │ │ ├── velocity/
│ │ │ │ │ ├── VM_global_library.vm
│ │ │ │ │ ├── browse.vm
│ │ │ │ │ ├── cluster.vm
│ │ │ │ │ ├── clusterResults.vm
│ │ │ │ │ ├── debug.vm
│ │ │ │ │ ├── did_you_mean.vm
│ │ │ │ │ ├── facet_fields.vm
│ │ │ │ │ ├── facet_pivot.vm
│ │ │ │ │ ├── facet_queries.vm
│ │ │ │ │ ├── facet_ranges.vm
│ │ │ │ │ ├── facets.vm
│ │ │ │ │ ├── footer.vm
│ │ │ │ │ ├── head.vm
│ │ │ │ │ ├── header.vm
│ │ │ │ │ ├── hit.vm
│ │ │ │ │ ├── hitGrouped.vm
│ │ │ │ │ ├── join-doc.vm
│ │ │ │ │ ├── jquery.autocomplete.css
│ │ │ │ │ ├── jquery.autocomplete.js
│ │ │ │ │ ├── layout.vm
│ │ │ │ │ ├── main.css
│ │ │ │ │ ├── product-doc.vm
│ │ │ │ │ ├── query.vm
│ │ │ │ │ ├── queryGroup.vm
│ │ │ │ │ ├── querySpatial.vm
│ │ │ │ │ ├── richtext-doc.vm
│ │ │ │ │ ├── suggest.vm
│ │ │ │ │ └── tabs.vm
│ │ │ │ └── xslt/
│ │ │ │ ├── example.xsl
│ │ │ │ ├── example_atom.xsl
│ │ │ │ ├── example_rss.xsl
│ │ │ │ ├── luke.xsl
│ │ │ │ └── updateXml.xsl
│ │ │ └── lib/
│ │ │ └── triplestore-lemmatizer-assembly-0.1.jar
│ │ ├── solr.xml
│ │ └── zoo.cfg
│ ├── solr-webapp/
│ │ └── webapp/
│ │ ├── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── MANIFEST.MF
│ │ │ └── NOTICE.txt
│ │ ├── WEB-INF/
│ │ │ ├── lib/
│ │ │ │ ├── commons-cli-1.2.jar
│ │ │ │ ├── commons-codec-1.7.jar
│ │ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ │ ├── commons-io-2.1.jar
│ │ │ │ ├── commons-lang-2.6.jar
│ │ │ │ ├── guava-13.0.1.jar
│ │ │ │ ├── httpclient-4.2.3.jar
│ │ │ │ ├── httpcore-4.2.2.jar
│ │ │ │ ├── httpmime-4.2.3.jar
│ │ │ │ ├── lucene-analyzers-common-4.3.0.jar
│ │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar
│ │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar
│ │ │ │ ├── lucene-codecs-4.3.0.jar
│ │ │ │ ├── lucene-core-4.3.0.jar
│ │ │ │ ├── lucene-grouping-4.3.0.jar
│ │ │ │ ├── lucene-highlighter-4.3.0.jar
│ │ │ │ ├── lucene-memory-4.3.0.jar
│ │ │ │ ├── lucene-misc-4.3.0.jar
│ │ │ │ ├── lucene-queries-4.3.0.jar
│ │ │ │ ├── lucene-queryparser-4.3.0.jar
│ │ │ │ ├── lucene-spatial-4.3.0.jar
│ │ │ │ ├── lucene-suggest-4.3.0.jar
│ │ │ │ ├── noggit-0.5.jar
│ │ │ │ ├── org.restlet-2.1.1.jar
│ │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar
│ │ │ │ ├── solr-core-4.3.0.jar
│ │ │ │ ├── solr-solrj-4.3.0.jar
│ │ │ │ ├── spatial4j-0.3.jar
│ │ │ │ ├── wstx-asl-3.2.7.jar
│ │ │ │ └── zookeeper-3.4.5.jar
│ │ │ ├── web.xml
│ │ │ └── weblogic.xml
│ │ ├── admin.html
│ │ ├── css/
│ │ │ ├── chosen.css
│ │ │ └── styles/
│ │ │ ├── analysis.css
│ │ │ ├── cloud.css
│ │ │ ├── common.css
│ │ │ ├── cores.css
│ │ │ ├── dashboard.css
│ │ │ ├── dataimport.css
│ │ │ ├── index.css
│ │ │ ├── java-properties.css
│ │ │ ├── logging.css
│ │ │ ├── menu.css
│ │ │ ├── plugins.css
│ │ │ ├── query.css
│ │ │ ├── replication.css
│ │ │ ├── schema-browser.css
│ │ │ └── threads.css
│ │ ├── img/
│ │ │ ├── ZeroClipboard.swf
│ │ │ └── filetypes/
│ │ │ └── README
│ │ ├── js/
│ │ │ ├── lib/
│ │ │ │ ├── ZeroClipboard.js
│ │ │ │ ├── chosen.js
│ │ │ │ ├── console.js
│ │ │ │ ├── d3.js
│ │ │ │ ├── highlight.js
│ │ │ │ ├── jquery.autogrow.js
│ │ │ │ ├── jquery.blockUI.js
│ │ │ │ ├── jquery.cookie.js
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jquery.jstree.js
│ │ │ │ ├── jquery.sammy.js
│ │ │ │ ├── jquery.timeago.js
│ │ │ │ ├── linker.js
│ │ │ │ └── order.js
│ │ │ ├── main.js
│ │ │ ├── require.js
│ │ │ └── scripts/
│ │ │ ├── analysis.js
│ │ │ ├── app.js
│ │ │ ├── cloud.js
│ │ │ ├── cores.js
│ │ │ ├── dashboard.js
│ │ │ ├── dataimport.js
│ │ │ ├── file.js
│ │ │ ├── index.js
│ │ │ ├── java-properties.js
│ │ │ ├── logging.js
│ │ │ ├── ping.js
│ │ │ ├── plugins.js
│ │ │ ├── query.js
│ │ │ ├── replication.js
│ │ │ ├── schema-browser.js
│ │ │ └── threads.js
│ │ └── tpl/
│ │ ├── analysis.html
│ │ ├── cloud.html
│ │ ├── cores.html
│ │ ├── dashboard.html
│ │ ├── dataimport.html
│ │ ├── index.html
│ │ ├── logging.html
│ │ ├── plugins.html
│ │ ├── query.html
│ │ ├── replication.html
│ │ ├── schema-browser.html
│ │ └── threads.html
│ ├── start.jar
│ └── webapps/
│ └── solr.war
├── relsyn/
│ ├── README.txt
│ ├── cloud-scripts/
│ │ ├── zkcli.bat
│ │ └── zkcli.sh
│ ├── contexts/
│ │ └── solr-jetty-context.xml
│ ├── etc/
│ │ ├── create-solrtest.keystore.sh
│ │ ├── jetty.xml
│ │ ├── logging.properties
│ │ ├── solrtest.keystore
│ │ └── webdefault.xml
│ ├── example-DIH/
│ │ ├── README.txt
│ │ ├── hsqldb/
│ │ │ ├── ex.backup
│ │ │ ├── ex.data
│ │ │ ├── ex.log
│ │ │ ├── ex.properties
│ │ │ └── ex.script
│ │ └── solr/
│ │ ├── db/
│ │ │ ├── conf/
│ │ │ │ ├── admin-extra.html
│ │ │ │ ├── admin-extra.menu-bottom.html
│ │ │ │ ├── admin-extra.menu-top.html
│ │ │ │ ├── db-data-config.xml
│ │ │ │ ├── elevate.xml
│ │ │ │ ├── protwords.txt
│ │ │ │ ├── schema.xml
│ │ │ │ ├── scripts.conf
│ │ │ │ ├── solrconfig.xml
│ │ │ │ ├── stopwords.txt
│ │ │ │ ├── synonyms.txt
│ │ │ │ └── xslt/
│ │ │ │ ├── example.xsl
│ │ │ │ ├── example_atom.xsl
│ │ │ │ ├── example_rss.xsl
│ │ │ │ └── luke.xsl
│ │ │ └── lib/
│ │ │ ├── derby-10.9.1.0.jar
│ │ │ └── hsqldb-1.8.0.10.jar
│ │ ├── mail/
│ │ │ └── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── data-config.xml
│ │ │ ├── protwords.txt
│ │ │ ├── schema.xml
│ │ │ ├── solrconfig.xml
│ │ │ ├── stopwords.txt
│ │ │ └── synonyms.txt
│ │ ├── rss/
│ │ │ └── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── elevate.xml
│ │ │ ├── protwords.txt
│ │ │ ├── rss-data-config.xml
│ │ │ ├── schema.xml
│ │ │ ├── scripts.conf
│ │ │ ├── solrconfig.xml
│ │ │ ├── stopwords.txt
│ │ │ └── synonyms.txt
│ │ ├── solr/
│ │ │ └── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── elevate.xml
│ │ │ ├── protwords.txt
│ │ │ ├── schema.xml
│ │ │ ├── scripts.conf
│ │ │ ├── solr-data-config.xml
│ │ │ ├── solrconfig.xml
│ │ │ ├── stopwords.txt
│ │ │ └── synonyms.txt
│ │ ├── solr.xml
│ │ └── tika/
│ │ └── conf/
│ │ ├── admin-extra.html
│ │ ├── admin-extra.menu-bottom.html
│ │ ├── admin-extra.menu-top.html
│ │ ├── schema.xml
│ │ ├── solrconfig.xml
│ │ └── tika-data-config.xml
│ ├── exampledocs/
│ │ ├── books.csv
│ │ ├── books.json
│ │ ├── gb18030-example.xml
│ │ ├── hd.xml
│ │ ├── ipod_other.xml
│ │ ├── ipod_video.xml
│ │ ├── manufacturers.xml
│ │ ├── mem.xml
│ │ ├── money.xml
│ │ ├── monitor.xml
│ │ ├── monitor2.xml
│ │ ├── mp500.xml
│ │ ├── post.jar
│ │ ├── post.sh
│ │ ├── sd500.xml
│ │ ├── solr.xml
│ │ ├── test_utf8.sh
│ │ ├── utf8-example.xml
│ │ └── vidcard.xml
│ ├── lib/
│ │ ├── ext/
│ │ │ ├── jcl-over-slf4j-1.6.6.jar
│ │ │ ├── jul-to-slf4j-1.6.6.jar
│ │ │ ├── log4j-1.2.16.jar
│ │ │ ├── slf4j-api-1.6.6.jar
│ │ │ └── slf4j-log4j12-1.6.6.jar
│ │ ├── jetty-continuation-8.1.8.v20121106.jar
│ │ ├── jetty-deploy-8.1.8.v20121106.jar
│ │ ├── jetty-http-8.1.8.v20121106.jar
│ │ ├── jetty-io-8.1.8.v20121106.jar
│ │ ├── jetty-jmx-8.1.8.v20121106.jar
│ │ ├── jetty-security-8.1.8.v20121106.jar
│ │ ├── jetty-server-8.1.8.v20121106.jar
│ │ ├── jetty-servlet-8.1.8.v20121106.jar
│ │ ├── jetty-util-8.1.8.v20121106.jar
│ │ ├── jetty-webapp-8.1.8.v20121106.jar
│ │ ├── jetty-xml-8.1.8.v20121106.jar
│ │ └── servlet-api-3.0.jar
│ ├── multicore/
│ │ ├── README.txt
│ │ ├── core0/
│ │ │ └── conf/
│ │ │ ├── schema.xml
│ │ │ └── solrconfig.xml
│ │ ├── core1/
│ │ │ └── conf/
│ │ │ ├── schema.xml
│ │ │ └── solrconfig.xml
│ │ ├── exampledocs/
│ │ │ ├── ipod_other.xml
│ │ │ └── ipod_video.xml
│ │ ├── solr.xml
│ │ └── zoo.cfg
│ ├── resources/
│ │ └── log4j.properties
│ ├── solr/
│ │ ├── README.txt
│ │ ├── relsyn/
│ │ │ ├── README.txt
│ │ │ ├── conf/
│ │ │ │ ├── admin-extra.html
│ │ │ │ ├── admin-extra.menu-bottom.html
│ │ │ │ ├── admin-extra.menu-top.html
│ │ │ │ ├── currency.xml
│ │ │ │ ├── elevate.xml
│ │ │ │ ├── lang/
│ │ │ │ │ ├── contractions_ca.txt
│ │ │ │ │ ├── contractions_fr.txt
│ │ │ │ │ ├── contractions_ga.txt
│ │ │ │ │ ├── contractions_it.txt
│ │ │ │ │ ├── hyphenations_ga.txt
│ │ │ │ │ ├── stemdict_nl.txt
│ │ │ │ │ ├── stoptags_ja.txt
│ │ │ │ │ ├── stopwords_ar.txt
│ │ │ │ │ ├── stopwords_bg.txt
│ │ │ │ │ ├── stopwords_ca.txt
│ │ │ │ │ ├── stopwords_cz.txt
│ │ │ │ │ ├── stopwords_da.txt
│ │ │ │ │ ├── stopwords_de.txt
│ │ │ │ │ ├── stopwords_el.txt
│ │ │ │ │ ├── stopwords_en.txt
│ │ │ │ │ ├── stopwords_es.txt
│ │ │ │ │ ├── stopwords_eu.txt
│ │ │ │ │ ├── stopwords_fa.txt
│ │ │ │ │ ├── stopwords_fi.txt
│ │ │ │ │ ├── stopwords_fr.txt
│ │ │ │ │ ├── stopwords_ga.txt
│ │ │ │ │ ├── stopwords_gl.txt
│ │ │ │ │ ├── stopwords_hi.txt
│ │ │ │ │ ├── stopwords_hu.txt
│ │ │ │ │ ├── stopwords_hy.txt
│ │ │ │ │ ├── stopwords_id.txt
│ │ │ │ │ ├── stopwords_it.txt
│ │ │ │ │ ├── stopwords_ja.txt
│ │ │ │ │ ├── stopwords_lv.txt
│ │ │ │ │ ├── stopwords_nl.txt
│ │ │ │ │ ├── stopwords_no.txt
│ │ │ │ │ ├── stopwords_pt.txt
│ │ │ │ │ ├── stopwords_ro.txt
│ │ │ │ │ ├── stopwords_ru.txt
│ │ │ │ │ ├── stopwords_sv.txt
│ │ │ │ │ ├── stopwords_th.txt
│ │ │ │ │ ├── stopwords_tr.txt
│ │ │ │ │ └── userdict_ja.txt
│ │ │ │ ├── mapping-FoldToASCII.txt
│ │ │ │ ├── mapping-ISOLatin1Accent.txt
│ │ │ │ ├── protwords.txt
│ │ │ │ ├── schema.xml
│ │ │ │ ├── scripts.conf
│ │ │ │ ├── solrconfig.xml
│ │ │ │ ├── spellings.txt
│ │ │ │ ├── stopwords.txt
│ │ │ │ ├── synonyms.txt
│ │ │ │ ├── update-script.js
│ │ │ │ ├── velocity/
│ │ │ │ │ ├── VM_global_library.vm
│ │ │ │ │ ├── browse.vm
│ │ │ │ │ ├── cluster.vm
│ │ │ │ │ ├── clusterResults.vm
│ │ │ │ │ ├── debug.vm
│ │ │ │ │ ├── did_you_mean.vm
│ │ │ │ │ ├── facet_fields.vm
│ │ │ │ │ ├── facet_pivot.vm
│ │ │ │ │ ├── facet_queries.vm
│ │ │ │ │ ├── facet_ranges.vm
│ │ │ │ │ ├── facets.vm
│ │ │ │ │ ├── footer.vm
│ │ │ │ │ ├── head.vm
│ │ │ │ │ ├── header.vm
│ │ │ │ │ ├── hit.vm
│ │ │ │ │ ├── hitGrouped.vm
│ │ │ │ │ ├── join-doc.vm
│ │ │ │ │ ├── jquery.autocomplete.css
│ │ │ │ │ ├── jquery.autocomplete.js
│ │ │ │ │ ├── layout.vm
│ │ │ │ │ ├── main.css
│ │ │ │ │ ├── product-doc.vm
│ │ │ │ │ ├── query.vm
│ │ │ │ │ ├── queryGroup.vm
│ │ │ │ │ ├── querySpatial.vm
│ │ │ │ │ ├── richtext-doc.vm
│ │ │ │ │ ├── suggest.vm
│ │ │ │ │ └── tabs.vm
│ │ │ │ └── xslt/
│ │ │ │ ├── example.xsl
│ │ │ │ ├── example_atom.xsl
│ │ │ │ ├── example_rss.xsl
│ │ │ │ ├── luke.xsl
│ │ │ │ └── updateXml.xsl
│ │ │ └── lib/
│ │ │ └── triplestore-lemmatizer-assembly-0.1.jar
│ │ ├── solr.xml
│ │ └── zoo.cfg
│ ├── solr-webapp/
│ │ └── webapp/
│ │ ├── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── MANIFEST.MF
│ │ │ └── NOTICE.txt
│ │ ├── WEB-INF/
│ │ │ ├── lib/
│ │ │ │ ├── commons-cli-1.2.jar
│ │ │ │ ├── commons-codec-1.7.jar
│ │ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ │ ├── commons-io-2.1.jar
│ │ │ │ ├── commons-lang-2.6.jar
│ │ │ │ ├── guava-13.0.1.jar
│ │ │ │ ├── httpclient-4.2.3.jar
│ │ │ │ ├── httpcore-4.2.2.jar
│ │ │ │ ├── httpmime-4.2.3.jar
│ │ │ │ ├── lucene-analyzers-common-4.3.0.jar
│ │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar
│ │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar
│ │ │ │ ├── lucene-codecs-4.3.0.jar
│ │ │ │ ├── lucene-core-4.3.0.jar
│ │ │ │ ├── lucene-grouping-4.3.0.jar
│ │ │ │ ├── lucene-highlighter-4.3.0.jar
│ │ │ │ ├── lucene-memory-4.3.0.jar
│ │ │ │ ├── lucene-misc-4.3.0.jar
│ │ │ │ ├── lucene-queries-4.3.0.jar
│ │ │ │ ├── lucene-queryparser-4.3.0.jar
│ │ │ │ ├── lucene-spatial-4.3.0.jar
│ │ │ │ ├── lucene-suggest-4.3.0.jar
│ │ │ │ ├── noggit-0.5.jar
│ │ │ │ ├── org.restlet-2.1.1.jar
│ │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar
│ │ │ │ ├── solr-core-4.3.0.jar
│ │ │ │ ├── solr-solrj-4.3.0.jar
│ │ │ │ ├── spatial4j-0.3.jar
│ │ │ │ ├── wstx-asl-3.2.7.jar
│ │ │ │ └── zookeeper-3.4.5.jar
│ │ │ ├── web.xml
│ │ │ └── weblogic.xml
│ │ ├── admin.html
│ │ ├── css/
│ │ │ ├── chosen.css
│ │ │ └── styles/
│ │ │ ├── analysis.css
│ │ │ ├── cloud.css
│ │ │ ├── common.css
│ │ │ ├── cores.css
│ │ │ ├── dashboard.css
│ │ │ ├── dataimport.css
│ │ │ ├── index.css
│ │ │ ├── java-properties.css
│ │ │ ├── logging.css
│ │ │ ├── menu.css
│ │ │ ├── plugins.css
│ │ │ ├── query.css
│ │ │ ├── replication.css
│ │ │ ├── schema-browser.css
│ │ │ └── threads.css
│ │ ├── img/
│ │ │ ├── ZeroClipboard.swf
│ │ │ └── filetypes/
│ │ │ └── README
│ │ ├── js/
│ │ │ ├── lib/
│ │ │ │ ├── ZeroClipboard.js
│ │ │ │ ├── chosen.js
│ │ │ │ ├── console.js
│ │ │ │ ├── d3.js
│ │ │ │ ├── highlight.js
│ │ │ │ ├── jquery.autogrow.js
│ │ │ │ ├── jquery.blockUI.js
│ │ │ │ ├── jquery.cookie.js
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jquery.jstree.js
│ │ │ │ ├── jquery.sammy.js
│ │ │ │ ├── jquery.timeago.js
│ │ │ │ ├── linker.js
│ │ │ │ └── order.js
│ │ │ ├── main.js
│ │ │ ├── require.js
│ │ │ └── scripts/
│ │ │ ├── analysis.js
│ │ │ ├── app.js
│ │ │ ├── cloud.js
│ │ │ ├── cores.js
│ │ │ ├── dashboard.js
│ │ │ ├── dataimport.js
│ │ │ ├── file.js
│ │ │ ├── index.js
│ │ │ ├── java-properties.js
│ │ │ ├── logging.js
│ │ │ ├── ping.js
│ │ │ ├── plugins.js
│ │ │ ├── query.js
│ │ │ ├── replication.js
│ │ │ ├── schema-browser.js
│ │ │ └── threads.js
│ │ └── tpl/
│ │ ├── analysis.html
│ │ ├── cloud.html
│ │ ├── cores.html
│ │ ├── dashboard.html
│ │ ├── dataimport.html
│ │ ├── index.html
│ │ ├── logging.html
│ │ ├── plugins.html
│ │ ├── query.html
│ │ ├── replication.html
│ │ ├── schema-browser.html
│ │ └── threads.html
│ ├── start.jar
│ └── webapps/
│ └── solr.war
├── src/
│ └── main/
│ └── scripts/
│ ├── create-indexes-small.sh
│ ├── create-indexes.sh
│ ├── index-relsyn.py
│ ├── index.py
│ ├── start-all.sh
│ ├── start.sh
│ ├── stop-all.sh
│ ├── stop.sh
│ └── utils.py
└── triplestore/
├── README.txt
├── cloud-scripts/
│ ├── zkcli.bat
│ └── zkcli.sh
├── contexts/
│ └── solr-jetty-context.xml
├── etc/
│ ├── create-solrtest.keystore.sh
│ ├── jetty.xml
│ ├── logging.properties
│ ├── solrtest.keystore
│ └── webdefault.xml
├── example-DIH/
│ ├── README.txt
│ ├── hsqldb/
│ │ ├── ex.backup
│ │ ├── ex.data
│ │ ├── ex.log
│ │ ├── ex.properties
│ │ └── ex.script
│ └── solr/
│ ├── db/
│ │ ├── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── db-data-config.xml
│ │ │ ├── elevate.xml
│ │ │ ├── protwords.txt
│ │ │ ├── schema.xml
│ │ │ ├── scripts.conf
│ │ │ ├── solrconfig.xml
│ │ │ ├── stopwords.txt
│ │ │ ├── synonyms.txt
│ │ │ └── xslt/
│ │ │ ├── example.xsl
│ │ │ ├── example_atom.xsl
│ │ │ ├── example_rss.xsl
│ │ │ └── luke.xsl
│ │ └── lib/
│ │ ├── derby-10.9.1.0.jar
│ │ └── hsqldb-1.8.0.10.jar
│ ├── mail/
│ │ └── conf/
│ │ ├── admin-extra.html
│ │ ├── admin-extra.menu-bottom.html
│ │ ├── admin-extra.menu-top.html
│ │ ├── data-config.xml
│ │ ├── protwords.txt
│ │ ├── schema.xml
│ │ ├── solrconfig.xml
│ │ ├── stopwords.txt
│ │ └── synonyms.txt
│ ├── rss/
│ │ └── conf/
│ │ ├── admin-extra.html
│ │ ├── admin-extra.menu-bottom.html
│ │ ├── admin-extra.menu-top.html
│ │ ├── elevate.xml
│ │ ├── protwords.txt
│ │ ├── rss-data-config.xml
│ │ ├── schema.xml
│ │ ├── scripts.conf
│ │ ├── solrconfig.xml
│ │ ├── stopwords.txt
│ │ └── synonyms.txt
│ ├── solr/
│ │ └── conf/
│ │ ├── admin-extra.html
│ │ ├── admin-extra.menu-bottom.html
│ │ ├── admin-extra.menu-top.html
│ │ ├── elevate.xml
│ │ ├── protwords.txt
│ │ ├── schema.xml
│ │ ├── scripts.conf
│ │ ├── solr-data-config.xml
│ │ ├── solrconfig.xml
│ │ ├── stopwords.txt
│ │ └── synonyms.txt
│ ├── solr.xml
│ └── tika/
│ └── conf/
│ ├── admin-extra.html
│ ├── admin-extra.menu-bottom.html
│ ├── admin-extra.menu-top.html
│ ├── schema.xml
│ ├── solrconfig.xml
│ └── tika-data-config.xml
├── exampledocs/
│ ├── books.csv
│ ├── books.json
│ ├── gb18030-example.xml
│ ├── hd.xml
│ ├── ipod_other.xml
│ ├── ipod_video.xml
│ ├── manufacturers.xml
│ ├── mem.xml
│ ├── money.xml
│ ├── monitor.xml
│ ├── monitor2.xml
│ ├── mp500.xml
│ ├── post.jar
│ ├── post.sh
│ ├── sd500.xml
│ ├── solr.xml
│ ├── test_utf8.sh
│ ├── utf8-example.xml
│ └── vidcard.xml
├── lib/
│ ├── ext/
│ │ ├── jcl-over-slf4j-1.6.6.jar
│ │ ├── jul-to-slf4j-1.6.6.jar
│ │ ├── log4j-1.2.16.jar
│ │ ├── slf4j-api-1.6.6.jar
│ │ └── slf4j-log4j12-1.6.6.jar
│ ├── jetty-continuation-8.1.8.v20121106.jar
│ ├── jetty-deploy-8.1.8.v20121106.jar
│ ├── jetty-http-8.1.8.v20121106.jar
│ ├── jetty-io-8.1.8.v20121106.jar
│ ├── jetty-jmx-8.1.8.v20121106.jar
│ ├── jetty-security-8.1.8.v20121106.jar
│ ├── jetty-server-8.1.8.v20121106.jar
│ ├── jetty-servlet-8.1.8.v20121106.jar
│ ├── jetty-util-8.1.8.v20121106.jar
│ ├── jetty-webapp-8.1.8.v20121106.jar
│ ├── jetty-xml-8.1.8.v20121106.jar
│ └── servlet-api-3.0.jar
├── multicore/
│ ├── README.txt
│ ├── core0/
│ │ └── conf/
│ │ ├── schema.xml
│ │ └── solrconfig.xml
│ ├── core1/
│ │ └── conf/
│ │ ├── schema.xml
│ │ └── solrconfig.xml
│ ├── exampledocs/
│ │ ├── ipod_other.xml
│ │ └── ipod_video.xml
│ ├── solr.xml
│ └── zoo.cfg
├── resources/
│ └── log4j.properties
├── solr/
│ ├── README.txt
│ ├── solr.xml
│ ├── triplestore/
│ │ ├── README.txt
│ │ ├── conf/
│ │ │ ├── admin-extra.html
│ │ │ ├── admin-extra.menu-bottom.html
│ │ │ ├── admin-extra.menu-top.html
│ │ │ ├── currency.xml
│ │ │ ├── elevate.xml
│ │ │ ├── lang/
│ │ │ │ ├── contractions_ca.txt
│ │ │ │ ├── contractions_fr.txt
│ │ │ │ ├── contractions_ga.txt
│ │ │ │ ├── contractions_it.txt
│ │ │ │ ├── hyphenations_ga.txt
│ │ │ │ ├── stemdict_nl.txt
│ │ │ │ ├── stoptags_ja.txt
│ │ │ │ ├── stopwords_ar.txt
│ │ │ │ ├── stopwords_bg.txt
│ │ │ │ ├── stopwords_ca.txt
│ │ │ │ ├── stopwords_cz.txt
│ │ │ │ ├── stopwords_da.txt
│ │ │ │ ├── stopwords_de.txt
│ │ │ │ ├── stopwords_el.txt
│ │ │ │ ├── stopwords_en.txt
│ │ │ │ ├── stopwords_es.txt
│ │ │ │ ├── stopwords_eu.txt
│ │ │ │ ├── stopwords_fa.txt
│ │ │ │ ├── stopwords_fi.txt
│ │ │ │ ├── stopwords_fr.txt
│ │ │ │ ├── stopwords_ga.txt
│ │ │ │ ├── stopwords_gl.txt
│ │ │ │ ├── stopwords_hi.txt
│ │ │ │ ├── stopwords_hu.txt
│ │ │ │ ├── stopwords_hy.txt
│ │ │ │ ├── stopwords_id.txt
│ │ │ │ ├── stopwords_it.txt
│ │ │ │ ├── stopwords_ja.txt
│ │ │ │ ├── stopwords_lv.txt
│ │ │ │ ├── stopwords_nl.txt
│ │ │ │ ├── stopwords_no.txt
│ │ │ │ ├── stopwords_pt.txt
│ │ │ │ ├── stopwords_ro.txt
│ │ │ │ ├── stopwords_ru.txt
│ │ │ │ ├── stopwords_sv.txt
│ │ │ │ ├── stopwords_th.txt
│ │ │ │ ├── stopwords_tr.txt
│ │ │ │ └── userdict_ja.txt
│ │ │ ├── mapping-FoldToASCII.txt
│ │ │ ├── mapping-ISOLatin1Accent.txt
│ │ │ ├── protwords.txt
│ │ │ ├── schema.xml
│ │ │ ├── scripts.conf
│ │ │ ├── solrconfig.xml
│ │ │ ├── spellings.txt
│ │ │ ├── stopwords.txt
│ │ │ ├── synonyms.txt
│ │ │ ├── update-script.js
│ │ │ ├── velocity/
│ │ │ │ ├── VM_global_library.vm
│ │ │ │ ├── browse.vm
│ │ │ │ ├── cluster.vm
│ │ │ │ ├── clusterResults.vm
│ │ │ │ ├── debug.vm
│ │ │ │ ├── did_you_mean.vm
│ │ │ │ ├── facet_fields.vm
│ │ │ │ ├── facet_pivot.vm
│ │ │ │ ├── facet_queries.vm
│ │ │ │ ├── facet_ranges.vm
│ │ │ │ ├── facets.vm
│ │ │ │ ├── footer.vm
│ │ │ │ ├── head.vm
│ │ │ │ ├── header.vm
│ │ │ │ ├── hit.vm
│ │ │ │ ├── hitGrouped.vm
│ │ │ │ ├── join-doc.vm
│ │ │ │ ├── jquery.autocomplete.css
│ │ │ │ ├── jquery.autocomplete.js
│ │ │ │ ├── layout.vm
│ │ │ │ ├── main.css
│ │ │ │ ├── product-doc.vm
│ │ │ │ ├── query.vm
│ │ │ │ ├── queryGroup.vm
│ │ │ │ ├── querySpatial.vm
│ │ │ │ ├── richtext-doc.vm
│ │ │ │ ├── suggest.vm
│ │ │ │ └── tabs.vm
│ │ │ └── xslt/
│ │ │ ├── example.xsl
│ │ │ ├── example_atom.xsl
│ │ │ ├── example_rss.xsl
│ │ │ ├── luke.xsl
│ │ │ └── updateXml.xsl
│ │ └── lib/
│ │ └── triplestore-lemmatizer-assembly-0.1.jar
│ └── zoo.cfg
├── solr-webapp/
│ └── webapp/
│ ├── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── MANIFEST.MF
│ │ └── NOTICE.txt
│ ├── WEB-INF/
│ │ ├── lib/
│ │ │ ├── commons-cli-1.2.jar
│ │ │ ├── commons-codec-1.7.jar
│ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ ├── commons-io-2.1.jar
│ │ │ ├── commons-lang-2.6.jar
│ │ │ ├── guava-13.0.1.jar
│ │ │ ├── httpclient-4.2.3.jar
│ │ │ ├── httpcore-4.2.2.jar
│ │ │ ├── httpmime-4.2.3.jar
│ │ │ ├── lucene-analyzers-common-4.3.0.jar
│ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar
│ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar
│ │ │ ├── lucene-codecs-4.3.0.jar
│ │ │ ├── lucene-core-4.3.0.jar
│ │ │ ├── lucene-grouping-4.3.0.jar
│ │ │ ├── lucene-highlighter-4.3.0.jar
│ │ │ ├── lucene-memory-4.3.0.jar
│ │ │ ├── lucene-misc-4.3.0.jar
│ │ │ ├── lucene-queries-4.3.0.jar
│ │ │ ├── lucene-queryparser-4.3.0.jar
│ │ │ ├── lucene-spatial-4.3.0.jar
│ │ │ ├── lucene-suggest-4.3.0.jar
│ │ │ ├── noggit-0.5.jar
│ │ │ ├── org.restlet-2.1.1.jar
│ │ │ ├── org.restlet.ext.servlet-2.1.1.jar
│ │ │ ├── solr-core-4.3.0.jar
│ │ │ ├── solr-solrj-4.3.0.jar
│ │ │ ├── spatial4j-0.3.jar
│ │ │ ├── wstx-asl-3.2.7.jar
│ │ │ └── zookeeper-3.4.5.jar
│ │ ├── web.xml
│ │ └── weblogic.xml
│ ├── admin.html
│ ├── css/
│ │ ├── chosen.css
│ │ └── styles/
│ │ ├── analysis.css
│ │ ├── cloud.css
│ │ ├── common.css
│ │ ├── cores.css
│ │ ├── dashboard.css
│ │ ├── dataimport.css
│ │ ├── index.css
│ │ ├── java-properties.css
│ │ ├── logging.css
│ │ ├── menu.css
│ │ ├── plugins.css
│ │ ├── query.css
│ │ ├── replication.css
│ │ ├── schema-browser.css
│ │ └── threads.css
│ ├── img/
│ │ ├── ZeroClipboard.swf
│ │ └── filetypes/
│ │ └── README
│ ├── js/
│ │ ├── lib/
│ │ │ ├── ZeroClipboard.js
│ │ │ ├── chosen.js
│ │ │ ├── console.js
│ │ │ ├── d3.js
│ │ │ ├── highlight.js
│ │ │ ├── jquery.autogrow.js
│ │ │ ├── jquery.blockUI.js
│ │ │ ├── jquery.cookie.js
│ │ │ ├── jquery.form.js
│ │ │ ├── jquery.jstree.js
│ │ │ ├── jquery.sammy.js
│ │ │ ├── jquery.timeago.js
│ │ │ ├── linker.js
│ │ │ └── order.js
│ │ ├── main.js
│ │ ├── require.js
│ │ └── scripts/
│ │ ├── analysis.js
│ │ ├── app.js
│ │ ├── cloud.js
│ │ ├── cores.js
│ │ ├── dashboard.js
│ │ ├── dataimport.js
│ │ ├── file.js
│ │ ├── index.js
│ │ ├── java-properties.js
│ │ ├── logging.js
│ │ ├── ping.js
│ │ ├── plugins.js
│ │ ├── query.js
│ │ ├── replication.js
│ │ ├── schema-browser.js
│ │ └── threads.js
│ └── tpl/
│ ├── analysis.html
│ ├── cloud.html
│ ├── cores.html
│ ├── dashboard.html
│ ├── dataimport.html
│ ├── index.html
│ ├── logging.html
│ ├── plugins.html
│ ├── query.html
│ ├── replication.html
│ ├── schema-browser.html
│ └── threads.html
├── start.jar
└── webapps/
└── solr.war
================================================
FILE CONTENTS
================================================
================================================
FILE: README.md
================================================
This is a repository for the code and data from the paper _Open Question
Answering Over Curated and Extracted Knowledge Bases_ from KDD 2014. If you use
any of these resources in a published paper, please use the following citation:
@inproceedings{Fader14,
author = {Anthony Fader and Luke Zettlemoyer and Oren Etzioni},
title = {{Open Question Answering Over Curated and Extracted
Knowledge Bases}},
booktitle = {KDD},
year = {2014}
}
Code
===
Warning: This project has lots of moving parts. It will probably take quite a
bit of effort to get it running. I would recommend playing with the data
before trying to run the code.
## Dependencies
Below are the dependencies used for OQA. Version numbers are what I have used,
but other versions may be compatible.
* sbt (0.13)
* java (1.8.0)
* scala (2.10)
* Boost C++ libraries (1.5.7)
* Python (2.7.8)
* wget (1.15)
## Code Structure
OQA consists of the following components:
* Solr indexes (used for storing triples, paraphrases, and query rewrites).
* Language model (used for scoring answer derivation steps)
* Question answering code (used for inference and learning)
Getting the code running involves completing these steps in order:
1. [Downloading the data](oqa-data/) in `oqa-data/`
2. [Creating the indexes](oqa-solr/) in `oqa-solr/`
3. [Building the language model](oqa-lm/) in `oqa-lm/`
4. [Running the code](oqa-core/) in `oqa-core/`
Please follow the above links to the individual README files. Each README
will walk you through the steps.
Data
===
Below is a description of the data included with OQA.
## Knowledge Base (KB) Data
You can download the KB data at this url:
http://knowitall.cs.washington.edu/oqa/data/kb. The KB is divided into 20
gzip-compressed files. The total compressed filesize is approximately 20GB; the
total decompressed filesize is approximately 50GB.
Each file contains a newline-separated list of KB
records. Each record is a tab-separated list of (field name, field value) pairs.
For example, here is a record corresponding to a Freebase assertion (with tabs
replaced by newlines):
arg1
1,2-Benzoquinone
rel
Notable types
arg2
Chemical Compound
arg1_fbid_s
08s9rd
id
fb-179681780
namespace
freebase
The following fields names appear in the data:
| Field Name | Description | Required? |
| --------------------------|-------------------------------|-----------|
| `arg1` | Argument 1 of the triple | Yes |
| `rel` | Relation phrase of the triple | Yes |
| `arg2` | Argument 1 of the triple | Yes |
| `id` | Unique ID for the triple | Yes |
| `namespace` | The source of this triple | Yes |
| `arg1_fbid_s` | Arg1 Freebase ID | No |
| `arg2_fbid_s` | Arg2 Freebase ID | No |
| `num_extrs_i` | Extraction redundancy | No |
| `conf_f` | Extractor confidence | No |
| `corpora_ss` | Extractor corpus | No |
| `zipfSlope_f` | Probase statistic | No |
| `entitySize_i` | Probase statistic | No |
| `entityFrequency_i` | Probase statistic | No |
| `popularity_i` | Probase statistic | No |
| `freq_i` | Probase statistic | No |
| `zipfPearsonCoefficient_f`| Probase statistic | No |
| `conceptVagueness_f` | Probase statistic | No |
| `prob_f` | Probase statistic | No |
| `conceptSize_i` | Probase statistic | No |
There is a total of 930 million records in the data. The distribution the
different `namespace` values is:
| Namespace | Count |
|-------------------|----------:|
| Total |930,143,872|
| ReVerb |391,345,565|
| Freebase |299,370,817|
| Probase |170,278,429|
| Open IE 4.0 | 67,221,551|
| NELL | 1,927,510|
## WikiAnswers Corpus
The WikiAnswers corpus contains clusters of questions tagged by WikiAnswers
users as paraphrases. Each cluster optionally contains an answer provided by
WikiAnswers users. There are 30,370,994 clusters containing an average of 25
questions per cluster. 3,386,256 (11%) of the clusters have an answer.
The data can be downloaded from:
http://knowitall.cs.washington.edu/oqa/data/wikianswers/. The corpus is split
into 40 gzip-compressed files. The total compressed filesize is 8GB; the total
decompressed filesize is 40GB. Each file contains one cluster per line. Each
cluster is a tab-separated list of questions and answers. Questions are prefixed
by `q:` and answers are prefixed by `a:`. Here is an example cluster (tabs
replaced with newlines):
q:How many muslims make up indias 1 billion population?
q:How many of india's population are muslim?
q:How many populations of muslims in india?
q:What is population of muslims in india?
a:Over 160 million Muslims per Pew Forum Study as of October 2009.
This corpus is different than the data used in the Paralex system (see
http://knowitall.cs.washington.edu/paralex). First, it contains more questions
resulting from a longer crawl of WikiAnswers. Second, it groups questions into
clusters, instead of enumerating all pairs of paraphrases. Third, it contains
the answers, while the Paralex data does not.
We also provide a hierarchical clustering of the lowercased tokens in the
WikiAnswers corpus. We used [Percy Liang's implementation of the Brown
Clustering Algorithm](https://github.com/percyliang/brown-cluster) with
1000 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).
You can browse the clusters [here](https://s3-us-west-2.amazonaws.com/ai2-oqa/wikianswers-cluster-viewer/cluster_viewer.html).
We did not use these in the OQA system, but we probably should have.
## Paraphrase Template Data
The paraphrase templates used in OQA are available for download at
http://knowitall.cs.washington.edu/oqa/data/paraphrase-templates.txt.gz. The
file is 90M compressed and 900M decompressed. Each line in the file contains a
paraphrase template pair as a tab-separated list of (field name, field value)
pairs. Here is an example record (with tabs replaced with newlines):
id
pair1718534
template1
how do people use $y ?
template2
what be common use for $y ?
typ
anything
count1
0.518446
count2
0.335112
typCount12
0.195711
count12
0.195711
typPmi
0.707756
pmi
0.687842
Each template in a record is a space-delimited list of lowercased, lemmatized
tokens. The token `$y` is a variable representing the argument slot position.
The numeric values in the records are scaled to be in [0, 1].
| Field | Description |
|---------------|-----------------------------------------------------------|
| `id` | The unique identifier for the pair of templates |
| `template1` | The first template |
| `template2` | The second template |
| `typ` | Unusued field, ignore |
| `count1` | Log count of the first template |
| `count2` | Log count of the second template |
| `typCount12` | Unused field, ignore |
| `count12` | Log joint-count of the template pair |
| `typPmi` | Unused field, ignore |
| `pmi` | Log pointwise mutual information of the template pair |
There are a total of 5,137,558 records in the file.
## Query Rewrite Data
The query rewrite operators are available for download at
http://knowitall.cs.washington.edu/oqa/data/query-rewrites.txt.gz. The file is
1G compressed and 8G decompressed. Each line in the file is a tab-separated
list of (field name, field value) pairs. Here is an example record (with tabs
replaced with newlines):
inverted
0
joint_count
18
marg_count1
263
marg_count2
102
pmi
-7.30675508757
rel1
be the language of the country
rel2
be widely speak in
Each record has statistics computed over a pair of relation phrases `rel1` and
`rel2`. The relation phrases are lowercased and lemmatized.
| Field | Description |
|---------------|-----------------------------------------------------------|
| `inverted` | 1 if the rule inverts arg. order, 0 otherwise |
| `joint_count` | The number of shared argument pairs in the KB |
| `marg_count1` | The number of argument pairs `rel1` takes in the KB |
| `marg_count2` | The number of argument pairs `rel2` takes in the KB |
| `pmi` | Log pointwise mutual information of `rel1` and `rel2` |
| `rel1` | Lemmatized, lowercased relation phrase 1 |
| `rel2` | Lemmatized, lowercased relation phrase 2 |
There are a total of 74,461,831 records in the file.
## Labeled Question-Answer Pairs
The questions and answers used for the evaluation are available at
http://knowitall.cs.washington.edu/oqa/data/questions/.
The questions are available in their own files:
* 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)
* 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)
* 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)
I labeled the top predictions for each system as correct or incorrect if they
the predicted answer was not found in the label sets provided with WebQuestions,
TREC, and WikiAnswers. These labels can be found at
http://knowitall.cs.washington.edu/oqa/data/questions/labels.txt. The format of
this file is a newline-separated list of tab-separated (`LABEL`, truth value,
question, answer) records. The questions and answers may be lowercased and
lemmatized.
## System Output
See the documentation in [oqa-data/predictions](oqa-data/predictions).
================================================
FILE: oqa-core/README.md
================================================
# Running OQA
Create a file called `questions.txt` that has one question per line. Running
the following command will run OQA on the questions and write the output to
the directory `output/`:
sbt 'run-main edu.knowitall.eval.qa.QASystemRunner questions.txt output'
Upon completion, `output/` will contain three files: `config.txt`, `output.txt`,
and `name.txt`. `config.txt` is a dump of the OQA settings used for this
execution. `name.txt` contains the input file name. `output.txt` contains the
output of the system, with one line per prediction. Each line is a tab-separated
record with the following fields:
1. The input question.
2. The predicted answer.
3. The score of the highest-scoring derivation from question to predicted answer.
4. A string representation of the higest-scoring derivation.
By default, OQA uses the feature weights in `models/full.txt`.
The configuration settings can be changed by editing
`src/main/resources/application.conf`.
================================================
FILE: oqa-core/build.sbt
================================================
scalaVersion := "2.10.2"
organization := "edu.knowitall.oqa"
name := "oqa"
version := "0.1-SNAPSHOT"
fork in run := true
javaOptions in run += "-Xmx8G"
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.10",
"org.slf4j" % "slf4j-simple" % "1.7.10",
"org.slf4j" % "slf4j-log4j12" % "1.7.10",
"com.typesafe" % "config" % "1.0.2",
"edu.washington.cs.knowitall.nlptools" %% "nlptools-postag-stanford" % "2.4.5",
"edu.washington.cs.knowitall.nlptools" %% "nlptools-tokenize-breeze" % "2.4.5",
"edu.washington.cs.knowitall.nlptools" %% "nlptools-stem-morpha" % "2.4.5",
"edu.washington.cs.knowitall.nlptools" %% "nlptools-tokenize-clear" % "2.4.5",
"edu.washington.cs.knowitall.nlptools" %% "nlptools-chunk-opennlp" % "2.4.5",
"edu.washington.cs.knowitall.taggers" %% "taggers-core" % "0.4",
"com.rockymadden.stringmetric" % "stringmetric-core" % "0.25.3",
"org.apache.solr" % "solr-solrj" % "4.3.1",
"com.twitter" %% "util-collection" % "6.3.6",
"org.scalaj" %% "scalaj-http" % "0.3.10",
"commons-logging" % "commons-logging" % "1.2"
)
libraryDependencies <+= scalaVersion("org.scala-lang" % "scala-actors" % _)
================================================
FILE: oqa-core/models/full.txt
================================================
question prefix = 'what' ^ answer shape = 'Aaaaa 111 Aaaaa' -0.9569500182415177
question prefix = 'what' ^ answer shape = 'a aaa AAA' 0.7544691718350967
lex category (postags) = Unary(WP VBP DT JJ NN VB) -0.2743524261218534
question prefix = 'where' ^ answer shape = 'Aaa Aaaaa' 1.0291864283108354
question prefix = 'UNK' ^ answer shape = 'aaa Aaaaa Aaaaa' 0.5757022984312294
lex category (postags) = Unary(WDT NN VB DT JJ NN VB IN) -0.9317767238234221
question prefix = 'be' ^ isDate 0.0
lex category (postags) = Unary(WDT NN NN VB NN IN JJ JJ NN) 0.0
question prefix = 'what' ^ answer shape = '1/11' -0.05107624954396206
lex category (postags) = Unary(WDT VB JJ NN NN) -0.8423932871214885
lex category (postags) = Unary(WP VB NN JJ VB VB TO) 0.0
lex category (postags) = Unary(WDT NN VBP IN NN NN) 0.0
lex category (postags) = Unary(WDT NN VB NN) 1.0693177672382341
lex category (postags) = Unary(WP VB DT JJ NN VBP) 0.21597956950018238
template arg pos tags = NN RB 0.8059102517329442
question prefix = 'how many' ^ answer shape = 'Aaaaa aaaa' -0.36847865742429775
parser lexical rule = fullPatternWhenBeIn 0.0
parser lexical rule = quantIdentity 0.8796059832178037
lex category (postags) = Unary(WP VBP JJ NN VB) 0.0
lex type = Unary ^ rightTag = VBP 0.0
template arg pos tags = VB NN NNS -0.6431959139000365
lex category (postags) = Unary(WDT NN VB JJ NN VB) 0.3578985771616199
template prefix how many => how many -0.3028091937249179
action type = RelSynRule -1.4483765049252098
lex category (postags) = Unary(WDT NN VBP NN NN VB) -0.4615103976650857
question prefix = 'who' ^ answer shape = 'Aaaaa AA' 0.0361182050346589
question prefix = 'what' ^ answer shape = 'Aaaa aaaa' 0.6136446552353155
lex category (postags) = Unary(WRB JJ NN VBP DT NN VB VB) 0.9875957679678949
lex category (postags) = Unary(WRB JJ NN VBP VB DT NN) -0.9875957679678949
lex category (postags) = Unary(WRB VBP DT NN NN VB) 0.10981393651951843
question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaaa' 0.1222181685516235
evidence similarity with question 4.2882653734688905
question prefix = 'what' ^ answer shape = '11-aaaa-aaa aaaa' -0.38270704122583
lex category (postags) = Unary(WDT NN VBP NN RB VB) -0.2218168551623495
action type = ParsedQuestion 0.0
lex category (postags) = Unary(WDT VB DT NN IN DT JJS NN) 0.0
lex category (postags) = Unary(WP VB VB NN NN) -0.7333090113097409
question prefix = 'where' ^ answer shape = 'aaa Aaaaa Aaaaa' -0.7997081357168916
template prefix when => who -0.5508938343670193
lex type = Identity ^ rightTag = WP -0.8701203940167822
question prefix = 'how' ^ answer shape = '1 aaaa 11**1' 0.7325793506019701
template arg pos tags = DT JJ NN NN 0.0
lex category (postags) = Unary(WP VB DT NN IN NN NN) 0.0
relSynRule pmi 0.9996351696461145
template arg pos tags = VBN 0.0
question prefix = 'what' ^ answer shape = 'aaa-aaaa' -0.7329441809558555
question prefix = 'how' ^ answer shape = 'aaa 11' 0.8011674571324334
lex category (postags) = Unary(WDT VB DT NN IN NN JJ NN) 0.0
lex category (postags) = Unary(WP VBP NN NN) 0.7891280554542137
lex category (postags) = Unary(WDT NN VBP NN VB IN) 1.422108719445458
template arg pos tags = VBG NN -0.11492156147391464
parser lexical rule = punctIdentity 0.0
answer is def noun -1.8340021889821232
lex category (postags) = Unary(WDT NN NN VBP VB NN) 0.2002918642831084
question prefix = 'what year' ^ isNumber 0.7650492520977745
template arg pos tags = NN JJ -0.1419190076614374
question prefix = 'who' ^ answer shape = 'Aaaa Aaaaa' -0.24917913170375774
lex category (postags) = Unary(WP VBZ NN IN NN) -0.608172199927034
minimum join key similarity 0.35604514334276016
lex category (postags) = Unary(WP VBP JJ NN) 0.8478657424297702
template prefix what => when 0.47427946005107624
parser lexical rule = fullPatternCop 0.46990149580445095
lex category (postags) = Unary(WDT VB JJ NN NNS NN) 1.6556001459321414
lex category (postags) = Unary(WDT NN VBP NN NNS VBP IN) 0.9452754469171835
template prefix when => what -0.33673841663626414
lex category (postags) = Unary(WDT VB DT NN IN DT JJ NN) 0.2743524261218534
question prefix = 'what' ^ answer shape = 'AA ?' 0.08099233856256838
lex type = Unary ^ leftTag = CC -0.8077344035023714
question prefix = 'what' ^ answer shape = 'Aaaaa Aaa' 0.4801167457132433
lex category (postags) = Unary(WDT NN VB NN VB VB) -0.46990149580445095
lex category (postags) = Unary(WP VB NN IN NN) 0.7482670558190443
question prefix = 'when' ^ answer shape = 'Aaaaa' -0.9317767238234221
lex category (postags) = Unary(WP VBP NNS VB IN) 0.0
lex category (postags) = Unary(WDT VB VBN JJ NN) -0.2725282743524261
lex category (postags) = Unary(WDT NN VB NN IN JJ NN) 0.0
lex type = Identity ^ leftTag = IN -1.1842393287121489
dropNameOf -0.9076979204669828
question prefix = 'how many' ^ answer shape = 'Aaaa' 0.06712878511492155
question prefix = 'what' ^ answer shape = 'aaaa aaaa aaaa' 0.009120758847136081
lex type = Identity ^ leftTag = VBN -0.8011674571324334
template pair pmi 2.0896136658507425
lex category (postags) = Unary(WDT VB DT NN IN JJ NN) 0.0747902225465158
lex category (postags) = Unary(WP VB NN NNS NN) 0.0
fbid join key violation 0.0
question prefix = 'what' ^ answer shape = '1111-11-11' 0.7245530828164903
question prefix = 'what' ^ answer shape = 'aaaa-aa-aaaa A-aaaa aaaa' 0.38380153228748637
lex category (postags) = Unary(WRB VBP NNP NNP) 0.041590660342940566
lex category (postags) = Unary(WRB VB JJ NN NNS NN) 0.4118934695366655
question prefix = 'UNK' ^ answer shape = 'Aaa Aaaaa' 0.2002918642831084
lex category (postags) = Unary(WRB VB DT NN NN NN) 0.0
template arg pos tags = NN NN VB 0.6023349142648668
question prefix = 'UNK' ^ answer shape = 'a aaaa' -0.5231667274717257
template arg pos tags = NN NNS LS 0.0
question prefix = 'what' ^ answer shape = 'aaa Aaaaa' -1.0496169281284202
template arg pos tags = DT JJ NN VB -0.9317767238234221
question prefix = 'what' ^ answer shape = 'aaa Aaaa Aaaaa' 0.3568040860999635
lex category (postags) = Unary(WRB VB NN NN) -0.7132433418460415
lex category (postags) = Unary(WRB VB DT NN VB) 0.8701203940167822
lex category (postags) = Unary(WP VB NN NN VB) -0.016782196278730455
parser lexical rule = fullPatternRelType -0.2929587741700108
lex category (postags) = Identity(WDT) -0.8898212331265961
question prefix = 'what' ^ answer shape = 'Aaa' -0.3079168186793141
question prefix = 'how' ^ answer shape = '11 aaa A' -0.659978110178767
question prefix = 'where' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa' -0.06785844582269251
answer is linked to freebase 0.6242247354979934
lex category (postags) = Unary(WRB VB DT JJ NN VB) 0.9317767238234221
lex category (postags) = Unary(WDT VB DT JJS NN VB) 0.29186428310835466
posToOf 0.02371397300255381
lex category (postags) = Unary(WDT VB NN NN NN VBZ NN) 0.5527179861364466
template arg pos tags = VB NN -0.7344035023713973
question prefix = 'what' ^ answer shape = '?Aaaaa' 1.2612185333819774
template arg pos tags = VB JJR NN 0.0
template arg pos tags = DT NN NN NN -0.011309740970448741
template arg pos tags = NN VB NN 0.0
question prefix = 'what' ^ answer shape = 'aaa aaaa' -0.29004013133892736
parser lexical rule = fullPatternWhenOn -0.09850419554906968
lex category (postags) = Unary(WDT NN VB JJ NN) -0.3101058008026268
lex category (postags) = Unary(WDT VB DT JJ NN NN VB) -0.037942356804086086
lex category (postags) = Unary(WP VBP CD JJ) 0.0
question prefix = 'what' ^ answer shape = 'AA' 0.009120758847136035
lex category (postags) = Unary(WDT NN VB DT NN NN VB NN IN) 0.6683692083181321
template prefix where => what 0.5534476468442175
lex type = Identity ^ leftTag = TO -0.1711054359722729
lex category (postags) = Unary(WDT VB DT JJ NN VBP IN) -0.543232396935425
question prefix = 'who' ^ answer shape = 'aaaa AAA' 0.4308646479387085
parser lexical rule = auxIdentity -0.44326887997081355
lex category (postags) = Unary(WP VBP DT NN IN NN) 0.9565851878876322
question prefix = 'where' ^ answer shape = 'aaa aaaa 1111a' -0.7132433418460415
lex category (postags) = Unary(WRB VB DT NN NN VB) -0.9689894199197373
template arg pos tags = WDT VB JJ NN -0.9627873039036848
lex category (postags) = Unary(WDT NN VBP VBN NN VB) 0.0
lex category (postags) = Unary(WDT NN NN VBP NN VB IN) 0.0
lex category (postags) = Unary(WDT NN VBP DT NN VB) 0.29259394381612547
question prefix = 'be' ^ isNumber -0.7457132433418461
tuple conceptVagueness_f -0.06978468085790701
question prefix = 'how' ^ answer shape = 'aaaa aaaa' -0.11236774899671652
question prefix = 'be' ^ answer shape = 'a1111' -0.7457132433418461
question prefix = 'what' ^ answer shape = 'a aaaa-aaaa aaaa' 0.07114191900766142
template prefix UNK => UNK -0.9627873039036848
question prefix = 'what' ^ answer shape = 'Aaa aaaa' 0.12951477562933236
template arg pos tags = VB JJ 0.0
lex category (postags) = Unary(WP DT NN VBP NN VB) 0.0
lex type = Identity ^ leftTag = 0.24735497993433053
template arg pos tags = JJ JJ NN 0.0
template arg pos tags = NN NNS -0.9452754469171835
lex category (postags) = Unary(WDT VB DT NN IN JJ NN NN) 0.0
question prefix = 'how' ^ answer shape = 'Aaaaa 11aa' -0.6358993068223276
lex category (postags) = Unary(WDT VB NN NN JJ NNS NN) 0.0
template arg pos tags = DT JJ JJ 0.0
question prefix = 'who' ^ answer shape = 'Aaaa' -0.31047063115651224
template arg pos tags = VB IN NN NN 0.0
question prefix = 'where' ^ answer shape = 'Aaaaa' 1.0645749726377234
lex category (postags) = Unary(WDT VB VB DT NN IN NN) 0.9025902955125866
tuple num_extrs_i 0.23171075013440565
lex category (postags) = Unary(WRB VBP JJ NN VB) -0.10871944545786216
question prefix = 'who' ^ answer shape = 'Aaaa Aaaa' 0.19591390003648304
question prefix = 'how many' ^ answer shape = '111,111 aaaa' 0.21196643560744255
template arg pos tags = NNS JJ 0.0
lex category (postags) = Unary(WDT NN VB VBN NN VBP IN) -0.6402772710689529
question prefix = 'what' ^ answer shape = 'Aaaaa aa aaa Aaaaa'a Aaaaa aa Aaaaa' 0.44910616563298067
question prefix = 'what' ^ answer shape = 'Aaaaa Aaa Aaaaa' 0.2725282743524261
lex category (postags) = Unary(WDT VB VB NN) -0.7344035023713973
dropPP -1.999270339292229
lex type = Identity ^ rightTag = VBP -0.8077344035023714
question prefix = 'what' ^ answer shape = 'Aaa Aaaa aa Aaaaa Aaaaa' 0.2542867566581539
question prefix = 'what year' ^ answer shape = 'aaaa' -0.7650492520977745
parser combinator rule = UnaryIdentity 0.0
question prefix = 'how many' ^ isNumber -0.31229478292593943
lex category (postags) = Unary(WP VB DT NN IN DT NN) 0.0
question prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaaaa aaaa' 0.3542502736227654
lex category (postags) = Unary(WP VBZ NN NN) -0.9551258664720905
question prefix = 'what' ^ answer shape = 'AAAa' -0.012404232032105056
lex category (postags) = Unary(WRB VB RB NN VB) 0.556366289675301
lex category (postags) = Unary(WRB JJ NN VB RB IN DT JJ NN) 0.5242612185333819
lex category (postags) = Unary(WDT VB DT NN VB) -1.1185698650127691
answer from namespace 'probase' 0.029186428310835462
template arg pos tags = NN NN NN 0.34002188982123316
template arg pos tags = NN IN JJ 0.0
action type = ProjectAction$ 0.0
template arg pos tags = VB DT CD NN 0.0
question prefix = 'what' ^ answer shape = 'Aa. AAAA' -0.43889091572418826
answer from namespace 'reverb' -0.4593214155417731
template arg pos tags = VB NN NN 0.0
lex category (postags) = Unary(WP NN VBP NN VB VB) 0.4005837285662167
question prefix = 'UNK' ^ answer shape = 'aaaa Aaaaa' 0.46990149580445095
template arg pos tags = RB JJ 0.0
lex category (postags) = Unary(WDT NN VB NN IN DT NN) 0.0
question prefix = 'UNK' ^ answer shape = 'AAAA' -0.5757022984312294
lex category (postags) = Unary(WP VB JJ NN NN VB IN) 0.0
template arg pos tags = JJ NN -0.3414812112367749
action type = DropStopAction$ -0.40897482670558194
lex type = Identity ^ leftTag = NN -0.7763589930682233
lex category (postags) = Unary(WDT NN VB NN IN NN) -0.08099233856256838
lex category (postags) = Unary(WDT NN VB VB IN CD DT NN NN) -0.7303903684786575
lex category (postags) = Unary(WDT VB JJ NN VB) -0.9627873039036848
parser combinator rule = UnaryIntersect -0.4421743889091573
lex category (postags) = Unary(WDT VB DT NN IN NN NN NN) -0.3009850419554907
lex type = Unary ^ leftTag = VB -0.13900036483035388
template arg pos tags = DT JJ 0.0
lex category (postags) = Unary(WDT VB DT NN NN IN NN) 0.8931047063115651
question prefix = 'UNK' ^ answer shape = 'aaa Aaaaa' 0.21597956950018238
lex type = Identity ^ rightTag = VB -0.096315213425757
template arg pos tags = NNP 0.0
lex category (postags) = Unary(WDT NN VBP NN VBP IN) -0.739875957679679
question prefix = 'be' ^ answer shape = 'a aaaa , aaaa aaaa' 0.4841298796059832
lex category (postags) = Unary(WDT VB NN NN VB VB) 0.0
lex category (postags) = Unary(WDT NN VB NN NN) 0.0
lex category (postags) = Unary(WRB VB JJ NN VBN) -0.8011674571324334
template arg pos tags = DT NN IN NN -0.5231667274717257
question prefix = 'what' ^ answer shape = 'Aaa Aaaa' -0.3870850054724553
question prefix = 'how' ^ answer shape = 'a aaaa' 0.30317402407880334
lex category (postags) = Unary(WDT VB DT JJ NN IN DT NN) -0.6450200656694637
lex category (postags) = Unary(WDT VB PRP$ NN) -0.4421743889091573
template prefix how => UNK 0.0
template prefix what => who -0.990879241152864
question prefix = 'how' ^ answer shape = '11' 0.3163079168186793
template prefix what => how many 0.40167821962787303
question prefix = 'what' ^ answer shape = 'aaaa aaa' 0.315213425757023
question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa Aaaaa' 0.23166727471725648
paraphrase lm -0.8559275264502015
question prefix = 'what' ^ answer shape = 'Aaaaa aaaa' -0.2032105071141919
num lexical rules -1.6143013498723098
lex category (postags) = Unary(WRB NNS VB NN VBN) -0.8777818314483765
lex category (postags) = Unary(WDT NNS DT NN IN DT JJ NN) 0.4421743889091573
lex category (postags) = Unary(WDT VB NN NNS JJS NN) -0.14921561473914635
parser lexical rule = fullPatternWhereIn -1.6811382707041225
lex category (postags) = Unary(WRB JJ NN VBP NN VB) 0.9755563662896753
lex category (postags) = Unary(WRB VBP NN NN VB RP) 0.0
lex category (postags) = Unary(WDT VB VB DT CD NN) 0.0
lex category (postags) = Unary(WRB JJ NN VBP NNS VB) 0.0
dropTypeOf 0.7128785114921561
lex category (postags) = Unary(WDT VB DT NN IN NN NNP) 0.6504925209777453
lex type = Identity ^ leftTag = RP 0.0
template arg pos tags = DT NN -1.5757022984312294
lex category (postags) = Unary(WDT VB DT NN IN NN JJ) 0.0
question prefix = 'who' ^ answer shape = 'Aa. Aaaa' 0.9565851878876322
template arg pos tags = NN VBN 0.8777818314483765
template prefix where => what year 0.4746442904049617
question prefix = 'who' ^ answer shape = 'Aaaaa' -1.385260853703028
template arg pos tags = NN VBP JJ NN 0.6887997081357169
template arg pos tags = IN NN 0.8704852243706677
lex category (postags) = Unary(WRB VBP NN VB) -0.38124771981028815
question prefix = 'what' ^ answer shape = '1111' -0.7854797519153593
lex category (postags) = Unary(WDT VB DT NN VB NN IN) 0.0
template arg pos tags = CD DT NN NN 0.0
lex category (postags) = Unary(WDT VB DT NN NN IN VBG NNP) -0.11492156147391464
lex category (postags) = Unary(WDT NN VB DT NN NN NN) -0.6683692083181321
question prefix = 'UNK' ^ answer shape = 'Aaaaa' -1.1911711054359722
question prefix = 'what' ^ answer shape = 'aaaa aa aaa Aaaaa Aaaaa' 0.15724188252462604
template arg pos tags = NN CD CD 0.0
lex category (postags) = Unary(WRB JJ NN VBP JJ NNS VB) -0.6898941991973733
lex category (postags) = Unary(WP VBP NN NN VBP VB) 0.3042685151404597
lex category (postags) = Unary(WDT VB NN NN NN VBG) -0.5527179861364466
template prefix be => what 0.0
lex category (postags) = Unary(WP VB VB TO JJ NN) -0.8609996351696461
question prefix = 'what' ^ answer shape = 'aaa Aaaaa aaaa' -0.26669098869025903
question prefix = 'how' ^ isDate -0.9073330901130974
question prefix = 'when' ^ answer shape = 'Aaaa' 0.6391827800072966
lex category (postags) = Identity(CC) -0.8077344035023714
lex category (postags) = Unary(WP VBP NN NN VB VB TO) -0.1711054359722729
question prefix = 'how' ^ isNumber 1.0211601605253557
num conjuncts -1.1762130609266692
lex category (postags) = Unary(WRB JJ NNS VB RB IN DT NN) -0.3283473184968989
question prefix = 'what' ^ answer shape = '11 aaaa' 0.9328712148850784
question prefix = 'where' ^ answer shape = '1111' -0.7971543232396936
template arg pos tags = CD 0.0
lex category (postags) = Unary(WP VBP NN JJ VB) 0.1419190076614374
action type = DropStopAction 0.9996351696461145
question prefix = 'what' ^ answer shape = 'Aa Aaaaa' 0.7643195913900036
template prefix UNK => be 0.7508208682962423
answer from namespace 'nell' -0.6242247354979934
lex category (postags) = Identity(WP) -0.9627873039036848
parser lexical rule = ignoreTypesIdentity 0.0
lex category (postags) = Unary(WDT VB DT NN NN IN DT NN) 0.4035023713973003
question prefix = 'who' ^ answer shape = 'aaa Aaaaa' 0.1944545786209413
question prefix = 'where' ^ answer shape = 'aaa Aaaaa Aaa' 0.8704852243706677
template prefix be => who 0.0
template prefix who => who 1.4611455673112004
lex category (postags) = Unary(WDT NN VB DT NN NN VBP IN) 0.0
question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaa' -0.5705946734768332
template prefix what => how 0.2725282743524261
lex category (postags) = Unary(WP VB JJ NN) 0.0
question prefix = 'what' ^ answer shape = 'Aaaaa Aaa aaaa' 0.2141554177307552
lex category (postags) = Unary(WDT VB DT NN NN IN JJ NN) 0.1908062750820868
lex category (postags) = Unary(WP VBP NN VB) 0.43013498723093757
question prefix = 'what' ^ answer shape = 'Aaaaa?a aaaa' -0.7814666180226195
lex category (postags) = Unary(WP VB DT NN IN NN) -0.8059102517329442
lex category (postags) = Unary(WDT VB DT NN IN NN NNS JJS NN) 0.14921561473914635
lex category (postags) = Unary(WRB JJ NN VB JJ NN NN) -0.44509303174024084
question prefix = 'how many' ^ answer shape = 'Aaaaa' -0.604888726742065
question prefix = 'UNK' ^ answer shape = 'Aaa aaaa aaaa' -0.2002918642831084
answer from namespace 'freebase' 0.704487413352791
lex category (postags) = Unary(WDT VB JJ NNS) -0.4162714337832908
question prefix = 'what' ^ answer shape = '? Aaaa' 0.6431959139000365
question prefix = 'what' ^ answer shape = 'Aaaa Aaaaa Aaaaa' 0.025173294418095585
parser lexical rule = conjIdentity -0.8077344035023714
question prefix = 'how' ^ answer shape = 'aaa aaaa' 0.7074060561838744
question prefix = 'where' ^ answer shape = 'Aaaaa Aaaa' 0.556366289675301
lex type = Identity ^ leftTag = VBG -0.5527179861364466
lex type = Identity ^ leftTag = RB 0.0
question prefix = 'how' ^ answer shape = 'aaaa Aaa Aaaa' -0.7325793506019701
lex category (postags) = Unary(WP VB NN IN NN NN) 0.4035023713973003
lex type = Identity ^ rightTag = WRB -0.8274352426121854
whatDate -0.8011674571324334
lex category (postags) = Unary(WDT VB NN NN) 0.2914994527544692
lex category (postags) = Unary(WDT NN VBP NN JJ NN) 0.0
lex category (postags) = Unary(WDT VB DT JJ NN VB) 0.9029551258664721
question prefix = 'how' ^ answer shape = 'a aaa aaaa' -0.5964976286026997
lex category (postags) = Unary(WDT NN VBP RP DT NN) 0.6450200656694637
template arg pos tags = NN IN JJ NN 0.688070047427946
lex category (postags) = Unary(WDT VB DT NN IN DT NN NN) 1.4761036118205035
template arg pos tags = DT RBS JJ NN 0.0
question prefix = 'what' ^ answer shape = 'Aaaaa--Aaaaa aaaa aaa aaaa--11aa aaaa' 0.7303903684786575
lex category (postags) = Unary(WDT JJ NN VB JJ NN) 0.0
parser lexical rule = fullPatternDobj 0.1484859540313752
tuple freq_i 0.6551340867111581
template arg pos tags = DT NN NN JJ 0.7617657789128056
question prefix = 'UNK' ^ answer shape = 'aaaa' -0.8475009120758847
lex category (postags) = Unary(WRB JJ NN VB DT NN NN) -0.21196643560744255
question prefix = 'when' and isDate 0.9996351696461145
lex category (postags) = Unary(WDT NN VBP JJ NN VB) 0.5370302809193723
query relation is light verb 1.0244436337103249
question prefix = 'where' ^ answer shape = 'Aaa Aaaa Aaaa' -0.6683692083181321
question prefix = 'where' ^ isDate -0.7971543232396936
lex category (postags) = Unary(WDT VB NN NNS NN) 0.09740970448741337
lex category (postags) = Unary(WDT NN VBP DT NN NN NN VB) -0.12513681138270705
template prefix what => UNK 0.2630426851514046
template arg pos tags = RB IN DT NN 0.3283473184968989
question prefix = 'who' ^ answer shape = 'aaa-aaaa-aaaa' 0.3619117110543597
lex category (postags) = Unary(WP VB NN NN) 0.7792776358993068
question prefix = 'where' ^ answer shape = 'Aaa Aaaa' -0.9675300985041956
lex category (postags) = Unary(WDT VB JJ NNS VBP) 0.0
question prefix = 'what' ^ answer shape = 'aaa 111?A' 0.47172564757387814
question prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaaaa' -0.23166727471725646
question prefix = 'what' ^ answer shape = 'aaaa aaa aaaa' -0.7504560379423568
lex category (postags) = Unary(WP VB IN NN) 0.8059102517329442
template prefix who => where -0.8478657424297702
template prefix how => what 0.9098869025902956
lex category (postags) = Unary(WP VBP NNS VB) 0.0
parser lexical rule = fullPatternSubj 1.135716891645385
question prefix = 'who' ^ answer shape = 'Aaa Aaaaa' 0.5804450930317402
lex category (postags) = Unary(WDT VB JJ NN) 1.5804450930317402
question prefix = 'who' ^ answer shape = 'aaa aaa aaaa' -0.1039766508573513
template prefix when => where -0.9996351696461145
template arg pos tags = JJ NN NN 0.0
question prefix = 'what' ^ answer shape = 'Aaaaa'a Aaaaa' 0.34695366654505655
action type = ExecutionAction$ 0.0
question prefix = 'what year' ^ answer shape = '1111' 0.7650492520977745
question prefix = 'how' ^ answer shape = '1 aaaa' 0.09084275811747544
question prefix = 'what' ^ answer shape = 'a aaa' -0.2743524261218534
question prefix = 'who' ^ answer shape = 'Aaaaa (Aa aaa aaaa)' -0.23859905144107996
question prefix = 'UNK' ^ answer shape = 'Aaaa' -0.5169646114556732
question prefix = 'how' ^ answer shape = 'Aaa Aaaaa Aaa Aaa' 0.659978110178767
template arg pos tags = DT JJ NN VBN 0.0
lex category (postags) = Unary(WP VBP NN VB NN TO) 0.0
question prefix = 'how' ^ answer shape = '111.111' 0.9573148485954032
parser lexical rule = fullPatternPoss 1.036118205034659
question prefix = 'what' ^ answer shape = 'aaaa aaaa aaa' -0.5928493250638454
question prefix = 'what' ^ answer shape = 'aaaa aaaa' -0.35716891645384896
template prefix what => where -0.8445822692448012
question prefix = 'UNK' ^ answer shape = 'Aaaaa Aaaaa' 0.19299525720539948
lex category (postags) = Unary(WDT JJ NN VB IN NN) 0.688070047427946
lex type = Unary ^ leftTag = WRB 0.4005837285662167
lex category (postags) = Unary(WP VB NNP NNP VB) -0.5519883254286757
template arg pos tags = NN NNS VBP 0.0
template pair count1 -2.0042169835066455
lex category (postags) = Unary(WP VBP DT NN NN VB) 0.0
parser lexical rule = fullPatternTypeSubj -0.9525720539948924
lex category (postags) = Unary(WDT NN VBP NN NN VBP DT NN NN IN) 0.0
question prefix = 'how' ^ answer shape = '1111' 0.46625319226559647
question prefix = 'what' ^ answer shape = 'Aaaaa a aaaa' 0.6698285297336739
question prefix = 'UNK' ^ answer shape = 'aa aaaa' 0.08464064210142283
lex category (postags) = Unary(WP VBP DT JJ NN NN) 0.20102152499087922
lex category (postags) = Unary(WDT VB IN NN) 0.15286391827800072
lex type = Identity ^ rightTag = 0.0
lex category (postags) = Unary(WDT VB DT NN TO DT NN) 0.7325793506019701
parser lexical rule = whIdentity -2.2597592119664354
lex category (postags) = Unary(WP VBP NN NN NN VB) 0.6636264137176213
template prefix how => what year -0.8011674571324334
question prefix = 'who' ^ answer shape = 'Aaaaa Aaaa' 0.2013863553447648
lex category (postags) = Unary(WDT VB DT JJ JJS NN IN DT NN) 0.0
question prefix = 'what' ^ isDate -0.40386720175118573
template arg pos tags = VBP NN 0.6822327617657789
question prefix = 'what' ^ answer shape = 'aaaa aa aaaa aaaa' 0.21524990879241152
parser lexical rule = fullPatternWhereIs -0.3870850054724553
lex category (postags) = Unary(WDT VB DT NN IN DT NN) -0.8394746442904051
question prefix = 'who' ^ answer shape = 'aaa AAA' -0.7676030645749726
lex category (postags) = Unary(WDT NN VBP JJ NN VB IN) 0.0
lex category (postags) = Unary(WRB VB DT NN NN) -0.8931047063115651
lex category (postags) = Unary(WDT VB JJ NN VB VB) 0.6202116016052536
lex category (postags) = Unary(WP VB NN) 0.0
lex category (postags) = Unary(WDT VB NN NN VBZ NN) -0.30134987230937615
question prefix = 'what' ^ answer shape = 'Aaaaa?Aaaaa Aaaa Aaaa' 0.13644655235315584
question prefix = 'what' ^ answer shape = '11 aaa aaaa' -0.7223641006931777
question prefix = 'when' ^ answer shape = 'Aaaaa 11' -0.5713243341846042
question prefix = 'where' ^ answer shape = 'Aaaaa Aaaaa' 0.5133163079168187
lex type = Identity ^ leftTag = WP -0.9627873039036848
question prefix = 'who' ^ answer shape = 'Aaaaa & Aaaaa' -0.6898941991973733
lex type = Unary ^ leftTag = -0.24735497993433053
question prefix = 'when' ^ isDate 1.9277635899306822
question prefix = 'what' ^ answer shape = 'Aaaaa aa Aa Aaaaa' 0.3889091572418826
lex type = Identity ^ leftTag = VBP 0.21597956950018238
lex category (postags) = Unary(WRB JJ NN VBP DT JJ NN VB) -0.5242612185333819
lex category (postags) = Unary(WDT VB VB NN NN) 0.0
lex category (postags) = Unary(WP VB NN IN CD) 0.9273987595767967
lex type = Identity ^ leftTag = NNS -1.0594673476833272
question prefix = 'who' ^ answer shape = 'Aaa Aaa' 0.1039766508573513
question prefix = 'what' ^ answer shape = 'a ?aaa' -0.9204669828529733
question prefix = 'where' and isDate -0.9996351696461145
lex category (postags) = Unary(WDT VB JJ NN IN NN) 0.8719445457862094
question prefix = 'where' ^ answer shape = 'Aa Aaaaa aaa Aaa Aaaa' -0.041590660342940566
question prefix = 'who' ^ answer shape = 'aaa 11aa aaaa' -0.9689894199197373
template arg pos tags = JJ NNP -0.2520977745348413
question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaaa aaaa' 0.3060926669098869
lex category (postags) = Unary(WP VB VB JJ NN IN NN) 0.0
lex category (postags) = Unary(WRB VB NN NNS NN) 0.0
lex category (postags) = Unary(WP VB DT NN NN VB) 0.9689894199197373
lex category (postags) = Unary(WP VBP VB DT NN) -0.8701203940167822
lex category (postags) = Unary(WDT NN VBP NN VB) -0.4797519153593579
question prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaa' 0.855162349507479
question prefix = 'what' ^ answer shape = 'aaaa Aaaaa' 0.40933965705946734
question prefix = 'where' ^ answer shape = 'a Aaaaa Aaaaa aaaa' 0.8128420284567677
question prefix = 'when' ^ answer shape = '11 Aaaa' 0.5746078073695732
question prefix = 'where' ^ answer shape = 'Aaaa' 0.6267785479751915
question prefix = 'what' ^ answer shape = 'a-aaaa' -0.7544691718350967
lex category (postags) = Unary(WDT NN VBP NN VBP TO) 0.0
question prefix = 'who' ^ answer shape = 'aaaa aaaa' 0.6683692083181321
template prefix what => what 0.7701568770521707
template arg pos tags = JJ NNS VBP 0.0
lex category (postags) = Unary(WRB JJ NN VB IN NN) 0.0
lex category (postags) = Unary(WP VBP CD) -0.9273987595767967
question prefix = 'what' ^ answer shape = '?aaaa aaaa?' 0.01824151769427218
question prefix = 'UNK' ^ answer shape = 'aaa Aaaaa aaaa' 0.9029551258664721
lex category (postags) = Unary(WDT VB DT NN NN JJ NN) -0.7617657789128056
lex category (postags) = Unary(WDT NN VBP JJ NNS VB) 0.0
question prefix = 'what' ^ answer shape = 'aa aaaa' 0.037942356804086086
dropAdverb -0.7544691718350967
template arg pos tags = WDT JJ VB VBP 0.7508208682962423
lex category (postags) = Unary(WP VB VBN NN) 0.0
question prefix = 'when' ^ answer shape = '1111 aaaa aaaa' -0.10981393651951843
lex category (postags) = Unary(WP VBP JJ NNS VBP IN) 0.0
lex category (postags) = Unary(WDT NN VB VB JJ NNP) 0.2520977745348413
template prefix when => when -0.46917183509668003
template arg pos tags = WDT NN 0.0
template prefix who => what -0.21233126596132812
template prefix where => who -0.8704852243706677
template arg pos tags = DT NN VB 0.9875957679678949
lex type = Identity ^ leftTag = CD 0.08609996351696461
lex category (postags) = Unary(WRB VBP DT CD DT NN JJ NN VB) 0.0
template prefix where => how many 0.11528639182780007
lex category (postags) = Unary(WRB VB NN JJ JJ VBP IN) 0.0
template prefix UNK => where 0.0
action type = ParaphraseRule -1.726742064939803
lex category (postags) = Unary(WP VB JJ NN VB) 0.8609996351696461
question prefix = 'what' ^ answer shape = 'AAAA AAAA' 0.04706311565122218
question prefix = 'who' ^ answer shape = 'aaaa aaaa aaaa' 0.02991608901860635
question prefix = 'when' ^ answer shape = 'Aaaaa 11 1111' -0.019336008755928558
lex category (postags) = Unary(WP VB NN NNS JJS NN) -0.4035023713973003
question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aa Aaaaa' 0.5060197008391099
question prefix = 'what' ^ answer shape = 'Aaa aaaa aaaa aaaa' 1.1656329806639913
lex category (postags) = Unary(WDT NN VBP IN NN) 0.008755928493250638
question prefix = 'UNK' ^ answer shape = 'Aaaa Aaa Aaaaa' 0.7508208682962423
question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa aaaa' -0.8566216709230208
template pair count2 -2.9296376158757527
lex category (postags) = Unary(WDT NN VBP NN NN VB TO) 0.0
lex category (postags) = Unary(WDT JJ NN VBP JJ NN) 0.6887997081357169
lex type = Unary ^ leftTag = NN -0.4421743889091573
template arg pos tags = NN NNS NN 0.6431959139000365
question prefix = 'how many' ^ answer shape = 'Aaaaa Aaaaa' -0.2933236045238964
question prefix = 'what' ^ answer shape = 'a aaaa aaaa' -0.4771981028821598
lex category (postags) = Unary(WDT JJ NN VBP DT JJ NN VB) 0.0
question prefix = 'who' ^ answer shape = 'Aaaaa aa-Aaaaa' 0.8059102517329442
lex category (postags) = Unary(WDT JJ NN VBP NN VB) -0.688070047427946
lex category (postags) = Unary(WP VB VBN NNP NNP VBZ NN) -0.03575337468077344
lex category (postags) = Unary(WDT VB DT JJ NN IN NN) 0.0
parser lexical rule = fullPatternDefn -1.2506384531192996
question prefix = 'how' ^ answer shape = 'aaa aaaa aaaa' -0.46625319226559647
parser lexical rule = fullPatternHaveProp 0.026267785479751914
question prefix = 'what' ^ answer shape = 'aaaa' -2.579350601970084
question prefix = 'where' ^ answer shape = 'Aaaaa Aaaa Aaaa' 0.8931047063115651
lex category (postags) = Unary(WDT VB DT NN IN DT JJ NN NN) -0.16307916818679313
question prefix = 'how many' ^ answer shape = 'aaaa' 0.3746807734403502
lex category (postags) = Unary(WDT VB DT NNS IN JJ NN) -0.09157241882524625
question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa' 0.08427581174753729
lex category (postags) = Identity(VB) -0.44326887997081355
question prefix = 'what' ^ answer shape = 'Aaaaa Aaaa' -0.929222911346224
question prefix = 'what' ^ answer shape = 'Aaa Aaaa Aaaa' -0.527544691718351
lex category (postags) = Unary(WDT VB NN JJ VB VB) -0.7672382342210872
lex category (postags) = Unary(WDT NN VB DT NN VB IN) -0.7325793506019701
lex type = Identity ^ rightTag = NN 1.1514045968624589
template arg pos tags = NN NN 0.6763954761036118
uses full parser pattern 0.9996351696461145
question prefix = 'how' ^ answer shape = 'Aaaaa 11' -0.27143378329076984
lex category (postags) = Unary(WDT VB JJ NN NNS NN NN) -0.9547610361182051
question prefix = 'what' ^ answer shape = 'a aaaa' -0.008391098139365227
question prefix = 'what' ^ answer shape = 'aa aaa aaaa' -0.4264866836920832
question prefix = 'when' ^ answer shape = 'Aaaaa 11 , 1111' 0.019336008755928558
template arg pos tags = NNS 0.0
lex category (postags) = Unary(WDT NN VBP NN NN VB IN) -0.3268879970813572
lex category (postags) = Unary(WDT VB VBG NN NNS NN) 0.11492156147391464
lex category (postags) = Unary(WRB VB JJ NN VB) -0.8478657424297702
question prefix = 'who' ^ answer shape = 'Aaa Aaaa' -0.016782196278730455
lex category (postags) = Unary(WDT NN VB IN DT NN) 0.0
parser lexical rule = fullPatternProperty 1.4739146296971908
lex category (postags) = Unary(WP VBP NN NNS VB) 0.0
question prefix = 'what' ^ answer shape = 'aaaa-aaaa' 0.6278730390368479
lex category (postags) = Unary(WP VB DT NN IN DT JJ NN) 0.0
question prefix = 'who' ^ answer shape = 'aaa aaaa' 0.18642831083546152
question prefix = 'what' ^ isNumber -0.39255746078073694
template arg pos tags = JJ NN IN JJ 0.0
template prefix UNK => why 0.4005837285662167
lex category (postags) = Unary(WDT VB DT NN IN CD DT NN NN) 0.7303903684786575
template prefix UNK => when 0.0
lex type = Unary ^ leftTag = VBP 0.0
question prefix = 'who' ^ isDate -0.8478657424297702
lex category (postags) = Unary(WDT VB DT NN NN VB IN) 0.0
template pair count12 2.0999082942234693
question prefix = 'who' ^ answer shape = 'Aaaaa Aaaaa' 1.1342575702298432
lex category (postags) = Unary(WRB JJ NN VBP JJ NN VB) -0.9368843487778183
template prefix how many => what 0.5403137541043415
lex category (postags) = Unary(WDT VB DT NN IN NN) 1.3495074790222548
question prefix = 'what' ^ answer shape = 'AAAA' -0.9927033929222913
lex category (postags) = Unary(WRB VB JJ NN) -0.5899306822327618
question prefix = 'what' ^ answer shape = 'Aa'aaa-aa' 0.0722364100693178
tuple popularity_i 0.5574075851565106
template arg pos tags = WP VBP NN NN 0.0
template arg pos tags = '' NN '' 0.0
lex category (postags) = Unary(WDT VBP NN NN) 0.0
template prefix UNK => who 0.01568770521707406
question prefix = 'be' ^ answer shape = 'Aaaaa' 0.26158336373586283
lex category (postags) = Unary(WRB VBP NNP NNP VB) -0.041590660342940566
lex category (postags) = Unary(WP VBP DT NN VB) -0.9573148485954032
template arg pos tags = VB JJ NN 0.0
lex type = Identity ^ leftTag = VB 1.150674936154688
question prefix = 'who' ^ answer shape = 'Aaaaa aaaa 111 aaaa aaaa aaaa' 0.704487413352791
template arg pos tags = WRB VBP NNP NNP 0.0
question prefix = 'what' ^ answer shape = 'aa aaaa aaaa' -0.3889091572418826
template arg pos tags = RB 0.543232396935425
lex category (postags) = Unary(WRB VB NN RB VB) 0.09923385625684056
template arg pos tags = NN IN NN 0.0
template arg pos tags = VBN JJ 0.0
template arg pos tags = NNS JJS NN -0.4035023713973003
lex category (postags) = Unary(WRB JJ NN VBP NN NN VB) 1.3940167821962788
question prefix = 'who' ^ answer shape = 'Aaa' 0.4035023713973003
template arg pos tags = VB JJ NNP 0.2520977745348413
question prefix = 'where' ^ answer shape = 'Aaaa aaa Aaaaa' -0.8898212331265961
lex type = Identity ^ leftTag = WDT -0.8898212331265961
question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa' 0.05107624954396206
question prefix = 'what year' ^ isDate 0.7650492520977745
question prefix = 'when' ^ answer shape = 'aaa 1111 'a' 0.29952572053994897
question prefix = 'how' ^ answer shape = 'aaaa' -0.34950747902225465
question prefix = 'what' ^ answer shape = 'Aaa Aaaaa' -0.5257205399489238
template arg pos tags = WDT NN VB NN -0.46990149580445095
lex category (postags) = Unary(WRB VBP NN NN VB) 0.0
question prefix = 'who' ^ answer shape = 'Aaaaa aaaa' -0.608172199927034
question prefix = 'UNK' ^ answer shape = 'Aaaaa.' 0.5169646114556732
question prefix = 'UNK' ^ isNumber 0.0
question prefix = 'how many' ^ answer shape = 'aaaa://aa.aaaa.aaa/aaaa/Aaa%11Aaaaa%11Aaaa%11(AA%11aaaa)' -0.5242612185333819
lex category (postags) = Unary(WDT JJ NN VB RB IN DT NN) 0.3283473184968989
lex category (postags) = Unary(WDT NN VB DT NN NN JJ) 0.7617657789128056
template arg pos tags = VBP DT NN -1.1514045968624589
template arg pos tags = DT JJ NN -1.2013863553447646
template arg pos tags = JJ NNS NN -0.6504925209777453
question prefix = 'UNK' ^ isDate 0.0
question prefix = 'what' ^ answer shape = 'Aaaa' -0.6369937978839839
template prefix UNK => what -1.6563298066399126
parser lexical rule = fullPatternCopRel -0.48704852243706687
question prefix = 'what' ^ answer shape = '?AAAA' -0.5056548704852244
question prefix = 'where' ^ answer shape = 'Aa' 0.09923385625684056
steps -3.2630426851514045
lex category (postags) = Unary(WDT NN VBP DT NN) -0.16380882889456405
question prefix = 'who' ^ answer shape = 'Aaa 11-aaaa-aaa' -0.15432323969354256
question prefix = 'when' ^ answer shape = '1111' 1.3772345859175483
lex category (postags) = Unary(WDT VB DT NN IN NN NN) -1.363006202116016
template prefix when => what month 0.0
action type = AbstractArgAction -2.7347683327252827
lex category (postags) = Unary(WRB VB DT NN NNS VB) 0.0
template arg pos tags = WRB VB VBN -0.8898212331265961
lex category (postags) = Unary(WDT RB VBP NN NN) -0.3042685151404597
lex category (postags) = Unary(WP VBP NNP) 0.0
question prefix = 'what' ^ answer shape = 'Aaaa aa aaa Aaaa' 0.8515140459686246
answer from namespace 'openie4' -1.7599416271433783
question prefix = 'when' ^ answer shape = 'Aaa' 0.10981393651951843
question prefix = 'what' ^ answer shape = '?aaaa aaaa ?' -0.5946734768332725
lex category (postags) = Unary(WDT VB DT NN IN DT NN NN NN) -0.011309740970448741
lex category (postags) = Unary(WRB VB VBN NN NNS NN) -0.8898212331265961
lex category (postags) = Unary(WP VB NNP NNP) 0.5519883254286757
question prefix = 'where' ^ answer shape = 'a aaaa' -0.8128420284567677
lex category (postags) = Unary(WRB JJ NN VBP VB NN NNS) -0.6431959139000365
question prefix = 'what' ^ answer shape = 'aaaa.aaa' -0.3542502736227654
lex category (postags) = Unary(WRB VB NN) -0.9230207953301715
lex category (postags) = Unary(WP VBP NN CD CD) -0.47318496898942
lex category (postags) = Unary(WRB VB NN VB) -0.556366289675301
question prefix = 'how' ^ answer shape = 'aaa-AA, aaa-aaaa aaaa aaaa' 0.8847136081721999
question prefix = 'who' ^ isNumber -0.4188252462604889
template arg pos tags = JJ NN VB -0.02006566946369938
lex category (postags) = Unary(WRB VB NN NN VBZ NN NN) 0.7887632251003283
question prefix = 'what' ^ answer shape = 'Aaaaa'a' -0.03319956220357534
lex category (postags) = Unary(WDT NN VB NNS VB IN) 0.0
parser lexical rule = fullPatternTypeDobj 0.21853338197738048
question prefix = 'how' ^ answer shape = '111 aaaa aaaa' -0.8847136081721999
lex category (postags) = Unary(WDT VB DT JJS NN IN DT NN) 0.0
question prefix = 'what' ^ answer shape = 'aaaa-aaaa aaaa' 0.43305363006202113
template arg pos tags = NNP NNP -0.5519883254286757
template arg pos tags = NN VBP NN -0.9109813936519519
lex category (postags) = Unary(WP VBP NN NN VB) 1.2323969354250273
lex type = Unary ^ rightTag = 0.0
lex category (postags) = Unary(WDT VB NN IN NN) -0.9496534111638089
lex category (postags) = Unary(WDT NN VBP DT JJ NN VBP JJ NN IN) 0.0
template arg pos tags = JJ JJ 0.6504925209777453
template arg pos tags = VBP NNS 0.0
question prefix = 'where' ^ answer shape = 'aaaa' -0.809923385625684
template prefix UNK => how 0.0
question prefix = 'where' ^ answer shape = 'aaaa-aaaa' -0.6950018241517695
lex category (postags) = Unary(WRB VB VBN NN) 1.8128420284567677
query similarity with question 3.3445331594912027
question prefix = 'what' ^ answer shape = 'aaaa.' 0.479022254651587
template arg pos tags = NN NNS JJS NN 0.14921561473914635
template arg pos tags = JJ VB VBP NN -0.7508208682962423
lex category (postags) = Unary(WDT NN VB NN VB) 0.1977380518059103
template arg pos tags = VB DT NN 0.03246990149580445
question prefix = 'how many' ^ answer shape = 'Aaaa Aaaaa' 0.9875957679678949
lex category (postags) = Unary(WP VBP NN NN VBP) 0.0
lex category (postags) = Unary(WDT VB DT NN) 0.0
question prefix = 'when' ^ isNumber 1.1787668734038672
lex category (postags) = Unary(WP VBP DT NN NN NN) 0.0
question prefix = 'who' ^ answer shape = 'aaa Aaa Aaaa Aaaa' 0.39584093396570597
lex type = Identity ^ leftTag = JJ 1.4928858080992338
lex type = Unary ^ leftTag = CD 0.7935060197008391
question prefix = 'what' ^ answer shape = '1,111a' -0.3535206129149946
question prefix = 'who' ^ answer shape = 'aaa Aaaaa Aaaaa' -0.3619117110543597
question prefix = 'where' ^ answer shape = 'aaa AAA' 0.7971543232396936
lex category (postags) = Unary(WRB VB NN VBN) 0.8777818314483765
question prefix = 'how' ^ answer shape = 'Aaaaa' -0.8011674571324334
template prefix who => when -0.9689894199197373
question prefix = 'when' ^ answer shape = 'Aaaaa 1 , 1111' -0.3914629697190807
lex category (postags) = Unary(WDT NN VB DT JJ NN VB) 0.0
question prefix = 'how many' ^ answer shape = 'Aaaaa Aaaa' 0.1495804450930317
template arg pos tags = JJ 1.038672017511857
lex category (postags) = Unary(WDT VB VB JJR NN) 0.0
lex category (postags) = Unary(WDT NNS DT NN IN JJ NN) -0.1908062750820868
question prefix = 'what' ^ answer shape = 'aaaa aa aaaa aaaa aaaa aaaa aaa aaaa aa aaaa aaaa' 0.6840569135352061
lex category (postags) = Identity(WRB) -0.4071506749361547
lex category (postags) = Unary(WP VBP VB NN IN DT NN) -0.2002918642831084
lex type = Identity ^ leftTag = WRB -0.8077344035023714
template prefix when => how many -0.44509303174024084
question prefix = 'what year' and isDate 0.9996351696461145
lex category (postags) = Unary(WDT JJ NN VBP NN NNS VB) 0.0
question prefix = 'what' ^ answer shape = 'AAA' 0.269974461875228
question prefix = 'how' ^ answer shape = '11 aaaa' 0.10871944545786216
question prefix = 'what' ^ answer shape = 'aaaa?a aaaa aaaa' -0.037942356804086086
lex category (postags) = Unary(WP VBP NN VB IN) 0.23823422108719444
question prefix = 'how many' ^ isDate 0.0
template prefix how => where -0.10871944545786216
lex category (postags) = Unary(WDT VB DT JJS NN VB RB VB) -0.29186428310835466
template arg pos tags = NN VBP 0.0
action type = TemplatePair -2.7347683327252827
lex category (postags) = Unary(WP VBP NN) -1.8664720904779277
template prefix where => when -0.9996351696461145
lex category (postags) = Unary(WDT VB NN IN NN JJ) 0.7311200291864283
lex category (postags) = Unary(WP VBP VB DT NN IN NN) -0.9565851878876322
question prefix = 'who' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa' -0.9273987595767967
lex category (postags) = Unary(WDT VB DT JJ NN IN NNP) 0.0
template arg pos tags = JJ VB 0.0
lex category (postags) = Unary(WDT VB DT JJ NN) -1.3451295147756293
question prefix = 'who' ^ answer shape = 'aaaa' -0.7351331630791682
lex category (postags) = Identity(CD) 0.8796059832178037
question prefix = 'what' ^ answer shape = 'a aaaa aaa' 0.7617657789128056
template arg pos tags = NN VB 1.20977745348413
lex category (postags) = Unary(WDT NN WDT NN VB) 0.0
lex category (postags) = Unary(WDT VB DT NN NN IN DT JJ NN) -0.07515505290040136
lex category (postags) = Unary(WRB VB DT PRP JJ NN) 0.0
question prefix = 'where' ^ isNumber -1.5103976650857351
lex category (postags) = Unary(WDT NN VBP NN VBP VB) 0.0
lex category (postags) = Unary(WP VB DT JJ NN IN NN) 0.0
lex category (postags) = Unary(WDT VB DT NN NN) -0.41663626413717614
lex category (postags) = Unary(WP VB DT NN NN IN DT JJ NN NN) 0.0
question prefix = 'what' ^ answer shape = 'Aaaaa' -0.6917183509668005
lex category (postags) = Identity(WRB RB) 0.0
lex type = Unary ^ rightTag = VB -0.4421743889091573
template prefix where => UNK 1.035388544326888
lex category (postags) = Unary(WP VBP DT NN VB IN) 0.16380882889456405
lex category (postags) = Identity(NNS) 0.0
parser lexical rule = fullPatternWhenIn 0.6410069317767237
template arg pos tags = NN -2.1280554542137904
question prefix = 'what' ^ answer shape = 'Aaaa Aaaaa' 0.32761765778912805
question prefix = 'what' ^ answer shape = 'Aaaaa AAa' -0.08099233856256838
template prefix who => how many -0.6898941991973733
template is typed -0.9689894199197373
lex category (postags) = Unary(WDT NN VBP NN VB NN IN) -0.9109813936519519
tuple conf_f -0.8841977847922853
question prefix = 'who' ^ answer shape = 'AA-Aa Aaaaa' -0.704487413352791
lex category (postags) = Unary(WRB VBP NN JJ VB VB) 0.0
lex category (postags) = Unary(WDT VB NN) 0.7344035023713973
question prefix = 'what' ^ answer shape = 'aa/aaa' -0.16380882889456405
question prefix = 'how' ^ answer shape = 'AAA AAAA' -0.5180591025173295
lex category (postags) = Unary(WDT VB DT NN IN NNP) 0.0
template arg pos tags = DT NN NN -0.19919737322145203
lex category (postags) = Unary(WDT CD NN VBP JJ NN) -0.6887997081357169
lex type = Identity ^ leftTag = NNP 1.3812477198102882
lex category (postags) = Unary(WDT NN VBP DT JJ NN VB) 0.07515505290040136
question prefix = 'what' ^ answer shape = 'Aaa Aaaaa aaa Aaaa aa aaa Aaaaa Aaaaa' -0.5501641736592484
lex category (postags) = Unary(WDT NN VB DT NN VB) -0.26705581904414444
question prefix = 'when' ^ answer shape = 'Aaaaa Aaaaa' -0.9959868661072602
template arg pos tags = DT NN NN VB 0.6683692083181321
question prefix = 'what' ^ answer shape = '?Aaaaa ?' 0.7672382342210872
template prefix when => UNK -0.10981393651951843
lex category (postags) = Unary(WP VB DT NN IN NN VBN) 0.0
lex category (postags) = Unary(WDT NN VBP NN JJ VB) 0.0
question prefix = 'who' ^ answer shape = 'Aaaaa aa Aaaaa' 0.8318132068588107
lex category (postags) = Identity(VBP) 0.0
lex category (postags) = Unary(WDT VB DT NN IN DT RBS JJ NN) 0.0
template prefix where => where -0.005107624954395984
template arg pos tags = WDT NN VBP NN 0.4005837285662167
lex category (postags) = Unary(WRB VBP NN VB NN IN) 0.0
question prefix = 'UNK' ^ answer shape = 'aaaa aaaa' -0.055454213790587376
lex category (postags) = Unary(WDT VB DT NN NN IN NN NN) 0.0
lex category (postags) = Unary(WDT VB NNP) 0.0
lex category (postags) = Unary(WDT VB IN NN NN) -0.05107624954396206
template arg pos tags = NN VBP NN VB 0.0
lex category (postags) = Unary(WDT VBP NN NN VB IN) -0.6410069317767239
lex category (postags) = Unary(WP VB DT NN IN NN CD CD) 0.47318496898942
lex category (postags) = Identity(.) 0.0
question prefix = 'what' ^ answer shape = 'Aaa Aaaaa Aaaaa' -0.04377964246625321
question prefix = 'what' ^ answer shape = 'Aaaaa Aaaa Aaaa' 1.3090113097409706
lex category (postags) = Unary(WDT NN VB NN VB IN) 0.8445822692448012
lex category (postags) = Unary(WDT NN VB VBP NN) 0.0
template arg pos tags = VB NN VBN -0.8777818314483765
question prefix = 'what' ^ answer shape = 'AA Aaaaa' 0.9452754469171835
lex category (postags) = Unary(WP VBD NN) -0.1039766508573513
lex category (postags) = Unary(WDT VB DT NN IN NN NNS NN) 0.6431959139000365
lex category (postags) = Unary(WRB VBP NN VBN IN) 0.0
================================================
FILE: oqa-core/questions.txt
================================================
Who assassinated JFK?
================================================
FILE: oqa-core/src/main/resources/application.conf
================================================
qa.maxDerivs = 100
qa.maxUQueries = 100
qa.maxParaphrases = 100
qa.maxAnswerGroups = 50
qa.defaultParaphraser = templatesLm
qa.defaultParser = regex
qa.defaultExecutor = identity
qa.defaultGrouper = basic
qa.defaultScorer = numDerivations
triplestore.url = "http://localhost:8983/solr/triplestore"
triplestore.maxHits = 100
triplestore.cacheSize = 100000
triplestore.timeout = 5000
triplestore.skipTimeouts = true
triplestore.namespaces = ["reverb", "freebase", "probase", "openie4", "nell"]
triplestore.skipNamespaces = "^$"
paraphrase.identityScore = 1.0
paraphrase.defaultLm = 1.0
paraphrase.defaultPmi = 1.0
paraphrase.template.maxHits = 100
paraphrase.template.url = "http://localhost:8985/solr/paraphrase"
paraphrase.template.maxArgLength = 4
paraphrase.template.scoringModel = pmiLm
paraphrase.template.minPmi = -25.0
paraphrase.template.maxPmi = 0.0
paraphrase.template.scale = true
paraphrase.template.multipleParaphrases = false
paraphrase.template.timeout = 2000
paraphrase.template.useTypes = false
paraphrase.template.skipTimeouts = true
paraphrase.template.numTemplates = 300000
paraphrase.template.probFalsePos = 0.01
paraphrase.template.stopTemplatesPath = "/edu/knowitall/paraphrasing/template/templatesStops.txt"
paraphrase.rules.ruleSetPath = "/edu/knowitall/paraphrasing/rules/rules.txt"
relsyn.url = "http://localhost:8984/solr/relsyn"
relsyn.scale = true
relsyn.maxPmi = 0.0
relsyn.minPmi = -32.0
relsyn.maxHits = 100
relsyn.cacheSize = 100000
relsyn.timeout = 2000
relsyn.skipTimeouts = true
relsyn.multipleSyns = false
lm.url = "http://localhost:9090"
lm.timeout = 2000
lm.batchSize = 100
lm.minValue = -35.0
lm.maxValue = -5.0
lm.scale = true
lm.retries = 2
lm.cacheSize = 100000
lm.skipTimeouts = true
eval.output.file = output.txt
eval.config.file = config.txt
eval.name.file = name.txt
eval.score.file = scores.txt
eval.pr.file = pr
random.seed = 123
search.beamType = typed
search.beamSize = 10000
search.goalSize = 1000
search.maxIters = 100
search.maxSearchTimeSec = 20
search.expandPerIter = 16
search.transitions.parse = true
search.transitions.templateParaphrase = true
search.transitions.relSyn = true
search.transitions.isaRelSyn = true
search.transitions.execute = true
search.transitions.project = true
search.transitions.ruleParaphrase = true
search.transitions.dropStops = true
learning.oracleMode = "interactive"
learning.labelsPath = "../oqa-data/knowitall.cs.washington.edu/oqa/data/questions/labels.txt"
learning.outputsPath = "models"
learning.numIters = 10
parsing.cg.lexiconClasspath = "/edu/knowitall/parsing/cg/lexicon.txt"
parsing.cg.macroClasspath = "/edu/knowitall/parsing/cg/macros.txt"
parsing.cg.lexicalRuleKeep = ".*"
parsing.cg.lexicalRuleSkip = "^$"
parsing.cg.maxConjuncts = 2
tuplefeatures.resourcePath = "/edu/knowitall/search/qa/tupleFeatures.txt"
scoring.weights = models/full.txt
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/execution/stoplist.txt
================================================
there
others
anything
anybody
anyone
the book
the people
the woman
all
the man
someone
's
not
one
the ones
another option
no one
another
many people
the world
the right
the area
today
stuff
the way
many kinds
the result
both
neither
some people
the name
people
i've
everyone
every one
i'll
inc.
inc
ltd
ltd.
most
ever
the page
such
the following
the first
the second
the third
the last
the other
the others
each
all
following
here
text/html
the fact
lot
lots
more
less
former
text/html
i've
ive
i'm
im
i'd
who
what
where
when
why
how
sometimes
sometime
never
much
little
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/execution/stopregex.txt
================================================
(?i)^this\b.*
(?i)^'s.*
(?i)^his\b.*
(?i)^her\b.*
(?i)^its\b.*
(?i)^their\b.*
(?i)^our\b.*
(?i)^my\b.*
(?i)^your\b.*
(?i)^these\b.*
(?i)^those\b.*
(?i)^this\b.*
(?i)^that\b.*
(?i)^another\b.*
(?i)^many\b.*
(?i)^some\b.*
(?i)^all\b.*
(?i)^other\b.*
(?i)^both\b.*
(?i)^most\b.*
^\p{Punct}+.*
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/paraphrasing/rules/rules.txt
================================================
inWhatDate @inOn @whatwhich @dateWord (:@any+) := When $rest
whatDate @whatwhich @dateWord (:@any+) := When $rest
commonPrefix1 @quant? (:@any+) := $rest
commonPrefix2 ? @quant? (:@any+) := $rest
commonPrefix3 ? @quant? (:@any+) := $rest
commonPrefix4 ? @quant? (:@any+) := $rest
dropTypeOf (:@any*) @type @of (:@any*) := $left $right
dropNameOf (:@any*) @det @of (:@any*) := $left $right
posToOf (:@any*) (:@np) @pos (:@np) (:@any*) := $left $rel of $arg $right
presProgToSimple (:@any*) @be (:@vbg) (:@any*) := $left $rel $right
dropAdverb (:@any*) @adv+ (:@any*) := $left $right
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/paraphrasing/template/templatesStops.txt
================================================
what be $y ?
$y ?
what $y ?
what be the $y ?
what be a $y ?
what do $y mean ?
who be $y ?
what do $y do ?
how $y ?
who $y ?
what do $y ?
how do $y ?
where $y ?
how many $y ?
how do you $y ?
what be the meaning of $y ?
what be the name of the $y ?
why $y ?
what $y do ?
how much $y ?
what be an $y ?
where do $y ?
who be the $y ?
where be the $y ?
what dose $y mean ?
how be $y ?
be $y ?
the $y ?
why do $y ?
when do $y ?
when $y ?
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/argFilters.txt
================================================
^many
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/lexicon.txt
================================================
# ruleName syntactic-pattern := semantic-type semantic-pattern
fullPatternSubj @whowhat (:@reverb) (:@np) := unary $x : ($x, $rel, $arg)
fullPatternDobj @whowhat @aux (:@np) (:@reverb) := unary $x : ($arg, $rel, $x)
fullPatternWhereIn @where (:@aux) (:@np) (:@reverb) := unary $x : ($arg, $aux $rel in, $x)
fullPatternWhereIs @where (:@aux) (:@np) := unary $x : ($arg, $aux in, $x)
fullPatternWhenIn @when (:@aux) (:@np) (:@reverb) := unary $x : ($arg, $aux $rel in, $x)
fullPatternWhenOn @when (:@aux) (:@np) (:@reverb) := unary $x : ($arg, $aux $rel on, $x)
fullPatternWhenBeIn @when @be (:@np) := unary $x : ($arg, be in, $x)
fullPatternWhenBeOn @when @be (:@np) := unary $x : ($arg, be on, $x)
fullPatternTypeDobj (@whatwhich|@howmany) (:@np) @aux (:@np) (:@reverb) := unary $x : ($x, instance of, $type) ($arg, $rel, $x)
fullPatternTypeSubj (@whatwhich|@howmany) (:@np) (:@reverb) (:@np) := unary $x : ($x, instance of, $type) ($x, $rel, $arg)
fullPatternProperty @what @be @det (:@np) @of (:@np) := unary $x : ($arg, $rel, $x)
fullPatternDefn @whowhat @be (:@np) := unary $x : ($arg, instance of, $x)
fullPatternRelType @whatwhich (:@np) @aux (:@np) (:@reverb) := unary $x : ($arg, $rel $type, $x)
fullPatternCop @whatwhich (:@np) @be (:@np) := unary $x : ($arg, $rel, $x)
fullPatternHaveProp @wh (@be @det)? (:@np) (@aux|@relMarker) (:@np) @have := unary $x : ($arg, $rel, $x)
fullPatternPoss @wh @be (:@np) @pos (:@np) := unary $x : ($arg, $rel, $x)
fullPatternCopRel @wh (:@noun) @be (:@np) := unary $x : ($arg, $rel, $x)
whIdentity @wh := identity
auxIdentity @aux := identity
punctIdentity @punct := identity
relMarkerIdentity @relMarker := identity
conjIdentity @conj := identity
ignoreTypesIdentity @ignoreTypes := identity
quantIdentity @quant := identity
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/macros.txt
================================================
noun
commonNoun
propNoun
adj
adv
verb
det
the
num
conj
wh | ( )
whowhat
whatwhich
what
how
howmany
some
quant ?
where
when
ignoreTypes
aux
be
pos
nounMod
np (@nounMod* @noun+ @nounMod*)+
vp (@aux? @adv* @verb+ @adv*)+
relMarker
prep * *
reverb (@vp) | (@vp @prep) | (@vp @np @prep)
reverbNoPrep @vp @np
type
of
punct
there
dateWord
any
inOn
have
vbg
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/relFilters.txt
================================================
^(do|does|did|doing)$
^(be|is|are|was|were)$
^(has|have|had|having)$
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/search/qa/isa.txt
================================================
is a instance of false 1 1 1 0
is an instance of false 1 1 1 0
be a instance of false 1 1 1 0
be an instance of false 1 1 1 0
isa instance of false 1 1 1 0
================================================
FILE: oqa-core/src/main/resources/edu/knowitall/search/qa/tupleFeatures.txt
================================================
conf_f min 0 1 linear
num_extrs_i min 1 100 log
freq_i min 1 24712 log
popularity_i min 1 13045 log
conceptVagueness_f min 0 0.848391051179 linear
================================================
FILE: oqa-core/src/main/resources/log4j.properties
================================================
# Root logger option
log4j.rootLogger=INFO, stdout
# Direct log messages to stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
================================================
FILE: oqa-core/src/main/resources/logback.xml
================================================
System.err
%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/eval/Oracle.scala
================================================
package edu.knowitall.eval
import edu.knowitall.tool.tokenize.StanfordTokenizer
import edu.knowitall.tool.postag.StanfordPostagger
import edu.knowitall.tool.stem.MorphaStemmer
import java.io.InputStream
import scala.io.Source
import java.io.FileInputStream
import java.io.PrintWriter
import java.io.File
import org.slf4j.LoggerFactory
trait Oracle {
def inputs: List[String]
def getLabel(input: String, output: String): Option[Boolean]
def getCorrectOutputs(input: String): List[String]
def isCorrect(input: String, output: String): Boolean = {
getLabel(input, output) match {
case Some(label) => label
case _ => throw new IllegalStateException(s"No label for ($input, $output)")
}
}
def hasLabel(input: String, output: String): Boolean = {
getLabel(input, output) match {
case Some(label) => true
case _ => false
}
}
def toTrainingSet: List[(String, Set[String])] = {
for (i <- inputs; outputs = getCorrectOutputs(i).toSet; if outputs.size > 0)
yield (i, outputs)
}
}
trait UpdateableOracle extends Oracle {
def save
def update(input: String, output: String, label: Boolean)
}
object Oracle {
val tokenizer = new StanfordTokenizer()
val tagger = new StanfordPostagger()
val lemmatizer = new MorphaStemmer()
def normalizePair(input: String, output: String) = (normalize(input), normalize(output))
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}", "");
def normalize(t: String): String = {
val s = decompose(t)
val tokens = tokenizer(s)
if (tokens.size > 0) {
val tagged = tagger.postagTokenized(tokens)
val result = tagged.map(lemmatizer.lemmatizePostaggedToken(_).lemma.toLowerCase)
result.mkString(" ")
} else {
s.toLowerCase().mkString(" ")
}
}
def readLine(line: String): (String, String, Boolean) = {
val fields = line.split("\t", 4)
fields match {
case Array(tag, l, i, o) => (normalize(i), normalize(o), getBoolean(l))
case _ => throw new IllegalArgumentException(s"Could not parse line: '$line'")
}
}
def getBoolean(s: String) = s.toLowerCase() match {
case "0" => false
case "false" => false
case _ => true
}
def labelsFromInputStream(is: InputStream) = {
val triples = Source.fromInputStream(is, "UTF8").getLines.filter(_.startsWith("LABEL\t")).map(readLine)
triples.map(triple => (normalize(triple._1), normalize(triple._2)) -> triple._3).toMap
}
def fromFile(fn: String) = labelsFromInputStream(new FileInputStream(fn))
}
class FileOracle(path: String) extends UpdateableOracle {
val logger = LoggerFactory.getLogger(this.getClass)
val file = new File(path)
val labels = if (file.exists()) {
scala.collection.mutable.Map(Oracle.fromFile(path).toSeq: _*)
} else {
scala.collection.mutable.Map[(String, String), Boolean]()
}
def correctOutputs = {
val pairs = for ((input, output) <- labels.keys; if labels.getOrElse((input, output), false)) yield (input, output)
val grouped = pairs.groupBy(_._1).map { case (k,v) => (k,v.map(_._2).toList)}
grouped.toMap
}
override def inputs = {
labels.keys.map(_._1).toList
}
def normalize = Oracle.normalize _
override def getLabel(input: String, output: String) = {
val i = normalize(input)
val o = normalize(output)
val attempt = labels.get((i, o))
attempt match {
case Some(value) => Some(value)
case None => labels.get(normalize(i), normalize(o))
}
}
override def getCorrectOutputs(input: String): List[String] = correctOutputs.getOrElse(Oracle.normalize(input), List())
def save = {
logger.debug(s"Saving labels to $path")
val output = new PrintWriter(path, "UTF8")
for (((i, o), l) <- labels) output.println(s"LABEL\t$l\t$i\t$o")
output.close()
}
def update(i: String, o: String, label: Boolean) = {
labels += ((normalize(i), normalize(o)) -> label)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/eval/OutputRecord.scala
================================================
package edu.knowitall.eval
abstract class OutputRecord {
def input: String
def output: String
def score: Double
override def toString = s"$input\t$output\t$score"
}
object OutputRecord {
private case class OutputRecordImpl(input: String, output: String,
score: Double) extends OutputRecord {
def apply(input: String, output: String, score: Double) =
OutputRecordImpl(input, output, score)
}
def apply(input: String, output: String, score: Double): OutputRecord = OutputRecordImpl(input, output, score)
def fromLine(line: String): OutputRecord = line.split("\t").toList match {
case i :: o :: s :: rest => OutputRecordImpl(i, o, s.toDouble)
case _ => throw new IllegalArgumentException(s"Could not parse line: $line")
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/eval/SystemOutput.scala
================================================
package edu.knowitall.eval
import scala.io.Source
import scala.collection.JavaConverters._
import java.io.File
import com.typesafe.config.ConfigFactory
import java.io.PrintWriter
import com.typesafe.config.ConfigRenderOptions
abstract class SystemOutput {
def inputs: List[String] = records.map(_.input).distinct
def inputOutputs: List[(String, String)] = records.map(r => (r.input, r.output)).toList.distinct
def config: Map[String, String]
def path: String
def normalize = Oracle.normalize _
def recordsFor(input: String, output: String): List[OutputRecord] = {
val in = normalize(input)
val on = normalize(output)
inputOutputToRecords.getOrElse((in, on), List()).toList
}
private val inputToRecords = records.groupBy(r => normalize(r.input))
def recordsFor(input: String): List[OutputRecord] = inputToRecords.getOrElse(normalize(input), List())
private val inputOutputToRecords = records.groupBy(r => (normalize(r.input), normalize(r.output)))
def topOutputFor(input: String): Option[String] = {
inputToRecords.get(normalize(input)) match {
case Some(l) => Some(l.maxBy(_.score).output)
case _ => None
}
}
def topScoreFor(input: String, output: String): Option[Double] = {
recordsFor(input, output) match {
case Nil => None
case l: List[OutputRecord] => Some(l.maxBy(_.score).score)
}
}
def hasOutputFor(input: String) = inputToRecords.contains(input)
def records: List[OutputRecord]
def save = {
val dir = new File(path)
if (dir.exists() && !dir.isDirectory()) throw new IllegalStateException(s"$dir exists but is not a directory")
if (!dir.exists()) dir.mkdirs()
val outputPath = new File(path, SystemOutput.outputFile)
val outputWriter = new PrintWriter(outputPath)
records.foreach(outputWriter.println(_))
outputWriter.close()
val configPath = new File(path, SystemOutput.configFile)
val configWriter = new PrintWriter(configPath)
for ((k, v) <- config) configWriter.println(s"$k\t$v")
configWriter.close()
}
}
case object SystemOutput {
val conf = ConfigFactory.load()
val outputFile = conf.getString("eval.output.file")
val configFile = conf.getString("eval.config.file")
val nameFile = conf.getString("eval.name.file")
private case class SystemOutputImpl(path: String, records: List[OutputRecord], config: Map[String, String]) extends SystemOutput {
def apply(path: String, records: List[OutputRecord], config: Map[String, String]) = SystemOutputImpl(path, records, config)
}
def apply(path: String, records: List[OutputRecord], config: Map[String, String]): SystemOutput = new SystemOutputImpl(path, records, config)
def apply(path: String, records: List[OutputRecord]): SystemOutput = new SystemOutputImpl(path, records, getCurrentConfig)
def loadRecords(path: String): List[OutputRecord] = {
val lines = Source.fromFile(new File(path, outputFile), "UTF8").getLines
lines.map(OutputRecord.fromLine).toList
}
def loadConfig(path: String) = {
val lines = Source.fromFile(new File(path, configFile)).getLines
val pairs = lines map { line: String =>
line.split("\t", 2) match {
case Array(k, v) => (k, v)
case _ => throw new IllegalArgumentException(s"Could not parse line: $line")
}
}
pairs.toMap
}
def getCurrentConfig = conf.root().asScala.map(pair => (pair._1, pair._2.render(ConfigRenderOptions.concise))).toMap
def fromPath(path: String): SystemOutput = SystemOutputImpl(path, loadRecords(path), getCurrentConfig)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/eval/qa/QAOutputRecord.scala
================================================
package edu.knowitall.eval.qa
import edu.knowitall.eval.OutputRecord
import edu.knowitall.execution.Tuple
import edu.knowitall.execution.Search
case class QAOutputRecord(question: String, answer: String, ascore: Double, derivation: String) extends OutputRecord {
override def toString = s"$question\t$answer\t$score\t$derivation"
override def input = question
override def output = answer
override def score = ascore
}
case object QAOutputRecord {
def fromLine(line: String) = line.trim.split("\t") match {
case Array(q, a, s, d) => QAOutputRecord(q, a, s.toDouble, d)
case Array(q, a, s) => QAOutputRecord(q, a, s.toDouble, "")
case _ => throw new IllegalArgumentException(s"Could not parse line: $line")
}
def project(t: Tuple): String = {
val tup = Search.ProjectTriples(List(t)).toList(0)
tup.toString
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/eval/qa/QASystemOutput.scala
================================================
package edu.knowitall.eval.qa
import com.typesafe.config.ConfigFactory
import java.io.File
import java.io.PrintWriter
import scala.collection.JavaConverters._
import scala.io.Source
import com.typesafe.config.ConfigRenderOptions
import edu.knowitall.eval.SystemOutput
import edu.knowitall.eval.OutputRecord
case class QASystemOutput(path: String, records: List[QAOutputRecord], config: Map[String, String], name: String) extends SystemOutput {
def this(path: String, name: String) = this(path, QASystemOutput.loadRecords(path), SystemOutput.loadConfig(path), name)
def this(path: String, records: List[QAOutputRecord], name: String) = this(path, records, SystemOutput.getCurrentConfig, name)
val questions = records.map(_.question).distinct
val questionAnswers = records.map(r => (r.question, r.answer)).distinct
private val questionToRecords = records.groupBy(r => normalize(r.question))
private val questionAnswerToRecords = records.groupBy(r => (normalize(r.question), normalize(r.answer)))
val qaRecords = records
def qaRecordsFor(input: String, output: String): List[QAOutputRecord] = {
val in = normalize(input)
val on = normalize(output)
questionAnswerToRecords.getOrElse((in, on), List()).toList
}
override def save = {
val dir = new File(path)
if (dir.exists() && !dir.isDirectory()) throw new IllegalStateException(s"$dir exists but is not a directory")
if (!dir.exists()) dir.mkdirs()
val outputPath = new File(path, QASystemOutput.outputFile)
val outputWriter = new PrintWriter(outputPath)
records.foreach(outputWriter.println(_))
outputWriter.close()
val configPath = new File(path, QASystemOutput.configFile)
val configWriter = new PrintWriter(configPath)
for ((k, v) <- config) configWriter.println(s"$k\t$v")
configWriter.close()
val namePath = new File(path, QASystemOutput.nameFile)
val nameWriter = new PrintWriter(namePath)
nameWriter.println(name)
nameWriter.close()
}
}
case object QASystemOutput {
val conf = ConfigFactory.load()
val outputFile = conf.getString("eval.output.file")
val configFile = conf.getString("eval.config.file")
val nameFile = conf.getString("eval.name.file")
def loadRecords(path: String): List[QAOutputRecord] = {
val lines = Source.fromFile(new File(path, outputFile), "UTF8").getLines
lines.map(QAOutputRecord.fromLine).toList
}
def fromPath(path: String) = {
val name = Source.fromFile(new File(path, nameFile)).getLines.mkString("\n")
new QASystemOutput(path, name)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/eval/qa/QASystemRunner.scala
================================================
package edu.knowitall.eval.qa
import java.io.File
import java.io.IOException
import scala.io.Source
import org.slf4j.LoggerFactory
import edu.knowitall.model.QaModel
class QASystemRunner(qa: QaModel, path: String) {
val logger = LoggerFactory.getLogger(this.getClass)
val outputFile = new File(path)
if (!outputFile.exists()) {
outputFile.mkdirs()
}
if (outputFile.exists() && !outputFile.isDirectory()) {
throw new IOException(s"Could not write to $path, file exists")
}
def runFile(path: String) = {
val lines = Source.fromFile(path, "UTF8").getLines.toList
logger.info(s"Running QA System on '$path'")
logger.info(s"'$path' contains ${lines.size} questions")
run(path, lines)
}
def run(name: String, questions: List[String]) = {
val n = questions.size
val records = for ((q, i) <- questions.zipWithIndex;
deriv <- {
logger.info(s"Question ${i+1} of ${n}")
qa.candidatePredictions(q)
};
r = QAOutputRecord(q, deriv.answer, deriv.score, deriv.toString))
yield r
val output = new QASystemOutput(path, records.toList, name)
output.save
}
}
object QASystemRunner extends App {
val input = args(0)
val output = args(1)
val model = new QaModel()
val runner = new QASystemRunner(model, output)
runner.runFile(input)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/execution/AnswerFilter.scala
================================================
package edu.knowitall.execution
import edu.knowitall.tool.tokenize.ClearTokenizer
import edu.knowitall.tool.stem.MorphaStemmer
import scala.io.Source
import java.io.InputStream
import org.slf4j.LoggerFactory
import scala.util.matching.Regex
import edu.knowitall.util.ResourceUtils
trait AnswerFilter {
def filter(exec: QueryExecutor): QueryExecutor
}
object AnswerFilter {
// Mnemonics
type QE = QueryExecutor
type ETPred = (ExecTuple => Boolean)
type SPred = (String => Boolean)
def createExecTupleFilter(f: ETPred): (QE => QE) = exec => new QE {
def execute(q: ConjunctiveQuery) = exec.execute(q).filter(f)
}
def createStringFilter(f: SPred): (QE => QE) = {
val etpred = (et: ExecTuple) => f(et.answer.mkString(", "))
createExecTupleFilter(etpred)
}
def compose(af1: AnswerFilter, af2: AnswerFilter) = new AnswerFilter {
override def filter(exec: QueryExecutor) = af2.filter(af1.filter(exec))
}
}
case class StopListFilter(stops: Iterable[String]) extends AnswerFilter {
val tokenizer = new ClearTokenizer()
val logger = LoggerFactory.getLogger(this.getClass)
logger.debug(s"stop set: $stops")
val stopSet = stops.map(normalize).toSet
def normalize(s: String): String = {
val slc = s.toLowerCase()
val toks = tokenizer(slc)
val stems = toks.map(MorphaStemmer.stemToken)
val lems = stems.map(_.lemma)
val result = lems.mkString(" ")
result
}
def this(file: String) = this(Source.fromFile(file, "UTF8").getLines.toList)
def this(is: InputStream) = this(Source.fromInputStream(is, "UTF8").getLines.toList)
def keepAnswer(ans: String) = !stopSet.contains(normalize(ans))
override def filter(exec: QueryExecutor): QueryExecutor =
AnswerFilter.createStringFilter(keepAnswer)(exec)
}
case class StopRegexFilter(patStrs: Iterable[String]) extends AnswerFilter {
val pats = patStrs.toList.map(_.r)
def this(file: String) = this(Source.fromFile(file, "UTF8").getLines.toList)
def this(is: InputStream) = this(Source.fromInputStream(is, "UTF8").getLines.toList)
def keepAnswer(ans: String) = !pats.exists(p => ans match {
case p() => true
case _ => false
})
override def filter(exec: QueryExecutor) = AnswerFilter.createStringFilter(keepAnswer)(exec)
}
object DefaultFilters {
val logger = LoggerFactory.getLogger(this.getClass)
val idFilter = new AnswerFilter {
override def filter(exec: QueryExecutor) = exec
}
def wrap(executor: QueryExecutor) = {
val filters: List[AnswerFilter] = List(
new StopListFilter(ResourceUtils.resource("/edu/knowitall/execution/stoplist.txt")),
new StopRegexFilter(ResourceUtils.resource("/edu/knowitall/execution/stopregex.txt")))
val composed = filters.foldLeft(idFilter)(AnswerFilter.compose _)
composed.filter(executor)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/execution/ConjunctiveQuery.scala
================================================
package edu.knowitall.execution
import Search.Field
import Search.TSQuery
import Search.{FieldKeywords, FieldPhrase}
import Search.Conjunction
import org.slf4j.LoggerFactory
import Search._
import scala.Option.option2Iterable
import edu.knowitall.util.StringUtils
/**
* Base trait for triple values.
*/
trait TVal
/**
* Base trait for triple literal values.
*/
trait TLiteral extends TVal {
def value: String
def update(v: String): TLiteral
def toConjunct(field: Field): TSQuery
def subs(binding: Map[TVariable, TVal]): TLiteral
}
/**
* Triple literals can be unquoted, which has the semantics of doing a keyword
* search over a field.
*/
case class UnquotedTLiteral(value: String) extends TVal with TLiteral {
override def toString = value
override def toConjunct(field: Field) = FieldKeywords(field, value)
override def subs(binding: Map[TVariable, TVal]) = {
val map = binding map { case (k, v) => (k.name, v.toString) }
val newVal = StringUtils.interpolate(value, map)
copy(value = newVal)
}
override def update(v: String) = UnquotedTLiteral(v)
}
/**
* Triple literals can also be quoted, which has the semantics of doing an
* exact-match search over a field.
*/
case class QuotedTLiteral(value: String) extends TVal with TLiteral {
override def toString = s""""$value""""
override def toConjunct(field: Field) = FieldPhrase(field, value)
override def subs(binding: Map[TVariable, TVal]) = {
val map = binding map { case (k, v) => (k.name, v.toString) }
val newVal = StringUtils.interpolate(value, map)
copy(value = newVal)
}
override def update(v: String) = QuotedTLiteral(v)
}
case object QuotedTLiteral {
val quoted = """^"(.*)"$""".r
def fromString(s: String): Option[QuotedTLiteral] = s.trim() match {
case quoted(s) => Some(QuotedTLiteral(s))
case _ => None
}
}
/**
* Triple values can also be variables, which have a string name.
*/
case class TVariable(name: String) extends TVal {
override def toString = "$" + name
}
case object TVariable {
val vpat = """\$([A-Za-z0-9_]+)""".r
def fromString(s: String): Option[TVariable] = s.trim() match {
case vpat(v) => Some(TVariable(v))
case "?" => Some(TVariable("?"))
case _ => None
}
def fromStringMult(s: String): List[TVariable] = {
val parts = s.split(", *").toList
for (p <- parts; t = TVariable.fromString(p)) yield t match {
case Some(x) => x
case None => throw new
IllegalArgumentException(s"Could not parse variables in: $s")
}
}
}
/**
* TConjunct objects have a name (you can think of this as a unique
* identifier for the relational table returned) and map containing the
* field values. The field values map a field (arg1, rel, or arg2) to a
* value (literal or variable).
*/
case class TConjunct(name: String, values: Map[Field, TVal]) {
def literalFields: Iterable[(Field, TLiteral)] = {
for ((f, v) <- values) yield v match {
case l: TLiteral => Some((f, l))
case _ => None
}
}.flatten
def variableFields: Iterable[(Field, TVariable)] = {
for ((f, v) <- values) yield v match {
case TVariable(s) => Some((f, TVariable(s)))
case _ => None
}
}.flatten
def varsToFields: Map[TVariable, Field] = variableFields.map(_.swap).toMap
def partialQuery: TSQuery = {
val lfs = literalFields.toList
val conjuncts = for ((f, v) <- lfs) yield v.toConjunct(f)
Conjunction(conjuncts.toList:_*)
}
def joinKeys: Map[TVariable, String] = {
val vfs: Map[TVariable, Field] = varsToFields
val pairs = for (v <- vfs.keys; f <- vfs.get(v); a = name + "." + f)
yield (v, a)
pairs.toMap
}
def attrName(v: TVariable): Option[String] = joinKeys.get(v)
def vars: Iterable[TVariable] = varsToFields.keys.toSet
def subs(bindings: Map[TVariable, TVal]) = {
val newValues = values map {
case (field, value: TVariable) if bindings.contains(value) => (field, bindings(value))
case (field, value: TLiteral) => (field, value.subs(bindings))
case (field, value) => (field, value)
}
copy(values = newValues)
}
def subs(tvar: TVariable, tval: TVal): TConjunct = subs(Map(tvar -> tval))
def rename(n: String) = copy(name = n)
val xs = values.getOrElse(arg1, "")
val rs = values.getOrElse(rel, "")
val ys = values.getOrElse(arg2, "")
override def toString = s"($xs, $rs, $ys)"
}
case object TConjunct {
val logger = LoggerFactory.getLogger(this.getClass)
val qpat = """\(?(.+),(.+),(.+?)\)?""".r
def fromString(name: String, s: String): Option[TConjunct] = s match {
case qpat(x, r, y) => Some(fromTriple(name, x, r, y))
case _ => None
}
def getTLiteral(s: String): TLiteral = QuotedTLiteral.fromString(s) match {
case Some(QuotedTLiteral(y)) => QuotedTLiteral(y)
case _ => UnquotedTLiteral(s)
}
def getTVal(s: String): TVal = {
val v = TVariable.fromString(s)
v match {
case Some(TVariable(x)) => TVariable(x)
case _ => getTLiteral(s)
}
}
val fields = List(arg1, rel, arg2)
def fromTriple(name: String, x: String, r: String, y: String): TConjunct = {
val lst = List(x.trim(), r.trim(), y.trim())
val items = for ((f, a) <- fields.zip(lst); v = getTVal(a)) yield (f, v)
TConjunct(name, items.toMap)
}
val splitPat = """(?<=\))\s*?(?=\()"""
def fromStringMult(s: String): Iterable[TConjunct] = {
val parts = s.split(splitPat).toList.map(_.trim).filterNot(_ == "")
val queries = { for ((s, i) <- parts.zipWithIndex;
q <- fromString(s"r$i", s)) yield q }.toList
queries
}
def replaceField(c: TConjunct, f: Field, vs: List[TVal]): List[TConjunct] = {
for (v <- vs) yield TConjunct(c.name, c.values + (f -> v))
}
}
/**
* A conjunctive query consists of a list of qvars (query variables) and a list
* of conjuncts. A conjunctive query represents a select-join-project type
* operation. The list of conjuncts represents the data to be selected.
* The shared variables among the conjuncts encodes the join predicates.
* The qVars encodes the projection variables. qAttr is the tuple-attribute
* to project onto.
*/
trait ConjunctiveQuery {
def qVars: List[TVariable]
def qAttrs: List[String]
def conjuncts: List[TConjunct]
def subs(bindings: Map[TVariable, TVal]): ConjunctiveQuery
def subs(tvar: TVariable, tval: TVal): ConjunctiveQuery = subs(Map(tvar -> tval))
def combine(cq: ConjunctiveQuery): ConjunctiveQuery
def renameConjuncts(prefix: String): ConjunctiveQuery
override def toString(): String = {
val varString = qVars.map(_.toString).mkString(",")
val conjString = conjuncts.mkString(" ")
varString + ": " + conjString
}
def joinPairs = {
val grouped = conjuncts.flatMap(_.joinKeys.toList).groupBy(_._1)
for {
variable <- grouped.keys
(variable1, fieldName1) <- grouped(variable)
(variable2, fieldName2) <- grouped(variable)
if fieldName1 < fieldName2
} yield (fieldName1, fieldName2)
}
}
case class FieldIndex(conjunctName: String, field: Field) {
private def updateConjunct(c: TConjunct, fn: TVal => TVal): TConjunct = {
val newVals = for {
(f, v) <- c.values
newv = if (c.name == conjunctName && f == field) fn(v) else v
} yield (f, newv)
TConjunct(c.name, newVals)
}
def updateQuery(q: ConjunctiveQuery, fn: TVal => TVal): ConjunctiveQuery = {
val newConjs = q.conjuncts.map(updateConjunct(_, fn))
ListConjunctiveQuery(q.qVars, newConjs)
}
}
/**
* A conjunctive query backed by a list of conjuncts.
*/
case class ListConjunctiveQuery(qVars: List[TVariable], conjuncts: List[TConjunct])
extends ConjunctiveQuery {
private val logger = LoggerFactory.getLogger(this.getClass)
val conjunctNames = conjuncts.map(_.name)
if (conjunctNames.distinct.size != conjunctNames.size) throw new
IllegalArgumentException(s"Conjuncts must have distinct names: $conjuncts")
val qas = {for (v <- qVars; c <- conjuncts; a <- c.attrName(v)) yield (v, a)}.groupBy(_._1)
val qAttrs = for (v <- qVars; group <- qas.get(v); (v, a) <- group.find(x => true)) yield a
override def subs(bindings: Map[TVariable, TVal]) = {
val newConjs = conjuncts.map(_.subs(bindings))
val newQVars = newConjs.flatMap(_.vars).distinct
ListConjunctiveQuery(newQVars, newConjs)
}
def renameConjuncts(prefix: String) = {
val newConjs = conjuncts.zipWithIndex map {
case (c, i) => c.rename(s"${prefix}.$i")
}
copy(conjuncts = newConjs)
}
override def combine(cq: ConjunctiveQuery) = {
val conjNames1 = this.conjunctNames.toSet
val conjNames2 = cq.conjuncts.map(_.name).toSet
val namesIntersect = !conjNames1.intersect(conjNames2).isEmpty
val conjs1 = if (namesIntersect) {
logger.warn(s"Conjunction field names in ${this} and $cq intersect, renaming 'r' and 's': $conjNames1 vs. $conjNames2")
this.renameConjuncts("r").conjuncts
} else {
this.conjuncts
}
val conjs2 = if (namesIntersect) {
cq.renameConjuncts("s").conjuncts
} else {
cq.conjuncts
}
val newConjs = conjs1 ++ conjs2
val newVars = (this.qVars ++ cq.qVars).distinct
ListConjunctiveQuery(newVars, newConjs)
}
}
case object ListConjunctiveQuery {
def fromString(s: String): Option[ListConjunctiveQuery] = {
val parts = s.split(":", 2)
if (parts.size == 2) {
val left = parts(0)
val qVars = TVariable.fromStringMult(parts(0)) match {
case head :: rest => head :: rest
case _ =>
throw new IllegalArgumentException(s"Expected variable: $left")
}
val conjuncts = TConjunct.fromStringMult(parts(1))
Some(ListConjunctiveQuery(qVars, conjuncts.toList))
} else if (parts.size == 1) {
val s = parts(0)
val conjuncts = TConjunct.fromStringMult(s)
val qVars = conjuncts.flatMap(_.vars).toList match {
case v :: rest => v :: rest
case _ => throw new IllegalArgumentException(s"Expected variable: $s")
}
Some(ListConjunctiveQuery(qVars.distinct, conjuncts.toList))
} else {
None
}
}
}
/**
* A simple query is a conjunctive query that has a single conjunct.
*/
case class SimpleQuery(name: String, map: Map[Field, TVal])
extends ConjunctiveQuery {
val conjunct = TConjunct(name, map)
val conjuncts = List(conjunct)
val vars = map.values.collect{ case x: TVariable => x }.toList
val qVars = vars match {
case v :: Nil => List(v)
case _ => throw new
IllegalArgumentException(s"SimpleQuery must have exactly one variable, "
+ s"got: $vars")
}
val qAttrs = List(conjunct.joinKeys(qVars(0)))
override def subs(bindings: Map[TVariable, TVal]) = {
val newConj = conjunct.subs(bindings)
copy(map = newConj.values)
}
override def renameConjuncts(prefix: String) = {
copy(map = conjunct.rename(s"${prefix}0").values)
}
override def combine(cq: ConjunctiveQuery) = {
val newConjs = (this.conjuncts ++ cq.conjuncts).distinct
val newVars = (this.qVars ++ cq.qVars).distinct
ListConjunctiveQuery(newVars, newConjs)
}
}
case object SimpleQuery {
def fromString(s: String) = TConjunct.fromString("r", s) match {
case Some(TConjunct(name, map)) => Some(SimpleQuery(name, map))
case _ => None
}
}
object Utils {
def cartesian[A](xs: Traversable[Traversable[A]]): Seq[Seq[A]] =
xs.foldLeft(Seq(Seq.empty[A])) {
(x, y) => for (a <- x.view; b <- y) yield a :+ b
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/execution/JoinPlanner.scala
================================================
package edu.knowitall.execution
import Search.PartialSearchJoin
import PartialFunction._
import Search.Field
import Conditions.TuplePred
import Operators.{Select, Product}
import Conditions.AttrsSim
import Operators.NestedLoopJoin
import org.slf4j.LoggerFactory
import edu.knowitall.triplestore.TriplestoreClient
import edu.knowitall.triplestore.TriplestorePlan
import scala.Option.option2Iterable
/**
* A Joiner object interfaces with a triplestore and executes a query
* against it. It uses a simple query plan optimizer to take a set of
* TConjunct objects and join them appropriately. It heuristically
* avoids joining large tables together by (1) limiting the number of rows
* returned by the triplestore, and (2) converting join(small table, large
* table) calls into a set of join(small table, small table) calls.
*
* The algorithm first picks a variable that appears in the TConjunct
* objects. It then eliminates that variable by executing the TConjunct
* and enforcing the join constraints between them.
*
* For example, suppose the set of queries is aq1 = ($x, type, us president),
* aq2 = ($x, born in, $y), and aq3 = ($y, type, us state). The joiner first
* picks a variable to eliminate, using a herustic; say it picks $x. Then,
* the joiner takes all queries that have $x as a value, loads their data,
* and joins them. In this case, it must load the data for aq1 and aq2, then
* join them together on the constraint aq1.arg1 = aq2.arg1. It saves the
* results as an intermediate table t. Then, it repeats, picking $y as the
* next variable to eliminate, and joining intermediate table t with aq3.
*
* The heuristic used to estimate the cost of a query is the number of rows
* returned by the triplestore.
*
* Internally, the Joiner uses two structures. The first is a QueryNode, which
* represents an unexecuted TConjunct. The second is a TuplesNode, which
* represents an intermediate table (a set of AbstractQueries that have been
* executed and joined across a single variable). The QueryNode class and
* TuplesNode class are subclasses of TableNode.
*
*/
case class Joiner(client: TriplestoreClient) {
val logger = LoggerFactory.getLogger(this.getClass)
val maxJoinHits = 10
/* Import some query plan objects from the client. */
val planning = TriplestorePlan(client)
import planning._
/* Runs the join algorithm on the given set of AbstractQuery objects.*/
def joinQueries(conjs: Iterable[TConjunct]): Tuples = {
val nodes = conjs.map(QueryNode(_)).toList
join(nodes)
}
/* Any table T joined with the emptyTuples set will return T. */
val emptyTuples = List(Tuple(Map.empty))
/* Takes the cartesian product of two tuple sets. */
val prod = (ts1: Iterable[Tuple], ts2: Iterable[Tuple]) =>
Product(ts1, ts2).toList
/* Joins the given TableNodes together. If the end result is not a single
* TableNode object, then just takes the cartesian product of the remaining
* nodes.
*/
def join(nodes: List[TableNode]): Iterable[Tuple] = {
val joined = mergeLowest(nodes).map(toTuplesNode(_))
val cleaned = joined map eliminateStrandedVars
cleaned.map(_.tuples).foldLeft(emptyTuples)(prod).toList
}
/*
* Eliminates any join variables that were not eliminated
* during the join process - for example,
* (salad, $r, $x) (beef, $r, $x) will leave $r stranded
* in a single TuplesNode at the end of join processing,
* but still referring to r0.rel and r1.rel. This method
* enforces the join condition within a single TuplesNode.
*/
def eliminateStrandedVars(tn: TuplesNode): TuplesNode = {
tn.joinAttrs.find(_._2.size > 1) match {
case Some((v, attrs)) => {
val tuples = tn.tuples.filter { t =>
attrs.sliding(2).forall {
case List(a1, a2) => AttrsSim(a1, a2, 0.9).apply(t)
case _ => throw new RuntimeException()
}
}
val newTuplesNode = TuplesNode(tuples, tn.joinAttrs-v)
eliminateStrandedVars(newTuplesNode)
}
case None => tn
}
}
/* Picks the lowest-cost variable, merges the nodes, and then repeats until
* there are no variables left to merge.
*/
def mergeLowest(nodes: List[TableNode]): List[TableNode] = {
val merged = lowestVariable(nodes) match {
case Some(v) => mergeLowest(groupThenMergeNodes(nodes, v))
case None => nodes
}
merged.map(toTuplesNode(_))
}
/* The cost of a Table node is... */
def cost(n: TableNode) = n match {
// ...the number of rows that satisfy it, if it's a QueryNode
case q: QueryNode => client.count(q.conj.partialQuery)
// ...or the number of rows, if it's a TuplesNode
case t: TuplesNode => t.tuples.size
}
/* Joining two tuples nodes together on a variable is easy, since all of
* the necessary data is in memory. All that needs to be done is to
* create the correct join predicate, and then execute the NestedLoopJoin.
*/
def joinTT(tn1: TuplesNode, tn2: TuplesNode, v: TVariable): Tuples = {
val attrPairs = for(a1 <- tn1.getJoinAttrs(v); a2 <- tn2.getJoinAttrs(v))
yield (a1, a2)
val pred = Joiner.pairsToCond(attrPairs)
NestedLoopJoin(pred)(tn1.tuples, tn2.tuples)
}
/* Joining a QueryNode with a TuplesNode involves doing a partial search
* join, which executes a query for each row in the TuplesNode.
*/
def joinQT(qn: QueryNode, tn: TuplesNode, v: TVariable): Tuples = {
// Get the names of the attributes to join on.
val attrPairs = for (
a1 <- tn.getJoinAttrs(v);
a2 <- qn.getJoinAttrs(v)) yield (a1, a2)
// The join predicate uses string similarity.
val bpred = attrPairs match {
case (a1, a2) :: tail => AttrsSim(a1, a2, 0.9)
case _ => AttrsSim("", "", 0.0)
}
// If there are multiple join conditions between the QueryNode and
// TuplesNode (i.e. if they share more than one variable) then the
// additional constraints need to be encoded in a Select predicate, since
// a partial search join can only involve a single field.
val spred = attrPairs match {
case (a1, a2) :: tail => Joiner.pairsToCond(tail)
case _ => Joiner.truep
}
val left = tn.tuples
val right = PartialSearchFor(qn.conj.name, maxJoinHits, qn.conj.partialQuery)
val joined = PartialSearchJoin(bpred)(left, right)
Select(spred)(joined)
}
/* Finds the nodes that have the given variable. Merges them together, leaving
* the other nodes unmerged.
*/
def groupThenMergeNodes(nodes: List[TableNode], v: TVariable): List[TableNode] = {
val (toMerge, toKeep) = nodes.partition(_.hasVariable(v))
mergeNodes(toMerge, v) +: toKeep
}
/* Finds the lowest-cost variable to merge. In order to be considered for
* merging, a variable must occur in at least two nodes. Variables are then
* assigned a cost equal to the lowest-costing node that they occur in.
*/
def lowestVariable(nodes: List[TableNode]): Option[TVariable] = {
val lst = for (n <- nodes; v <- n.joinAttrs.keySet) yield (v, n)
val varNodes = lst.groupBy(e => e._1).mapValues(e => e.map(x => x._2).toSet)
val varCosts = { for ((v, nodes) <- varNodes;
if nodes.size > 1;
costs = nodes.map(cost(_));
minCost = costs.min) yield (v, minCost) }.toMap
if (varCosts.size > 0) {
val vars = varCosts.keys
val lowest = vars.minBy(varCosts(_))
logger.debug(s"Lowest variable chosen: $lowest")
Some(lowest)
} else {
None
}
}
/* Merges the given nodes together, and removes the variable. */
def mergeNodes(nodes: List[TableNode], v: TVariable): TuplesNode = {
val sorted = nodes.sortBy(cost)
val node = eliminateVar(sorted, v)
TuplesNode(node.tuples, node.joinAttrs-v)
}
/* Recursively eliminates the variable from the given list of nodes.
*/
def eliminateVar(nodes: List[TableNode], v: TVariable): TuplesNode = {
nodes match {
case node :: Nil => toTuplesNode(node)
case node1 :: node2 :: rest => eliminateVar(doJoin(node1, node2, v) :: rest, v)
case _ => throw new IllegalArgumentException("empty node list")
}
}
/* Joins together two nodes on the given variable. */
def doJoin(n1: TableNode, n2: TableNode, v: TVariable): TuplesNode = {
val t = toTuplesNode(n1)
val tuples = n2 match {
case q: QueryNode => joinQT(q, t, v)
case t2: TuplesNode => joinTT(t, t2, v)
}
val merged = Joiner.mergeJoinAttrs(n1.joinAttrs, n2.joinAttrs)
TuplesNode(tuples.toList, merged)
}
/* Converts a TableNode to a TuplesNode. If the given node is already a
* TuplesNode, does nothing. If it is a QueryNode, it executes it and
* wraps the resulting tuples as a TuplesNode.
*/
def toTuplesNode(node: TableNode): TuplesNode = node match {
case t: TuplesNode => t
case q: QueryNode => queryToTuples(q)
case _ => throw new IllegalArgumentException("invalid node type: " + node)
}
/* Executes the given QueryNode to create a TuplesNode. */
def queryToTuples(q: QueryNode): TuplesNode = {
logger.debug(s"Making TuplesNode from $q")
val tuples = SearchFor(q.conj.name, q.conj.partialQuery)
val result = TuplesNode(tuples, q.joinAttrs)
logger.debug(s"Done making TuplesNode from $q")
result
}
}
/* Companion object for Joiner. */
case object Joiner {
// Mnemonic
type JA = Map[TVariable, List[String]]
// The join condition defaults to thresholded string similarity.
val eqCond = (a1: String, a2: String) => AttrsSim(a1, a2, 0.9)
// Merges the given maps.
def mergeJoinAttrs(attrs1: JA, attrs2: JA): JA = {
val allVars = attrs1.keySet union attrs2.keySet
val newPairs = for (v <- allVars;
as1 = attrs1.getOrElse(v, Nil).toSet;
as2 = attrs2.getOrElse(v, Nil).toSet)
yield (v, (as1 ++ as2).toList)
return newPairs.toMap
}
// Tuple predicate that always returns true.
val truep = (t: Tuple) => true
// The conjunction of two tuple predicates.
def and(p1: TuplePred, p2: TuplePred) = (t: Tuple) => p1(t) && p2(t)
// The conjunction of a list of predicates.
def andList(preds: Iterable[TuplePred]): TuplePred =
preds.foldLeft(truep)(and)
// Takes a list of tuple attribute pairs, returns a single predicate
// encoding them as a conjunction of join conditions.
def pairsToCond(pairs: List[(String, String)]): TuplePred = {
val preds = for ((a1, a2) <- pairs) yield eqCond(a1, a2)
andList(preds)
}
}
/* TuplesNodes can be either TableNodes or QueryNodes. */
case class TuplesNode(tuples: List[Tuple],
joinAttrs: Map[TVariable, List[String]]) extends TableNode {
}
/* TableNodes store data from partially-executed queries. */
trait TableNode {
val joinAttrs: Map[TVariable, List[String]]
def getJoinAttrs(v: TVariable) = joinAttrs.getOrElse(v, Nil)
def hasVariable(v: TVariable) = joinAttrs.contains(v)
}
/* QueryNodes represent unexecuted queries. */
case class QueryNode(conj: TConjunct) extends TableNode {
val jks = conj.joinKeys
val joinAttrs = {
for (v <- jks.keys; attr <- jks.get(v)) yield (v, List(attr))
}.toMap
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/execution/QueryExecutor.scala
================================================
package edu.knowitall.execution
import edu.knowitall.execution.Search.Field
import edu.knowitall.triplestore.TriplestoreClient
import org.slf4j.LoggerFactory
import edu.knowitall.tool.stem.MorphaStemmer
import scala.collection.immutable.SortedMap
case class ExecTuple(tuple: Tuple, query: ConjunctiveQuery) {
val answer: List[String] = query.qAttrs.flatMap(a => tuple.getString(a))
val answerString: String = answer match {
case List(a) => a
case _ => "(" + answer.mkString(", ") + ")"
}
val toTripleString = {
val tstrs = for {
c <- query.conjuncts
n = c.name
x = tuple.attrs.getOrElse(s"$n.arg1", "")
r = tuple.attrs.getOrElse(s"$n.rel", "")
y = tuple.attrs.getOrElse(s"$n.arg2", "")
} yield s"($x, $r, $y)"
tstrs.mkString(" ")
}
}
trait QueryExecutor {
def execute(query: ConjunctiveQuery): Iterable[ExecTuple]
}
case class IdentityExecutor(client: TriplestoreClient) extends QueryExecutor {
val logger = LoggerFactory.getLogger(this.getClass)
val joiner = Joiner(client)
override def execute(q: ConjunctiveQuery): Iterable[ExecTuple] = {
val joined = joiner.joinQueries(q.conjuncts)
for (t <- joined; et = ExecTuple(t, q)) yield et
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/execution/RelationalAlgebra.scala
================================================
package edu.knowitall.execution
import scala.language.implicitConversions
import com.rockymadden.stringmetric.similarity._
import org.apache.solr.client.solrj.util.ClientUtils
import scala.Array.canBuildFrom
import scala.Option.option2Iterable
/**
* Used to represent a Tuple (i.e. a row in a relational database). A tuple
* has a set of String attributes. Each attribute has a value of type Any.
*/
case class Tuple(attrs: Map[String, Any]) {
/* Concatenates two tuples together. Their attributes must be disjoint. */
def join(other: Tuple): Tuple = {
val t = Tuple(this.attrs ++ other.attrs)
if (t.attrs.size == this.attrs.size + other.attrs.size) {
return t
} else {
throw new
IllegalArgumentException(s"attr names not disjoint: $this, $other")
}
}
def get(a: String) = attrs.get(a)
/* Gets the string value of attribute a. Returns None if not possible */
def getString(a: String) = attrs.get(a) match {
case Some(x: String) => Some(x)
case _ => None
}
def getBoolean(a: String) = attrs.get(a) match {
case Some(x: Boolean) => Some(x)
case _ => None
}
def getFloat(a: String): Option[Float] = attrs.get(a) match {
case Some(x: Float) => Some(x)
case _ => None
}
def getInt(a: String): Option[Int] = attrs.get(a) match {
case Some(i: Int) => Some(i)
case _ => None
}
def getNumber(a: String): Option[Double] = attrs.get(a) match {
case Some(i: Int) => Some(i)
case Some(f: Float) => Some(f)
case Some(d: Double) => Some(d)
case _ => None
}
/* Renames the attributes using the given function */
def rename(f: String => String): Tuple = {
Tuple(attrs.map{ case (k, v) => (f(k), v) })
}
/* Adds "$p." before each attribute. */
def renamePrefix(p: String): Tuple = rename(k => p + "." + k)
override def toString: String = {
val pairs = attrs map { case (k, v) => k + ": " + v }
return "(" + pairs.mkString(", ") + ")"
}
}
/**
* Contains objects for select and join conditions.
*/
object Conditions {
// Mnemonics
type Attr = String
type Value = Any
type ValuePred = Value => Boolean
type BinaryStringPred = (String, String) => Boolean
type BinaryValuePred = (Value, Value) => Boolean
type TuplePred = Tuple => Boolean
def valPair(a1: Attr, a2: Attr, t: Tuple) =
for (v1 <- t.attrs.get(a1); v2 <- t.attrs.get(a2)) yield (v1, v2)
/* Converts the given predicate over value pairs to a tuple predicate. This
* can be used to convert a predicate like "string1 and string2 are equal"
* to a tuple predicate like "tuple.a1 and tuple.a2 are equal"
*/
def binaryAttrPred(a1: Attr, a2: Attr, f: BinaryValuePred): TuplePred =
(t: Tuple) => valPair(a1, a2, t).exists(f.tupled)
/* Converts the given predicate over value pairs to a tuple predicate. This
* can be used to convert a predicate like "string1 and string2 are equal"
* to a tuple predicate like "tuple.a = x".
*/
def unaryAttrPred(a: Attr, x: String, f: BinaryValuePred): TuplePred =
(t: Tuple) => {
for (v <- t.attrs.get(a)) yield (v, List(x))
}.exists(f.tupled)
/* Converts a predicate over (String, String) to a predicate over (Any, Any)
* by making non-String input always return false.
*/
def stringToAnyPred(f: BinaryStringPred): BinaryValuePred =
(v1: Value, v2: Value) => (v1, v2) match {
case (v1: String, v2: String) => f(v1, v2)
case _ => false
}
/* A shortcut for combining stringToAnyPred and binaryAttrPred. */
def binaryPredFromString(a1: Attr, a2: Attr, f: BinaryStringPred) =
binaryAttrPred(a1, a2, stringToAnyPred(f))
/* A shortcut for combining stringToAnyPred and unaryAttrPred. */
def unaryPredFromString(a: Attr, v: String, f: BinaryStringPred) =
unaryAttrPred(a, v, stringToAnyPred(f))
/* Wrapper for string equality, with optional case sensitivity. */
def StringEquality(caseSensitive: Boolean = true) = (x: String, y: String) =>
if (caseSensitive) x == y else x.toLowerCase() == y.toLowerCase()
/* Thresholded string-similarity predicate, returns true if the given strings
* have similarity above a given threshold.
*/
def strSim(thresh: Double) = (x: String, y: String) =>
StrSim.sim(x, y) > thresh
val strEq = StringEquality(false)
val valEq = (x: Value, y: Value) => x == y
/* A BinaryPred is a TuplePred that has access to two attribute names. */
trait BinaryPred {
def attr1: Attr
def attr2: Attr
def apply(t: Tuple): Boolean
}
/* AttrsEqual is a TuplePred that returns true if t.attr1 equals t.attr2. */
case class AttrsEqual(attr1: Attr, attr2: Attr) extends TuplePred
with BinaryPred {
val pred = binaryPredFromString(attr1, attr2, strEq)
def apply(t: Tuple) = pred(t)
}
/* AttrEquals is a TuplePred that returns true if t.attr equals value. */
case class AttrEquals(attr: Attr, value: String) extends TuplePred {
val pred = unaryPredFromString(attr, value, strEq)
def apply(t: Tuple) = pred(t)
}
/* AttrsSim is a TuplePred that returns true if t.attr1 and t.attr2 have
* similarity greater than thresh.
*/
case class AttrsSim(attr1: Attr, attr2: Attr, thresh: Double)
extends TuplePred with BinaryPred {
val pred = binaryPredFromString(attr1, attr2, strSim(thresh))
def apply(t: Tuple) = pred(t)
}
/* AttrSim is a TuplePred that returns true if t.attr and value have
* similarity greater than thresh.
*/
case class AttrSim(attr: Attr, value: String, thresh: Double)
extends TuplePred {
val pred = unaryPredFromString(attr, value, strSim(thresh))
def apply(t: Tuple) = pred(t)
}
/* On returns a function Tuple => Tuple that projects a tuple t onto the
* given attributes.
*/
def On(attrs: Attr*) = (t: Tuple) => {
val items = for (a <- attrs; v <- t.attrs.get(a)) yield (a, v)
Tuple(items.toMap)
}
}
/**
* The Operators object defines relational algebra operators, which are used
* to join, select, and project Tuple objects.
*/
object Operators {
// Mnemonics
type TuplePred = Tuple => Boolean
type TupleMap = Tuple => Tuple
type Tuples = Iterable[Tuple]
/* Select returns only those tuples that satisfy the predicate p. */
def Select(p: TuplePred) = (ts: Tuples) => ts.filter(p)
/* Project transforms each tuple using the given map m. */
def Project(m: TupleMap) = (ts: Tuples) => ts.map(m)
/* Union groups multiple iterables of tuples into a single iterable. */
def Union(tss: Tuples*) = tss.flatten
/* Join takes the cartesian product of two tuples and returns only those
* tuples that satisfy the predicate p. NestedLoopJoin implements this
* as a nested loop over each iterable of tuples.
*/
def NestedLoopJoin(p: TuplePred) = (ts1: Tuples, ts2: Tuples) => {
for (t1 <- ts1.par; t2 <- ts2; j = t1.join(t2); if p(j)) yield j
}.toList
/* Joins together all pairs of tuples. */
def Product(ts1: Tuples, ts2: Tuples): Tuples =
for (t1 <- ts1; t2 <- ts2) yield t1.join(t2)
}
/**
* Objects used to construct queries against a triplestore.
*/
object Search {
// Mnemonics
type Tuples = Iterable[Tuple]
type Attr = String
type Search = TSQuery => Tuples
import Conditions._
/* These are the possible fields in a triplestore. */
/*object Field extends Enumeration {
type Field = Value
val arg1, rel, arg2, namespace = Value
val arg1_exact, rel_exact, arg2_exact = Value
// Maps some fields to their exact-match versions
val exactMap = Map(arg1 -> arg1_exact, rel -> rel_exact, arg2 -> arg2_exact)
}
import Field._*/
trait Field {
val name: String
def toExact: Field
}
object Field {
implicit def field2string(f: Field) = f.name
}
val exactPat = ".*_exact$".r
case class TSField(name: String) extends Field {
override def toString = name
override def toExact = name match {
case exactPat(name) => TSField(name)
case _ => TSField(name + "_exact")
}
}
val arg1 = TSField("arg1")
val rel = TSField("rel")
val arg2 = TSField("arg2")
val namespace = TSField("namespace")
/* Used to represent a triplestore query. The only requirement is that it
* should have some method that converts it to a Lucene query string.
*/
trait TSQuery {
def toQueryString: String
}
/* Used to escape characters that have special meanings in Lucene. */
def luceneEscape = ClientUtils.escapeQueryChars _
def quoteLogic(w: String) = w match {
case "AND" => "\"AND\""
case "OR" => "\"OR\""
case "NOT" => "\"NOT\""
case _ => w
}
def escape(w: String) = quoteLogic(luceneEscape(w))
/* A query that searches the given field for the given keywords. Splits the
* string v into words, and then converts them into a Lucene query
* equal to the conjunctions of all the words. For example, if f = arg1
* and v = "barack obama", the resulting Lucene query string will be
* "arg1:barack AND arg1:obama".
*/
case class FieldKeywords(f: Field, v: String) extends TSQuery {
def toQueryString = {
for (w <- v.trim().split("\\s+");
x = f.toString() + ":" + escape(w))
yield x }.mkString(" AND ")
}
/* A query that searches the given field for the given phrase. Uses the
* exact-match version of the given field. For example, if f = arg1
* and v = "barack obama", then the resulting Lucene query string will be
* arg1_exact:"barack obama".
*/
case class FieldPhrase(f: Field, v: String) extends TSQuery {
val realField = f.toExact
def toQueryString = realField.toString() + ":\"" + escape(v) + "\""
}
case class CountQuery(arg: String) extends TSQuery {
def toQueryString = {
arg match {
case "" => "*:*" // much faster than arg1_exact:*
// just do arg1 for speed...
case _ => "arg1:\"%s\"".format(arg, arg)
}
}
}
/* Some shortcut functions for each of the fields. */
val Arg1Eq = (v: String) => FieldPhrase(arg1.toExact, v)
val Arg2Eq = (v: String) => FieldPhrase(arg2.toExact, v)
val RelEq = (v: String) => FieldPhrase(rel.toExact, v)
val Arg1Cont = (v: String) => FieldKeywords(arg1, v)
val Arg2Cont = (v: String) => FieldKeywords(arg2, v)
val RelCont = (v: String) => FieldKeywords(rel, v)
val NamespaceEq = (v: String) => FieldKeywords(namespace, v)
/* Returns the conjunction of the given queries. */
case class Conjunction(conjuncts: TSQuery*) extends TSQuery {
def toQueryString =
conjuncts.map("(" + _.toQueryString + ")").mkString(" AND ")
}
/* Returns the disjunction of the given queries. */
case class Disjunction(disjuncts: TSQuery*) extends TSQuery {
def toQueryString =
disjuncts.map("(" + _.toQueryString + ")").mkString(" OR ")
}
/* A shortcut method that adds FieldPhrase(f, v) as a conjunct to q. */
def AndPhrase(q: TSQuery, f: Field, v: String) =
Conjunction(q, FieldPhrase(f, v))
/* A pattern to match the required triplestore attribute names in a tuple. */
val tripColPat = ".*\\.(arg1|arg2|rel|namespace)$"
/* A projection operator that maps a tuple to just the required triplestore
* fields (arg1, rel, arg2, namespace).
*/
def OnTripleCols(t: Tuple): Tuple =
Tuple(t.attrs.filterKeys(a => a.matches(tripColPat)))
def ProjectTriples(ts: Tuples) = Operators.Project(OnTripleCols)(ts)
/* The code below is used for executing partial searches. A partial search
* is a way to lazily represent a query's tuples without actually executing
* the query against the triplestore. Parital searches are useful for
* joining a small table T1 with a large table T2. Instead of loading both
* tables into memory (which may be prohibitively slow), a partial-search
* joiner loads T1 into memory, then executes a query for each tuple t in T1.
* Each query is specifically searching for tuples that may be joined with t.
* This allows the system to make many small, restricted queries, instead of
* one large, unrestricted one.
*/
/* This class is just a name for a (query, search) pair, where search
* is some function that maps queries onto tuples.
*/
case class PartialSearcher(query: TSQuery, search: Search)
/* These patterns are used to infer the Field object to join from the string
* attribute name in a tuple.
*/
val Arg1Pat = "(.*)\\.arg1$".r
val Arg2Pat = "(.*)\\.arg2$".r
val RelPat = "(.*)\\.rel$".r
/* This defines a partial search join algorithm. The join condition cond is
* used both as a predicate (i.e. evaluating whether a joined tuple should
* be kept or discarded) but also for creating the tuple-specific queries
* on the fly.
*
* PartialSearchJoin is actually a function that takes a join condition
* as input, and returns a function (Tuples, PartialSearcher) => Tuples.
* This resulting function takes the smaller table as input, and joins it
* using the given PartialSearcher object, which encodes the query for
* the larger table.
*/
def PartialSearchJoin(cond: BinaryPred) = {
// The join attribute of the smaller table.
val lAttr = cond.attr1
// The join attribute of the larger table.
val rAttr = cond.attr2
// Code for inferring which field to search for when creating a query. It
// is possible that rAttr might not be mappable to a field, in which case
// it is not actually possible to execute the partial search join algo.
val (name, field) = rAttr match {
case Arg1Pat(n) => (n, arg1)
case Arg2Pat(n) => (n, arg2)
case RelPat(n) => (n, rel)
case _ => throw new
IllegalArgumentException(s"field must be arg1, rel, or arg2: $rAttr")
}
val tripleField = """r\d+\.(arg1|arg2|rel)""".r.pattern
(ts: Tuples, ps: PartialSearcher) => {
// split up into chunks
val splitGroups = ts.grouped(10).map(_.toSeq)
// make pairs of (join attributes, tuples) where join attributes is not empty.
val attrsGroups = splitGroups.map { tuples => (tuples.flatMap(_.getString(lAttr)), tuples) } filter(_._1.nonEmpty)
// map to new pairs of (Join Attribute Disjunction, Tuples) by converting join attributes to queries.
val queryGroups = attrsGroups.map { case (attrs, tuples) => (Disjunction(attrs.map(a => FieldKeywords(field, a)): _*), tuples) }
// map to (disjunctive search-join query, Tuples to join with) by combining disjunction with
val disjunctionGroups = queryGroups.map { case (disj, tuples) => (Conjunction(disj, ps.query), tuples) }
// for each pair, execute the disjunction and join the result with tuples
disjunctionGroups.toSeq.par.flatMap { case (q, tuples) =>
val qts = ps.search(q)
for (
t1 <- qts;
t2 <- tuples;
t3 = t1.join(t2);
if (cond(t3))) yield t3
}
}.toList
}
}
/**
* This object is used to create SQL-style table printouts from tuples. The
* code is ripped from this stackoverflow post:
* http://stackoverflow.com/questions/7539831/scala-draw-table-to-console
*/
object Tabulator {
def trim(s: String, l: Int) = {
val n = s.size
s.substring(0, Math.min(l, n))
}
def valToString(v: Any) = v match {
case x @ (_ :: _ :: _) => "{" + trim(x.mkString(", "), 40) + "}"
case x @ (y :: _) => y.toString
case x => x.toString
}
def tupleToList(t: Tuple, attrs: List[String]) = {
for(
a <- attrs;
v = t.attrs.getOrElse(a, "");
s = valToString(v)) yield s}.toList
def tuplesToTable(cols: List[String], ts: Iterable[Tuple]) = {
val lst = ts.toList
format(cols :: lst.map(t => tupleToList(t, cols)))
}
private val namePat = "^(.*)\\.(arg1|arg2|rel|namespace)$".r
def triplesToTable(ts: List[Tuple]): String = ts match {
case t :: rest => {
val conjNames = for {
a <- t.attrs.keys
(conj, field) <- a match {
case namePat(conj, field) => Some((conj, field))
case _ => None
}
} yield conj
val columns = conjNames.toList.distinct.flatMap(n => List(s"${n}.arg1", s"${n}.rel", s"${n}.arg2", s"${n}.namespace"))
tuplesToTable(columns, ts)
}
case _ => ""
}
def tuplesToTable(ts: Iterable[Tuple]): String = {
val lst = ts.toList
if (lst.size > 0) {
val cols = lst(0).attrs.keys.toList
tuplesToTable(cols, ts)
} else {
""
}
}
def format(table: Seq[Seq[Any]]) = table match {
case Seq() => ""
case _ =>
val sizes = for (row <- table) yield (for (cell <- row)
yield if (cell == null) 0 else cell.toString.length)
val colSizes = for (col <- sizes.transpose) yield col.max
val rows = for (row <- table) yield formatRow(row, colSizes)
formatRows(rowSeparator(colSizes), rows)
}
def formatRows(rowSeparator: String, rows: Seq[String]): String = (
rowSeparator ::
rows.head ::
rowSeparator ::
rows.tail.toList :::
rowSeparator ::
List()).mkString("\n")
def formatRow(row: Seq[Any], colSizes: Seq[Int]) = {
val cells = (for ((item, size) <- row.zip(colSizes))
yield if (size == 0) "" else ("%" + size + "s").format(item))
cells.mkString("|", "|", "|")
}
def rowSeparator(colSizes: Seq[Int]) =
colSizes map { "-" * _ } mkString ("+", "+", "+")
}
/**
* A custom string-similarity object. Measures the similarity between
* two strings. Lowercases them and removes some stop words first.
*/
object StrSim {
import edu.knowitall.tool.stem.Lemmatized
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.tool.postag.PostaggedToken
import edu.knowitall.tool.chunk.OpenNlpChunker
import edu.knowitall.tool.chunk.ChunkedToken
val stops = Set("a", "an", "and", "are", "as", "at", "be", "but", "by",
"for", "if", "in", "into", "is", "it",
"no", "not", "of", "on", "or", "such",
"that", "the", "their", "then", "there", "these",
"they", "this", "to", "was", "will", "with", "i", "me", "your",
"our", "ours", "him", "he", "his", "her", "its", "you", "that",
"every", "all", "each", "those", "other", "both", "neither", "some",
"'s")
val morpha = new MorphaStemmer()
val chunker = new OpenNlpChunker()
def lemmatize[T <: PostaggedToken](tokens: Iterable[T]): Seq[Lemmatized[T]] =
morpha.synchronized {
tokens.toSeq map morpha.lemmatizePostaggedToken
}
def lemmatize(string: String): Seq[Lemmatized[ChunkedToken]] = chunker.synchronized(lemmatize(chunker(string)))
def normTokens(x: String) = {
val lc = x.toLowerCase()
val split = lc.split("\\s+")
val noStops = split.filter { t =>
val lookup = !stops.contains(t)
lookup
}
noStops
}
def norm(x: String) = normTokens(x).mkString(" ")
def sim(x: String, y: String): Double = {
// hack -- compare forwards and backwards to avoid high scores for prefixes
val nx = norm(x)
val ny = norm(y)
val forward = JaroWinklerMetric.compare(nx, ny).getOrElse(0.0)
val backward = JaroWinklerMetric.compare(nx.reverse, ny.reverse).getOrElse(0.0)
(forward + backward) / 2.0
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/execution/StopwordExecutor.scala
================================================
package edu.knowitall.execution
case class StopwordExecutor(baseExecutor: QueryExecutor) extends QueryExecutor {
import java.util.regex.Pattern
val stops = Set("a", "an", "the", "'s", "these", "those", "some", "that", "something")
override def execute(q: ConjunctiveQuery): Iterable[ExecTuple] =
baseExecutor.execute(cleanQuery(q))
def cleanQuery(q: ConjunctiveQuery): ListConjunctiveQuery = {
ListConjunctiveQuery(q.qVars, q.conjuncts map cleanConjunct)
}
def cleanConjunct(c: TConjunct): TConjunct = {
val cleanValues = c.values.map {
case (key, UnquotedTLiteral(value)) =>
(key, UnquotedTLiteral(cleanWords(value)))
case (key, value) => (key, value)
}
c.copy(values = cleanValues)
}
def cleanWords(str: String) = {
val cleaned = str.split(" ").filterNot(stops.contains).mkString(" ")
if (cleaned.isEmpty) str else cleaned
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/CorrectnessModel.scala
================================================
package edu.knowitall.learning
trait CorrectnessModel[Input, Output] {
def isCorrect(input: Input, output: Output): Boolean
def pickCorrect(input: Input, candidates: Seq[Output]): Option[Output]
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/FeatureFunction.scala
================================================
package edu.knowitall.learning
import scala.language.implicitConversions
abstract class FeatureFunction[T] extends Function[T, SparseVector] {
override def apply(t: T): SparseVector
def sum(that: FeatureFunction[T]): FeatureFunction[T]
def +(that: FeatureFunction[T]) = this.sum(that)
}
object FeatureFunction {
def apply[T](f: T => SparseVector): FeatureFunction[T] = FeatureFunctionImpl(f)
implicit def functionToFeatureFunction[T](f: T => SparseVector): FeatureFunction[T] = FeatureFunction(f)
implicit def pairToFeatureFunction[T](f: T => (String, Double)): FeatureFunction[T] = FeatureFunction((t: T) => {
val (name, value) = f(t)
SparseVector(name -> value)
})
private case class FeatureFunctionImpl[T](f: Function[T, SparseVector]) extends FeatureFunction[T] {
override def apply(t: T) = f(t)
override def sum(that: FeatureFunction[T]): FeatureFunction[T] = FeatureFunctionImpl((t: T) => this(t) + that(t))
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/HiddenVariableModel.scala
================================================
package edu.knowitall.learning
trait HiddenVariableModel[Input, Output] {
def predict(input: Input): Option[Output]
def candidatePredictions(input: Input): Seq[Output]
def update(input: Input, predicted: Output, expected: Output): Unit
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/InteractiveOracle.scala
================================================
package edu.knowitall.learning
import edu.knowitall.util.TuplePrinter.printTuple
import edu.knowitall.execution.Tabulator.{format => toTable}
import edu.knowitall.model.Derivation
import edu.knowitall.search.qa.QueryState
class InteractiveOracle extends CorrectnessModel[String, Derivation] {
private def parseInt(s: String) =
try Some(s.toInt)
catch {
case e: Throwable => None
}
private def parseInts(s: String) =
try s.split("""[^-0-9]+""").map(_.toInt).toSeq
catch {
case e: Throwable => Nil
}
private def derivString(deriv: Derivation) = {
deriv.toString
}
private def derivsToTable(derivs: Seq[Derivation]) = {
val paired = derivs.zipWithIndex flatMap { case (a, b) =>
val sd = derivString(a).split("->").toList.reverse
val triples = sd.map((b, a.answer, _)).zipWithIndex map { case ((c, d, e), f) =>
if (f == 0) {
List(c, d, e)
} else {
List("", "", e)
}
}
triples :+ List("", "", "")
}
toTable(List("#", "answer", "evidence") +: paired)
}
private def getBoolean: Boolean = {
print("> ")
Console.readLine match {
case "1" => true
case "-1" => false
case "0" => false
case _ => {
println("Type 1 for true, 0 or -1 for false")
getBoolean
}
}
}
private def getInt(min: Int, max: Int): Int = {
print("> ")
parseInt(Console.readLine) match {
case Some(i) if min <= i && i <= max => i
case Some(i) => {
println(s"Must choose between $min and $max")
getInt(min, max)
}
case None => {
println(s"Must enter an integer")
getInt(min, max)
}
}
}
private def getInts(min: Int, max: Int): List[Int] = {
print("> ")
parseInts(Console.readLine) match {
case Nil => {
println(s"Must enter a list of integers")
getInts(min, max)
}
case lst if lst.contains(-1) && lst.size > 1 => {
println("Cannot have -1 in list")
getInts(min, max)
}
case lst if lst.forall(i => min <= i && i <= max) => lst.toList
case _ => {
println(s"Must enter a list of integers between $min and $max")
getInts(min, max)
}
}
}
def pickCorrectMultiple(question: String, derivs: Seq[Derivation]) =
if (derivs.size > 0) {
val iderivs = derivs.toIndexedSeq
println(s"Question = $question\n")
println(s"Pick from derivations below (-1 means no answer)")
println(derivsToTable(derivs))
getInts(-1, derivs.size-1) match {
case List(-1) => Nil
case lst => lst.map(iderivs(_))
}
} else {
Nil
}
override def isCorrect(question: String, deriv: Derivation) = {
println(s"Question = $question")
println(s"Answer = ${deriv.answer}")
println(s"Derivation = ${derivString(deriv)}")
println()
getBoolean
}
override def pickCorrect(question: String, derivs: Seq[Derivation]) =
if (derivs.size > 0) {
val iderivs = derivs.toIndexedSeq
println(s"Question = $question\n")
println(s"Pick from derivations below (-1 means no answer)")
println(derivsToTable(derivs))
getInt(-1, derivs.size-1) match {
case -1 => None
case i => Some(iderivs(i))
}
} else None
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/LabeledDataOracle.scala
================================================
package edu.knowitall.learning
import edu.knowitall.eval.Oracle
import edu.knowitall.eval.FileOracle
import edu.knowitall.model.Derivation
class LabeledDataOracle(oracle: Oracle) extends CorrectnessModel[String, Derivation] {
def this(path: String) = this(new FileOracle(path))
def isCorrectAnswer(question: String, answer: String) =
oracle.getLabel(question, answer).getOrElse(false)
override def isCorrect(question: String, deriv: Derivation) =
isCorrectAnswer(question, deriv.answer)
override def pickCorrect(question: String, derivs: Seq[Derivation]) =
derivs.filter(answer => isCorrect(question, answer)) match {
case d :: ds => Some(d)
case Nil => None
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/MemoryInteractiveOracle.scala
================================================
package edu.knowitall.learning
import edu.knowitall.eval.FileOracle
import org.slf4j.LoggerFactory
import edu.knowitall.model.Derivation
class MemoryInteractiveOracle(oracle: FileOracle) extends CorrectnessModel[String, Derivation] {
val logger = LoggerFactory.getLogger(this.getClass)
def this(path: String) = this(new FileOracle(path))
val labeled = new LabeledDataOracle(oracle)
val interactive = new InteractiveOracle()
override def isCorrect(question: String, deriv: Derivation) = {
val answer = deriv.answer
if (oracle.hasLabel(question, answer)) {
logger.debug(s"Using saved labels for $question")
labeled.isCorrect(question, deriv)
} else {
val result = interactive.isCorrect(question, deriv)
oracle.update(question, answer, result)
oracle.save
result
}
}
private def haveLabelFor(question: String, deriv: Derivation) =
oracle.hasLabel(question, deriv.answer)
override def pickCorrect(question: String, derivs: Seq[Derivation]) = {
labeled.pickCorrect(question, derivs) match {
case Some(deriv) => {
logger.debug(s"Using saved labels for $question")
logger.debug(s"Found '${deriv.answer}' as answer for '$question'")
Some(deriv)
}
case None => {
val unlabeled = derivs.filter(d => !haveLabelFor(question, d))
interactive.pickCorrectMultiple(question, unlabeled) match {
case seq: Seq[Derivation] if seq.size > 0 => {
for (d <- seq) {
oracle.update(question, d.answer, true)
}
oracle.save
logger.debug(s"Found '${seq(0)}' as answer for '$question'")
Some(seq(0))
}
case Nil => {
for (d <- unlabeled) {
oracle.update(question, d.answer, false)
}
oracle.save
logger.debug(s"Correct answer for '$question' is unreachable")
None
}
}
}
}
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/Perceptron.scala
================================================
package edu.knowitall.learning
class Perceptron[Input, Output](model: HiddenVariableModel[Input, Output],
oracle: CorrectnessModel[Input, Output]) {
def learnIter(input: Input) = for {
prediction <- model.predict(input)
if !oracle.isCorrect(input, prediction)
candidates = model.candidatePredictions(input)
correct <- oracle.pickCorrect(input, candidates)
} model.update(input, prediction, correct)
def learn(inputs: Traversable[Input]) = inputs foreach learnIter
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/QATrainer.scala
================================================
package edu.knowitall.learning
import com.typesafe.config.ConfigFactory
import edu.knowitall.eval.FileOracle
import edu.knowitall.eval.Oracle
import scala.io.Source
import edu.knowitall.eval.FileOracle
import java.io.File
import java.io.PrintWriter
import edu.knowitall.util.Counter
import edu.knowitall.model.QaModel
import edu.knowitall.model.Derivation
import java.text.SimpleDateFormat
import java.util.Calendar
import org.slf4j.LoggerFactory
import java.io.StringWriter
class QaTrainer(model: QaModel, oracle: CorrectnessModel[String, Derivation]) extends HiddenVariableModel[String, Derivation] {
private var avgWeights = model.costModel.weights
private var iter = 1.0
var numUpdates = 0
var numExamples = 0
private val perceptron = new Perceptron(this, oracle)
private val logger = LoggerFactory.getLogger(this.getClass)
override def predict(question: String) = model.predict(question)
override def candidatePredictions(question: String) = model.candidatePredictions(question)
override def update(question: String, predicted: Derivation, expected: Derivation) = {
logger.info(s"Updating:\ncorrect = ${expected}\n${expected.explainScore(model.costModel.weights)}\npredicted = ${predicted}\n${predicted.explainScore(model.costModel.weights)}")
model.update(question, predicted, expected)
numUpdates += 1
avgWeights = avgWeights + (expected.features - predicted.features) * iter
logger.info(s"Updated weights:\n${model.costModel.weights.toTable}")
}
def learnIter(question: String) = {
try {
logger.info(s"Question $iter = $question")
perceptron.learnIter(question)
iter += 1
numExamples += 1
} catch {
case e: Throwable => {
logger.warn(s"Encountered problem with example: $question")
logger.warn(s"Supressing error.")
val sw = new StringWriter()
val pw = new PrintWriter(sw)
e.printStackTrace(pw)
logger.warn(sw.toString())
}
}
}
def learn(inputs: Traversable[String]) = inputs foreach learnIter
def averagedWeights = model.costModel.weights - (avgWeights / iter)
}
object QaTrainer extends App {
def timestamp = {
val fmt = new SimpleDateFormat("yyyy-MM-dd-HHmmss")
val today = Calendar.getInstance.getTime
fmt.format(today)
}
val conf = ConfigFactory.load()
val oracleMode = conf.getString("learning.oracleMode")
val labelsPath = conf.getString("learning.labelsPath")
val inputsPath = conf.getString("learning.inputsPath")
val outputsPath = conf.getString("learning.outputsPath")
val numIters = conf.getInt("learning.numIters")
val runName = if (conf.hasPath("learning.runName")) conf.getString("learning.runName") else "unnamed"
val dir = new File(outputsPath, s"${runName}-${timestamp}")
if (dir.exists() && !dir.isDirectory())
throw new IllegalStateException(s"$dir exists but is not a directory")
if (!dir.exists()) dir.mkdirs()
val modelOutput = new File(dir, "model.txt")
val configOutput = new PrintWriter(new File(dir, "config.txt"))
configOutput.write(conf.root().render)
configOutput.close()
val oracle = oracleMode match {
case "interactive" => new MemoryInteractiveOracle(labelsPath)
case "file" => new LabeledDataOracle(labelsPath)
case _ => throw new IllegalStateException(s"Invalid oracle mode: $oracleMode")
}
val inputs = Source.fromFile(inputsPath, "UTF8").getLines.map(Oracle.normalize).toList
val model = QaModel()
val trainer = new QaTrainer(model, oracle)
println("Learning...")
for (i <- 1 to numIters) {
val start = System.currentTimeMillis
trainer.learn(inputs)
val file = new File(dir, s"model.$i.txt")
SparseVector.toFile(model.costModel.weights, file.toString())
val avgFile = new File(dir, s"model.$i.avg.txt")
SparseVector.toFile(trainer.averagedWeights, avgFile.toString())
val delta = System.currentTimeMillis - start
println(s"Done with iteration $i (${delta/1000} seconds, ${trainer.numUpdates} updates so far)")
}
println("Done learning")
SparseVector.toFile(model.costModel.weights, modelOutput.toString())
SparseVector.toFile(trainer.averagedWeights, (new File(dir, s"model.avg.txt")).toString())
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/QueryTupleSimilarity.scala
================================================
package edu.knowitall.learning
import edu.knowitall.execution.ConjunctiveQuery
import edu.knowitall.execution.Tuple
import edu.knowitall.tool.stem.MorphaStemmer
import scala.Option.option2Iterable
import edu.knowitall.execution.TLiteral
import edu.knowitall.execution.Search
object QueryTupleSimilarity {
def normalize(ss: List[String]): List[String] = ss.map(_.toLowerCase()).map(MorphaStemmer.stem)
def tokenize(s: String) = s.split(" ").toList
def queryWords(q: ConjunctiveQuery): List[String] = {
val literalFields = for (c <- q.conjuncts; (field, literal) <- c.literalFields) yield literal.value
normalize(literalFields.flatMap(tokenize))
}
def tupleWords(q: ConjunctiveQuery, t: Tuple): List[String] = {
val values = for (c <- q.conjuncts;
(field, literal) <- c.literalFields;
value <- t.getString(s"${c.name}.${field}"))
yield value
normalize(values.flatMap(tokenize))
}
def jaccard(x: List[String], y: List[String]): Double = {
val xset = x.toSet
val yset = y.toSet
if (x.size > 0 || y.size > 0) {
xset.intersect(yset).size.toDouble / xset.union(yset).size
} else {
0.0
}
}
def similarity(q: ConjunctiveQuery, t: Tuple): Double = {
val qws = queryWords(q)
val tws = tupleWords(q, t)
jaccard(qws, tws)
}
def tupleFieldWords(q: ConjunctiveQuery, t: Tuple, fields: Set[Search.Field]) = {
val values = for {
c <- q.conjuncts
(field, literal) <- c.literalFields
if fields.contains(field)
value <- t.getString(s"${c.name}.${field}")
} yield value
normalize(values.flatMap(tokenize))
}
def tupleWordsFields(t: Tuple, fields: Set[Search.Field]) = {
val values = for {
(a, v) <- t.attrs collect {
case (a: String, v: String) => (a, v)
}
f <- fields
if a.endsWith("." + f.name)
} yield v
normalize(values.toList.distinct.flatMap(tokenize))
}
def queryFieldWords(q: ConjunctiveQuery, fields: Set[Search.Field]) = {
val values = for {
c <- q.conjuncts
(field, literal) <- c.literalFields
if fields.contains(field)
value = literal.value
} yield value
normalize(values.flatMap(tokenize))
}
def argSimilarity(q: ConjunctiveQuery, t: Tuple) = {
val qws = queryFieldWords(q, Set(Search.arg1, Search.arg2))
val tws = tupleFieldWords(q, t, Set(Search.arg1, Search.arg2))
jaccard(qws, tws)
}
def relSimilarity(q: ConjunctiveQuery, t: Tuple) = {
val qws = queryFieldWords(q, Set(Search.rel))
val tws = tupleFieldWords(q, t, Set(Search.rel))
jaccard(qws, tws)
}
def questionQuerySimilarity(query: ConjunctiveQuery, ques: String) = {
val queryws = queryWords(query)
val quesws = normalize(tokenize(ques))
jaccard(queryws, quesws)
}
def questionTupleSimilarity(ques: String, t: Tuple) = {
val quesws = normalize(tokenize(ques))
val twords = tupleWordsFields(t, Set(Search.arg1, Search.rel, Search.arg2))
jaccard(quesws, twords)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/learning/SparseVector.scala
================================================
package edu.knowitall.learning
import scala.io.Source
import java.io.PrintWriter
import scala.language.implicitConversions
import java.io.InputStream
import java.io.File
import java.io.FileInputStream
import edu.knowitall.execution.Tabulator
abstract class SparseVector {
def activeComponents: Iterable[String]
def apply(i: String): Double
def add(that: SparseVector): SparseVector
def scalarMult(x: Double): SparseVector
def dot(that: SparseVector): Double
def subtract(that: SparseVector): SparseVector = this.add(that.scalarMult(-1.0))
def +(that: SparseVector): SparseVector = this.add(that)
def -(that: SparseVector): SparseVector = this.subtract(that)
def *(x: Double): SparseVector = this.scalarMult(x)
def *(that: SparseVector): Double = this.dot(that)
def /(x: Double): SparseVector = this.scalarMult(1/x)
def activeComponents(that: SparseVector): Iterable[String] = (this.activeComponents ++ that.activeComponents).toList.distinct
def toTable = {
val pairs = for (c <- activeComponents.toList.sortBy(-this(_)); if Math.abs(this(c)) > 1e-9) yield Seq(c, this(c))
Tabulator.format(Seq("Feature", "Weight") +: pairs.toSeq)
}
}
object SparseVector {
implicit def dPairToSparseVector(x: (String, Double)): SparseVector = SparseVectorImpl(Map(x._1 -> x._2))
implicit def bPairToSparseVector(x: (String, Boolean)): SparseVector = SparseVectorImpl(Map(x._1 -> {if (x._2) 1.0 else 0.0}))
implicit def iPairToSparseVector(x: (String, Int)): SparseVector = SparseVectorImpl(Map(x._1 -> x._2.toDouble))
implicit def pairsToSparseVector(pairs: TraversableOnce[(String, Double)]): SparseVector = SparseVectorImpl(pairs.toMap)
implicit def stringListToSparseVector(list: TraversableOnce[String]): SparseVector = SparseVectorImpl(list.map(s => (s, 1.0)).toMap)
implicit def stringToSparseVector(s: String): SparseVector = SparseVectorImpl(Map(s -> 1.0))
implicit def oStringToSparseVector(os: Option[String]): SparseVector = os match {
case Some(s) => SparseVectorImpl(Map(s -> 1.0))
case _ => SparseVectorImpl(Map())
}
def apply: SparseVector = SparseVectorImpl(Map())
def apply(pairs: TraversableOnce[(String, Double)]): SparseVector = SparseVectorImpl(pairs.toMap)
def apply(pairs: (String, Double)*): SparseVector = SparseVectorImpl(pairs.toMap)
def fromFile(path: String): SparseVector = {
fromInputStream(new FileInputStream(new File(path)))
}
def fromInputStream(in: InputStream): SparseVector = {
val lines = Source.fromInputStream(in, "UTF8").getLines
val pairs = lines.map { line => line.split("\t") match {
case Array(k, v) => (k, v.toDouble)
case _ => throw new IllegalStateException(s"Could not parse line: '$line'")
}}.toIterable
SparseVector(pairs)
}
def toFile(vector: SparseVector, path: String) = {
val writer = new PrintWriter(path)
vector.activeComponents.foreach(k => writer.println(s"${k}\t${vector(k)}"))
writer.close()
}
private case class SparseVectorImpl(map: Map[String, Double]) extends SparseVector {
override def activeComponents = map.keys
override def apply(i: String) = map.getOrElse(i, 0.0)
override def add(that: SparseVector): SparseVector = {
val pairs = for (k <- this.activeComponents(that)) yield (k, this(k) + that(k))
SparseVectorImpl(pairs.toMap)
}
override def scalarMult(x: Double): SparseVector = {
val pairs = for((k, v) <- map) yield (k, x * v)
SparseVectorImpl(pairs.toMap)
}
override def dot(that: SparseVector): Double = {
this.activeComponents(that).map(i => this(i) * that(i)).sum
}
override def toString = this.map.toString.replaceFirst("Map", "SparseVector")
}
final val zero = SparseVector()
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/lm/LanguageModel.scala
================================================
package edu.knowitall.lm
import java.net.URL
import java.net.URI
import java.net.URLEncoder
import scalaj.http.Http
import scala.io.Source
import scalaj.http.HttpOptions
import com.typesafe.config.ConfigFactory
import edu.knowitall.util.MathUtils
import org.slf4j.LoggerFactory
import com.twitter.util.LruMap
import scala.collection.mutable.SynchronizedMap
trait LanguageModel {
/**
* Queries a string, returns its log probability.
*/
def query(s: String): Double
/**
* Does a batch query of a bunch of strings, returns a list of the (input,
* log probability) pairs.
*/
def query(s: Iterable[String]): List[(String, Double)]
}
case class KenLmServer(url: String, timeOut: Int,
scale: Boolean = KenLmServer.scale,
cacheSize: Int = KenLmServer.defaultCacheSize,
skipTimeouts: Boolean = KenLmServer.defaultSkipTimeouts) extends LanguageModel {
def this() = this(KenLmServer.defaultUrl, KenLmServer.defaultTimeout)
val logger = LoggerFactory.getLogger(this.getClass)
val root = s"${url}/score"
val retries = KenLmServer.retries
private val cache = new LruMap[String, Double](cacheSize) with SynchronizedMap[String, Double]
override def query(s: String): Double = cache.get(s) match {
case Some(x) => x
case None => try {
val result = queryHelper(s)
cache.put(s, result)
result
} catch {
case e: IllegalStateException => if (skipTimeouts) {
logger.warn(s"Could not compute LM score for '$s': $e")
scaleValue(Double.MinValue)
} else {
throw e
}
}
}
private def queryHelper(s: String, attempt: Int = 0): Double = {
if (attempt > retries) {
throw new IllegalStateException(s"Unable to query KenLM for '$s'")
} else {
try {
logger.debug(s"Querying for one string (attempt ${attempt+1}/$retries): $s")
scaleValue(Http(root).option(HttpOptions.connTimeout(timeOut)).params("q" -> s).asString.toDouble)
} catch {
case e: Throwable => {
queryHelper(s, attempt + 1)
}
}
}
}
def queryBatch(s: Iterable[String]) = {
logger.debug(s"Querying for ${s.size} strings")
val lst = s.toList
val joined = lst.mkString("|")
val lines = Http.post(root).
option(HttpOptions.connTimeout(timeOut)).
option(HttpOptions.readTimeout(timeOut)).
params("q" -> joined).
asString.trim.split("\n")
val results = lst.zip(lines).map { case (a, b) => (a, scaleValue(b.toDouble)) }
for ((a, b) <- results) cache.put(a, b)
results
}
override def query(s: Iterable[String]) = {
val groups = s.grouped(KenLmServer.batchSize)
groups.flatMap(queryBatch).toList
}
private def scaleValue(x: Double): Double =
if (scale) MathUtils.clipScale(x, KenLmServer.minValue, KenLmServer.maxValue)
else x
}
case object KenLmServer {
val conf = ConfigFactory.load()
val defaultUrl = conf.getString("lm.url")
val defaultTimeout = conf.getInt("lm.timeout")
val retries = conf.getInt("lm.retries")
val batchSize = conf.getInt("lm.batchSize");
val minValue = conf.getDouble("lm.minValue")
val maxValue = conf.getDouble("lm.maxValue")
val scale = conf.getBoolean("lm.scale")
val defaultSkipTimeouts = conf.getBoolean("lm.skipTimeouts")
val defaultCacheSize = conf.getInt("lm.cacheSize")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/model/Derivation.scala
================================================
package edu.knowitall.model
import edu.knowitall.search.qa.AnswerState
import edu.knowitall.search.qa.QuestionState
import edu.knowitall.search.Edge
import edu.knowitall.search.qa.QaState
import edu.knowitall.search.qa.QaAction
import edu.knowitall.learning.SparseVector
import edu.knowitall.search.qa.QaStep
import edu.knowitall.execution.ExecTuple
import edu.knowitall.search.qa.ExecutionAction
import edu.knowitall.execution.Tabulator
case class Derivation(question: String,
answer: String,
steps: IndexedSeq[QaStep],
features: SparseVector,
score: Double,
searchTime: Long = 0L) {
assert(steps.size >= 2)
def questionState: QuestionState = steps.head.fromState match {
case q: QuestionState => q
case x =>
throw new IllegalStateException(s"Expected QuestionState, got $x, steps = $steps")
}
def answerState: AnswerState = steps.last.toState match {
case a: AnswerState => a
case x =>
throw new IllegalStateException(s"Expected AnswerState, got $x, steps = $steps")
}
def explainScore(weights: SparseVector) = {
val rows = for {
fname <- features.activeComponents.toList.sortBy(f => -1*features(f)*weights(f))
fvalue = features(fname)
weight = weights(fname)
product = fvalue * weight
} yield Seq(product, weight, fvalue, fname)
val allRows: Seq[Seq[Any]] = Seq(Seq("prod", "weight", "value", "feature")) ++ rows.toSeq
Tabulator.format(allRows)
}
override def toString = {
val l = List(questionState) ++ steps.map(_.toState)
l.map(_.toString).mkString(" -> ") + s" (${searchTime}ms)"
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/model/QaModel.scala
================================================
package edu.knowitall.model
import edu.knowitall.search.qa.QaStep
import edu.knowitall.search.qa.QaState
import edu.knowitall.search.qa.QaAction
import edu.knowitall.learning.HiddenVariableModel
import edu.knowitall.learning.SparseVector
import edu.knowitall.search.qa.QaCostModel
import edu.knowitall.search.qa.QaTransitionModel
import edu.knowitall.search.qa.QaSearchProblem
import edu.knowitall.search.BeamSearch
import com.typesafe.config.ConfigFactory
import edu.knowitall.search.Edge
import edu.knowitall.search.Node
import edu.knowitall.search.qa.AnswerState
import org.slf4j.LoggerFactory
import edu.knowitall.search.qa.QaBeamSearch
import edu.knowitall.search.SearchAlgorithm
case class QaModel(transitionModel: QaTransitionModel = QaModel.defaultTransitionModel,
costModel: QaCostModel = QaModel.defaultCostModel)
extends HiddenVariableModel[String, Derivation] {
val logger = LoggerFactory.getLogger(this.getClass)
private def createSearchProblem(question: String) =
new QaSearchProblem(question, transitionModel, costModel)
private def pathToSteps(q: String, path: List[(QaState, QaAction, QaState)]) =
path map { case (fromState, action, toState) =>
QaStep(q, fromState, action, toState)
}
private def makeDerivation(q: String, n: Node[QaState, QaAction], t0: Long) =
n.state match {
case as: AnswerState => {
val a = as.answer
val steps = pathToSteps(q, n.path())
val feats = steps.map(costModel.features).fold(SparseVector.zero)(_+_)
val score = -1 * n.pathCost
val searchTime = n.creationTime - t0
Some(Derivation(q, a, steps.toIndexedSeq, feats, score, searchTime))
}
case _ => None
}
override def predict(question: String) = {
val preds = candidatePredictions(question)
preds.sortBy(-1 * _.score) match {
case d :: rest => {
logger.debug(s"Prediction: $question => ${d.answer}")
Some(d)
}
case _ => {
logger.debug(s"Prediction: $question => None")
None
}
}
}
override def candidatePredictions(question: String) = {
val problem = createSearchProblem(question)
val searcher = new QaBeamSearch(problem)
val goals = searcher.search
goals.flatMap(makeDerivation(question, _, searcher.startTime))
}
override def update(q: String, output: Derivation, expected: Derivation) = {
logger.debug(s"Updating model with ${expected.answer} - ${output.answer}")
val delta = expected.features - output.features
val oldWeights = costModel.weights
val newWeights = oldWeights + delta
costModel.weights = newWeights
logger.debug(s"Updated model = $newWeights")
}
}
case object QaModel {
lazy val defaultTransitionModel = new QaTransitionModel
lazy val defaultCostModel = new QaCostModel
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/Paraphrase.scala
================================================
package edu.knowitall.paraphrasing
abstract class Paraphrase private () {
def source: String
def target: String
def derivation: ScoredParaphraseDerivation
}
object Paraphrase {
private case class ParaphraseImpl(source: String, target: String,
derivation: ScoredParaphraseDerivation) extends Paraphrase
def apply(source: String, target: String,
derivation: ScoredParaphraseDerivation): Paraphrase =
ParaphraseImpl(source, target, derivation)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/ParaphraseDerivation.scala
================================================
package edu.knowitall.paraphrasing
import com.typesafe.config.ConfigFactory
trait ParaphraseDerivation
trait ScoredParaphraseDerivation extends ParaphraseDerivation {
def score: Double
}
case object IdentityDerivation extends ScoredParaphraseDerivation {
val conf = ConfigFactory.load()
override val score = conf.getDouble("paraphrase.identityScore")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/Paraphraser.scala
================================================
package edu.knowitall.paraphrasing
trait Paraphraser {
def paraphrase(s: String): List[Paraphrase]
def paraphraseToStrings(s: String): List[String] =
paraphrase(s).map(pp => pp.target)
}
object EmptyParaphraser extends Paraphraser {
override def paraphrase(s: String) = List()
}
object IdentityParaphraser extends Paraphraser {
override def paraphrase(s: String) = List(Paraphrase(s, s, IdentityDerivation))
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/rules/ParaphraseRule.scala
================================================
package edu.knowitall.paraphrasing.rules
import edu.knowitall.parsing.cg.SentencePattern
import edu.knowitall.execution.UnquotedTLiteral
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.execution.TVariable
import edu.knowitall.parsing.cg.LexiconPreprocessor
import edu.knowitall.search.qa.QaAction
case class ParaphraseRule(name: String, input: SentencePattern, output: String) extends QaAction {
private val sp = UnquotedTLiteral(output)
def apply(s: Sentence with Chunked with Lemmatized) = if (input.matches(s)) {
val groups = input.groups(s)
val bindings = groups map {
case (name, value) => (TVariable(name), UnquotedTLiteral(value))
}
val result = sp.subs(bindings)
Some(result.value)
} else {
None
}
override def toString = name
}
case object ParaphraseRule {
lazy val preprocessor = LexiconPreprocessor()
def fromStrings(strings: IndexedSeq[String]) = for {
line <- strings
if !line.trim.startsWith("#") && line.trim != ""
} yield fromString(line)
def fromString(s: String) = s.split("\\s+:=\\s+", 2) match {
case Array(input, output) => input.split("\\s+", 2) match {
case Array(name, pat) =>
ParaphraseRule(name, SentencePattern(preprocessor(pat)), output)
case _ => throw new IllegalArgumentException(s"Invalid pattern: $input")
}
case _ => throw new IllegalArgumentException(s"Invalid rule: $s")
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/rules/ParaphraseRuleSet.scala
================================================
package edu.knowitall.paraphrasing.rules
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.util.ResourceUtils
import com.typesafe.config.ConfigFactory
import edu.knowitall.util.NlpTools
import scala.io.Source
case class ParaphraseRuleSet(rules: List[ParaphraseRule] = ParaphraseRuleSet.defaultRules) {
def apply(s: Sentence with Chunked with Lemmatized) = for {
r <- rules
p <- r(s)
} yield (r, p)
}
case object ParaphraseRuleSet {
val conf = ConfigFactory.load()
val defaultRuleSetPath = conf.getString("paraphrase.rules.ruleSetPath")
lazy val defaultRules = {
val strings = ResourceUtils.resourceSource(defaultRuleSetPath).getLines.toIndexedSeq
ParaphraseRule.fromStrings(strings)
}.toList
def fromPath(p: String) = {
val lines = Source.fromFile(p, "UTF-8").getLines.toIndexedSeq
ParaphraseRuleSet(ParaphraseRule.fromStrings(lines).toList)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/LmParaphraseScorer.scala
================================================
package edu.knowitall.paraphrasing.template
import edu.knowitall.lm.KenLmServer
import edu.knowitall.paraphrasing.ScoredParaphraseDerivation
class LmParaphraseScorer extends ParaphraseScorer {
val client = new KenLmServer()
override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = {
val dlist = derivs.toList
val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(" "))).map(_._2)
for ((d, score) <- dlist.zip(lmScores)) yield d.copy(score = score, lm = score)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/ParaphraseScorer.scala
================================================
package edu.knowitall.paraphrasing.template
import edu.knowitall.paraphrasing.ScoredParaphraseDerivation
trait ParaphraseScorer {
def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation]
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/PmiLmParaphraseScorer.scala
================================================
package edu.knowitall.paraphrasing.template
import edu.knowitall.tool.tokenize.ClearTokenizer
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.lm.KenLmServer
import edu.knowitall.paraphrasing.ScoredParaphraseDerivation
class PmiLmParaphraseScorer() extends ParaphraseScorer {
val client = new KenLmServer()
override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = {
val dlist = derivs.toList
val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(" "))).map(_._2)
for ((d, lmScore) <- dlist.zip(lmScores)) yield d.copy(score = -lmScore * d.templates.pmi, lm = lmScore)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/PmiParaphraseScorer.scala
================================================
package edu.knowitall.paraphrasing.template
import edu.knowitall.lm.KenLmServer
class PmiParaphraseScorer() extends ParaphraseScorer {
val client = new KenLmServer()
override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = {
val dlist = derivs.toList
val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(" "))).map(_._2)
for ((d, score) <- dlist.zip(lmScores)) yield d.copy(score = d.templates.pmi)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/Template.scala
================================================
package edu.knowitall.paraphrasing.template
import edu.knowitall.tool.stem.Lemmatized
import edu.knowitall.tool.chunk.ChunkedToken
import edu.knowitall.util.NlpUtils.makeRegex
import scala.collection.JavaConversions._
import edu.knowitall.util.NlpUtils
import com.typesafe.config.ConfigFactory
import edu.knowitall.tool.stem.Lemmatized.viewAsToken
case class Template(left: Seq[Lemmatized[ChunkedToken]], right: Seq[Lemmatized[ChunkedToken]]) {
def substitute(value: Seq[Lemmatized[ChunkedToken]]) = left ++ value ++ right
def serialize = NlpUtils.serialize(left) + "|" + NlpUtils.serialize(right)
val templateString = (left.map(_.lemma.toLowerCase()).mkString(" ") + " $y " + right.map(_.lemma.toLowerCase()).mkString(" ")).trim
}
case object Template {
def deserialize(s: String): Template = {
s.split("|") match {
case Array(s1, s2) => Template(NlpUtils.deserialize(s1), NlpUtils.deserialize(s2))
case _ => throw new IllegalArgumentException(s"Could not deserialize template: $s")
}
}
}
case class AbstractedQuestion(value: Seq[Lemmatized[ChunkedToken]], template: Template) {
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)))
def substitute = template.substitute(value)
val valueString = value.map(_.lemma.toLowerCase()).mkString(" ").trim()
def serialize = NlpUtils.serialize(value) + "|" + template.serialize
}
case object AbstractedQuestion {
val conf = ConfigFactory.load()
def deserialize(s: String): AbstractedQuestion = {
s.split("|", 1) match {
case Array(value, rest) => AbstractedQuestion(NlpUtils.deserialize(value), Template.deserialize(rest))
case _ => throw new IllegalArgumentException(s"Could not deserialize abstracted question: $s")
}
}
val maxSize = conf.getInt("paraphrase.template.maxArgLength")
val valuePattern = makeRegex("^+$")
val argPos = "$ PRP$ CD DT JJ JJS JJR NN NNS NNP NNPS POS PRP RB RBR RBS VBN VBG".split(" ").toSet
def keepArg(arg: Seq[Lemmatized[ChunkedToken]]) = arg.forall(t => argPos.contains(t.postag))
def intervals(size: Int, max: Int) =
for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= max) yield (i, j+1)
def detInTemplate(abs: AbstractedQuestion) = abs.template.left.size > 0 && abs.template.left.last.postag == "DT"
def keepAbs(abs: AbstractedQuestion) = !detInTemplate(abs)
def generateAbstracted(question: Seq[Lemmatized[ChunkedToken]]): Iterable[AbstractedQuestion] =
for ((i, j) <- intervals(question.size, maxSize);
arg = question.slice(i, j);
if keepArg(arg);
abs = new AbstractedQuestion(question, i, j);
if keepAbs(abs))
//if valuePattern(abs.value) && keepAbs(abs))
yield abs
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateIndexer.scala
================================================
package edu.knowitall.paraphrasing.template
import scala.io.Source
import scala.collection.JavaConversions._
import org.apache.solr.common.SolrDocument
import org.apache.solr.common.SolrInputDocument
import org.apache.solr.client.solrj.impl.ConcurrentUpdateSolrServer
import org.apache.solr.client.solrj.SolrServer
import org.slf4j.LoggerFactory
import org.apache.solr.client.solrj.impl.HttpSolrServer
import org.apache.solr.client.solrj.SolrQuery
import org.apache.solr.client.solrj.SolrQuery.SortClause
import scala.Option.option2Iterable
import com.typesafe.config.ConfigFactory
import edu.knowitall.util.MathUtils
import edu.knowitall.search.qa.QaAction
import edu.knowitall.triplestore.SolrClient
import edu.knowitall.util.ResourceUtils
import org.apache.solr.common.params.GroupParams
import org.apache.solr.client.solrj.response.QueryResponse
case class ParaphraseTemplateClient(solrUrl: String,
maxHits: Int, scale: Boolean = ParaphraseTemplateClient.scale,
timeout: Int = ParaphraseTemplateClient.defaultTimeout,
stopTemplates: Set[String] = ParaphraseTemplateClient.stopTemplates) {
def this() = this(ParaphraseTemplateClient.defaultUrl, ParaphraseTemplateClient.defaultMaxHits, ParaphraseTemplateClient.scale)
val logger = LoggerFactory.getLogger(this.getClass)
val server = new HttpSolrServer(solrUrl)
server.setConnectionTimeout(timeout)
server.setSoTimeout(timeout)
server.setMaxRetries(1)
val searchField = "template1_exact"
def paraphrases(s: String, argTypes: List[String] = List("anything"), limit: Int = maxHits) =
queryParaphrases(s, argTypes, limit)
private def responseToPairs(r: QueryResponse) = for {
value <- r.getGroupResponse.getValues
groupValue <- value.getValues
doc <- groupValue.getResult.toList
pair <- TemplatePair.fromDocument(doc)
if !(stopTemplates contains pair.template2)
} yield pair
private def createQuery(s: String, argTypes: List[String], limit: Int = maxHits) = {
val typePred = { argTypes map { t =>
val esc = SolrClient.escape(t)
s"""typ_exact:"${t}""""
} }.mkString(s" OR ")
val qStr = s"""${searchField}:"${s}" AND ($typePred)"""
val query = new SolrQuery(SolrClient.fixQuery(qStr))
query.setRows(maxHits)
query.addSort(new SortClause("pmi", SolrQuery.ORDER.desc))
query.set(GroupParams.GROUP, true)
query.set(GroupParams.GROUP_FIELD, "template2_exact")
query.setParam("shards.tolerant", true)
query
}
def queryParaphrases(s: String, argTypes: List[String] = List("anything"), limit: Int = maxHits): List[TemplatePair] = {
val query = createQuery(s, argTypes, limit)
val resp = server.query(query)
val pairs = responseToPairs(resp).toList
pairs
}
}
case object ParaphraseTemplateClient {
val conf = ConfigFactory.load()
val minPmi = conf.getDouble("paraphrase.template.minPmi")
val maxPmi = conf.getDouble("paraphrase.template.maxPmi")
val scale = conf.getBoolean("paraphrase.template.scale")
val defaultUrl = conf.getString("paraphrase.template.url")
val defaultMaxHits = conf.getInt("paraphrase.template.maxHits")
val defaultTimeout = conf.getInt("paraphrase.template.timeout")
val stopTemplatesPath = conf.getString("paraphrase.template.stopTemplatesPath")
lazy val stopTemplates = ResourceUtils.resourceSource(stopTemplatesPath).getLines.toSet
}
case class TemplatePair(template1: String, template2: String, typ: String, count1: Double, count2: Double, count12: Double, pmi: Double) extends QaAction
case object TemplatePair {
def fromString(s: String): Option[TemplatePair] = {
s.split("\t", 9) match {
case Array(t1, t2, typ, count1, count2, count12, pmi) =>
Some(TemplatePair(t1, t2, typ, count1.toDouble, count2.toDouble, count12.toDouble, pmi.toDouble))
case _ => None
}
}
def fromDocument(doc: SolrDocument): Option[TemplatePair] = {
val t1obj: Any = doc.getFieldValue("template1")
val t2obj: Any = doc.getFieldValue("template2")
val typobj: Any = doc.getFieldValue("typ")
val count1obj: Any = doc.getFieldValue("count1")
val count2obj: Any = doc.getFieldValue("count2")
val count12Obj: Any = doc.getFieldValue("count12")
val pmiObj: Any = doc.getFieldValue("pmi")
(t1obj, t2obj, typobj, count1obj, count2obj, count12Obj, pmiObj) match {
case (t1: String, t2: String, typ: String, count1: Float, count2: Float, count12: Float, pmi: Float) => Some(TemplatePair(t1, t2, typ, count1, count2, count12, pmi))
case _ => None
}
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateParaphraseGenerator.scala
================================================
package edu.knowitall.paraphrasing.template
import edu.knowitall.collection.immutable.Interval
import com.typesafe.config.ConfigFactory
import edu.knowitall.paraphrasing.ScoredParaphraseDerivation
import edu.knowitall.lm.KenLmServer
case class ArgQuestion(question: Seq[String], argInterval: Interval) {
def arg: String = question.slice(argInterval.start, argInterval.end).mkString(" ")
}
case class TemplateParaphraseDerivation(question: ArgQuestion,
paraphrase: ArgQuestion, templates: TemplatePair, score: Double = 0.0, pmi: Double = 0.0, lm: Double = 0.0) extends ScoredParaphraseDerivation {
val questionString = question.question.mkString(" ")
}
trait TemplateParaphraseGenerator {
def generate(question: Seq[String]): Iterable[TemplateParaphraseDerivation]
}
class SolrParaphraseGenerator(url: String, maxHits: Int, maxArgLength: Int) extends TemplateParaphraseGenerator {
def this() = this(SolrParaphraseGenerator.defaultUrl,
SolrParaphraseGenerator.defaultMaxHits,
SolrParaphraseGenerator.defaultMaxArgLength)
val client = new ParaphraseTemplateClient()
def intervals(size: Int) =
for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= maxArgLength) yield Interval.open(i, j+1)
def templates(q: ArgQuestion): List[TemplatePair] = {
val i = q.argInterval.start
val j = q.argInterval.end
val n = q.question.size
val left = q.question.slice(0, i).mkString(" ")
val right = q.question.slice(j, n).mkString(" ")
val query = left + " $y " + right
client.paraphrases(query, limit = maxHits)
}
def abstractQuestion(q: Seq[String]): Iterable[ArgQuestion] = {
val n = q.size
for (i <- intervals(n)) yield ArgQuestion(q, i)
}
def substitute(q: ArgQuestion, t: TemplatePair): ArgQuestion = {
val templ = t.template2
val templSeq = templ.split(" ").toSeq
val arg = q.question.slice(q.argInterval.start, q.argInterval.end)
val i = templSeq.indexOf("$y")
if (i >= 0) {
val left = templSeq.slice(0, i)
val right = templSeq.slice(i+1, templSeq.size)
val para = ArgQuestion(left ++ arg ++ right, Interval.open(i, i+arg.size))
para
} else {
throw new IllegalArgumentException(s"Could not find var in: $templ")
}
}
override def generate(question: Seq[String]): Iterable[TemplateParaphraseDerivation] = {
for (aq <- abstractQuestion(question); t <- templates(aq); para = substitute(aq, t))
yield TemplateParaphraseDerivation(aq, para, t, score = 0.0, pmi = t.pmi, lm = Double.MinValue)
}
}
case object SolrParaphraseGenerator {
val conf = ConfigFactory.load()
val defaultUrl = conf.getString("paraphrase.template.url")
val defaultMaxHits = conf.getInt("paraphrase.template.maxHits")
val defaultMaxArgLength = conf.getInt("paraphrase.template.maxArgLength")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateParaphraser.scala
================================================
package edu.knowitall.paraphrasing.template
import edu.knowitall.paraphrasing.Paraphraser
import edu.knowitall.tool.postag.StanfordPostagger
import edu.knowitall.tool.tokenize.ClearTokenizer
import org.slf4j.LoggerFactory
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.paraphrasing.Paraphrase
import com.typesafe.config.ConfigFactory
case class TemplateParaphraser(scorer: ParaphraseScorer, generator: TemplateParaphraseGenerator) extends Paraphraser {
def this() = this(TemplateParaphraser.defaultScorer, new SolrParaphraseGenerator())
lazy val tagger = new StanfordPostagger()
lazy val tokenizer = new ClearTokenizer()
val logger = LoggerFactory.getLogger(this.getClass)
def stemString(s: String): Seq[String] = {
val tokens = tokenizer(s)
val tagged = tagger.postagTokenized(tokens)
val lemmas = tagged.map(t => MorphaStemmer.lemmatizePostaggedToken(t).lemma.toLowerCase())
lemmas
}
override def paraphrase(s: String) = {
val stemmed = stemString(s)
val paraphrases = generator.generate(stemmed)
val scored = scorer.scoreAll(paraphrases).toList
val grouped = scored.groupBy(sp => sp.paraphrase.question).values
val maxed = grouped.map(g => g.maxBy(d => d.score)).toList
val sorted = maxed.sortBy(d => -d.score)
for (deriv <- sorted; target = deriv.paraphrase.question.mkString(" "))
yield Paraphrase(s, target, deriv)
}
}
case object TemplateParaphraser {
val conf = ConfigFactory.load()
val scoringModel = conf.getString("paraphrase.template.scoringModel")
val defaultScorer = scoringModel match {
case "pmi" => new PmiParaphraseScorer()
case "lm" => new LmParaphraseScorer()
case "pmiLm" => new PmiLmParaphraseScorer()
case _ => throw new IllegalStateException(s"Could not load default scoring model '$scoringModel'")
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/CKY.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.collection.immutable.Interval
import scala.collection.mutable.{Map => MutableMap}
import edu.knowitall.util.MathUtils
sealed trait Node {
def span: Interval
def category: Category
}
case class CatSpan(category: Category, span: Interval)
case class Terminal(catspan: CatSpan,
rule: TerminalRule) extends Node {
override val span = catspan.span
override val category = catspan.category
}
case class NonTerminal(catspan: CatSpan, left: CatSpan, right: CatSpan,
rule: Combinator) extends Node {
override val span = catspan.span
override val category = catspan.category
}
sealed trait Derivation {
def catspan: CatSpan
def category = catspan.category
def interval = catspan.span
def terminals: List[LexicalStep]
def combinators: List[Combinator]
}
case class CombinatorStep(catspan: CatSpan, rule: Combinator, left: Derivation, right: Derivation) extends Derivation {
override def combinators = rule :: (left.combinators ++ right.combinators)
override def terminals = left.terminals ++ right.terminals
}
case class LexicalStep(catspan: CatSpan, rule: TerminalRule) extends Derivation {
override def combinators = Nil
override def terminals = List(this)
override def toString = s"$rule => $interval $category"
}
case class CKY(input: Sentence with Chunked with Lemmatized, size: Int,
terminalRules: IndexedSeq[TerminalRule],
combinators: IndexedSeq[Combinator]) {
val cats = MutableMap.empty[Interval, Set[Category]]
val nodes = MutableMap.empty[CatSpan, Node]
private def applyTerminalRules = for {
interval <- MathUtils.allIntervals(size)
rule <- terminalRules
category <- rule(interval, input)
catspan = CatSpan(category, interval)
terminal = Terminal(catspan, rule)
} yield {
cats += (interval -> (cats.getOrElse(interval, Set.empty) + category))
nodes += (catspan -> terminal)
}
private def applyCombinators(length: Int) = for {
interval <- MathUtils.intervals(length, size)
(left, right) <- MathUtils.splits(interval)
lcat <- cats.getOrElse(left, Set.empty)
rcat <- cats.getOrElse(right, Set.empty)
combinator <- combinators
cat <- combinator(lcat, rcat)
node = NonTerminal(CatSpan(cat, interval), CatSpan(lcat, left), CatSpan(rcat, right), combinator)
} {
cats += (interval -> (cats.getOrElse(interval, Set.empty) + cat))
nodes += (CatSpan(cat, interval) -> node)
}
def parse = {
applyTerminalRules
for (length <- 2 to size) applyCombinators(length)
}
private val fullSpan = Interval.open(0, size)
def rootCategories = cats.getOrElse(fullSpan, Set())
def derivations(catspan: CatSpan): Iterable[Derivation] = nodes.get(catspan) match {
case None => Iterable.empty
case Some(node) => node match {
case Terminal(cs, rule) => Iterable(LexicalStep(catspan, rule))
case NonTerminal(cs, left, right, rule) => for {
leftd <- derivations(left)
rightd <- derivations(right)
} yield CombinatorStep(catspan, rule, leftd, rightd)
}
}
def rootDerivations = for {
c <- cats.getOrElse(fullSpan, Set.empty)
cs = CatSpan(c, fullSpan)
d <- derivations(cs)
} yield d
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/Categories.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.execution.TLiteral
import edu.knowitall.execution.TVariable
import edu.knowitall.execution.ConjunctiveQuery
import edu.knowitall.execution.FieldIndex
import edu.knowitall.execution.TVal
import edu.knowitall.execution.UnquotedTLiteral
trait Category {
def categoryString: String
}
case class Arg(value: TLiteral) extends Category {
override val categoryString = "Arg"
}
case class Unary(freeVar: TVariable, query: ConjunctiveQuery, modFields: Set[FieldIndex] = Set.empty) extends Category {
override val categoryString = "Unary"
private def renameFieldIndex(prefix: String, index: FieldIndex) = {
val i = query.conjuncts.indexWhere(c => c.name == index.conjunctName)
assume(i >= 0, s"field index $index not in query $query")
index.copy(conjunctName = s"${prefix}.$i")
}
def renameConjuncts(prefix: String): Unary = {
val newFields = modFields.map(renameFieldIndex(prefix, _))
val newQuery = query.renameConjuncts(prefix)
Unary(freeVar, newQuery, newFields)
}
def intersect(that: Unary): Unary = {
val u1 = this.renameConjuncts("r")
val u2 = that.renameConjuncts("s")
val newVar = TVariable(u1.freeVar.name + u2.freeVar.name)
val oldVar1 = u1.freeVar
val oldVar2 = u2.freeVar
val query1 = u1.query.subs(oldVar1, newVar)
val query2 = u2.query.subs(oldVar2, newVar)
val newQuery = query1.combine(query2).subs(newVar, Unary.finalVar)
Unary(newVar, newQuery, u1.modFields ++ u2.modFields)
}
}
case object Unary {
val finalVar = TVariable("x")
}
case class Binary(leftVar: TVariable, rightVar: TVariable,
query: ConjunctiveQuery, modFields: Set[FieldIndex] = Set.empty) extends Category {
override val categoryString = "Binary"
def leftApply(a: Arg): Unary = {
val newQuery = query.subs(leftVar, a.value)
Unary(rightVar, newQuery, modFields)
}
def rightApply(a: Arg): Unary = {
val newQuery = query.subs(rightVar, a.value)
Unary(leftVar, newQuery, modFields)
}
}
case class Mod(value: String) extends Category {
override val categoryString = "Mod"
private def updateValue(v: TVal) = v match {
case l: TLiteral => l.update(s"${l.value} $value")
case _ => v
}
private def modifyFields(is: List[FieldIndex], q: ConjunctiveQuery): ConjunctiveQuery = is match {
case Nil => q
case i :: rest => modifyFields(rest, i.updateQuery(q, updateValue))
}
def modify(u: Unary): Option[Unary] = {
val newQuery = modifyFields(u.modFields.toList, u.query)
if (newQuery == u.query) {
None
} else {
Some(u.copy(query = newQuery))
}
}
override def toString = s"Mod($value)"
}
object Identity extends Category {
override val categoryString = "Identity"
override def toString = "Identity"
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/CategoryPattern.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.execution.TVariable
import edu.knowitall.execution.ListConjunctiveQuery
import edu.knowitall.execution.UnquotedTLiteral
import edu.knowitall.execution.Search.rel
import edu.knowitall.execution.FieldIndex
trait CategoryPattern {
def apply(bindings: Map[TVariable, String]): Option[Category]
}
object CategoryPattern {
def fromString(s: String) = s.trim().split("\\s+", 2) match {
case Array("identity") => IdentityPattern
case Array("unary", pattern) => UnaryPattern(pattern)
case Array("binary", pattern) => BinaryPattern(pattern)
case Array("argument", pattern) => ArgumentPattern(pattern)
case Array("mod", pattern) => ModPattern(pattern)
case _ => throw new IllegalArgumentException(s"Invalid pattern string: $s")
}
}
case class UnaryPattern(pattern: String) extends CategoryPattern {
private val cqp = ConjunctiveQueryPattern(pattern)
assume(cqp.boundVars.size == 1, s"UnaryPattern $pattern must have 1 bound variable")
val freeVar = cqp.query.qVars(0)
override def apply(bindings: Map[TVariable, String]) = for {
query <- cqp(bindings)
} yield Unary(freeVar, query)
}
case class BinaryPattern(pattern: String) extends CategoryPattern {
private val cqp = ConjunctiveQueryPattern(pattern)
assume(cqp.boundVars.size == 2, s"BinaryPattern $pattern must have 2 bound variables")
val leftVar = cqp.query.qVars(0)
val rightVar = cqp.query.qVars(1)
override def apply(bindings: Map[TVariable, String]) = for {
query <- cqp(bindings)
relFields = for {
c <- query.conjuncts
(field, value) <- c.values
if field == rel
} yield FieldIndex(c.name, field)
} yield Binary(leftVar, rightVar, query, relFields.toSet)
}
case class ArgumentPattern(pattern: String) extends CategoryPattern {
private val sp = UnquotedTLiteral(pattern)
override def apply(bindings: Map[TVariable, String]) = {
val valBindings = bindings map { case (k, v) => (k, UnquotedTLiteral(v)) }
Some(Arg(sp.subs(valBindings)))
}
}
case class ModPattern(pattern: String) extends CategoryPattern {
private val sp = UnquotedTLiteral(pattern)
override def apply(bindings: Map[TVariable, String]) = {
val valBindings = bindings map { case (k, v) => (k, UnquotedTLiteral(v)) }
Some(Mod(sp.subs(valBindings).toString))
}
}
object IdentityPattern extends CategoryPattern {
override def apply(bindings: Map[TVariable, String]) = Some(Identity)
}
case class ConjunctiveQueryPattern(pattern: String) {
val query = ListConjunctiveQuery.fromString(pattern) match {
case Some(x) => x
case None => throw new IllegalArgumentException(s"Invalid pattern: $pattern")
}
val boundVars = query.qVars
val freeVars = query.conjuncts.flatMap(_.vars).toSet -- boundVars
def apply(bindings: Map[TVariable, String]) = {
if (freeVars.subsetOf(bindings.keys.toSet)) {
val literals = bindings map { case (tvar, s) => (tvar, UnquotedTLiteral(s)) }
Some(query.subs(literals))
} else {
None
}
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/CgParser.scala
================================================
package edu.knowitall.parsing.cg
import com.typesafe.config.ConfigFactory
import java.io.FileInputStream
import java.io.File
import edu.knowitall.util.ResourceUtils
import edu.knowitall.util.NlpTools
import edu.knowitall.tool.chunk.Chunker
import edu.knowitall.tool.stem.Stemmer
import edu.knowitall.execution.ConjunctiveQuery
import edu.knowitall.search.qa.QaAction
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.collection.immutable.Interval
import edu.knowitall.execution.TLiteral
case class ParsedQuestion(question: Sentence with Chunked with Lemmatized,
query: ConjunctiveQuery, derivation: Derivation) extends QaAction {
private def sliceString[A](seq: Traversable[A], i: Interval) =
seq.slice(i.start, i.end).mkString(" ")
def postags(i: Interval) = sliceString(question.postags, i)
}
case class CgParser(lexicon: IndexedSeq[LexicalRule] = CgParser.defaultLexicon,
combinators: IndexedSeq[Combinator] = CgParser.defaultCombinators,
chunker: Chunker = NlpTools.dummyChunker,
lemmatizer: Stemmer = NlpTools.stemmer,
maxConjuncts: Int = CgParser.defaultMaxConjuncts,
outputFilter: ParsedQuestion => Boolean = CgParser.defaultOutputFilter) {
private def process(s: String) = NlpTools.process(s, chunker, lemmatizer)
private def getQuery(cat: Category) = cat match {
case Unary(freeVar, query, _) => Some(query)
case _ => None
}
def parse(s: String) = {
val sent = process(s)
val n = sent.tokens.size
val cky = new CKY(sent, n, lexicon, combinators)
cky.parse
for {
derivation <- cky.rootDerivations
query <- derivation.category match {
case u: Unary => Some(u.query)
case _ => None
}
output = ParsedQuestion(sent, query, derivation)
if output.query.conjuncts.size <= maxConjuncts
if outputFilter(output)
} yield ParsedQuestion(sent, query, derivation)
}
def apply(s: String) = parse(s)
}
case object CgParser {
val conf = ConfigFactory.load()
val defaultCombinators = IndexedSeq(RightApply, LeftApply, UnaryIntersect,
UnaryIdentity, ApplyMod)
lazy val lexiconIn = if (conf.hasPath("parsing.cg.lexiconPath")) {
new FileInputStream(new File(conf.getString("parsing.cg.lexiconPath")))
} else {
ResourceUtils.resource(conf.getString("parsing.cg.lexiconClasspath"))
}
lazy val ruleKeep = conf.getString("parsing.cg.lexicalRuleKeep").r
lazy val ruleSkip = conf.getString("parsing.cg.lexicalRuleSkip").r
lazy val defaultLexicon = LexicalRule.fromInputStream(lexiconIn).filter {
rule => ruleKeep.findPrefixMatchOf(rule.name).isDefined &&
!ruleSkip.findPrefixMatchOf(rule.name).isDefined
}
lazy val defaultMaxConjuncts = conf.getInt("parsing.cg.maxConjuncts")
lazy val defaultOutputFilter = {
val relIn = ResourceUtils.resource("/edu/knowitall/parsing/cg/relFilters.txt")
val rels = ParserRelFilter.fromInputStream(relIn)
val argIn = ResourceUtils.resource("/edu/knowitall/parsing/cg/argFilters.txt")
val args = ParserArgFilter.fromInputStream(argIn)
(rels ++ args).reduce((a, b) => (x => a(x) && b(x)))
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/Combinators.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.execution.ListConjunctiveQuery
import edu.knowitall.execution.UnquotedTLiteral
import edu.knowitall.execution.TVariable
import edu.knowitall.collection.immutable.Interval
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.tool.typer.Type
trait Combinator {
def apply(left: Category, right: Category): Option[Category]
}
trait TerminalRule {
def apply(interval: Interval, sent: Sentence with Chunked with Lemmatized): Option[Category]
}
object RightApply extends Combinator {
override def apply(left: Category, right: Category) = (left, right) match {
case (b: Binary, a: Arg) => Some(b.rightApply(a))
case _ => None
}
override def toString = "RightApply"
}
object LeftApply extends Combinator {
override def apply(left: Category, right: Category) = (left, right) match {
case (a: Arg, b: Binary) => Some(b.leftApply(a))
case _ => None
}
override def toString = "LeftApply"
}
object UnaryIntersect extends Combinator {
override def apply(left: Category, right: Category) = (left, right) match {
case (u1: Unary, u2: Unary) => {
Some(u1.intersect(u2))
}
case _ => None
}
override def toString = "UnaryIntersect"
}
object UnaryIdentity extends Combinator {
override def apply(left: Category, right: Category) = (left, right) match {
case (Identity, u: Unary) => Some(u)
case (u: Unary, Identity) => Some(u)
case _ => None
}
override def toString = "UnaryIdentity"
}
object ApplyMod extends Combinator {
override def apply(left: Category, right: Category) = (left, right) match {
case (m: Mod, u: Unary) => m.modify(u)
case _ => None
}
override def toString = "Mod"
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/LexicalRule.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.collection.immutable.Interval
import edu.knowitall.util.NlpUtils
import java.io.InputStream
import scala.io.Source
import edu.knowitall.util.ResourceUtils
case class LexicalRule(syntax: PatternExtractor, semantics: CategoryPattern) extends TerminalRule {
val name = syntax.patternName
override def apply(interval: Interval, sent: Sentence with Chunked with Lemmatized) = {
val span = NlpUtils.split(sent, interval.start, interval.end)
if (syntax.matches(span)) {
semantics(syntax(span))
} else {
None
}
}
override def toString = name
}
object LexicalRule {
lazy val preprocessor = LexiconPreprocessor()
def fromString(s: String, preprocessor: LexiconPreprocessor = preprocessor) = {
s.split(":=", 2) match {
case Array(synStr, semStr) => {
val syntax = PatternExtractor.fromString(preprocessor(synStr.trim))
val semantics = CategoryPattern.fromString(semStr.trim)
LexicalRule(syntax, semantics)
}
case _ => throw new IllegalArgumentException(s"Invalid lexical rule string: $s")
}
}
def fromStrings(strings: IndexedSeq[String]) = for {
line <- strings
if !line.trim.startsWith("#") && line.trim != ""
} yield LexicalRule.fromString(line.trim())
def fromInputStream(is: InputStream) = fromStrings(Source.fromInputStream(is).getLines.toIndexedSeq)
def fromFile(path: String) = fromStrings(Source.fromFile(path).getLines.toIndexedSeq)
def fromResource(path: String) = fromInputStream(ResourceUtils.resource(path))
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/LexiconPreprocessor.scala
================================================
package edu.knowitall.parsing.cg
import com.typesafe.config.ConfigFactory
import scala.io.Source
import edu.knowitall.util.ResourceUtils
import java.util.regex.Matcher
case class LexiconPreprocessor(macros: Map[String, String] = LexiconPreprocessor.defaultMacros) {
val mlist = macros.toList
def apply(s: String) = applyMacros(mlist, s)
private def applyMacros(nr: List[(String, String)], s: String): String = nr match {
case Nil => s
case (name, replacement) :: rest => applyMacros(rest, applyMacro(name, replacement, s))
}
private def applyMacro(name: String, replacement: String, s: String) = {
s.replaceAll(s"@${name}\\b", Matcher.quoteReplacement(replacement))
}
def update(line: String) = line.split(" ", 2) match {
case Array(name, value) => copy(macros = macros.updated(name, "(?:" + this(value) + ")"))
case _ => throw new IllegalArgumentException(s"Invalid macro instruction: $line")
}
}
object LexiconPreprocessor {
val conf = ConfigFactory.load()
private def isInstr(line: String) = {
val linet = line.trim
linet != "" && !linet.startsWith("#") && !linet.startsWith("//")
}
def fromLines(lines: List[String], prep: LexiconPreprocessor = LexiconPreprocessor(Map.empty)): LexiconPreprocessor = lines match {
case Nil => prep
case line :: rest if isInstr(line) => fromLines(rest, prep.update(line))
case line :: rest => fromLines(rest, prep)
}
lazy val defaultPreprocessor = if (conf.hasPath("parsing.cg.macroPath")) {
val lines = Source.fromFile(conf.getString("parsing.cg.macroPath"), "UTF-8").getLines
fromLines(lines.toList)
} else if (conf.hasPath("parsing.cg.macroClasspath")) {
val p = conf.getString("parsing.cg.macroClasspath")
val lines = Source.fromInputStream(ResourceUtils.resource(p), "UTF-8").getLines
fromLines(lines.toList)
} else {
LexiconPreprocessor(Map.empty[String, String])
}
lazy val defaultMacros = defaultPreprocessor.macros
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/ParserFieldFilter.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.execution.Search
import edu.knowitall.execution.TLiteral
import java.io.InputStream
import scala.io.Source
class ParserFieldFilter(field: Search.Field, pattern: String) extends Function[ParsedQuestion, Boolean] {
private val pat = pattern.r
override def apply(pq: ParsedQuestion): Boolean = {
val values = for {
c <- pq.query.conjuncts
(f, v) <- c.values collect { case (a, b: TLiteral) => (a, b.value) }
if f == field
} yield v
val hasMatch = values.exists(pat.findFirstIn(_).isDefined)
!hasMatch
}
}
case class ParserRelFilter(pattern: String) extends ParserFieldFilter(Search.rel, pattern)
case object ParserRelFilter {
def fromInputStream(in: InputStream) = ParserFieldFilter.fromInputStream(Search.rel, in)
}
case class ParserArgFilter(pattern: String) extends Function[ParsedQuestion, Boolean] {
val p1 = new ParserFieldFilter(Search.arg1, pattern)
val p2 = new ParserFieldFilter(Search.arg2, pattern)
override def apply(pq: ParsedQuestion): Boolean = p1(pq) && p2(pq)
}
case object ParserArgFilter {
def fromInputStream(in: InputStream) = {
val lines = Source.fromInputStream(in, "UTF-8").getLines.toList.map(ParserFieldFilter.removeComment).filter(_ != "")
lines.map(ParserArgFilter(_))
}
}
object ParserFieldFilter {
def removeComment(line: String) = line.replaceAll("#.*", "").replaceAll("//.*", "").trim
def fromLines(field: Search.Field, lines: Iterable[String]) = for {
line <- lines
replaced = removeComment(line)
if replaced != ""
} yield new ParserFieldFilter(field, replaced)
def fromInputStream(field: Search.Field, in: InputStream) = fromLines(field, Source.fromInputStream(in, "UTF-8").getLines.toIterable)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/PatternExtractor.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.taggers.tag.PatternTagger
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.execution.TVariable
import edu.knowitall.taggers.NamedGroupType
import edu.knowitall.tool.typer.Type
import scala.util.Try
import edu.knowitall.util.NlpTools
case class PatternExtractor(patternName: String, pattern: SentencePattern) {
def matches(s: Sentence with Chunked with Lemmatized) = pattern.matches(s)
def extract(s: Sentence with Chunked with Lemmatized): Map[TVariable, String] = {
pattern.groups(s) map {
case (name, value) => (TVariable(name) -> value)
}
}
def apply(s: Sentence with Chunked with Lemmatized) = extract(s)
}
case object PatternExtractor {
private val defPattern = "^([A-Za-z]+[a-z0-9]*)\\s*(.*)$".r
def fromString(s: String) = s.trim match {
case defPattern(name, pattern) => PatternExtractor(name, SentencePattern("^"+pattern+"$"))
case _ => throw new IllegalArgumentException("Invalid definition: $s")
}
def fromLines(lines: Iterable[String]) = lines map fromString
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/SentencePattern.scala
================================================
package edu.knowitall.parsing.cg
import edu.knowitall.taggers.pattern.PatternBuilder
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.taggers.pattern.TypedToken
import edu.washington.cs.knowitall.regex.Expression.NamedGroup
import edu.knowitall.tool.tokenize.Tokenizer
case class SentencePattern(patternString: String) {
private val pattern = PatternBuilder.compile(patternString)
private def buildSeq(s: Sentence with Chunked with Lemmatized) =
s.lemmatizedTokens.zipWithIndex map {
case (t, i) => TypedToken(t, i, Set.empty)
}
def matches(s: Sentence with Chunked with Lemmatized) = pattern.matches(buildSeq(s))
def groups(s: Sentence with Chunked with Lemmatized) = {
val seq = buildSeq(s)
val result = pattern.find(seq) match {
case None => Map.empty
case Some(matchObj) => for {
i <- 0 until matchObj.groups.size
group = matchObj.groups(i)
tokens = s.lemmatizedTokens.slice(group.interval.start, group.interval.end).map(_.token)
if !tokens.isEmpty
text = Tokenizer.originalText(tokens, tokens.head.offsets.start)
name <- group.expr match {
case namedGroup: NamedGroup[_] => Some(namedGroup.name)
case _ => None
}
} yield (name, text)
}
result.toMap
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/IsaRelSynClient.scala
================================================
package edu.knowitall.relsyn
import edu.knowitall.util.ResourceUtils
import edu.knowitall.execution.TConjunct
object IsaRelSynClient extends RelSynClient {
lazy val client = ListRelSynClient.fromInputStream(ResourceUtils.resource("/edu/knowitall/search/qa/isa.txt"))
override def relSyns(c: TConjunct) = client.relSyns(c)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/ListRelSynClient.scala
================================================
package edu.knowitall.relsyn
import scala.io.Source
import java.io.InputStream
import edu.knowitall.execution.TConjunct
import edu.knowitall.execution.Search
import edu.knowitall.execution.UnquotedTLiteral
import edu.knowitall.execution.QuotedTLiteral
case class ListRelSynClient(rules: List[RelSynRule]) extends RelSynClient {
private def rulesFor(rel: String) = rules.filter(_.rel1 == rel.toLowerCase)
override def relSyns(c: TConjunct) = {
c.values.get(Search.rel) match {
case Some(UnquotedTLiteral(l)) => rulesFor(l)
case Some(QuotedTLiteral(l)) => rulesFor(l)
case _ => List.empty
}
}
}
case object ListRelSynClient {
def fromInputStream(is: InputStream) = ListRelSynClient(Source.fromInputStream(is).getLines.map(RelSynRule.deserialize).toList)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/RelSynClient.scala
================================================
package edu.knowitall.relsyn
import edu.knowitall.execution.TConjunct
trait RelSynClient {
def relSyns(c: TConjunct): List[RelSynRule]
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/RelSynRule.scala
================================================
package edu.knowitall.relsyn
import edu.knowitall.execution.TConjunct
import edu.knowitall.execution.Search
import edu.knowitall.execution.TLiteral
import edu.knowitall.execution.QuotedTLiteral
import edu.knowitall.search.qa.QaAction
import edu.knowitall.execution.UnquotedTLiteral
case class RelSynRule(rel1: String, rel2: String, inverted: Boolean,
count1: Double, count2: Double, jointCount: Double, pmi: Double)
extends QaAction {
private def swapArgs(c: TConjunct) = for {
a1 <- c.values.get(Search.arg1)
a2 <- c.values.get(Search.arg2)
newvals = c.values ++ List((Search.arg1 -> a2), (Search.arg2 -> a1))
} yield c.copy(values = newvals)
private def adjustSwap(c: TConjunct) = if (inverted) swapArgs(c) else Some(c)
private def replaceRel(c: TConjunct) = {
val newr = UnquotedTLiteral(rel2)
Some(c.copy(values = c.values + (Search.rel -> newr)))
}
private def relValue(c: TConjunct) = for {
value <- c.values.get(Search.rel)
svalue <- value match {
case l: TLiteral => Some(l.value)
case _ => None
}
} yield svalue
def apply(c: TConjunct) = for {
svalue <- relValue(c)
withNewRel <- replaceRel(c)
newc <- adjustSwap(withNewRel)
} yield newc
def serialize = List(rel1, rel2, inverted, count1, count2, jointCount, pmi).mkString("\t")
}
case object RelSynRule {
def deserialize(line: String) = line.trim.split("\t").toList match {
case rel1 :: rel2 :: inverteds :: count1s :: count2s :: jointCounts :: pmis :: Nil =>
RelSynRule(rel1, rel2, inverteds.toBoolean, count1s.toDouble,
count2s.toDouble, jointCounts.toDouble, pmis.toDouble)
case _ => throw new IllegalArgumentException(s"Invalid RelSynRule: $line")
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/SolrRelSynClient.scala
================================================
package edu.knowitall.relsyn
import com.typesafe.config.ConfigFactory
import org.apache.solr.client.solrj.impl.HttpSolrServer
import org.apache.solr.common.SolrDocument
import org.apache.solr.client.solrj.SolrQuery
import scala.collection.JavaConversions._
import org.apache.solr.client.solrj.SolrQuery.SortClause
import edu.knowitall.util.MathUtils
import edu.knowitall.execution.TConjunct
import edu.knowitall.execution.Search
import edu.knowitall.execution.TLiteral
import edu.knowitall.execution.UnquotedTLiteral
import edu.knowitall.execution.QuotedTLiteral
import edu.knowitall.execution.ConjunctiveQuery
import edu.knowitall.tool.tokenize.ClearTokenizer
import edu.knowitall.tool.postag.StanfordPostagger
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.tool.stem.Stemmer
import edu.knowitall.tool.tokenize.Tokenizer
import edu.knowitall.tool.postag.Postagger
import org.slf4j.LoggerFactory
import edu.knowitall.util.NlpTools
import com.twitter.util.LruMap
import scala.collection.mutable.SynchronizedMap
case class SolrRelSynClient(url: String = SolrRelSynClient.defaultUrl,
stemmer: Stemmer = NlpTools.stemmer,
tokenizer: Tokenizer = NlpTools.tokenizer,
tagger: Postagger = NlpTools.tagger,
maxHits: Int = SolrRelSynClient.defaultMaxHits,
scale: Boolean = SolrRelSynClient.defaultScale,
cacheSize: Int = SolrRelSynClient.defaultCacheSize,
timeout: Int = SolrRelSynClient.defaultTimeout) extends RelSynClient {
private val client = new HttpSolrServer(url)
client.setConnectionTimeout(timeout)
client.setSoTimeout(timeout)
client.setMaxRetries(1)
val logger = LoggerFactory.getLogger(this.getClass)
private val cache = new LruMap[(String, Int), List[RelSynRule]](cacheSize) with SynchronizedMap[(String, Int), List[RelSynRule]]
private def getValue(n: String, d: SolrDocument): Option[Any] = {
val value = d.getFieldValue(n)
if (value == null) None else Some(value)
}
private def getString(n: String, d: SolrDocument) = for {
v <- getValue(n, d)
s <- v match {
case s: String => Some(s)
case _ => None
}
} yield s
private def getDouble(n: String, d: SolrDocument) = for {
v <- getValue(n, d)
d <- v match {
case d: Double => Some(d)
case f: Float => Some(f.toDouble)
case _ => None
}
} yield d
private def getBoolean(n: String, d: SolrDocument) = for {
v <- getValue(n, d)
b <- v match {
case b: Boolean => Some(b)
case _ => None
}
} yield b
private def fromDoc(d: SolrDocument) = for {
rel1 <- getString("rel1", d)
rel2 <- getString("rel2", d)
inverted <- getBoolean("inverted", d)
count1 <- getDouble("marg_count1", d)
count2 <- getDouble("marg_count2", d)
joint <- getDouble("joint_count", d)
pmi <- getDouble("pmi", d)
} yield RelSynRule(rel1, rel2, inverted, count1, count2, joint, pmi)
private def stemString(s: String) = NlpTools.normalize(s)
private def fetchRelSyns(s: String, limit: Int = maxHits) = {
val stems = stemString(s)
val query = new SolrQuery(s"""${SolrRelSynClient.searchField}:"${stems}"""")
logger.debug(s"Getting relSyns for ${stems}")
query.setRows(maxHits)
query.addSort(new SortClause("pmi", SolrQuery.ORDER.desc))
query.setParam("shards.tolerant", true)
val resp = client.query(query)
val pairs = resp.getResults().toList.flatMap(fromDoc)
pairs.map(pair => pair.copy(pmi = scalePmi(pair.pmi)))
}
private def relSyns(s: String, limit: Int = maxHits) = cache.get((s, limit)) match {
case Some(x) => x
case None => {
val results = fetchRelSyns(s, limit)
cache.put((s, limit), results)
results
}
}
override def relSyns(c: TConjunct): List[RelSynRule] = c.values.get(Search.rel) match {
case Some(UnquotedTLiteral(l)) => relSyns(l)
case Some(QuotedTLiteral(l)) => relSyns(l)
case _ => Nil
}
private def scalePmi(x: Double): Double =
if (scale) MathUtils.clipScale(x, SolrRelSynClient.minPmi, SolrRelSynClient.maxPmi)
else x
}
case object SolrRelSynClient {
val conf = ConfigFactory.load()
val defaultUrl = conf.getString("relsyn.url")
val defaultMaxHits = conf.getInt("relsyn.maxHits")
val defaultScale = conf.getBoolean("relsyn.scale")
val defaultCacheSize = conf.getInt("relsyn.cacheSize")
val defaultTimeout = conf.getInt("relsyn.timeout")
val minPmi = conf.getDouble("relsyn.minPmi")
val maxPmi = conf.getDouble("relsyn.maxPmi")
val searchField = "rel1_exact"
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/Beam.scala
================================================
package edu.knowitall.search
trait Beam[State, Action] {
def nodes: Iterable[Node[State, Action]]
def splitAt(k: Int): (Iterable[Node[State, Action]], Iterable[Node[State, Action]])
def setNodes(nodes: Iterable[Node[State, Action]]): Unit
def setNodes(nodes: Node[State, Action]*): Unit = setNodes(nodes)
def size: Int
def isEmpty = size == 0
}
object Beam {
def distinctByState[State, Action](nodes: Iterable[Node[State, Action]]) =
nodes.groupBy(_.state) map {
case (state, group) => group.minBy(_.pathCost)
}
}
class SingleBeam[State, Action](beamSize: Int) extends Beam[State, Action] {
def this(beamSize: Int, nodes: Iterable[Node[State, Action]]) = {
this(beamSize)
setNodes(nodes)
}
private var beam = List.empty[Node[State, Action]]
override def nodes = beam
override def splitAt(k: Int) = beam.splitAt(k)
override def setNodes(nodes: Iterable[Node[State, Action]]) = {
beam = Beam.distinctByState(nodes).toList.sortBy(_.pathCost).take(beamSize)
}
override def size = beam.size
}
class TypedBeams[State, Action, T](f: Node[State, Action] => T, beamSize: Int) extends Beam[State, Action] {
private var beams = Map.empty[T, SingleBeam[State, Action]]
override def nodes = beams.values.flatMap(_.nodes).toList.sortBy(_.pathCost)
override def splitAt(k: Int) = {
val listOfNodes = beams.values.map(_.nodes).toList
val orderedNodes = transpose(listOfNodes).flatten
orderedNodes.splitAt(k)
}
override def setNodes(nodes: Iterable[Node[State, Action]]) = {
val distinct = Beam.distinctByState(nodes)
val grouped = distinct.groupBy(f)
beams = for ((t, typed) <- grouped; beam = new SingleBeam(beamSize, typed)) yield (t -> beam)
}
override def size = beams.values.map(_.size).sum
private def transpose[T](xss: List[List[T]]): List[List[T]] = xss.filter(!_.isEmpty) match {
case Nil => Nil
case ys: List[List[T]] => ys.map{ _.head }::transpose(ys.map{ _.tail })
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/BeamSearch.scala
================================================
package edu.knowitall.search
import scala.collection.mutable.{Set => MutableSet}
import scala.collection.mutable.{Map => MutableMap}
import org.slf4j.LoggerFactory
import com.typesafe.config.ConfigFactory
class BeamSearch[State, Action](
override val problem: SearchProblem[State, Action],
beam: Beam[State, Action],
goalSize: Int = BeamSearch.defaultGoalSize,
maxIters: Int = BeamSearch.defaultMaxIters,
expandPerIter: Int = BeamSearch.defaultExpandPerIter)
extends SearchAlgorithm[State, Action] {
assert(goalSize >= 1)
override val logger = LoggerFactory.getLogger(this.getClass)
override def continueSearch = (goals.size < goalSize) && (!beam.isEmpty) && (iterNum < maxIters)
override def searchIter = {
val initialSize = beam.size
logger.debug("Expanding frontier")
val (toExpand, toKeep) = beam.splitAt(expandPerIter)
toExpand foreach { n => logger.debug(s"Chose to expand: ${n.pathCost} ${n.state}") }
val newNodes = toExpand.par.flatMap(expand).toList
logger.debug(s"Expanded to ${newNodes.size} new nodes")
logger.debug("Adding goal nodes")
newNodes.filter(isGoal).foreach(addGoalNode)
logger.debug("Updating new frontier")
beam.setNodes(newNodes.filter(n => !isGoal(n) && !haveExpanded(n)) ++ toKeep)
val numGoals = newNodes.count(isGoal(_))
logger.debug(s"Done with search iteration $iterNum")
logger.debug(s"Initial frontier size = $initialSize")
logger.debug(s"Final frontier size = ${beam.size}")
logger.debug(s"Expanded to ${newNodes.size} new nodes")
logger.debug(s"Found $numGoals new goal nodes")
}
override def initialize = beam.setNodes(rootNode)
}
object BeamSearch {
val conf = ConfigFactory.load()
val defaultMaxIters = conf.getInt("search.maxIters")
val defaultGoalSize = conf.getInt("search.goalSize")
val defaultExpandPerIter = conf.getInt("search.expandPerIter")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/BestFirstSearch.scala
================================================
package edu.knowitall.search
import scala.collection.mutable.{Set => MutableSet}
import scala.collection.mutable.{Map => MutableMap}
import com.google.common.collect.MinMaxPriorityQueue
import scala.collection.JavaConversions._
import org.slf4j.LoggerFactory
class BestFirstSearch[State, Action](override val problem: SearchProblem[State, Action], beamSize: Int, goalSize: Int) extends SearchAlgorithm[State, Action] {
override val logger = LoggerFactory.getLogger(this.getClass)
private val beam = MinMaxPriorityQueue.maximumSize(beamSize).create[Node[State, Action]]()
override def continueSearch = (beam.size > 0) && (goals.size < goalSize)
override def initialize = beam.add(rootNode)
override def searchIter = {
val node = beam.pollFirst
logger.warn(s"Expanding ${node.state}")
val successors = expand(node).toList
val (newGoals, newNodes) = successors.partition(isGoal)
newGoals.foreach(addGoalNode)
beam.addAll(newNodes)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/SearchAlgorithm.scala
================================================
package edu.knowitall.search
import org.slf4j.LoggerFactory
import scala.collection.mutable.{Map => MutableMap}
import scala.collection.mutable.{Set => MutableSet}
import edu.knowitall.util.TimingUtils
import com.typesafe.config.ConfigFactory
case class Node[State, Action](
state: State,
parent: Option[Edge[State, Action]],
pathCost: Double,
creationTime: Long) extends Comparable[Node[State, Action]] {
def this(state: State, parent: Option[Edge[State, Action]], pathCost: Double) =
this(state, parent, pathCost, System.currentTimeMillis)
def path(rest: List[(State, Action, State)] = Nil): List[(State, Action, State)] = parent match {
case None => rest
case Some(e) => e.node.path((e.node.state, e.action, state) :: rest)
}
def compareTo(that: Node[State, Action]) = this.pathCost.compareTo(that.pathCost)
}
case class Edge[State, Action](action: Action, node: Node[State, Action])
abstract class SearchAlgorithm[State, Action] {
val logger = LoggerFactory.getLogger(this.getClass)
def problem: SearchProblem[State, Action]
def rootNode: Node[State, Action] = new Node(problem.initialState, None, 0.0)
def isGoal(n: Node[State, Action]) = problem.isGoal(n.state)
private var iter = 0
protected def iterNum = iter
protected val goals = MutableMap.empty[State, Node[State, Action]]
protected def addGoalNode(node: Node[State, Action]) = {
assert(isGoal(node))
val state = node.state
val otherNode = goals.getOrElse(state, node)
val bestNode = List(node, otherNode).minBy(_.pathCost)
goals.put(state, bestNode)
}
protected val expanded = MutableSet.empty[State]
protected def markExpanded(n: Node[State, Action]) = expanded.add(n.state)
protected def haveExpanded(n: Node[State, Action]) = expanded.contains(n.state)
def expand(node: Node[State, Action]) = {
for {
(action, nextState) <- problem.successors(node.state)
cost = node.pathCost + problem.cost(node.state, action, nextState)
edge = Edge(action, node)
} yield {
markExpanded(node)
new Node(nextState, Some(edge), cost)
}
}
def searchIter: Unit
def continueSearch: Boolean
def initialize(): Unit
private var timedOut = false
private var t0 = System.currentTimeMillis
def startTime = t0
private def runSearch = {
initialize()
do {
searchIter
iter += 1
} while (continueSearch && !timedOut)
}
def search = {
t0 = System.currentTimeMillis
val time = SearchAlgorithm.defaultMaxSearchTimeSec * 1000
TimingUtils.runWithTimeout(time) { runSearch }
timedOut = true
goals.values.toList.distinct.sortBy(_.pathCost)
}
}
object SearchAlgorithm {
val conf = ConfigFactory.load()
val defaultMaxSearchTimeSec = conf.getLong("search.maxSearchTimeSec")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/SearchProblem.scala
================================================
package edu.knowitall.search
trait SearchProblem[State, Action] {
def initialState: State
def successors(s: State): Iterable[(Action, State)]
def isGoal(s: State): Boolean
def cost(from: State, action: Action, to: State): Double
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/Transition.scala
================================================
package edu.knowitall.search
trait Transition[State, Action] extends Function[State, Iterable[(Action, State)]] {
def +(other: Transition[State, Action]) = Transition.union(this, other)
}
object Transition {
def union[State, Action](t1: Transition[State, Action],
t2: Transition[State, Action]) = new Transition[State, Action] {
override def apply(s: State) = t1(s) ++ t2(s)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/AbstractArgTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.tool.tokenize.Tokenizer
import com.typesafe.config.ConfigFactory
import edu.knowitall.tool.tokenize.ClearTokenizer
import edu.knowitall.search.Transition
import edu.knowitall.collection.immutable.Interval
import edu.knowitall.tool.stem.Stemmer
import edu.knowitall.tool.postag.Postagger
import edu.knowitall.tool.postag.StanfordPostagger
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.util.NlpTools
import edu.knowitall.triplestore.IsaClient
import java.io.StringWriter
import java.io.PrintWriter
import org.slf4j.LoggerFactory
class AbstractArgTransition(
tokenizer: Tokenizer = NlpTools.tokenizer,
stemmer: Stemmer = NlpTools.stemmer,
tagger: Postagger = NlpTools.tagger,
isaClient: IsaClient = AbstractArgTransition.defaultIsaClient,
maxArgLength: Int = AbstractArgTransition.defaultMaxArgLength,
useTypes: Boolean = AbstractArgTransition.defaultUseTypes,
multipleParaphrases: Boolean = AbstractArgTransition.multipleParaphrases)
extends Transition[QaState, QaAction] {
private final val action = AbstractArgAction()
val logger = LoggerFactory.getLogger(this.getClass)
override def apply(s: QaState) = s match {
case s: QuestionState if s.question.trim() != "" => try {
abstractArgs(s)
} catch {
case e: Throwable => {
val sw = new StringWriter()
val pw = new PrintWriter(sw)
e.printStackTrace(pw)
logger.warn(s"Could not abstract args: $s, got ${sw.toString}")
List.empty
}
}
case _ => Nil
}
private def intervals(size: Int) =
for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= maxArgLength)
yield Interval.open(i, j+1)
private def stemString(s: String): Seq[String] = {
val tokens = tokenizer(s)
val tagged = tagger.postagTokenized(tokens)
tagged.map {
t => MorphaStemmer.lemmatizePostaggedToken(t).lemma.toLowerCase()
}
}
private def abstractArgs(s: QuestionState) =
if (multipleParaphrases || !s.isParaphrased) {
val toks = s.processed.lemmatizedTokens.map(_.lemma.toLowerCase).toIndexedSeq
for {
interval <- intervals(toks.size)
arg = s.processed.strings.slice(interval.start, interval.end).mkString(" ")
types = if (useTypes) isaClient.getTypes(arg) else List("anything")
newState = AbstractedArgState(s.question, types, s.processed, interval)
} yield (action, newState)
} else {
Nil
}
}
case class AbstractArgAction() extends QaAction
case object AbstractArgTransition {
val conf = ConfigFactory.load()
val defaultMaxArgLength = conf.getInt("paraphrase.template.maxArgLength")
val multipleParaphrases = conf.getBoolean("paraphrase.template.multipleParaphrases")
val defaultUseTypes = conf.getBoolean("paraphrase.template.useTypes")
lazy val defaultIsaClient = IsaClient()
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/AbstractedArgState.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.collection.immutable.Interval
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Sentence
case class AbstractedArgState(
question: String,
argTypes: List[String],
processed: Sentence with Chunked with Lemmatized,
argInterval: Interval) extends QaState {
val tokens = processed.lemmatizedTokens.map(_.lemma.toLowerCase)
override def toString() = {
val left = tokens.slice(0, argInterval.start)
val middle = "[" +: tokens.slice(argInterval.start, argInterval.end) :+ "]"
val right = tokens.slice(argInterval.end, tokens.size)
val s = (left ++ middle ++ right).mkString(" ")
s
}
def queryString = {
val left = tokens.slice(0, argInterval.start)
val right = tokens.slice(argInterval.end, tokens.size)
(left ++ Seq("$y") ++ right).mkString(" ")
}
def arg = tokens.slice(argInterval.start, argInterval.end).mkString(" ")
override def stateType = "AbstractedArgState"
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/AnswerState.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.execution.ExecTuple
case class AnswerState(answer: String) extends QaState {
override def stateType = "AnswerState"
override def toString = answer
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/CgParseTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.parsing.cg.CgParser
import edu.knowitall.search.Transition
case class CgParseTransition(parser: CgParser = CgParseTransition.defaultParser) extends Transition[QaState, QaAction] {
override def apply(s: QaState) = s match {
case s: QuestionState => parseQuestion(s)
case _ => Nil
}
def parseQuestion(s: QuestionState) = {
val question = s.question
for {
derivation <- parser.parse(question)
newState = QueryState(derivation.query)
} yield (derivation, newState)
}
}
case object CgParseTransition {
lazy val defaultParser = CgParser()
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/DropQueryStopsTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.search.Transition
import org.slf4j.LoggerFactory
import edu.knowitall.execution.TLiteral
import edu.knowitall.execution.UnquotedTLiteral
import edu.knowitall.util.NlpTools
import edu.knowitall.execution.ListConjunctiveQuery
import edu.knowitall.execution.TConjunct
import edu.knowitall.execution.ConjunctiveQuery
object DropStopAction extends QaAction {
override def toString = "DropStopAction"
}
class DropQueryStopsTransition(
val stops: Set[String] = DropQueryStopsTransition.defaultStops)
extends Transition[QaState, QaAction] {
val logger = LoggerFactory.getLogger(this.getClass)
override def apply(s: QaState) = s match {
case qs: QueryState if (!qs.reformulated) => dropStops(qs.query)
case _ => Nil
}
def dropStops(query: ConjunctiveQuery) = {
val newConjs = query.conjuncts.map(dropStopsConj)
val newQuery = new ListConjunctiveQuery(query.qVars, newConjs)
List((DropStopAction, QueryState(newQuery)))
}
private def dropStopsConj(conj: TConjunct) = {
val newVals = for ((f, v) <- conj.values) yield v match {
case UnquotedTLiteral(s) => (f, UnquotedTLiteral(dropStopsString(s)))
case _ => (f, v)
}
new TConjunct(conj.name, newVals)
}
private def dropStopsString(s: String) = {
val sent = NlpTools.process(s)
val lemmas = sent.lemmatizedTokens.map(_.lemma)
if (lemmas.forall(stops contains _)) {
s
} else {
val filtered = lemmas.filterNot(stops contains _)
filtered.mkString(" ")
}
}
}
case object DropQueryStopsTransition {
val defaultStops = Set("the", "a", "an", "be", "have", "do", "'s", "can", "will", "get")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/ExecutionTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.search.Transition
import edu.knowitall.triplestore.TriplestoreClient
import edu.knowitall.execution.Joiner
import edu.knowitall.execution.ExecTuple
import edu.knowitall.triplestore.SolrClient
import edu.knowitall.execution.DefaultFilters
import edu.knowitall.execution.IdentityExecutor
import com.typesafe.config.ConfigFactory
import edu.knowitall.execution.ConjunctiveQuery
import org.apache.solr.client.solrj.SolrServerException
import java.io.StringWriter
import java.io.PrintWriter
import org.slf4j.LoggerFactory
import scala.collection.parallel.CompositeThrowable
class ExecutionTransition(
client: TriplestoreClient = ExecutionTransition.defaultClient,
skipTimeouts: Boolean = ExecutionTransition.defaultSkipTimeouts)
extends Transition[QaState, QaAction] {
private val logger = LoggerFactory.getLogger(this.getClass)
private val executor = DefaultFilters.wrap(IdentityExecutor(client))
override def apply(s: QaState) = s match {
case s: QueryState => executeQuery(s)
case _ => Nil
}
private def executeQuery(state: QueryState) = for {
etuple <- execute(state.query)
newState = TupleState(etuple)
} yield (ExecutionAction, newState)
private def execute(query: ConjunctiveQuery) = try {
executor.execute(query)
} catch {
case e @ (_ : SolrServerException | _ : CompositeThrowable) => if (skipTimeouts) {
val sw = new StringWriter()
val pw = new PrintWriter(sw)
e.printStackTrace(pw)
logger.warn(s"Could not execute query: $query, got ${sw.toString}")
List.empty
} else {
throw e
}
}
}
object ExecutionAction extends QaAction
object ExecutionTransition {
val conf = ConfigFactory.load()
val defaultSkipTimeouts = conf.getBoolean("triplestore.skipTimeouts")
lazy val defaultClient = new SolrClient()
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/ParaphraseRuleTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.paraphrasing.rules.ParaphraseRuleSet
import edu.knowitall.search.Transition
case class ParaphraseRuleTransition(ruleSet: ParaphraseRuleSet = ParaphraseRuleSet()) extends Transition[QaState, QaAction] {
override def apply(s: QaState) = s match {
case s: QuestionState => paraphrase(s)
case _ => Nil
}
private def paraphrase(qs: QuestionState) = for {
(rule, result) <- ruleSet.apply(qs.processed)
newState = QuestionState(result, qs.isParaphrased)
} yield (rule, newState)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/ProjectionTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.search.Transition
class ProjectionTransition extends Transition[QaState, QaAction] {
override def apply(s: QaState) = s match {
case ts: TupleState => project(ts)
case _ => Nil
}
def project(ts: TupleState) =
List((ProjectAction, AnswerState(ts.execTuple.answerString)))
}
object ProjectAction extends QaAction
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaAction.scala
================================================
package edu.knowitall.search.qa
trait QaAction
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaBeamSearch.scala
================================================
package edu.knowitall.search.qa
import com.typesafe.config.ConfigFactory
import edu.knowitall.search.SingleBeam
import edu.knowitall.search.TypedBeams
import edu.knowitall.search.Beam
import edu.knowitall.search.BeamSearch
class QaBeamSearch(problem: QaSearchProblem) {
private var t0 = 0L
def search = {
val beam = QaBeamSearch.newBeam
val beamSearch = new BeamSearch(problem, beam)
t0 = System.currentTimeMillis
beamSearch.search
}
def startTime = t0
}
object QaBeamSearch {
val conf = ConfigFactory.load()
val defaultBeamSize = conf.getInt("search.beamSize")
val defaultBeamType = conf.getString("search.beamType")
def newBeam: Beam[QaState, QaAction] = defaultBeamType match {
case "single" => new SingleBeam[QaState, QaAction](defaultBeamSize)
case "typed" => new TypedBeams[QaState, QaAction, String](x => x.state.stateType, defaultBeamSize)
case _ => throw new IllegalStateException(s"Invalid beam type: defaultBeamType")
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaCostModel.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.learning.SparseVector
import com.typesafe.config.ConfigFactory
import scala.io.Source
import java.io.File
class QaCostModel(
var features: Function[QaStep, SparseVector] = QaCostModel.defaultFeatures,
var weights: SparseVector = QaCostModel.defaultWeights) extends Function[QaStep, Double] {
// multiply by -1 since search algos find minimum path
override def apply(step: QaStep) = -1.0 * (features(step) * weights)
}
object QaCostModel {
val conf = ConfigFactory.load()
val defaultFeatures = QaFeatures
lazy val defaultWeights = if (conf.hasPath("scoring.weights")) {
SparseVector.fromFile(conf.getString("scoring.weights"))
} else {
val in = getClass.getResourceAsStream("/edu/knowitall/search/qa/defaultWeights.txt")
SparseVector.fromInputStream(in)
//SparseVector.zero
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaFeatures.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.paraphrasing.template.TemplatePair
import edu.knowitall.execution.ExecTuple
import edu.knowitall.execution.ConjunctiveQuery
import edu.knowitall.learning.SparseVector
import edu.knowitall.learning.QueryTupleSimilarity
import com.typesafe.config.ConfigFactory
import edu.knowitall.lm.KenLmServer
import edu.knowitall.util.NlpUtils
import edu.knowitall.execution.Search
import edu.knowitall.relsyn.RelSynRule
import com.rockymadden.stringmetric.StringMetric
import edu.knowitall.execution.Tuple
import edu.knowitall.parsing.cg.ParsedQuestion
import edu.knowitall.paraphrasing.rules.ParaphraseRule
object QaFeatures extends Function[QaStep, SparseVector] {
val conf = ConfigFactory.load()
val defaultPmi = conf.getDouble("paraphrase.defaultPmi")
val defaultLm = conf.getDouble("paraphrase.defaultLm")
val lmClient = new KenLmServer()
val tupleTemplates = TupleFeatureTemplate.defaultTemplates
val tupleFeatures = ExecutionFeature { (question: String, etuple: ExecTuple) =>
val tuple = etuple.tuple
tupleTemplates.map(t => t(tuple)).reduce(_ + _)
}
val answerIsLinked = ExecutionFeature { (question: String, etuple: ExecTuple) =>
val tuple = etuple.tuple
val qAttrs = etuple.query.qAttrs
val isLinked = qAttrs.exists(attr => {
tuple.get(attr + "_fbid_s") match {
case Some(value) => true
case _ => false
}
})
("answer is linked to freebase", isLinked)
}
val actionType = ActionFeature { a: QaAction =>
(s"action type = ${a.getClass.getSimpleName}", 1.0)
}
val tupleNamespace = ExecutionFeature { (q: String, etuple: ExecTuple) =>
val tuple = etuple.tuple
val nss = tuple.attrs.keys.filter(_.endsWith(".namespace")).flatMap(tuple.getString(_))
nss.map(ns => s"answer from namespace '$ns'")
}
val numConjuncts = ExecutionFeature { (q: String, etup: ExecTuple) =>
("num conjuncts" -> etup.query.conjuncts.size)
}
val querySimilarity = ExecutionFeature { (q: String, etuple: ExecTuple) =>
val query = etuple.query
val tuple = etuple.tuple
//val relSim = QueryTupleSimilarity.relSimilarity(query, tuple)
//val argSim = QueryTupleSimilarity.argSimilarity(query, tuple)
val quesSim = QueryTupleSimilarity.questionQuerySimilarity(query, q)
val quesEvSim = QueryTupleSimilarity.questionTupleSimilarity(q, tuple)
SparseVector("evidence similarity with question" ->quesEvSim,
"query similarity with question" -> quesSim)
}
def freebaseLink(key: String, tuple: Tuple) = tuple.getString(key + "_fbid_s")
val joinSimilarity = ExecutionFeature { (q: String, etuple: ExecTuple) =>
val query = etuple.query
val tuple = etuple.tuple
val sims = for {
(key1, key2) <- query.joinPairs
val1 <- tuple.getString(key1)
val2 <- tuple.getString(key2)
s <- StringMetric.compareWithDiceSorensen(val1, val2)(1)
} yield s
val minJoinSim = if (sims.isEmpty) 0.0 else sims.min
val fbidPairs = for {
(key1, key2) <- query.joinPairs
fbid1 <- freebaseLink(key1, tuple)
fbid2 <- freebaseLink(key2, tuple)
} yield (fbid1, fbid2)
val fbidViolation = if (fbidPairs.exists(pair => pair._1 != pair._2)) 1.0 else 0.0
SparseVector(
"minimum join key similarity" -> minJoinSim,
"fbid join key violation" -> fbidViolation)
}
val templateFeatures = TemplatePairFeature { (q: String, pair: TemplatePair) => {
val prefix1 = NlpUtils.questionPrefix(pair.template1)
val prefix2 = NlpUtils.questionPrefix(pair.template2)
SparseVector(s"template prefix $prefix1 => $prefix2" -> 1.0,
"template pair pmi" -> pair.pmi,
"template pair count1" -> pair.count1,
"template pair count2" -> pair.count2,
"template pair count12" -> pair.count12,
"template is typed" -> {if (pair.typ == "anything") 0.0 else 1.0})
}
}
val numSteps = (step: QaStep) => SparseVector("steps" -> 0.25)
def paraphraseLm(step: QaStep): SparseVector = {
(step.action, step.toState) match {
case (a: TemplatePair, qs: QuestionState) if qs.isParaphrased => ("paraphrase lm", lmClient.query(qs.question))
case _ => SparseVector.zero
}
}
def templateArgFeatures(step: QaStep): SparseVector = step.toState match {
case s: AbstractedArgState => {
val sent = s.processed
val span = s.argInterval
val tags = sent.postags.slice(span.start, span.end)
val tagPat = tags.mkString(" ")
Some(s"template arg pos tags = $tagPat")
}
case _ => SparseVector.zero
}
private val defNoun = "^[Tt]he [a-z].*$".r
val isDefiniteNoun = ExecutionFeature { (q: String, etuple: ExecTuple) =>
val answer = etuple.answerString
if (defNoun.findFirstIn(answer).isDefined)
SparseVector("answer is def noun" -> 1.0)
else
SparseVector.zero
}
val prefixAndFeat = ExecutionFeature { (q: String, etuple: ExecTuple) =>
val a = etuple.answerString
val prefix = NlpUtils.questionPrefix(q)
val isDate = if (NlpUtils.isDate(a)) 1.0 else 0.0
val isNumber = if (NlpUtils.containsNumber(a)) 1.0 else 0.0
val shape = NlpUtils.stringShape(a, 4)
SparseVector(
s"question prefix = '$prefix' ^ isDate" -> isDate,
s"question prefix = '$prefix' ^ isNumber" -> isNumber,
s"question prefix = '$prefix' ^ answer shape = '$shape'" -> 1.0
)
}
val lightVerbRel = QueryFeature { (q: String, query: ConjunctiveQuery) =>
val values = for {
c <- query.conjuncts
(field, literal) <- c.literalFields
value = literal.value
if field == Search.rel && NlpUtils.isLightVerb(value)
} yield value
if (values.isEmpty) {
None
} else {
Some(s"query relation is light verb")
}
}
val relSynFeatures = (step: QaStep) => step.action match {
case r: RelSynRule => SparseVector("relSyn pmi" ->r.pmi)
case _ => SparseVector.zero
}
val paraRuleFeatures = (step: QaStep) => step.action match {
case r: ParaphraseRule => SparseVector(r.name -> 1.0)
case _ => SparseVector.zero
}
val parserFeatures = (step: QaStep) => step.action match {
case parse: ParsedQuestion => {
val deriv = parse.derivation
val lexRules = deriv.terminals.map(t => s"parser lexical rule = ${t.rule}")
val lexRuleContexts = deriv.terminals.flatMap { t =>
val i = t.interval.start
val j = t.interval.end
val n = parse.question.postags.size
val r = t.category.categoryString
val leftTag = if (i > 0) parse.question.postags(i-1) else ""
val rightTag = if (j < n - 2) parse.question.postags(j+1) else ""
Map(s"lex type = $r ^ leftTag = $leftTag" -> 1.0, s"lex type = $r ^ rightTag = $rightTag" -> 1.0)
}
val combRules = deriv.combinators.map(c => s"parser combinator rule = $c")
val usesFull = if (deriv.terminals.exists(t => t.rule.toString.startsWith("fullPattern"))) 1.0 else 0.0
val posLexRules = deriv.terminals.map { t =>
val i = t.catspan.span
val tags = parse.postags(i)
s"lex category (postags) = ${t.catspan.category.categoryString}($tags)"
}
val counts = (lexRules ++ combRules ++ posLexRules).groupBy(x => x).map {
case (name, names) => (name -> 1.0)
}
SparseVector(counts) + lexRuleContexts + ("num lexical rules" -> lexRules.size / 5.0) + ("uses full parser pattern" -> usesFull)
}
case _ => SparseVector.zero
}
def apply(s: QaStep) = actionType(s) +
answerIsLinked(s) +
tupleNamespace(s) +
querySimilarity(s) +
templateFeatures(s) +
paraphraseLm(s) +
numConjuncts(s) +
prefixAndFeat(s) +
lightVerbRel(s) +
relSynFeatures(s) +
templateArgFeatures(s) +
joinSimilarity(s) +
parserFeatures(s) +
paraRuleFeatures(s) +
numSteps(s) +
isDefiniteNoun(s) +
tupleFeatures(s)
}
case class TemplatePairFeature(f: Function2[String, TemplatePair, SparseVector]) extends Function[QaStep, SparseVector] {
override def apply(step: QaStep) = step.action match {
case a: TemplatePair => f(step.question, a)
case _ => SparseVector.zero
}
}
case class ExecutionFeature(f: Function2[String, ExecTuple, SparseVector]) extends Function[QaStep, SparseVector] {
override def apply(step: QaStep) = step.toState match {
case ts: TupleState => f(step.question, ts.execTuple)
case _ => SparseVector.zero
}
}
case class QueryFeature(f: Function2[String, ConjunctiveQuery, SparseVector]) extends Function[QaStep, SparseVector] {
override def apply(step: QaStep) = step.toState match {
case qs: QueryState => f(step.question, qs.query)
case _ => SparseVector.zero
}
}
case class ActionFeature(f: QaAction => SparseVector) extends Function[QaStep, SparseVector] {
override def apply(step: QaStep) = f(step.action)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaLayeredSearch.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.search.SearchAlgorithm
import com.google.common.collect.MinMaxPriorityQueue
import edu.knowitall.search.Node
import java.util.Comparator
import scala.collection.JavaConversions._
class QaLayeredSearch(override val problem: QaSearchProblem, beamSize: Int, goalSize: Int) extends SearchAlgorithm[QaState, QaAction] {
private val comparator = new Comparator[Node[QaState, QaAction]] {
override def compare(n1: Node[QaState, QaAction], n2: Node[QaState, QaAction]) = {
val r = QaStateComparator.compare(n1.state, n2.state)
if (r == 0) {
n1.pathCost.compareTo(n2.pathCost)
} else {
r
}
}
}
private val beam = MinMaxPriorityQueue.orderedBy(comparator)
.maximumSize(beamSize)
.create[Node[QaState, QaAction]]
override def continueSearch = (beam.size > 0) && (goals.size < goalSize)
override def initialize = beam.add(rootNode)
override def searchIter = {
val node = beam.pollFirst
logger.warn(s"Expanding ${node.state}")
val successors = expand(node).toList
val (newGoals, newNodes) = successors.partition(isGoal)
newGoals.foreach(addGoalNode)
beam.addAll(newNodes)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaSearchProblem.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.paraphrasing.template.TemplateParaphraser
import edu.knowitall.execution.IdentityExecutor
import edu.knowitall.triplestore.SolrClient
import edu.knowitall.search.SearchProblem
import edu.knowitall.search.BeamSearch
import edu.knowitall.search.Transition
import edu.knowitall.tool.postag.StanfordPostagger
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.tool.tokenize.ClearTokenizer
import edu.knowitall.tool.chunk.OpenNlpChunker
import edu.knowitall.triplestore.CachedTriplestoreClient
case class QaSearchProblem(
question: String,
transitionModel: Transition[QaState, QaAction] =
QaSearchProblem.transitionModel,
costModel: Function[QaStep, Double] = QaSearchProblem.costModel)
extends SearchProblem[QaState, QaAction] {
val initialState = QuestionState(question)
override def successors(s: QaState) = transitionModel(s)
override def isGoal(s: QaState) = s match {
case as: AnswerState => true
case _ => false
}
override def cost(fromState: QaState, action: QaAction, toState: QaState) =
costModel(QaStep(question, fromState, action, toState))
}
object QaSearchProblem {
val transitionModel = new QaTransitionModel
val costModel = new QaCostModel
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaState.scala
================================================
package edu.knowitall.search.qa
trait QaState {
def stateType: String
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaStateComparator.scala
================================================
package edu.knowitall.search.qa
import java.util.Comparator
object QaStateComparator extends Comparator[QaState] {
def statePosition(s: QaState) = s match {
case _: AnswerState => 0
case _: TupleState => 1
case _: QueryState => 2
case _: AbstractedArgState => 3
case _: QuestionState => 3
case _ =>
throw new IllegalStateException(s"Could not find ordering for state $s")
}
override def compare(s1: QaState, s2: QaState) =
statePosition(s1) compareTo statePosition(s2)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaStep.scala
================================================
package edu.knowitall.search.qa
case class QaStep(question: String, fromState: QaState, action: QaAction,
toState: QaState)
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaTransitionModel.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.tool.postag.StanfordPostagger
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.tool.tokenize.ClearTokenizer
import edu.knowitall.tool.chunk.OpenNlpChunker
import edu.knowitall.paraphrasing.template.ParaphraseTemplateClient
import edu.knowitall.triplestore.SolrClient
import edu.knowitall.triplestore.CachedTriplestoreClient
import edu.knowitall.search.Transition
import edu.knowitall.relsyn.SolrRelSynClient
import edu.knowitall.relsyn.IsaRelSynClient
import edu.knowitall.util.NlpTools
import com.typesafe.config.ConfigFactory
import edu.knowitall.parsing.cg.CgParser
class QaTransitionModel extends Transition[QaState, QaAction] {
lazy val cgParser = new CgParser()
// Remote services
lazy val templateClient = new ParaphraseTemplateClient
lazy val baseTriplestoreClient = new SolrClient()
lazy val triplestoreClient = CachedTriplestoreClient(baseTriplestoreClient)
lazy val relSynClient = SolrRelSynClient()
// Individual transition functions
lazy val absArgTransition = new AbstractArgTransition()
lazy val templateTransition = new TemplateTransition(templateClient)
lazy val paraRuleTransition = ParaphraseRuleTransition()
lazy val parseTransition = new CgParseTransition(cgParser)
lazy val executeTransition = new ExecutionTransition(triplestoreClient)
lazy val isaSynTransition = new RelSynTransition(IsaRelSynClient)
lazy val relSynTransition = new RelSynTransition(relSynClient)
lazy val dropStopsTransition = new DropQueryStopsTransition()
lazy val projTransition = new ProjectionTransition
val conf = ConfigFactory.load()
lazy val components = Map(
"parse" -> parseTransition,
"templateParaphrase" -> (absArgTransition + templateTransition),
"ruleParaphrase" -> paraRuleTransition,
"relSyn" -> relSynTransition,
"isaRelSyn" -> isaSynTransition,
"execute" -> executeTransition,
"project" -> projTransition,
"dropStops" -> dropStopsTransition
)
lazy val activeComponents = for {
name <- components.keys
active = conf.getBoolean(s"search.transitions.$name")
if active
component = components(name)
} yield component
lazy val model = activeComponents.reduce(_ + _)
override def apply(s: QaState) = model(s)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QueryState.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.execution.ConjunctiveQuery
case class QueryState(query: ConjunctiveQuery, reformulated: Boolean = false)
extends QaState {
override def stateType = "QueryState"
override def toString = query.toString
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QuestionState.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.util.NlpTools
trait QuestionState extends QaState {
def question: String
def processed: Sentence with Lemmatized with Chunked
def isParaphrased: Boolean
override def stateType = "QuestionState"
override def toString = question
}
case object QuestionState {
private case class QuestionStateImpl(
question: String,
processed: Sentence with Lemmatized with Chunked,
isParaphrased: Boolean = false) extends QuestionState
def apply(question: String): QuestionState = QuestionStateImpl(question, NlpTools.process(question))
def apply(q: String, isP: Boolean): QuestionState = QuestionStateImpl(q, NlpTools.process(q), isP)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/RelSynTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.relsyn.SolrRelSynClient
import edu.knowitall.search.Transition
import edu.knowitall.execution.TConjunct
import edu.knowitall.execution.ListConjunctiveQuery
import org.slf4j.LoggerFactory
import edu.knowitall.execution.Search
import com.typesafe.config.ConfigFactory
import org.apache.solr.client.solrj.SolrServerException
import java.io.StringWriter
import java.io.PrintWriter
import edu.knowitall.relsyn.RelSynClient
class RelSynTransition(client: RelSynClient = RelSynTransition.defaultClient, skipTimeouts: Boolean = RelSynTransition.defaultSkipTimeouts, multipleSyns: Boolean = RelSynTransition.defaultMultipleSyns)
extends Transition[QaState, QaAction] {
val logger = LoggerFactory.getLogger(this.getClass)
override def apply(s: QaState) = s match {
case qs: QueryState if (!qs.reformulated || multipleSyns) => reformulate(qs)
case _ => Nil
}
private def reformulate(s: QueryState) = {
val conjs = s.query.conjuncts
for {
i <- 0 until conjs.size
c = conjs(i)
rule <- relSyns(c)
newc <- rule(c)
newconjs = conjs.updated(i, newc)
newq = ListConjunctiveQuery(s.query.qVars, newconjs)
newstate = s.copy(query = newq, reformulated = true)
} yield {
(rule, newstate)
}
}
private def relSyns(c: TConjunct) = try {
client.relSyns(c)
} catch {
case e: SolrServerException => if (skipTimeouts) {
val sw = new StringWriter()
val pw = new PrintWriter(sw)
e.printStackTrace(pw)
logger.warn(s"Could not reformulate query: $c, got ${sw.toString}")
List.empty
} else {
throw e
}
}
}
object RelSynTransition {
val conf = ConfigFactory.load()
val defaultSkipTimeouts = conf.getBoolean("relsyn.skipTimeouts")
val defaultMultipleSyns = conf.getBoolean("relsyn.multipleSyns")
lazy val defaultClient = new SolrRelSynClient()
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/TemplateTransition.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.search.Transition
import edu.knowitall.paraphrasing.template.ParaphraseTemplateClient
import com.typesafe.config.ConfigFactory
import edu.knowitall.paraphrasing.template.TemplatePair
import org.apache.solr.client.solrj.SolrServerException
import java.io.StringWriter
import java.io.PrintWriter
import org.slf4j.LoggerFactory
class TemplateTransition(client: ParaphraseTemplateClient, skipTimeouts: Boolean = TemplateTransition.defaultSkipTimeouts) extends Transition[QaState, QaAction] {
def this() = this(new ParaphraseTemplateClient())
private val logger = LoggerFactory.getLogger(this.getClass)
override def apply(s: QaState) = s match {
case s: AbstractedArgState => paraphrase(s)
case _ => Nil
}
private def paraphrases(s: String, argTypes: List[String]) = try {
client.paraphrases(s, argTypes)
} catch {
case e: Throwable => if (skipTimeouts) {
val sw = new StringWriter()
val pw = new PrintWriter(sw)
e.printStackTrace(pw)
logger.warn(s"Could not get paraphrases: $s, got ${sw.toString}")
List.empty
} else {
throw e
}
}
private def paraphrase(state: AbstractedArgState) =
for {
templatePair <- paraphrases(state.queryString, state.argTypes)
arg = state.arg
newQuestion = applyTemplate(arg, templatePair)
action = templatePair
newState = QuestionState(newQuestion, true)
} yield (action, newState)
private def applyTemplate(arg: String, pair: TemplatePair) =
pair.template2.replace("$y", arg)
}
object TemplateTransition {
val conf = ConfigFactory.load()
val defaultSkipTimeouts = conf.getBoolean("paraphrase.template.skipTimeouts")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/TupleFeatureTemplate.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.execution.Tuple
import edu.knowitall.learning.SparseVector
import com.typesafe.config.ConfigFactory
import edu.knowitall.util.ResourceUtils
case class TupleFeatureTemplate(
attr: String,
agg: (Double, Double) => Double,
min: Double,
max: Double,
scale: Double => Double) {
private val smin = scale(min)
private val smax = scale(max)
private val suffix = s".$attr"
private def computeValue(v: Double) = if (min <= v && v <= max) {
Some((scale(v) - smin) / (smax - smin))
} else {
None
}
def apply(tuple: Tuple): SparseVector = {
val svalues = for {
a <- tuple.attrs.keys
if a.endsWith(suffix)
v <- tuple.getNumber(a)
r <- computeValue(v)
} yield r
if (svalues.isEmpty) {
SparseVector.zero
} else {
SparseVector(s"tuple $attr" -> svalues.reduce(agg))
}
}
}
object TupleFeatureTemplate {
val conf = ConfigFactory.load()
val res = conf.getString("tuplefeatures.resourcePath")
lazy val defaultTemplates = ResourceUtils.resourceSource(res).getLines.map(fromString).toList
def fromString(s: String) = {
val fields = s.trim.split("\t").toList
fields match {
case attr :: sagg :: smin :: smax :: sscale :: Nil => {
val agg = aggFromString(sagg)
val scale = scaleFromString(sscale)
val min = smin.toDouble
val max = smax.toDouble
TupleFeatureTemplate(attr, agg, min, max, scale)
}
case _ => throw new IllegalArgumentException(s"Invalid feature template: $s")
}
}
def aggFromString(s: String): (Double, Double) => Double = s.trim.toLowerCase match {
case "min" => Math.min _
case "max" => Math.max _
case _ => throw new IllegalArgumentException(s"Invalid aggregator: $s")
}
def scaleFromString(s: String): Double => Double = s.trim.toLowerCase match {
case "log" => Math.log
case "linear" => (x: Double) => x
case _ => throw new IllegalArgumentException(s"Invalid feature scale: $s")
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/TupleState.scala
================================================
package edu.knowitall.search.qa
import edu.knowitall.execution.ExecTuple
case class TupleState(execTuple: ExecTuple) extends QaState {
override def stateType = "TupleState"
override def toString = execTuple.toTripleString
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/triplestore/IsaClient.scala
================================================
package edu.knowitall.triplestore
import edu.knowitall.relsyn.IsaRelSynClient
import edu.knowitall.execution.ListConjunctiveQuery
import edu.knowitall.execution.IdentityExecutor
import edu.knowitall.util.NlpTools
import edu.knowitall.execution.Search.TSQuery
import edu.knowitall.model.QaModel
case class IsaClient(client: TriplestoreClient = IsaClient.defaultTriplestoreClient, maxHits: Int = 500) {
private val internalClient = new TriplestoreClient {
override def search(q: TSQuery, h: Int) = client.search(q, maxHits)
override def count(q: TSQuery) = client.count(q)
}
private val isaSyns = IsaRelSynClient
private val exec = IdentityExecutor(internalClient)
private val norm = (s: String) => NlpTools.normalize(s)
private def getQuery(a: String) = ListConjunctiveQuery.fromString("$x : (\"" + a.replace(",", " ") + "\", isa, $x)") match {
case Some(q) => q
case None => throw new IllegalStateException(s"Could not make query from $a")
}
private def getQueries(a: String) = {
val q = getQuery(a)
val c = q.conjuncts(0)
val rules = isaSyns.relSyns(c)
val conjs = rules.flatMap(_(c))
conjs map { c => ListConjunctiveQuery(q.qVars, List(c)) }
}
def getTypes(a: String) = {
val queries = getQueries(a)
val results = queries flatMap { q => exec.execute(q) }
"anything" :: results.map(a => norm(a.answerString)).distinct
}
}
case object IsaClient {
lazy val defaultTriplestoreClient = new SolrClient()
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/triplestore/TriplestoreClient.scala
================================================
package edu.knowitall.triplestore
import scala.collection.JavaConverters._
import org.apache.solr.client.solrj.impl.HttpSolrServer
import org.apache.solr.client.solrj.util.ClientUtils
import org.apache.solr.client.solrj.SolrQuery
import scala.collection.JavaConversions._
import org.apache.solr.common.SolrDocument
import java.util.ArrayList
import org.slf4j.LoggerFactory
import edu.knowitall.execution.Conditions._
import edu.knowitall.execution.Search._
import edu.knowitall.execution._
import com.twitter.util.LruMap
import scala.collection.mutable.SynchronizedMap
import java.util.ArrayList
import com.typesafe.config.ConfigFactory
import org.apache.solr.common.SolrException
/**
* The interface to a Triplestore.
*/
trait TriplestoreClient {
/**
* Counts the number of triples that match the given query.
*/
def count(q: TSQuery): Long
/**
* Searches and returns at most maxHits Tuple objects.
*/
def search(q: TSQuery, maxHits: Int = 100): List[Tuple]
/**
* Searches and returns Tuple objects, but adds the prefix
* "$name." to all of the attributes.
*/
def namedSearch(name: String, q: TSQuery): List[Tuple] =
search(q) map { t => t.renamePrefix(name) }
/**
* Searches and returns Tuple objects, but adds the prefix
* "$name." to all of the attributes. Returns at most maxHits tuples.
*/
def namedSearch(name: String, q: TSQuery, maxHits: Int): List[Tuple] =
search(q, maxHits) map { t => t.renamePrefix(name) }
}
case class CachedTriplestoreClient(client: TriplestoreClient, size: Int = 1000)
extends TriplestoreClient {
val tupleMap = new LruMap[(TSQuery, Int), List[Tuple]](size) with SynchronizedMap[(TSQuery, Int), List[Tuple]]
val countMap = new LruMap[TSQuery, Long](size) with SynchronizedMap[TSQuery, Long]
def search(q: TSQuery, hits: Int): List[Tuple] = {
tupleMap.get((q, hits)) match {
case Some(x) => x
case _ => {
val results = client.search(q, hits)
tupleMap.put((q, hits), results)
results
}
}
}
def count(q: TSQuery) = {
countMap.get(q) match {
case Some(x) => x
case _ => {
val results = client.count(q)
countMap.put(q, results)
results
}
}
}
}
/**
* This class is used to query a Solr server and return Tuple objects. The
* URL should point to the Solr instance. "hits" is the default number of hits
* that is returned by the search.
*/
case class SolrClient(url: String, hits: Int = 10, timeout: Int = SolrClient.defaultTimeout, skipTimeouts: Boolean = SolrClient.defaultSkipTimeouts) extends TriplestoreClient {
def this() = this(SolrClient.defaultUrl, SolrClient.defaultMaxHits)
val logger = LoggerFactory.getLogger(this.getClass)
val server = new HttpSolrServer(url)
server.setConnectionTimeout(timeout)
server.setSoTimeout(timeout)
server.setMaxRetries(1)
val defaultMaxHits = hits
private def execQuery(q: SolrQuery) = try {
Some(server.query(q))
} catch {
case e: SolrException => if (skipTimeouts) {
None
} else {
throw e
}
}
/**
* Returns the number of documents in Solr that match the given query.
*/
def count(q: TSQuery): Long = {
val query = SolrClient.buildCountQuery(q)
query.setParam("shards.tolerant", true)
val c = for {
resp <- execQuery(query)
c = resp.getResults().getNumFound()
} yield c
c.getOrElse(0)
}
/**
* Searches Solr and returns Tuple objects.
*/
def search(q: TSQuery, maxHits: Int = defaultMaxHits): List[Tuple] ={
logger.debug(s"Searching for query: ${q.toQueryString}")
val query = SolrClient.buildQuery(q)
query.setRows(maxHits)
query.setParam("shards.tolerant", true)
val tuples = for {
resp <- execQuery(query)
results = resp.getResults().toList.map(SolrClient.docToTuple)
} yield results
tuples.getOrElse(List.empty[Tuple])
}
}
case object SolrClient {
val conf = ConfigFactory.load()
val defaultUrl = conf.getString("triplestore.url")
val defaultMaxHits = conf.getInt("triplestore.maxHits")
val defaultTimeout = conf.getInt("triplestore.timeout")
val defaultSkipTimeouts = conf.getBoolean("triplestore.skipTimeouts")
val defaultSkipNamespaces = conf.getString("triplestore.skipNamespaces").r
val defaultNamespaces = conf.getStringList("triplestore.namespaces") filter { ns => ns match {
case defaultSkipNamespaces() => false
case _ => true
}
}
private val nsDisjunction = Disjunction(defaultNamespaces.map(NamespaceEq(_)):_*)
def escape(s: String): String = ClientUtils.escapeQueryChars(s)
private val parenPat = """AND \s*\(+\s*\)+\s*$""".r
def removeEmptyParens(s: String): String = {
val result = parenPat.replaceAllIn(s, " ")
result
}
val emptyPat = """^\s*$""".r
def replaceEmptyQuery(s: String): String = s match {
case emptyPat() => "*:*"
case _ => s
}
def fixQuery(s: String) = {
replaceEmptyQuery(removeEmptyParens(s))
}
/**
* Takes a Search.Query object and maps it to a SolrQuery object.
*/
def buildQuery(q: TSQuery): SolrQuery = {
val newQuery = Conjunction(nsDisjunction, q)
new SolrQuery(fixQuery(newQuery.toQueryString))
}
/**
* Builds a SolrQuery object used to count the number of hits returned
* by the given Search.Query object. Returns 0 rows.
*/
def buildCountQuery(q: TSQuery): SolrQuery =
new SolrQuery(fixQuery(q.toQueryString)).setRows(0)
/**
* The string field names of the given solr document.
*/
def fieldNames(doc: SolrDocument): List[String] =
doc.getFieldNames().toList.map { x => x.toString() }
// Mnemonics used to remember what the attributes/values of a Tuple are.
type Value = Any
type Attr = String
/**
* Used to convert the values of a Solr field into Values for a Tuple.
*/
def toTupleValue(v: Any): Option[Value] = {
v match {
case v: String => Some(v)
case v: Float => Some(v)
case v: Double => Some(v)
case v: Integer => Some(v)
case v: Boolean => Some(v)
case v: ArrayList[_] => Some(v.asScala.toList) // required for support of multiValued fields
case _ => None
}
}
/**
* Gets the (attribute, value) pairs from the given Solr doc.
*/
def docToFields(doc: SolrDocument): List[(Attr, Value)] = {
for (name <- doc.getFieldNames().toList;
value = doc.getFieldValue(name);
tvalue <- toTupleValue(value))
yield (name, tvalue)
}
/**
* Converts a Solr document to a Tuple object.
*/
def docToTuple(doc: SolrDocument): Tuple = Tuple(docToFields(doc).toMap)
}
/**
* This is a utility class used to instantiate some common relational operations
* and shortcuts. Builds on a TriplestoreClient, which is used to interact
* with the underlying Solr instance.
*/
case class TriplestorePlan(client: TriplestoreClient) {
import Conditions._
import Search._
import Search.Field
// Mnemonics
type Tuples = Iterable[Tuple]
type TuplePred = Tuple => Boolean
type TupleMap = Tuple => Tuple
/**
* Shortcuts for executing the given query with the given name.
*/
def ExecQuery(n: String, q: TSQuery) = client.namedSearch(n, q)
def ExecQuery(n: String, q: TSQuery, h: Int) = client.namedSearch(n, q, h)
/**
* Searches for the conjunction of the given queries, naming them with
* the given name.
*/
def SearchFor(s: String, q: TSQuery*) = ExecQuery(s, Conjunction(q:_*))
/**
* This is a partial search object, which is used in join algorithms. It's
* a way to represent a query that has yet to be executed against Solr that
* will be joined with another set of tuples.
*/
def PartialSearchFor(n: String, q: TSQuery*): PartialSearcher = {
PartialSearcher(Conjunction(q:_*), ExecQuery(n, _))
}
def PartialSearchFor(n: String, h: Int, q: TSQuery*): PartialSearcher = {
PartialSearcher(Conjunction(q:_*), ExecQuery(n, _, h))
}
/**
* A shortcut function for projecting the given tuples on a single attribute.
*/
def ProjectOn(s: String, ts: Tuples) = Operators.Project(On(s))(ts)
/**
* A shortcut function for projecting the given tuples using the given
* map Tuple => Tuple.
*/
def Project(m: TupleMap, ts: Tuples) = Operators.Project(m)(ts)
/**
* A shortcut for doing a nested loop join on the given pair of tuple
* iterables.
*/
def Join(cond: TuplePred, ts1: Tuples, ts2: Tuples) =
Operators.NestedLoopJoin(cond)(ts1, ts2)
/**
* A shortcut function for performing a "search join". A search join is used
* when joining two sets of tuples together, but where one tuple set is too
* large to fetch from Solr. Instead, this algorithm takes a smaller set of
* tuples (in memory) and iteratively makes a query for each row in the
* table. This essentially trades off making one large query (possibly
* exhausting memory) with making many smaller ones.
*
* For example, a SearchJoin can be used when joining "($x, type, us
* president)" which is relatively small with "($x, type, lawyer)" which is
* relatively big. The algorithm will enumerate all $x from the first table
* and then substitute it in the second query.
*/
def SearchJoin(a1: String, a2: String, ts: Tuples,
q: PartialSearcher): Tuples = {
// Joins using string similarity instead of strict equality
val cond = AttrsSim(a1, a2, 0.9)
PartialSearchJoin(cond)(ts, q)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/AlignedWordProcessor.scala
================================================
package edu.knowitall.util
import scala.collection.JavaConverters._
import edu.knowitall.common.Resource.using
object AggregateSortedCounts {
val tabRegex = "\\t".r
def main(args: Array[String]): Unit = {
val inputFile = args(0)
val outputFile = args(1)
val inputSource = io.Source.fromFile(inputFile, "UTF8")
val output = new java.io.PrintStream(outputFile, "UTF8")
var lastFields = Option.empty[(String, String)]
var runningCount = 0
val outputLines = inputSource.getLines.flatMap { line =>
tabRegex.split(line) match {
case Array(w1, w2, count) => {
if (Some((w1, w2)).equals(lastFields)) {
runningCount += count.toInt
None
} else {
val result = lastFields match {
case Some((w1p, w2p)) => {
Some(s"$w1p\t$w2p\t$runningCount")
}
case None => {
None
}
}
runningCount = count.toInt
lastFields = Some((w1, w2))
result
}
}
}
} ++ lastFields.map { case (w1, w2) => s"$w1\t$w2\t$runningCount" }
outputLines.zipWithIndex foreach {case (line, index) =>
if (index % 10000 == 0) System.err.println(index)
output.println(line)
}
output.close()
}
}
object AlignedWordProcessor {
private val wsRegex = "\\s+".r
private val walignRegex = "(\\d+)-(\\d+)".r
def getAlignedPhrases(q1: String, q2: String, alignment: String): Seq[Set[String]] = {
val q1Tokens = wsRegex.split(q1)
val q2Tokens = wsRegex.split(q2)
val wAlignments = wsRegex.split(alignment).map { case walignRegex(n1, n2) => (n1.toInt, n2.toInt) }
val q1q2Phrases = wAlignments.groupBy(_._1).map(p=>(p._1, p._2.map(_._2))).toSeq
val q2q1Phrases = wAlignments.map(_.swap).groupBy(_._1).map(p=>(p._1, p._2.map(_._2))).toSeq
val q1TokenIndexMap = q1Tokens.zipWithIndex.map(_.swap).toMap
val q2TokenIndexMap = q2Tokens.zipWithIndex.map(_.swap).toMap
//val finalAlignments = wAlignments.map { case (q1i, q2i) => Set(q1TokenIndexMap(q1i), q2TokenIndexMap(q2i)) }
//finalAlignments.distinct.filter(_.size == 2)
val q1q2Alignments = q1q2Phrases.map { case (q1, q2s) => Set(q1TokenIndexMap(q1), q2s.map(q2TokenIndexMap.apply).mkString(" ")) }
val q2q1Alignments = q2q1Phrases.map { case (q2, q1s) => Set(q2TokenIndexMap(q2), q1s.map(q1TokenIndexMap.apply).mkString(" ")) }
(q1q2Alignments ++ q2q1Alignments).distinct.filter(_.size == 2)
}
def main(args: Array[String]): Unit = {
val inputFile = "/scratch/usr/rbart/paralex/wikianswers-paraphrases-1.0/word_alignments.txt"
val output = new java.io.PrintStream(args(0))
val tabRegex = "\\t".r
using(io.Source.fromFile(inputFile, "UTF8")) { source =>
val alignedWords = source.getLines.flatMap { line =>
tabRegex.split(line) match {
case Array(q1, q2, wa) => getAlignedPhrases(q1, q2, wa)
case _ => {
System.err.println(s"Warning, unparseable word alignment line: $line")
Seq.empty
}
}
}
val cacheCountedAlignedWords = new CacheCountingIterator(1000000, alignedWords)
cacheCountedAlignedWords.zipWithIndex foreach { case ((wSet, count), index) =>
if (index % 10000 == 0) System.err.print(".")
val fields = wSet.toSeq.sorted :+ count.toString
output.println(fields.mkString("\t"))
}
}
output.close()
}
}
/**
* Takes an iterator of T, and keeps an LRU cache of the most recently accessed _cacheSize_ elements, counting
* the number of times they were seen. When an element is evicted from the cache, it is output to the
* iterator with its count.
*
* Maybe useful in reducing output size when you're trying to count occurrences but want to avoid
* sorting an enormous list of completely distinct elements.
*/
class CacheCountingIterator[T](val cacheSize: Int, val source: Iterator[T]) extends Iterator[(T, Int)] {
import java.util.LinkedHashMap
case class MutableInt(var value: Int) {
def increment = { value += 1 }
}
val countCache = new LinkedHashMap[T, MutableInt](cacheSize * 2, 0.75f, true) {
override def removeEldestEntry(entry: java.util.Map.Entry[T, MutableInt]): Boolean = {
if (this.size() > cacheSize) {
nextEvict = Some((entry.getKey, entry.getValue.value))
true
} else false
}
}
var nextEvict = Option.empty[(T, Int)]
var finalIterator = Option.empty[Iterator[(T, Int)]]
def hasNext = source.hasNext || finalIterator.exists(_.hasNext)
def next(): (T, Int) = {
// if source has more elements, try to iterate over them and wait for nextEvict to become available
while (source.hasNext && nextEvict.isEmpty) {
val nextT = source.next()
countCache.asScala.getOrElseUpdate(nextT, MutableInt(0)).increment
}
if (finalIterator.isEmpty && !source.hasNext) {
finalIterator = Some(countCache.asScala.iterator.map(p => (p._1, p._2.value)))
}
if (nextEvict.nonEmpty) {
val nextTC = nextEvict.get
nextEvict = None
return nextTC
}
else return finalIterator.get.next
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/Counter.scala
================================================
package edu.knowitall.util
import scala.collection.mutable
case class Counter(counts: mutable.Map[String, Double]) {
def this() = this(mutable.Map.empty[String, Double])
def increment(k: String) = set(k, get(k) + 1.0)
def get(k: String) = counts.getOrElse(k, 0.0)
def apply(k: String) = get(k)
def set(k: String, v: Double) = counts.update(k, v)
override def toString = (counts.map { case (k, v) => s"$k\t$v" }).mkString("\n")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/DummyChunker.scala
================================================
package edu.knowitall.util
import edu.knowitall.tool.postag.Postagger
import edu.knowitall.tool.chunk.Chunker
import edu.knowitall.tool.postag.PostaggedToken
import edu.knowitall.tool.chunk.ChunkedToken
case class DummyChunker(override val postagger: Postagger) extends Chunker {
override def chunkPostagged(tokens: Seq[PostaggedToken]) = {
tokens map { t =>
new ChunkedToken(DummyChunker.sym, t.postagSymbol, t.string, t.offset)
}
}
}
case object DummyChunker {
val sym = Symbol("")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/HadoopUtils.scala
================================================
package edu.knowitall.util
object HadoopUtils {
def groupIterator[S, T](iter: Iterator[T], f: (T => S)): Iterator[(S, Iterator[T])] =
for (head <- iter; headVal = f(head); rest = iter.takeWhile(x => f(x) == headVal)) yield (headVal, List(head).iterator ++ rest)
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/MathUtils.scala
================================================
package edu.knowitall.util
import org.slf4j.LoggerFactory
import edu.knowitall.collection.immutable.Interval
object MathUtils {
val logger = LoggerFactory.getLogger(this.getClass)
def clip(x: Double, min: Double, max: Double) = Math.min(Math.max(x, min), max)
def scale(x: Double, min: Double, max: Double) = (x - min) / (max - min)
def clipScale(x: Double, min: Double, max: Double) = scale(clip(x, min, max), min, max)
def intervals(length: Int, size: Int) = for {
i <- 0 until (size - length + 1)
} yield Interval.open(i, i + length)
def allIntervals(size: Int) = for {
length <- 1 to size
interval <- intervals(length, size)
} yield interval
def splits(interval: Interval) = for {
k <- (interval.head + 1) until interval.end
i = interval.head
j = interval.end
} yield (Interval.open(i, k), Interval.open(k, j))
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/NlpTools.scala
================================================
package edu.knowitall.util
import edu.knowitall.tool.postag.StanfordPostagger
import edu.knowitall.tool.stem.MorphaStemmer
import edu.knowitall.tool.chunk.OpenNlpChunker
import edu.knowitall.repr.sentence.Lemmatized
import edu.knowitall.repr.sentence.Chunked
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.repr.sentence.{Lemmatizer => RepLemmatizer}
import edu.knowitall.repr.sentence.{Chunker => RepChunker}
import edu.knowitall.tool.tokenize.PTBTokenizer
import edu.knowitall.tool.chunk.Chunker
import edu.knowitall.repr.sentence.Lemmatizer
import edu.knowitall.tool.stem.Stemmer
object NlpTools {
lazy val tagger = new StanfordPostagger
lazy val stemmer = new MorphaStemmer
lazy val tokenizer = new PTBTokenizer
lazy val chunker = new OpenNlpChunker
lazy val dummyChunker = DummyChunker(tagger)
def process(sentence: String, ch: Chunker = dummyChunker, lm: Stemmer = stemmer): Sentence with Chunked with Lemmatized = {
new Sentence(sentence) with RepChunker with RepLemmatizer {
val chunker = ch
val lemmatizer = lm
}
}
def normalize(text: String, ch: Chunker = dummyChunker, lm: Stemmer = stemmer) = process(text, ch, lm).lemmatizedTokens.map(_.lemma.toLowerCase).mkString(" ")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/NlpUtils.scala
================================================
package edu.knowitall.util
import edu.knowitall.tool.stem.Lemmatized
import edu.knowitall.repr.sentence.{Lemmatized => RepLemmatized}
import edu.knowitall.tool.chunk.ChunkedToken
import edu.knowitall.tool.tokenize.Token
import edu.knowitall.tool.postag.PostaggedToken
import edu.knowitall.tool.chunk.Chunker
import edu.washington.cs.knowitall.regex.RegularExpression
import edu.washington.cs.knowitall.regex.ExpressionFactory
import edu.washington.cs.knowitall.regex.Expression
import edu.washington.cs.knowitall.logic.Expression.{Arg => LogicArg}
import edu.washington.cs.knowitall.regex.Expression.BaseExpression
import edu.washington.cs.knowitall.logic.LogicExpression
import com.google.common.base.{Function => GuavaFunction}
import edu.knowitall.repr.sentence.Sentence
import edu.knowitall.repr.sentence.Chunked
object NlpUtils {
/**
* Taken from Factorie: https://github.com/factorie/factorie/blob/master/src/main/scala/cc/factorie/app/strings/package.scala
*/
def stringShape(word:String, maxRepetitions:Int): String = {
val sb = new StringBuffer
var i = 0; var c = 'x'; var prevc = 'x'; var repetitions = 0
while (i < word.length) {
val char = word(i)
if (Character.isUpperCase(char)) c = 'A'
else if (Character.isLowerCase(char)) c = 'a'
else if (Character.isDigit(char)) c = '1'
else if (Character.isWhitespace(char)) c = ' '
else c = char
if (c == prevc) repetitions += 1
else { prevc = c; repetitions = 0 }
if (repetitions < maxRepetitions) sb.append(c)
i += 1
}
sb.toString
}
val months = Set("january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december")
val days = Set("sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday")
val year = """^\d\d\d\d$""".r
val datePat = """^\d\d\d\d.\d\d.\d\d$""".r
def isDateWord(s: String): Boolean = {
months.contains(s) || days.contains(s) || datePat.findFirstIn(s).isDefined || year.findFirstIn(s).isDefined
}
def isDate(s: String): Boolean = {
s.split(" ").map(_.toLowerCase()).exists(isDateWord)
}
val qPrefixes = List("what year", "what month", "what day", "who", "when", "why", "what", "when", "where", "how many", "how", "be")
def questionPrefix(s: String): String = {
val x = s.toLowerCase()
qPrefixes.find(prefix => x.startsWith(prefix)) match {
case Some(prefix) => prefix
case _ => "UNK"
}
}
val digitPat = "[0-9]".r
def containsNumber(s: String) = digitPat.findFirstIn(s).isDefined
val lightVerbs = Set("be", "is", "are", "was", "were", "have", "has", "had", "go", "take", "can", "do", "does", "did")
def isLightVerb(s: String) = lightVerbs contains s.toLowerCase()
def serialize(sent: Seq[Lemmatized[ChunkedToken]]) = {
val tokens = sent.map(l => l.token.string)
val lemmas = sent.map(l => l.lemma)
val tags = sent.map(l => l.postag)
val chunks = sent.map(l => l.chunk)
List(tokens, lemmas, tags, chunks).transpose.flatten.mkString(" ")
}
def deserialize(s: String): Seq[Lemmatized[ChunkedToken]]= {
s.split(" ").grouped(4).toList.transpose match {
case tokens :: lemmas :: tags :: chunks :: Nil => {
val chunkedTokens = Chunker.tokensFrom(chunks, tags, tokens.map(t => new Token(t, 0)))
(chunkedTokens zip lemmas) map {
case (token, lemma) => new Lemmatized(token, lemma)
}
}
case _ => throw new IllegalArgumentException(s"Could not deserialize: '$s'")
}
}
def split(s: Sentence with Chunked with RepLemmatized, i: Int, j: Int) = new
Sentence(s.text) with Chunked with RepLemmatized {
override val chunks = s.chunks.slice(i, j)
val lemmatizedTokens = s.lemmatizedTokens.slice(i, j)
override val tokens = s.tokens.slice(i, j)
}
type TokenType = Lemmatized[ChunkedToken]
def makeRegex(expr: String): RegularExpression[TokenType] = {
val factory = new ExpressionFactory[TokenType]() {
override def create(token: String): BaseExpression[TokenType] = {
new BaseExpression[TokenType](token) {
val logic = LogicExpression.compile(token,
new GuavaFunction[String, LogicArg[TokenType]]() {
override def apply(s: String): LogicArg[TokenType] = {
new LogicArg[TokenType]() {
val pat = "(.*?)\\s*=\\s*'(.*)'".r
override def apply(t: TokenType) = s match {
case pat("pos", value) => t.postag == value
case pat("lemma", value) => t.lemma.toLowerCase() == value.toLowerCase()
case pat("string", value) => t.string == value
case pat("chunk", value) => t.chunk == value
}
}
}
})
override def apply(t: TokenType) = logic.apply(t)
}
}
}
RegularExpression.compile(expr, factory)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/PPDBParser.scala
================================================
package edu.knowitall.util
object PPDBParser extends App {
val source = io.Source.fromFile(args(0), "UTF8")
val splitRegex = """\|\|\|""".r
val syns = source.getLines.map { line =>
val split = splitRegex.split(line).map(_.trim)
(split(1), split(2))
}
val synMap = syns.toSeq.groupBy(_._1).map(p => (p._1, p._2.map(q => q._2).distinct.sorted))
val testSet = Seq("be", "invent", "like", "make", "edison", "chickpea", "garbanzo", "usa", "america", "us", "of", "the", "clinton", "bill clinton")
testSet foreach { str =>
val ss = synMap.getOrElse(str, Seq("Nil"))
println(str + "\t" + ss.mkString(", "))
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/ResourceUtils.scala
================================================
package edu.knowitall.util
import java.io.InputStream
import scala.io.Source
object ResourceUtils {
def resource(path: String): InputStream = {
val stream = getClass.getResourceAsStream(path)
if (stream != null) {
stream
} else {
throw new IllegalStateException(s"could not load resource $path")
}
}
def resourceSource(path: String) = Source.fromInputStream(resource(path), "UTF-8")
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/StringUtils.scala
================================================
package edu.knowitall.util
object StringUtils {
def parseDouble(s: String): Option[Double] = try { Some(s.toDouble) } catch { case e:Throwable => None }
private val varPat = """\$([A-Za-z0-9_]+)""".r
def interpolate(s: String, bindings: Map[String, String]) = {
def acc(s: String, pairs: List[(String, String)]): String = pairs match {
case Nil => s
case (k, v) :: rest => acc(s.replaceAllLiterally("$"+k, v), rest)
}
acc(s, bindings.toList)
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/TimingUtils.scala
================================================
package edu.knowitall.util
import scala.actors.Futures
object TimingUtils {
def time[R](block: => R): (Long, R) = {
val t0 = System.nanoTime()
val result = block // call-by-name
val t1 = System.nanoTime()
(t1 - t0, result)
}
def runWithTimeout[T](timeoutMs: Long)(f: => T) : Option[T] = {
Futures.awaitAll(timeoutMs, Futures.future(f)).head.asInstanceOf[Option[T]]
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/TuplePrinter.scala
================================================
package edu.knowitall.util
import edu.knowitall.execution.Tuple
object TuplePrinter {
val fieldNames = Seq("arg1", "rel", "arg2")
def fieldPartNames(part: Int): Seq[String] = fieldNames.map(fn => s"r$part.$fn")
def printTuplePart(tuple: Tuple, part: Int): Option[String] = {
val parts = fieldPartNames(part)
tuple.get(parts.head) match {
case Some(_) => {
val values = parts.flatMap(tuple.get)
val strings = values.map(_.toString)
Some(strings.mkString(", "))
}
case None => None
}
}
def printTuple(tuple: Tuple): String = {
val partStrings = (0 to 3).map(part => printTuplePart(tuple, part)).takeWhile(_.isDefined).map(_.get)
partStrings.map(s => s"($s)").mkString(" ")
}
}
================================================
FILE: oqa-core/src/main/scala/edu/knowitall/util/WikiAnswersSampler.scala
================================================
package edu.knowitall.util
import edu.knowitall.common.Resource.using
import java.io.PrintStream
import scala.Array.canBuildFrom
/**
* A utility (throw-away?) for sampling answers.
*/
class WikiAnswersSampler(val inputFile: String) extends Iterable[Set[String]] {
import io.Source
/**
* Get the median-length question.
*/
def processLine(line: String): Set[String] = {
val parts = line.split("\t")
val questions = parts.filter(_.startsWith("q:"))
val cleaned = questions.map(_.drop(2).trim)
cleaned.toSet
}
def iterator = new Iterator[Set[String]]() {
val source = io.Source.fromFile(inputFile, "UTF8")
val lines = source.getLines
val questions = lines map processLine
var closed = false
def hasNext = {
if (closed) false
else if (!questions.hasNext) {
source.close
closed = true
false
}
else true
}
def next = questions.next
}
}
object WikiAnswersSampler {
import edu.knowitall.common.Resource.using
import java.io.PrintStream
def main(args: Array[String]): Unit = {
val inputFile = args(0)
val outputStream = if (args.length == 1) System.out else new PrintStream(args(1))
val waSampler = new WikiAnswersSampler(inputFile)
using(outputStream) { output =>
waSampler foreach { qset => output.println(qset.mkString("\t")) }
}
}
}
================================================
FILE: oqa-data/README.md
================================================
Data
====
To download the data, run the following command:
./src/main/scripts/download-oqa-data.sh
This will download all of the necessary data for OQA and store it in
`knowitall.cs.washington.edu/`. Running the above command will download
over 33G of compressed data, including the knowledge base and Wikianswers
corpus.
================================================
FILE: oqa-data/predictions/README.md
================================================
# System Predictions
This directory contains the predictions made by each system during evaluation.
Each file is a collection of predictions in the form `(question, prediction,
score, trace)` where `question` is the input question, `prediction` is the
predicted answer, `score` is the system's score assigned to that answer, and
`trace` is a string description of the derivation from question to predicted
answer. There is one tab-separated prediction per line.
================================================
FILE: oqa-data/predictions/oqa-trec.txt
================================================
What was the official name of the Big Dig? The Big Dig -1.4649652558726443 What 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)
What was the official name of the Big Dig? The Big Dig (Nippers) -1.5819179478763412 What 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)
What was the official name of the Big Dig? The Big Dig at night -1.6793785245460886 What 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)
What was the official name of the Big Dig? Dora's Big Dig -1.7618451663435675 What 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)
What was the official name of the Big Dig? The Big Dig Trivia Quiz Book -1.7618451663435675 What 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)
What was the official name of the Big Dig? Barney Backhoe And the Big City Dig -1.9473951103878944 What 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)
What was the official name of the Big Dig? Barney Backhoe And the Big City Dig (John Deere) -1.9473951103878944 What 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)
What was the official name of the Big Dig? Joan Eadington -2.043569630495155 What 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)
What was the official name of the Big Dig? Mary Serfozo -2.098547391693474 What 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)
What was the official name of the Big Dig? Billy Mahonie -2.286911476536746 What 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)
What was the official name of the Big Dig? Linda Barnes -2.286911476536746 What 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)
What was the official name of the Big Dig? Savoir Faire -2.286911476536746 What 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)
What was the official name of the Big Dig? William Derbyshire -2.286911476536746 What 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)
What was the official name of the Big Dig? Family Fodder -2.3418892377350646 What 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)
What was the official name of the Big Dig? modern America -2.366304804333826 What 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)
What was the official name of the Big Dig? Dan McNichol -2.371187288284283 What 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)
What was the official name of the Big Dig? Yeah, Yeah, Yeah, Yeah, Yeah -2.371187288284283 What 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)
What was the official name of the Big Dig? Watching People Speaking When You Can't Hear What They're Saying -2.408803651209449 What 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)
What was the official name of the Big Dig? Arthur J. Roth -2.426165049482602 What 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)
What was the official name of the Big Dig? More Great Hits! -2.426165049482602 What 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)
What was the official name of the Big Dig? Nothing to Hide -2.426165049482602 What 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)
What was the official name of the Big Dig? Blaumilch Canal -2.4498227268568407 What 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)
What was the official name of the Big Dig? Susan Knopf -2.4655892004312827 What 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)
What was the official name of the Big Dig? The Smithsonian Institute Blues (Or the Big Dig) -2.473288844795447 What 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)
What was the official name of the Big Dig? We Accept American Dollars -2.473288844795447 What 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)
What was the official name of the Big Dig? In My Eyes -2.473288844795447 What 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)
What was the official name of the Big Dig? full throttle -2.505250651736513 What 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)
What was the official name of the Big Dig? Jack Webb -2.534098538604378 What 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)
What was the official name of the Big Dig? Simon Spotlight/Nickelodeon -2.5813963752190325 What 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)
What was the official name of the Big Dig? The Dust Blows Forward -2.5813963752190325 What 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)
What was the official name of the Big Dig? Don Van Vliet -2.609424253476999 What 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)
What was the official name of the Big Dig? Lick My Decals Off, Baby -2.6345018287604427 What 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)
What was the official name of the Big Dig? Running Press Kids -2.677491957817775 What 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)
What was the official name of the Big Dig? Captain Beefheart & His Magic Band -2.677491957817775 What 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)
What was the official name of the Big Dig? Ant Farm -2.7582722937567383 What 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)
What was the official name of the Big Dig? Manywhere M5 -2.7637447490650198 What 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)
What was the official name of the Big Dig? Manywhere M1 -2.7637447490650198 What 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)
What was the official name of the Big Dig? Exhibit A -2.794946128492922 What 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)
What was the official name of the Big Dig? a scandal -2.8011451557296385 What 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)
What was the official name of the Big Dig? New York City -2.8093931180553655 What 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)
What was the official name of the Big Dig? MassDOT officials -2.8387967758542167 What 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)
What was the official name of the Big Dig? a highway -2.849958131058618 What 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)
What was the official name of the Big Dig? Massachusetts -2.8517414875852607 What 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)
What was the official name of the Big Dig? 8 Bold Souls -2.8658463055761842 What 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)
What was the official name of the Big Dig? a less popular choice -2.8953960989940555 What 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)
What was the official name of the Big Dig? Ray Fishwick -2.896907828233207 What 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)
What was the official name of the Big Dig? Meg -2.9179131354538037 What 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)
What was the official name of the Big Dig? Album -2.919963460135454 What 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)
What was the official name of the Big Dig? a maze -2.95134775782805 What 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)
What was the official name of the Big Dig? Animation -2.973566777303815 What 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)
What was the official name of the Big Dig? a decade -2.9831599600074847 What 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)
What was the official name of the Big Dig? a couple -2.9877859592834946 What 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)
What was the official name of the Big Dig? Glenda -2.9979319214712516 What 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)
What was the official name of the Big Dig? Flagiolettes -2.9979319214712516 What 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)
What was the official name of the Big Dig? Drago -2.9979319214712516 What 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)
What was the official name of the Big Dig? a prison -2.9997798346218554 What 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)
What was the official name of the Big Dig? Crammed Global Soundclash 1980-89, Part One: World Fusion -3.0019817142577363 What 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)
What was the official name of the Big Dig? a major public works projects -3.0050366356919946 What 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)
What was the official name of the Big Dig? Boston real estate -3.0081083833941573 What 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)
What was the official name of the Big Dig? The Dust Blows Forward (disc 1) -3.02705928954118 What 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)
What was the official name of the Big Dig? Pan Macmillan -3.0398500073488366 What 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)
What was the official name of the Big Dig? a good first step -3.056370194440608 What 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)
What was the official name of the Big Dig? a Mitt Romney big government project -3.066930474303179 What 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)
What was the official name of the Big Dig? 1999-07-05 -3.067283603497709 What 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)
What was the official name of the Big Dig? a nightmare -3.0972404112916028 What 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)
What was the official name of the Big Dig? Macmillan -3.1178834004494025 What 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)
What was the official name of the Big Dig? Channel Four -3.1425147160760933 What 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)
What was the official name of the Big Dig? less enchanting -3.1446065023797134 What 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)
What was the official name of the Big Dig? the MBTA books -3.154466034759934 What 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)
What was the official name of the Big Dig? Continue reading -3.155501123528821 What 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)
What was the official name of the Big Dig? Capital Growth -3.1613127495356004 What 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)
What was the official name of the Big Dig? a tight , self-contained stand-alone mystery -3.1909694332221585 What 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)
What was the official name of the Big Dig? a Tip O'Neil/Ted Kennedy project -3.20865337205327 What 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)
What was the official name of the Big Dig? Family Film -3.2110713376832383 What 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)
What was the official name of the Big Dig? high school seniors -3.212795620031762 What 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)
What was the official name of the Big Dig? seven years -3.227857595060903 What 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)
What was the official name of the Big Dig? a total flop -3.2431899997761677 What 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)
What was the official name of the Big Dig? Route 93 -3.2938922644676767 What 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)
What was the official name of the Big Dig? a few years -3.297073171613416 What 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)
What was the official name of the Big Dig? The big dig -3.2989674448547675 What 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)
What was the official name of the Big Dig? Dora's Big Dig (Dora the Explorer) -3.3210339802861206 What 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)
What was the official name of the Big Dig? 620 thousand Truckloads -3.3410555440278937 What 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)
What was the official name of the Big Dig? an immense overhaul -3.342842930082026 What 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)
What was the official name of the Big Dig? food charity Sustain -3.3678089796401567 What 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)
What was the official name of the Big Dig? the Central Artery -3.387067663638055 What 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)
What was the official name of the Big Dig? 18 -3.3879694845630133 What 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)
What was the official name of the Big Dig? 10 -3.3879694845630133 What 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)
What was the official name of the Big Dig? 37 -3.3879694845630133 What 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)
What was the official name of the Big Dig? 6 -3.3879694845630133 What 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)
What was the official name of the Big Dig? 9 -3.3879694845630133 What 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)
What was the official name of the Big Dig? London -3.38818885442899 What 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)
What was the official name of the Big Dig? cost overruns and delays -3.396590193236788 What 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)
What was the official name of the Big Dig? The big bug dug -3.4159201368584644 What 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)
What was the official name of the Big Dig? an elevated highway -3.418296623515565 What 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)
What was the official name of the Big Dig? a local legend -3.510834922243572 What 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)
What was the official name of the Big Dig? 5.8 billion dollars -3.5311079295117525 What 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)
What was the official name of the Big Dig? 9780312282707 -3.5492245009803796 What 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)
What was the official name of the Big Dig? 9780760723074 -3.5492245009803796 What 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)
What was the official name of the Big Dig? 17 -3.5666472084575505 What 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)
What was the official name of the Big Dig? 12 -3.5666472084575505 What 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)
What was the official name of the Big Dig? a $ 14.6 billion band-aid -3.590600490616258 What 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)
What was the official name of the Big Dig? a good idea -3.5996469208944273 What 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)
What was the official name of the Big Dig? 9780439179331 -3.604202262178698 What 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)
What was the official name of the Big Dig? 9780333173060 -3.604202262178698 What 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)
What was the official name of the Big Dig? a huge success -3.61059325107916 What 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)
What was the official name of the Big Dig? the Authority -3.613507900010158 What 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)
What was the official name of the Big Dig? the Queen -3.615132006862778 What 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)
What was the official name of the Big Dig? Big Pig on a Dig -3.650900547476035 What 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)
What was the official name of the Big Dig? 9780760726891 -3.651326057491543 What 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)
What was the official name of the Big Dig? 9780760733165 -3.651326057491543 What 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)
What was the official name of the Big Dig? a long time -3.6681029679770623 What 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)
What was the official name of the Big Dig? 9781416908067 -3.692166680096009 What 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)
What was the official name of the Big Dig? Bob's Big Dig -3.7388649653933457 What 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)
What was the official name of the Big Dig? Bob's Big Dig (Deluxe Tip and Tilt) -3.7388649653933457 What 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)
What was the official name of the Big Dig? Haymarket -3.7542779556196746 What 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)
What was the official name of the Big Dig? Big Dig -3.7746005101722533 What 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)
What was the official name of the Big Dig? Big Dig: A Pop-Up Construction Ragged Bears -3.7746005101722533 What 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)
What was the official name of the Big Dig? 9780762426591 -3.787461466173095 What 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)
What was the official name of the Big Dig? prehistoric fossils -3.790130779063797 What 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)
What was the official name of the Big Dig? short on cash -3.8117496104661996 What 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)
What was the official name of the Big Dig? Big Pig on a Dig (Easy Words to Read Series) -3.834159751470432 What 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)
What was the official name of the Big Dig? Big Pig on a Dig (Usborne Easy Words to Read) -3.834159751470432 What 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)
What was the official name of the Big Dig? Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B) -3.834159751470432 What 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)
What was the official name of the Big Dig? Boston -3.8484447458393163 What 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)
What was the official name of the Big Dig? time and on budget -3.8668186480597995 What 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)
What was the official name of the Big Dig? individuals and teams -3.943762233246234 What 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)
What was the official name of the Big Dig? Paul Stickland -3.9601138922267825 What 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)
What was the official name of the Big Dig? John Fairhurst -3.987602772825942 What 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)
What was the official name of the Big Dig? Big Bug Dug (Scholastic Reader: Level 1 (Paperback)) -4.1671579709529905 What 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)
What was the official name of the Big Dig? Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)) -4.1671579709529905 What 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)
What was the official name of the Big Dig? Big Bug Dug (Scholastic Reader: Level 1 -4.1671579709529905 What 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)
What was the official name of the Big Dig? Big Dinosaur Dig (DK Readers: Level 3 -4.1671579709529905 What 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)
What was the official name of the Big Dig? Meish Goldish -4.2034557382683735 What 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)
What was the official name of the Big Dig? Depth Perception -4.2034557382683735 What 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)
What was the official name of the Big Dig? Big Digs -4.2212447569428875 What 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)
What was the official name of the Big Dig? Alison Inches -4.230944618867532 What 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)
What was the official name of the Big Dig? Bendix Anderson -4.230944618867532 What 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)
What was the official name of the Big Dig? Jenny Tyler -4.274926827826189 What 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)
What was the official name of the Big Dig? Dig This Big Crux -4.287731550015911 What 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)
What was the official name of the Big Dig? Esther Ripley -4.308560281735748 What 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)
What was the official name of the Big Dig? WROR Tom's Townie Tunes -4.338782328271493 What 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)
What was the official name of the Big Dig? Hillman Morning Show -4.338782328271493 What 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)
What was the official name of the Big Dig? Los Changos Trio -4.338782328271493 What 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)
What was the official name of the Big Dig? Tandem Library -4.346397917384003 What 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)
What was the official name of the Big Dig? Phil Cox -4.359202639573725 What 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)
What was the official name of the Big Dig? 1998 -4.364821280147983 What 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)
What was the official name of the Big Dig? analogftw - The Waatu Remixes -4.377070411963179 What 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)
What was the official name of the Big Dig? El Hombre Trajeado -4.377070411963179 What 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)
What was the official name of the Big Dig? the big reasons -4.386003896021704 What 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)
What was the official name of the Big Dig? Grace MacCarone -4.392836093483285 What 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)
What was the official name of the Big Dig? the creation -4.417561297905292 What 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)
What was the official name of the Big Dig? Rebound by Sagebrush -4.458640677219381 What 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)
What was the official name of the Big Dig? dollars -4.470840540493773 What 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)
What was the official name of the Big Dig? the largest ? -4.484149851398502 What 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)
What was the official name of the Big Dig? dust -4.502481058350866 What 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)
What was the official name of the Big Dig? 2007 -4.511598120012633 What 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)
What was the official name of the Big Dig? infrastructure -4.5162199604986695 What 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)
What was the official name of the Big Dig? the United Kingdom?s number -4.574610315418402 What 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)
What was the official name of the Big Dig? a Woman -4.635685237208452 What 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)
What was the official name of the Big Dig? BigDug (Ft. Verbezerker) -4.6450869978049845 What 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)
What was the official name of the Big Dig? BigDug -4.6450869978049845 What 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)
What was the official name of the Big Dig? 2002 -4.691849248360634 What 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)
What was the official name of the Big Dig? 13 times -4.729470703111549 What 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)
What was the official name of the Big Dig? 107.3 WAAF: Survive This! -4.73133978905223 What 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)
What was the official name of the Big Dig? a classic pork barrel project -4.7450766649689 What 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)
What was the official name of the Big Dig? 2011 -4.755994162124095 What 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)
What was the official name of the Big Dig? the MHC -4.757005738464656 What 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)
What was the official name of the Big Dig? the Israeli-Palestinian conflict -4.762361024631003 What 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)
What was the official name of the Big Dig? the region?s -4.840621060084185 What 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)
What was the official name of the Big Dig? Tom Doyle -4.840940970563993 What 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)
What was the official name of the Big Dig? the most expensive highway project -4.8837262059925015 What 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)
What was the official name of the Big Dig? ?ann -4.892238489009978 What 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)
What was the official name of the Big Dig? Band -4.892238489009978 What 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)
What was the official name of the Big Dig? half a century -4.906394557158104 What 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)
What was the official name of the Big Dig? underground roadways -4.915105146386068 What 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)
What was the official name of the Big Dig? the Silver Line -4.947951845032593 What 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)
What was the official name of the Big Dig? the ugly raised highways -4.951518634144701 What 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)
What was the official name of the Big Dig? a series -4.954103186425115 What 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)
What was the official name of the Big Dig? the rate -4.964203663031941 What 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)
What was the official name of the Big Dig? time -4.98807189082907 What 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)
What was the official name of the Big Dig? Big Dig, Liverpool -4.993411910673951 What 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)
What was the official name of the Big Dig? Saccade -5.00693878158187 What 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)
What was the official name of the Big Dig? the old dump -5.030025511616546 What 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)
What was the official name of the Big Dig? cash -5.05534454456879 What 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)
What was the official name of the Big Dig? Seoul -5.081027616248525 What 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)
What was the official name of the Big Dig? a winner -5.167730017110162 What 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)
What was the official name of the Big Dig? four times -5.191146190782728 What 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)
What was the official name of the Big Dig? Milford -5.213076612378963 What 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)
What was the official name of the Big Dig? Eleven Eyes -5.244443341961294 What 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)
What was the official name of the Big Dig? 14 -5.304513746294641 What 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)
What was the official name of the Big Dig? 2 -5.304513746294641 What 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)
What was the official name of the Big Dig? 4 -5.304513746294641 What 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)
What was the official name of the Big Dig? the money -5.312649962308876 What 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)
What was the official name of the Big Dig? the automobile -5.320949882058865 What 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)
What was the official name of the Big Dig? sight -5.373170989504877 What 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)
What was the official name of the Big Dig? the soaring price of prehistoric fossils -5.383282654180346 What 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)
How many times has he married? Ianiv -12.81077192838735 How 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)
In what city was the operation performed? Point. -10.840717792966203 In 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)
In what city was the operation performed? three waves -10.975307992244609 In 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)
In what city was the operation performed? five minutes -10.993876117476816 In 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)
In what city was the operation performed? a medical spa -11.001074765024127 In 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)
In what city was the operation performed? daylight -11.02467710079339 In 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)
In what city was the operation performed? Chicago and Mon -11.02759722969975 In 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)
In what city was the operation performed? India -11.129157089204035 In 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)
In what city was the operation performed? every generation -11.234692913709186 In 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)
In what city was the operation performed? Winnipeg -11.253575407563368 In 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)
In what city was the operation performed? Routine Maintenance -11.404978501078459 In 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)
In what city was the operation performed? law -11.435638816378107 In 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)
In what city was the operation performed? cases -11.563134648636822 In 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)
In what city was the operation performed? Routine maintenance -11.576936446287325 In 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)
In what city was the operation performed? routine maintenance -11.580249871083387 In 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)
In what city was the operation performed? operation -11.794276255597424 In 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)
In what city was the operation performed? laparoscopic surgery -11.901332366485367 In 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)
In what city was the operation performed? Today's -11.968829928828224 In 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)
In what city was the operation performed? America -12.029708332818181 In 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)
In what city was the operation performed? TODAY.. -12.206193357723397 In 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)
In what city was the operation performed? a medical team -12.292322228206933 In 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)
In what city was the operation performed? Jewish merchants -12.367535948108197 In 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)
In what city was the operation performed? the laboratory -12.372478213031377 In 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)
In what city was the operation performed? X2Here -12.4175371582942 In 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)
In what city was the operation performed? high-volume surgeons -12.4359468278951 In 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)
In what city was the operation performed? two surgeons -12.501442032940222 In 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)
In what city was the operation performed? hand -12.509127574827229 In 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)
In what city was the operation performed? Dr Crist -12.512936614261362 In 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)
In what city was the operation performed? Dr. Pickel -12.514704987063554 In 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)
In what city was the operation performed? the last step -12.527501297426904 In 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)
In what city was the operation performed? drag-and-drop and images -12.527518814929435 In 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)
In what city was the operation performed? local anesthesia -13.88825476199465 In 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)
In what city was the operation performed? 16-bit registers -14.15918768872998 In 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)
In what city was the operation performed? such way -14.170937452379121 In 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)
In what city was the operation performed? 2001 -14.21636408522129 In 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)
In what city was the operation performed? 1980 -14.246983347212284 In 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)
In what city was the operation performed? July -14.250575629934746 In 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)
Where is the capital of the Mormon Church? Salt Lake City -7.667471418057645 Where 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)
Where is the capital of the Mormon Church? Christ -9.220530484961152 Where 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)
Where is the capital of the Mormon Church? Sao Paulo -9.398724843282874 Where 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)
Where is the capital of the Mormon Church? Arizona -10.122963277040464 Where 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)
Where is the capital of the Mormon Church? Maine -10.150151437728477 Where 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)
Where is the capital of the Mormon Church? Young -10.249128720143759 Where 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)
Where is the capital of the Mormon Church? Christian -10.289809513684032 Where 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)
Where is the capital of the Mormon Church? Oklahoma -10.375205410473512 Where 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)
Where is the capital of the Mormon Church? Manchester -10.410703420865936 Where 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)
Where is the capital of the Mormon Church? The Church -10.53695871477878 Where 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)
Where is the capital of the Mormon Church? Freemasons -10.656849684076963 Where 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)
Where is the capital of the Mormon Church? Polygamists -10.774786449253762 Where 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)
Where is the capital of the Mormon Church? Joseph Smith -11.008664102688456 Where 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)
Where is the capital of the Mormon Church? Shawn -11.047985501309784 Where 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)
Where is the capital of the Mormon Church? Las Vegas -11.06704915545502 Where 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)
Where is the capital of the Mormon Church? America -11.078776447623117 Where 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)
Where is the capital of the Mormon Church? Mormonism -11.111630640363432 Where 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)
Where is the capital of the Mormon Church? Levites -11.18678743309795 Where 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)
Where is the capital of the Mormon Church? Mesa -11.241063772889943 Where 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)
Where is the capital of the Mormon Church? Gods -11.388428340147186 Where 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)
Where is the capital of the Mormon Church? Elie Wiesel -11.482638206094471 Where 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)
Where is the capital of the Mormon Church? a living prophet -11.550465032021856 Where 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)
Where is the capital of the Mormon Church? Deseret News -11.585291011235176 Where 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)
Where is the capital of the Mormon Church? same-sex marriage -11.64381405976863 Where 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)
Where is the capital of the Mormon Church? a son -11.667278282103437 Where 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)
Where is the capital of the Mormon Church? pound one -11.6919754983055 Where 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)
Where is the capital of the Mormon Church? a man -11.692192382936128 Where 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)
Where is the capital of the Mormon Church? the covenant -11.730939870183052 Where 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)
Where is the capital of the Mormon Church? priesthood office -11.737106263406082 Where 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)
Where is the capital of the Mormon Church? lawsuits -11.817209064519478 Where 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)
Where is the capital of the Mormon Church? two purposes -11.819891033321598 Where 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)
Where is the capital of the Mormon Church? Fayette -11.832232905733735 Where 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)
Where is the capital of the Mormon Church? Kirtland -11.869953995364005 Where 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)
Where is the capital of the Mormon Church? every nation -11.881586011536442 Where 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)
Where is the capital of the Mormon Church? gay marriage -11.9246365411117 Where 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)
Where is the capital of the Mormon Church? scientific evidence -11.946284644730332 Where 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)
Where is the capital of the Mormon Church? con artists -11.951751132471959 Where 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)
Where is the capital of the Mormon Church? God -12.03348953450945 Where 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)
Where is the capital of the Mormon Church? Belmont -12.0348413630417 Where 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)
Where is the capital of the Mormon Church? Josh Powell -12.041497670290292 Where 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)
Where is the capital of the Mormon Church? doctrine -12.069545021776715 Where 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)
Where is the capital of the Mormon Church? the corner -12.116860732448192 Where 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)
Where is the capital of the Mormon Church? re-election or rejection -12.125175494119341 Where 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)
Where is the capital of the Mormon Church? false claims -12.133856740234872 Where 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)
Where is the capital of the Mormon Church? amnesty -12.14237693897369 Where 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)
Where is the capital of the Mormon Church? a great many records -12.202934783701972 Where 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)
Where is the capital of the Mormon Church? the Territory -12.250318365150443 Where 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)
Where is the capital of the Mormon Church? flack -12.27436604766498 Where 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)
Where is the capital of the Mormon Church? two full years -12.28667841622634 Where 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)
Where is the capital of the Mormon Church? Sixth Avenue Southeast -12.310681678518744 Where 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)
Where is the capital of the Mormon Church? Peabody Coal -12.324590912063002 Where 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)
Where is the capital of the Mormon Church? a peculiar dilemma -12.345416283065891 Where 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)
Where is the capital of the Mormon Church? ten million -12.38381798282859 Where 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)
Where is the capital of the Mormon Church? ZCMI -12.386521301380117 Where 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)
Where is the capital of the Mormon Church? fiction -12.396773735515618 Where 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)
Where is the capital of the Mormon Church? the fastest-growing denominations -12.421973751826659 Where 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)
Where is the capital of the Mormon Church? the first ones -12.428617593740626 Where 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)
Where is the capital of the Mormon Church? prophets -12.447980905271042 Where 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)
Where is the capital of the Mormon Church? social proof -12.46066822344145 Where 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)
Where is the capital of the Mormon Church? last week -12.490835886364252 Where 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)
Where is the capital of the Mormon Church? The Simon Wiesenthal Center -12.497739160992467 Where 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)
Where is the capital of the Mormon Church? acres -12.511011491603675 Where 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)
Where is the capital of the Mormon Church? unflattering publicity -12.514834451784308 Where 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)
Where is the capital of the Mormon Church? the Peywa family -12.520819922415908 Where 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)
Where is the capital of the Mormon Church? the richest -12.52145837800855 Where 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)
Where is the capital of the Mormon Church? a room -12.528640735212294 Where 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)
Where is the capital of the Mormon Church? the most prominent proponents -12.541199203860568 Where 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)
Where is the capital of the Mormon Church? historical documents -12.543163853707817 Where 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)
Where is the capital of the Mormon Church? a group -12.55134036764091 Where 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)
Where is the capital of the Mormon Church? doubt -12.565069160736467 Where 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)
Where is the capital of the Mormon Church? polygamists -12.57854899949043 Where 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)
Where is the capital of the Mormon Church? six members -12.586742209531105 Where 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)
Where is the capital of the Mormon Church? reason -12.612451418437196 Where 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)
Where is the capital of the Mormon Church? discrimination -12.61328525207191 Where 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)
Where is the capital of the Mormon Church? the primary backers -12.627031210780231 Where 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)
Where is the capital of the Mormon Church? racism -12.635191367916752 Where 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)
Where is the capital of the Mormon Church? the religion -12.635838012805657 Where 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)
Where is the capital of the Mormon Church? a personal visit -12.647164698484696 Where 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)
Where is the capital of the Mormon Church? very recently Mormons -12.648933123989183 Where 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)
Where is the capital of the Mormon Church? an activist opposition -12.652247834968112 Where 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)
Where is the capital of the Mormon Church? an embarrassing book -12.670028644750298 Where 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)
Where is the capital of the Mormon Church? a small piece -12.679722550445426 Where 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)
Where is the capital of the Mormon Church? a Perpetual Emigration Fund -12.689867509089762 Where 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)
Where is the capital of the Mormon Church? charitable programs -12.689867509089762 Where 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)
Where is the capital of the Mormon Church? LGBT individuals -12.69844819487813 Where 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)
Where is the capital of the Mormon Church? the fastest growing religions -12.70540480022833 Where 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)
Where is the capital of the Mormon Church? the largest land owners -12.708248026334658 Where 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)
Where is the capital of the Mormon Church? much controversy -12.708508818804676 Where 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)
Where is the capital of the Mormon Church? negative public reactions -12.71456047640698 Where 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)
Where is the capital of the Mormon Church? serious inroads -12.720395599216523 Where 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)
Where is the capital of the Mormon Church? Church critics -12.746194840262591 Where 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)
Where is the capital of the Mormon Church? the Anthon transcript -12.748689932967679 Where 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)
Where is the capital of the Mormon Church? polygamy -12.749451697016514 Where 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)
Where is the capital of the Mormon Church? Latter Day Saints -12.760392386255699 Where 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)
Where is the capital of the Mormon Church? disseminating -12.780128004416317 Where 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)
Where is the capital of the Mormon Church? newspapers -12.790497649451387 Where 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)
Where is the capital of the Mormon Church? records -12.809562149976195 Where 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)
Where is the capital of the Mormon Church? criticism -12.834491479196176 Where 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)
Where is the capital of the Mormon Church? The city -12.844540236083622 Where 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)
Where is the capital of the Mormon Church? hand -12.850389920163071 Where 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)
Where is the capital of the Mormon Church? the Deseret News -12.853025298556743 Where 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)
Where is the capital of the Mormon Church? part -12.860689756479392 Where 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)
Where is the capital of the Mormon Church? the LDS world -12.868973167409479 Where 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)
Where is the capital of the Mormon Church? countries -12.90041216373866 Where 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)
Where is the capital of the Mormon Church? the North -12.906961354153468 Where 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)
Where is the capital of the Mormon Church? Mr Davies -12.907895893320948 Where 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)
Where is the capital of the Mormon Church? revelation -12.913652851179952 Where 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)
Where is the capital of the Mormon Church? legitimacy -12.915345694832572 Where 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)
Where is the capital of the Mormon Church? a prophet -12.916290908773117 Where 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)
Where is the capital of the Mormon Church? political overdrive -12.917814735728227 Where 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)
Where is the capital of the Mormon Church? Latter-day Saints -12.926490622290132 Where 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)
Where is the capital of the Mormon Church? Lake Drive -12.931718889597942 Where 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)
Where is the capital of the Mormon Church? extensive record keeping -12.937990902698115 Where 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)
Where is the capital of the Mormon Church? blacks -12.966071186791572 Where 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)
Where is the capital of the Mormon Church? an emotional and religious era -12.986870325928818 Where 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)
Where is the capital of the Mormon Church? a nuclear issue -12.997735850474566 Where 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)
Where is the capital of the Mormon Church? walls -13.02080149927233 Where 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)
Where is the capital of the Mormon Church? black members -13.023210051189062 Where 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)
Where is the capital of the Mormon Church? the Great Depression -13.034698056285613 Where 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)
Where is the capital of the Mormon Church? the U.S. -13.034704632510202 Where 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)
Where is the capital of the Mormon Church? lies -13.055874414067741 Where 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)
Where is the capital of the Mormon Church? cans -13.057193713314776 Where 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)
Where is the capital of the Mormon Church? earth -13.06171305862442 Where 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)
Where is the capital of the Mormon Church? a loyalty -13.062028644827862 Where 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)
Where is the capital of the Mormon Church? decades -13.068548197359085 Where 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)
Where is the capital of the Mormon Church? a plurality -13.085412844504088 Where 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)
Where is the capital of the Mormon Church? view -13.139100656371802 Where 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)
Where is the capital of the Mormon Church? control of the papyri -13.148519718761943 Where 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)
Where is the capital of the Mormon Church? the Inspired Version of the Bible -13.241582815947424 Where 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)
Where is the capital of the Mormon Church? father -13.25866615658044 Where 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)
Where is the capital of the Mormon Church? right-wing forces -13.26960617759213 Where 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)
Where is the capital of the Mormon Church? history -13.309014409018431 Where 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)
Where is the capital of the Mormon Church? politics -13.312019084061832 Where 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)
Where is the capital of the Mormon Church? the family -13.327642301052073 Where 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)
Where is the capital of the Mormon Church? denials -13.372345478801051 Where 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)
Where is the capital of the Mormon Church? the 19th Century New York -13.532815133966634 Where 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)
Where is the capital of the Mormon Church? the Inspired Version -13.555079466207225 Where 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)
Where is the capital of the Mormon Church? a member -13.573123476257697 Where 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)
Where is the capital of the Mormon Church? the Parasomnial Order -13.605144255387376 Where 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)
Where is the capital of the Mormon Church? the highest turnover rates -13.618855150474959 Where 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)
Where is the capital of the Mormon Church? You watch -13.619342687070112 Where 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)
Where is the capital of the Mormon Church? a dilemma -13.628303756583737 Where 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)
Where is the capital of the Mormon Church? limits -13.629512799822082 Where 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)
Where is the capital of the Mormon Church? the United States -13.65361762067473 Where 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)
Where is the capital of the Mormon Church? face -13.654990901167967 Where 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)
Where is the capital of the Mormon Church? favor -13.741799794424123 Where 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)
Where is the capital of the Mormon Church? The truth -13.767044638113477 Where 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)
Where is the capital of the Mormon Church? the house -13.805124971731287 Where 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)
Where is the capital of the Mormon Church? the process -13.8332293812839 Where 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)
Where is the capital of the Mormon Church? the property -13.847346813192619 Where 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)
Where is the capital of the Mormon Church? the revelation -13.8595328280015 Where 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)
Where is the capital of the Mormon Church? Temple Cards -13.862509902964167 Where 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)
Where is the capital of the Mormon Church? 166 different languages -13.885988268557764 Where 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)
Where is the capital of the Mormon Church? of politics -13.98474098853031 Where 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)
Where is the capital of the Mormon Church? the campaign -14.009821010560618 Where 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)
Where is the capital of the Mormon Church? the past -14.015541059176496 Where 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)
Where is the capital of the Mormon Church? 12 million members -14.023494057460466 Where 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)
Where is the capital of the Mormon Church? the context -14.089170229216121 Where 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)
Where is the capital of the Mormon Church? now -14.102826785544883 Where 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)
Where is the capital of the Mormon Church? 36 percent -14.13877215101047 Where 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)
Where is the capital of the Mormon Church? the draft -14.152743414727256 Where 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)
Where is the capital of the Mormon Church? the collection -14.164128214256595 Where 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)
Where is the capital of the Mormon Church? property -14.256464362332437 Where 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)
Where is the capital of the Mormon Church? the land -14.270868179430632 Where 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)
Where is the capital of the Mormon Church? a cover-up situation -14.299594163851674 Where 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)
Where is the capital of the Mormon Church? 720 acres -14.306991815340666 Where 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)
Where is the capital of the Mormon Church? the initiative campaign -14.357614042054731 Where 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)
Where is the capital of the Mormon Church? the cause -14.39071311484786 Where 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)
Where is the capital of the Mormon Church? the document -14.404968389130707 Where 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)
Where is the capital of the Mormon Church? the state liquor laws -14.422061728011727 Where 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)
Where is the capital of the Mormon Church? the patent -14.4517365114657 Where 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)
Where is the capital of the Mormon Church? an 1812 book -14.45181300907947 Where 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)
Where is the capital of the Mormon Church? the truth -14.488109568616661 Where 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)
Where is the capital of the Mormon Church? a judge -14.491297966709729 Where 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)
Where is the capital of the Mormon Church? the prospect -14.505180579752038 Where 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)
Where is the capital of the Mormon Church? the middle -14.57825692188115 Where 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)
Where is the capital of the Mormon Church? the challenges -14.590807424164758 Where 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)
Where is the capital of the Mormon Church? the authenticity -14.633423134703497 Where 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)
Where is the capital of the Mormon Church? a 43 year old man -14.636392530256831 Where 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)
Where is the capital of the Mormon Church? the eighteen hundreds -14.693686000642904 Where 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)
Where is the capital of the Mormon Church? the right wing talk radio station -14.761718896699971 Where 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)
Where is the capital of the Mormon Church? land -14.866324183607546 Where 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)
Where is the capital of the Mormon Church? the house of Peter Whitmer -14.870121849241464 Where 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)
Where is the capital of the Mormon Church? August 27 , 1967 -15.270294727381174 Where 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)
Where is the capital of the Mormon Church? 1890 -15.810228050354322 Where 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)
Where is the capital of the Mormon Church? 1830 -15.954651730953218 Where 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)
What was Sinatra's first recording? Reprise Records -2.8805761915202064 What was Sinatra's first recording? -> $x: (Sinatra, first recording, $x) -> (Frank Sinatra, recorded his first session with, Reprise Records) -> Reprise Records (8370ms)
What was Sinatra's first recording? karaoke bars -10.603542279065778 What 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)
When was Limbaugh born? 1951 1.8221124191757676 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Rush Limbaugh, was born in, 1951) -> 1951 (6050ms)
When was Limbaugh born? Cape Girardeau -2.125580658722159 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Limbaugh, was born in, Cape Girardeau) -> Cape Girardeau (6050ms)
When was Limbaugh born? Jan . 12 -2.7133913812030306 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> (Limbaugh and Stern, were both born on, Jan . 12) -> Jan . 12 (6462ms)
When was Limbaugh born? Missouri -2.829375886007769 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Limbaugh, was born in, Missouri) -> Missouri (6469ms)
When was Limbaugh born? June 5 , 2010 -3.5050125716601443 When 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)
When was Limbaugh born? a winner -5.773610463897372 When 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)
When was Limbaugh born? advertisers -6.293380059418315 When 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)
When was Limbaugh born? time -6.498421553408432 When 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)
When was Limbaugh born? the state -6.516241401161423 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, be both from, $x) -> (Limbaugh, are both from, the state) -> the state (6963ms)
When was Limbaugh born? a regular basis -6.729294902754759 When 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)
When was Limbaugh born? the NYTimes -6.835948359437222 When 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)
When was Limbaugh born? Hawaii -7.015648738370155 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, vacation in, $x) -> (Limbaugh, is vacationing in, Hawaii) -> Hawaii (6963ms)
When was Limbaugh born? women -7.195551149789873 When 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)
When was Limbaugh born? Stoltenberg -7.351417782153311 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have do on, $x) -> (Limbaugh, does have the advantage on, Stoltenberg) -> Stoltenberg (10023ms)
When was Limbaugh born? Washington -7.981944927301687 When 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)
When was Limbaugh born? the unholy timeslot -8.04801977825185 When 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)
When was Limbaugh born? the bigotry gutter -8.128710254366554 When 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)
When was Limbaugh born? the air -8.859235289450542 When 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)
When was Limbaugh born? the radio -9.642284006579402 When 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)
When was Limbaugh born? the question -9.862713288080734 When 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)
When was Limbaugh born? the far -9.94612607537078 When 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)
Who is Warren Moon's agent? African American -9.028415432736116 Who 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)
Who is Warren Moon's agent? 1982-05-27 -10.580879156368646 Who 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)
Who is Warren Moon's agent? 1956-11-18 -10.580879156368646 Who 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)
Who is Warren Moon's agent? 2001-03-25 -10.580879156368646 Who 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)
Who is Warren Moon's agent? 2009-08-17 -10.65235024592646 Who 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)
Who is Warren Moon's agent? 2008-02-14 -10.703401024182043 Who 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)
Who is Warren Moon's agent? 1999 -10.723821335484274 Who 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)
Who invented the hula hoop? genes -0.7380484888459725 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (genes, invent, the hula hoop) -> genes (9282ms)
Who invented the hula hoop? Total creativity->copying->theft One -1.1501941326739284 Who 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)
Who invented the hula hoop? Robbins -2.0257284372184152 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Robbins, invents, the hula hoop) -> Robbins (9281ms)
Who invented the hula hoop? Somebody -2.6534156839566543 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Somebody, had to invent, the hula hoop) -> Somebody (9281ms)
Who invented the hula hoop? Wham-O -3.814110818789155 Who 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)
Who invented the hula hoop? Wham-O co-founder Arthur -4.078828801350712 Who 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)
Who invented the hula hoop? HDPE -4.445156666905992 Who 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)
Who invented the hula hoop? Wham-O Inc. -4.5158321808817625 Who 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)
Who invented the hula hoop? the toy company -6.4095405253940365 Who 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)
How many layers of skin do we have? The tadpole tail fin -14.016756385185115 How 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)
When was the U.S. capitol built? 1950 0.6758603655490334 When 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)
When was the U.S. capitol built? 1932 0.21676149397271027 When 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)
When was the U.S. capitol built? 1793 -1.0992461795770172 When 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)
When was the U.S. capitol built? protest -1.5594977389714955 When 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)
When was the U.S. capitol built? Capitol Hill -2.1913621440925573 When 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)
When was the U.S. capitol built? the 1850s -2.377117314976955 When 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)
When was the U.S. capitol built? a Masonic ceremony -2.4516047804782466 When 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)
When was the U.S. capitol built? the mid-19th century -5.167594349659538 When 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)
When was the U.S. capitol built? a slight hill -5.7538188842353435 When 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)
When was the U.S. capitol built? the background -8.056524924694799 When 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)
What was Bing Crosby's nickname? Bing -2.0992828071692493 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, Bing) -> Bing (9366ms)
What was Bing Crosby's nickname? Der Bingle -2.1241449579157416 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, Der Bingle) -> Der Bingle (9366ms)
What was Bing Crosby's nickname? The old groaner -3.480073999987484 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, The old groaner) -> The old groaner (9366ms)
What was Bing Crosby's nickname? Holiday Inn -4.483102327683232 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, called, Holiday Inn) -> Holiday Inn (18796ms)
What was Bing Crosby's nickname? a heartthrob -4.681851374972904 What 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)
What was Bing Crosby's nickname? Giuseppe Gallo -4.874675453879056 What 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)
What was Bing Crosby's nickname? movie history -5.1989149005548505 What 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)
What was Bing Crosby's nickname? an exclusive playground -5.3475147631058215 What 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)
What was Bing Crosby's nickname? Rambo -5.403263738817786 What 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)
What was Bing Crosby's nickname? Hope -5.477035977310048 What 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)
What was Bing Crosby's nickname? the Sun -5.621907749806379 What 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)
What was Bing Crosby's nickname? a friend -5.631202784696057 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, called, a friend) -> a friend (18796ms)
What was Bing Crosby's nickname? Sinatra -5.658454419618446 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, saw, Bing Crosby) -> (Sinatra, had come to see, Bing Crosby) -> Sinatra (17946ms)
What was Bing Crosby's nickname? a ? White Christmas ? -5.6650759274428815 What 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)
What was Bing Crosby's nickname? ?Dear Old Donegal -5.666298089749197 What 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)
What was Bing Crosby's nickname? Grace -5.693603765355396 What 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)
What was Bing Crosby's nickname? the finest vocalists -6.8603106707053 What 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)
What was Bing Crosby's nickname? the host -7.032008639172576 What 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)
What was Bing Crosby's nickname? figure -7.06188876060854 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, go, $x) -> (Bing Crosby, ? go, figure) -> figure (17394ms)
What was Bing Crosby's nickname? the series -7.193393779846029 What 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)
What was Bing Crosby's nickname? the same -7.222462783782453 What 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)
What was Bing Crosby's nickname? the top ten -7.388585712691764 What 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)
What was Bing Crosby's nickname? crooning -7.643706178711695 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, is called, crooning) -> crooning (18796ms)
When was U.S Naval Academy founded? 1845 2.4972143328766223 When 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)
When was U.S Naval Academy founded? Annapolis -4.674961770945528 When 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)
Where did they honeymoon? Hawaii -4.736403591039556 Where did they honeymoon? -> $x: (they honeymoon, did in, $x) -> $x: (they honeymoon, in, $x) -> (Mosman.The honeymoonThey, spent two weeks in, Hawaii) -> Hawaii (9638ms)
Where did they honeymoon? Honolulu -5.485139859096503 Where 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)
Where did they honeymoon? the USA -5.71922323677389 Where 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)
Where did they honeymoon? a standstill -15.29161913768025 Where 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)
What is the name of the airport in Amsterdam? schiphol -4.737865834582017 What 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)
What is the name of the airport in Amsterdam? Schiphol Int -4.90844236190455 What 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)
What is the name of the airport in Amsterdam? Anas marecula -7.878855122365833 What 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)
What is the name of the airport in Amsterdam? 11945 Amsterdam -8.260832502883892 What 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)
What is the name of the airport in Amsterdam? Maksym Kozlenko -8.431785863510033 What 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)
What is the name of the airport in Amsterdam? Amsterdam -8.50001765358088 What 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)
What is the name of the airport in Amsterdam? Diomedea amsterdamensis -8.69571028471534 What 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)
What is the name of the airport in Amsterdam? Anne Frank -9.379750794051954 What 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)
What is the name of the airport in Amsterdam? the Elm City -9.517299666343291 What 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)
What is the name of the airport in Amsterdam? Han van Meegeren -9.654580110386824 What 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)
What is the name of the airport in Amsterdam? the airport -9.759591335798287 What 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)
What is the name of the airport in Amsterdam? New York -9.775346958661288 What 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)
What is the name of the airport in Amsterdam? Sweelinck -9.791135372453072 What 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)
What is the name of the airport in Amsterdam? New York City -9.844122221836125 What 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)
What is the name of the airport in Amsterdam? two American Presidents -9.946653199678092 What 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)
What is the name of the airport in Amsterdam? a character -9.964716439289239 What 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)
What is the name of the airport in Amsterdam? Bram Bos -10.062671879379867 What 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)
What is the name of the airport in Amsterdam? Yub-Yum -10.069273669501232 What 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)
What is the name of the airport in Amsterdam? ?Best International Venue -10.082038910374933 What 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)
What is the name of the airport in Amsterdam? the ?Venice -10.113782327906618 What 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)
What is the name of the airport in Amsterdam? Expat Employer -10.122319237168718 What 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)
What is the name of the airport in Amsterdam? ACCESS. -10.158210884528764 What 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)
What is the name of the airport in Amsterdam? Jonathan Andrew -10.162042175247365 What 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)
What is the name of the airport in Amsterdam? Bas Rutten -10.173847765084407 What 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)
What is the name of the airport in Amsterdam? a sandwich -10.188101234119033 What 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)
What is the name of the airport in Amsterdam? 2010?s best classical albums -10.217435204136121 What 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)
What is the name of the airport in Amsterdam? Vreeland -10.300861345434384 What 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)
What is the name of the airport in Amsterdam? a distinguished alumnus -10.387907969803349 What 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)
What is the name of the airport in Amsterdam? a dam -10.523486764544032 What 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)
What is the name of the airport in Amsterdam? the Trendiest -10.535702666100942 What 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)
What is the name of the airport in Amsterdam? the question -10.53861086015747 What 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)
What is the name of the airport in Amsterdam? Buffalo -10.539333922565561 What 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)
What is the name of the airport in Amsterdam? Western Europe -10.585001349390556 What 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)
What is the name of the airport in Amsterdam? Sunday -10.585957526853361 What 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)
What is the name of the airport in Amsterdam? a similar chain -10.626283740323744 What 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)
What is the name of the airport in Amsterdam? Amstammelledam -10.627279874116915 What 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)
What is the name of the airport in Amsterdam? the English -10.823829626725072 What 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)
What is the name of the airport in Amsterdam? the service provider -10.94927608094328 What 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)
What is the name of the airport in Amsterdam? ITBholland -11.021250073313865 What 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)
What is the name of the airport in Amsterdam? Amstellerdam -11.121182603688375 What 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)
What is the name of the airport in Amsterdam? The English -11.197526367742446 What 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)
What is the name of the airport in Amsterdam? the Bolashak complex -11.259062835492575 What 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)
What is the name of the airport in Amsterdam? Roode Hoek -11.278271577947395 What 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)
What is the name of the airport in Amsterdam? the dam -11.410603730280437 What 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)
What is the name of the airport in Amsterdam? the UvA , UHA , HvA , EHvA and HES -11.542398971825886 What 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)
What is the name of the airport in Amsterdam? 45 overall -11.648928946795404 What 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)
What is the name of the airport in Amsterdam? the Five Points -11.66685607971483 What 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)
What is the name of the airport in Amsterdam? the avenue -11.740696152512962 What 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)
What is the name of the airport in Amsterdam? the Startup hotspots -11.751990708132396 What 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)
What is the name of the airport in Amsterdam? the honor -11.766273306231277 What 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)
What is the name of the airport in Amsterdam? Europe -11.778324536511795 What 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)
What is the name of the airport in Amsterdam? a larger one -11.855716032002377 What 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)
What is the name of the airport in Amsterdam? sea -11.913554081598214 What 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)
What is the name of the airport in Amsterdam? Everyone Electric -11.940506110456447 What 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)
What is the name of the airport in Amsterdam? the Cape Town Waterfront -11.96679291596274 What 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)
What is the name of the airport in Amsterdam? Hebrew plays -12.005321463418914 What 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)
What is the name of the airport in Amsterdam? Paso Doble -12.018919551832228 What 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)
What is the name of the airport in Amsterdam? The City boss -12.107537853517915 What 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)
What is the name of the airport in Amsterdam? the Atlantic Ocean -12.109952620366435 What 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)
What is the name of the airport in Amsterdam? one PhD student -12.159444290835367 What 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)
What is the name of the airport in Amsterdam? Amsterdam Stock Exchange -12.165159542333138 What 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)
What is the name of the airport in Amsterdam? the World Fashion Center -12.180970887533846 What 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)
What is the name of the airport in Amsterdam? the Spui Tram Stop -12.212969540722757 What 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)
What is the name of the airport in Amsterdam? a lot -12.246196928659907 What 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)
What is the name of the airport in Amsterdam? six days -12.327773608981586 What 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)
What is the name of the airport in Amsterdam? the Anne Frank Museum -12.36272817919671 What 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)
What is the name of the airport in Amsterdam? a mainline container port -12.431545729912445 What 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)
What is the name of the airport in Amsterdam? a lasting impression -12.446676909938905 What 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)
What is the name of the airport in Amsterdam? an elegant and luxury look -12.46779784667806 What 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)
What is the name of the airport in Amsterdam? urban development programs -12.468593240689502 What 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)
What is the name of the airport in Amsterdam? decoy Jews -12.483967925173864 What 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)
What is the name of the airport in Amsterdam? urban centres -12.488824083881045 What 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)
What is the name of the airport in Amsterdam? fun -12.51377550210151 What 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)
What is the name of the airport in Amsterdam? further fundamental rights -12.536741004937914 What 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)
What is the name of the airport in Amsterdam? less convenient locations -12.543814601551276 What 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)
What is the name of the airport in Amsterdam? 160K -12.551375892298292 What 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)
What is the name of the airport in Amsterdam? a drought -12.551600302721125 What 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)
What is the name of the airport in Amsterdam? an abundant water supply -12.5607884627525 What 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)
What is the name of the airport in Amsterdam? Paul McJones -12.563545755318456 What 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)
What is the name of the airport in Amsterdam? London -12.567330546954352 What 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)
What is the name of the airport in Amsterdam? a wonderful place -12.568889469917089 What 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)
What is the name of the airport in Amsterdam? research projects -12.593764960274651 What 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)
What is the name of the airport in Amsterdam? a several numbers -12.599101061263546 What 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)
What is the name of the airport in Amsterdam? the American city -12.638603240104102 What 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)
What is the name of the airport in Amsterdam? The RAI Elicium -12.651671737354794 What 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)
What is the name of the airport in Amsterdam? cheap vacation rentals tours -12.684555613857992 What 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)
What is the name of the airport in Amsterdam? Leiden -12.690541900123566 What 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)
What is the name of the airport in Amsterdam? Amsterdam Treaty -12.693781004665789 What 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)
What is the name of the airport in Amsterdam? a special player -12.73766749574634 What 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)
What is the name of the airport in Amsterdam? a canal stop -12.75635953691131 What 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)
What is the name of the airport in Amsterdam? Hotel Okura Amsterdam -12.756881929613149 What 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)
What is the name of the airport in Amsterdam? security problems -12.765607826811241 What 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)
What is the name of the airport in Amsterdam? the Jewish traveler -12.768997194761578 What 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)
What is the name of the airport in Amsterdam? an additional argument -12.771025132646935 What 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)
What is the name of the airport in Amsterdam? Voorburg -12.776931971548521 What 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)
What is the name of the airport in Amsterdam? Utrecht -12.776931971548521 What 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)
What is the name of the airport in Amsterdam? an end -12.792552984530987 What 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)
What is the name of the airport in Amsterdam? The Esplanade -12.796511813514433 What 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)
What is the name of the airport in Amsterdam? an extreme and -12.803163326748736 What 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)
What is the name of the airport in Amsterdam? LA -12.811726506732711 What 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)
What is the name of the airport in Amsterdam? a bit -12.819330003505808 What 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)
What is the name of the airport in Amsterdam? the Rotterdam-born Kalf -12.82541528813593 What 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)
What is the name of the airport in Amsterdam? Gresham Memphis Amsterdam -12.827567622582416 What 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)
What is the name of the airport in Amsterdam? a 27th position -12.862378245430172 What 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)
What is the name of the airport in Amsterdam? a solid base -12.869924420504962 What 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)
What is the name of the airport in Amsterdam? Rijnsburg -12.876846352429808 What 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)
What is the name of the airport in Amsterdam? Job Cohen -12.890906950542144 What 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)
What is the name of the airport in Amsterdam? zero emissions -12.904406853950384 What 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)
What is the name of the airport in Amsterdam? OraOxygen -12.90483337314437 What 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)
What is the name of the airport in Amsterdam? a mixed blessing -12.961980753889176 What 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)
What is the name of the airport in Amsterdam? St . Nicholas -12.964881846392505 What 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)
What is the name of the airport in Amsterdam? The Butcher -12.968726902132978 What 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)
What is the name of the airport in Amsterdam? bikes and canals -12.980520238894723 What 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)
What is the name of the airport in Amsterdam? a single patient -13.001938865046803 What 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)
What is the name of the airport in Amsterdam? bicycle gridlock -13.005597620323476 What 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)
What is the name of the airport in Amsterdam? 10,000 electric cars -13.014460256403696 What 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)
What is the name of the airport in Amsterdam? A Jew -13.050721618878155 What 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)
What is the name of the airport in Amsterdam? klm -13.059234897299673 What 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)
What is the name of the airport in Amsterdam? The Trust -13.063926464559186 What 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)
What is the name of the airport in Amsterdam? Caf? -13.064312284860538 What 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)
What is the name of the airport in Amsterdam? a good time -13.065044573724832 What 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)
What is the name of the airport in Amsterdam? a drinks party -13.090194360962307 What 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)
What is the name of the airport in Amsterdam? Annemieke Kievit -13.101285698823652 What 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)
What is the name of the airport in Amsterdam? 330 -13.13294276251719 What 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)
What is the name of the airport in Amsterdam? every guest -13.146944072702572 What 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)
What is the name of the airport in Amsterdam? every tourist -13.172646442797564 What 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)
What is the name of the airport in Amsterdam? KLM Royal Dutch -13.174099148374733 What 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)
What is the name of the airport in Amsterdam? the parking lot -13.177966838180367 What 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)
What is the name of the airport in Amsterdam? every visitor -13.193047561661517 What 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)
What is the name of the airport in Amsterdam? KLM Royal Dutch Airlines -13.221396192935051 What 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)
What is the name of the airport in Amsterdam? El-Al -13.221396192935051 What 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)
What is the name of the airport in Amsterdam? the best cities -13.257408069813076 What 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)
What is the name of the airport in Amsterdam? the best European cities -13.258341876674086 What 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)
What is the name of the airport in Amsterdam? Uncle Cline Gleed -13.26298243275653 What 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)
What is the name of the airport in Amsterdam? more than 100 engineers -13.270877632966286 What 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)
What is the name of the airport in Amsterdam? heineken music hall -13.29193361440003 What 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)
What is the name of the airport in Amsterdam? A.J. d?Ailly -13.339030898193581 What 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)
What is the name of the airport in Amsterdam? tourists and locals -13.357327453937495 What 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)
What is the name of the airport in Amsterdam? each hotel -13.36316065246596 What 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)
What is the name of the airport in Amsterdam? Ing -13.367151715978986 What 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)
What is the name of the airport in Amsterdam? Northwest airlines -13.466648517436193 What 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)
What is the name of the airport in Amsterdam? excellent elementary schools -13.489420356572833 What 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)
What is the name of the airport in Amsterdam? Liza Gabriela Lansang -13.512146786390675 What 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)
What is the name of the airport in Amsterdam? construction -13.606323309016474 What 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)
What is the name of the airport in Amsterdam? 1000 kilocalories -13.613735182507384 What 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)
What is the name of the airport in Amsterdam? the unique NAP exhibition -13.74138635710819 What 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)
What is the name of the airport in Amsterdam? 1758 -13.774599049715476 What 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)
What is the name of the airport in Amsterdam? Air Berlin -13.789158550270924 What 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)
What is the name of the airport in Amsterdam? The city -13.831020236020095 What 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)
What is the name of the airport in Amsterdam? Netherlands A branch office -13.845724966433949 What 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)
What is the name of the airport in Amsterdam? the public -13.867010605990622 What 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)
What is the name of the airport in Amsterdam? so much -13.884494873859909 What 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)
What is the name of the airport in Amsterdam? way -13.890944361918233 What 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)
What is the name of the airport in Amsterdam? the survey -13.919351331965357 What 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)
What is the name of the airport in Amsterdam? the city -13.958816444078654 What 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)
What is the name of the airport in Amsterdam? Hilton -13.998877480468517 What 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)
What is the name of the airport in Amsterdam? the current economic slump -14.01005998528381 What 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)
What is the name of the airport in Amsterdam? Conversos -14.020546914818539 What 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)
What is the name of the airport in Amsterdam? Mr. Philips -14.051675674805024 What 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)
What is the name of the airport in Amsterdam? The last two posts -14.073730909301526 What 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)
What is the name of the airport in Amsterdam? art -14.08479927579781 What 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)
What is the name of the airport in Amsterdam? a lot more -14.116364261266535 What 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)
What is the name of the airport in Amsterdam? the fifth best city -14.147595812649378 What 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)
What is the name of the airport in Amsterdam? an end-user ready solution -14.148006704265887 What 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)
What is the name of the airport in Amsterdam? Cohen -14.16197475962712 What 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)
What is the name of the airport in Amsterdam? the value -14.170472080043737 What 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)
What is the name of the airport in Amsterdam? the best summer -14.172772973796793 What 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)
What is the name of the airport in Amsterdam? the bulb -14.207282478753708 What 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)
What is the name of the airport in Amsterdam? later -14.211121828656776 What 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)
What is the name of the airport in Amsterdam? NORTHWEST -14.214099585857342 What 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)
What is the name of the airport in Amsterdam? the first citizenM -14.245195687141983 What 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)
What is the name of the airport in Amsterdam? 1870 -14.256958814783257 What 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)
What is the name of the airport in Amsterdam? More hotel -14.283540259458153 What 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)
What is the name of the airport in Amsterdam? the USA -14.326247061773984 What 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)
What is the name of the airport in Amsterdam? The travelers -14.336605720436012 What 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)
What is the name of the airport in Amsterdam? the avid shopper -14.364544111622934 What 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)
What is the name of the airport in Amsterdam? the watch -14.381691681589167 What 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)
What is the name of the airport in Amsterdam? Churches -14.387257377206506 What 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)
What is the name of the airport in Amsterdam? Dutch settlers -14.389888475462818 What 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)
What is the name of the airport in Amsterdam? the card -14.391093322488203 What 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)
What is the name of the airport in Amsterdam? festival formats -14.424998139604721 What 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)
What is the name of the airport in Amsterdam? the traveler -14.430798476994962 What 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)
What is the name of the airport in Amsterdam? display -14.45134686272288 What 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)
What is the name of the airport in Amsterdam? the sideline -14.455098962372695 What 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)
What is the name of the airport in Amsterdam? mushrooms -14.477606268524152 What 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)
What is the name of the airport in Amsterdam? the identification -14.483377293991541 What 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)
What is the name of the airport in Amsterdam? the two fishermen -14.485311896518343 What 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)
What is the name of the airport in Amsterdam? the complaints -14.491007650667196 What 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)
What is the name of the airport in Amsterdam? the keeping -14.492546947072842 What 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)
What is the name of the airport in Amsterdam? Winds Records -14.50624261932691 What 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)
What is the name of the airport in Amsterdam? students -14.51998317467248 What 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)
What is the name of the airport in Amsterdam? work -14.558010950215444 What 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)
What is the name of the airport in Amsterdam? the location -14.566164496104008 What 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)
What is the name of the airport in Amsterdam? Chet Baker -14.569725250568338 What 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)
What is the name of the airport in Amsterdam? meeting -14.570774683755529 What 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)
What is the name of the airport in Amsterdam? home -14.609312531608559 What 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)
What is the name of the airport in Amsterdam? the Open Access seminar -14.611404972636478 What 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)
What is the name of the airport in Amsterdam? the tourist -14.647426938485255 What 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)
What is the name of the airport in Amsterdam? the visitor -14.647426938485255 What 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)
What is the name of the airport in Amsterdam? a more appropriate culture -14.672480779203397 What 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)
What is the name of the airport in Amsterdam? a native of South Africa -14.67767725085268 What 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)
What is the name of the airport in Amsterdam? a large wave of Surinamese -14.684853511536456 What 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)
What is the name of the airport in Amsterdam? millions -14.723465337525566 What 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)
What is the name of the airport in Amsterdam? the bases and once -14.731891438558097 What 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)
What is the name of the airport in Amsterdam? 14 -14.747815521575898 What 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)
What is the name of the airport in Amsterdam? water -14.804267465803093 What 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)
What is the name of the airport in Amsterdam? question -14.804427471450452 What 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)
What is the name of the airport in Amsterdam? Van der Velden -14.811364404180843 What 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)
What is the name of the airport in Amsterdam? single women -14.842159641786088 What 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)
What is the name of the airport in Amsterdam? the end -14.844306441247678 What 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)
What is the name of the airport in Amsterdam? Travellers -14.857637229809562 What 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)
What is the name of the airport in Amsterdam? the wreckage -14.882870593214758 What 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)
What is the name of the airport in Amsterdam? Schmitt -14.888739120111593 What 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)
What is the name of the airport in Amsterdam? a Canadian -14.917744027221417 What 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)
What is the name of the airport in Amsterdam? the current state -14.924673900251076 What 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)
What is the name of the airport in Amsterdam? debates -14.95798642097741 What 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)
What is the name of the airport in Amsterdam? vengeance -15.02579002488653 What 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)
What is the name of the airport in Amsterdam? share -15.116370396339578 What 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)
What is the name of the airport in Amsterdam? players -15.118630756452161 What 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)
What is the name of the airport in Amsterdam? The best known Dutch Jew -15.169303893682502 What 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)
What is the name of the airport in Amsterdam? The modern shopping mall -15.248116545768399 What 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)
What is the name of the airport in Amsterdam? Bill -15.33546440514622 What 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)
What is the name of the airport in Amsterdam? suit -15.340892072717075 What 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)
What is the name of the airport in Amsterdam? descriptions -15.715488621502162 What 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)
What is the name of the airport in Amsterdam? plenty -16.695714863236617 What 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)
Who invented basketball? James Naismith -0.9902783816405389 Who invented basketball? -> $x: ($x, invented, basketball) -> (James Naismith, invented, Basketball) -> James Naismith (10394ms)
Who invented basketball? Company History -1.6715471958028183 Who invented basketball? -> $x: ($x, invented, basketball) -> (Company History, invented, basketball) -> Company History (10638ms)
Who invented basketball? college students -1.6754810454740614 Who invented basketball? -> $x: ($x, invented, basketball) -> (college students, invented, basketball and volleyball) -> college students (10638ms)
Who invented basketball? Hanno Mottola -1.6932945048329207 Who invented basketball? -> $x: ($x, invented, basketball) -> (Hanno Mottola, invent game of, basketball) -> Hanno Mottola (10638ms)
Who invented basketball? physical education -1.7456506289899891 Who invented basketball? -> $x: ($x, invented, basketball) -> (physical education, invented the game of, basketball) -> physical education (10638ms)
Who invented basketball? God -1.8838237830198388 Who invented basketball? -> $x: ($x, invented, basketball) -> (God, invented, the National Basketball Association) -> God (10638ms)
Who invented basketball? Dan Biasone -2.0666608853342936 Who invented basketball? -> $x: ($x, invented, basketball) -> (Dan Biasone, invented, basketball) -> Dan Biasone (10638ms)
Who invented basketball? Al Gore -2.0935524827675245 Who invented basketball? -> $x: ($x, invented, basketball) -> (Al Gore, invented, Basketball-Reference) -> Al Gore (10679ms)
Who invented basketball? A Canadian -2.186202652834705 Who invented basketball? -> $x: ($x, invented, basketball) -> (A Canadian, invented, basketball) -> A Canadian (10679ms)
Who invented basketball? The Globetrotters -2.319705084089885 Who invented basketball? -> $x: ($x, invented, basketball) -> (The Globetrotters, invented, show basketball) -> The Globetrotters (10680ms)
Who invented basketball? Ont. -2.567433811573074 Who invented basketball? -> $x: ($x, invented, basketball) -> (Ont., invented, basketball) -> Ont. (10754ms)
Who invented basketball? a KU Coach -2.7253341858338205 Who invented basketball? -> $x: ($x, invented, basketball) -> (a KU Coach, invented, basketball) -> a KU Coach (10812ms)
Who invented basketball? history ?? -2.737721569911506 Who invented basketball? -> $x: ($x, invented, basketball) -> (history ??, invented, basketball) -> history ?? (10812ms)
Who invented basketball? YMCA members -2.7425993218372478 Who invented basketball? -> $x: ($x, invented, basketball) -> (YMCA members, invented, basketball) -> YMCA members (10813ms)
Who invented basketball? white man -2.7479045456484172 Who invented basketball? -> $x: ($x, invented, basketball) -> (white man, invented, basketball) -> white man (10812ms)
Who invented basketball? The YMCA -2.7980486206104613 Who invented basketball? -> $x: ($x, invented, basketball) -> (The YMCA, invented, basketball) -> The YMCA (11043ms)
Who invented basketball? the Canadian physical education instructor -2.8017069797622582 Who invented basketball? -> $x: ($x, invented, basketball) -> (the Canadian physical education instructor, invented, basketball) -> the Canadian physical education instructor (11043ms)
Who invented basketball? Dr. James Naismith -2.8222469039538893 Who invented basketball? -> $x: ($x, invented, basketball) -> (Dr. James Naismith, would invent, basketball) -> Dr. James Naismith (11042ms)
Who invented basketball? Dr. Naismith -2.8262058848966136 Who invented basketball? -> $x: ($x, invented, basketball) -> (Dr. Naismith, invented, basketball) -> Dr. Naismith (11042ms)
Who invented basketball? a physical education teacher -2.9398452236662873 Who invented basketball? -> $x: ($x, invented, basketball) -> (a physical education teacher, invented, basketball) -> a physical education teacher (11086ms)
Who invented basketball? YMCA instructor James Naismith -2.9575291624973987 Who invented basketball? -> $x: ($x, invented, basketball) -> (YMCA instructor James Naismith, invented, basketball) -> YMCA instructor James Naismith (11088ms)
Who invented basketball? Basketball Dr. James Naismith -2.9631833844619067 Who invented basketball? -> $x: ($x, invented, basketball) -> (Basketball Dr. James Naismith, invented, basketball) -> Basketball Dr. James Naismith (11086ms)
Who invented basketball? James naismith -3.00297653058424 Who invented basketball? -> $x: ($x, invented, basketball) -> (James naismith, invented the game of, basketball) -> James naismith (11115ms)
Who invented basketball? Basketball Canadian Dr James Naismith -3.0060954788579943 Who invented basketball? -> $x: ($x, invented, basketball) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball Canadian Dr James Naismith (11115ms)
Who invented basketball? roller James Naismith -3.017088403795578 Who invented basketball? -> $x: ($x, invented, basketball) -> (roller James Naismith, invented, the modern basketball) -> roller James Naismith (11115ms)
Who invented basketball? physician -3.043424925008395 Who invented basketball? -> $x: ($x, invented, basketball) -> (physician, invented the game of, basketball) -> physician (11115ms)
Who invented basketball? a creative advertising agent -3.0600315344547195 Who invented basketball? -> $x: ($x, invented, basketball) -> (a creative advertising agent, invented, a basketball) -> a creative advertising agent (11115ms)
Who invented basketball? A Canadian doctor -3.060445153437609 Who invented basketball? -> $x: ($x, invented, basketball) -> (A Canadian doctor, invented, Basketball) -> A Canadian doctor (11156ms)
Who invented basketball? a sports stringer -3.0656199832352176 Who invented basketball? -> $x: ($x, invented, basketball) -> (a sports stringer, invented, a college basketball team &) -> a sports stringer (11156ms)
Who invented basketball? Canadian James Naismith -3.069092213414643 Who invented basketball? -> $x: ($x, invented, basketball) -> (Canadian James Naismith, invented the game of, basketball) -> Canadian James Naismith (11155ms)
Who invented basketball? Program Director James Naismith -3.1016533904564643 Who invented basketball? -> $x: ($x, invented, basketball) -> (Program Director James Naismith, invented, Basketball) -> Program Director James Naismith (11156ms)
Who invented basketball? a winter team sport -3.1072568258087014 Who invented basketball? -> $x: ($x, invented, basketball) -> (a winter team sport, invented the game of, basketball) -> a winter team sport (11155ms)
Who invented basketball? Any other interesting facts James Naismith -3.1469661861820013 Who invented basketball? -> $x: ($x, invented, basketball) -> (Any other interesting facts James Naismith, invented, basketball) -> Any other interesting facts James Naismith (11212ms)
Who invented basketball? the who -3.201021563886907 Who invented basketball? -> $x: ($x, invented, basketball) -> (the who, invented, the game basketball) -> the who (11212ms)
Who invented basketball? The Canadian -3.2182459975752993 Who invented basketball? -> $x: ($x, invented, basketball) -> (The Canadian, invented, the game of basketball) -> The Canadian (11212ms)
Who invented basketball? Mars -3.222339535664224 Who invented basketball? -> $x: ($x, invented, basketball) -> (Mars, invent, time travel or play basketball) -> Mars (11212ms)
Who invented basketball? Canuck -3.3951770048900736 Who invented basketball? -> $x: ($x, invented, basketball) -> (Canuck, invented, basketball) -> Canuck (11261ms)
Who invented basketball? The Canadians -3.628545297024787 Who invented basketball? -> $x: ($x, invented, basketball) -> (The Canadians, invented, basketball) -> The Canadians (11262ms)
Who invented basketball? the YMCA -3.6308691435174785 Who invented basketball? -> $x: ($x, invented, basketball) -> (the YMCA, invented, basketball) -> the YMCA (11320ms)
Who invented basketball? inventor -3.6958069247925405 Who invented basketball? -> $x: ($x, invented, basketball) -> (inventor, invented the game of, basketball) -> inventor (11320ms)
Who invented basketball? United States educator -3.912326930597703 Who invented basketball? -> $x: ($x, invented, basketball) -> (United States educator, invented, the game of basketball) -> United States educator (11392ms)
Who invented basketball? innovators -3.948985714589516 Who invented basketball? -> $x: ($x, invented, basketball) -> (innovators, have invented the game of, basketball and volleyball) -> innovators (11392ms)
Who invented basketball? Naismith -3.9999238951931755 Who invented basketball? -> $x: ($x, invented, basketball) -> (Naismith, invented, basketball) -> Naismith (11628ms)
Who invented basketball? Canadians -4.101214449785947 Who invented basketball? -> $x: ($x, invented, basketball) -> (Canadians, invented, Basketball) -> Canadians (11769ms)
Who invented basketball? 1891 James Naismith -4.113095724415903 Who invented basketball? -> $x: ($x, invented, basketball) -> (1891 James Naismith, invented, basketball) -> 1891 James Naismith (11769ms)
Who invented basketball? America -4.196827610764823 Who invented basketball? -> $x: ($x, invented, basketball) -> (America, invented, Basketball too) -> America (11818ms)
Who invented basketball? 1891 Dr. Naismith -4.251849008082084 Who invented basketball? -> $x: ($x, invented, basketball) -> (1891 Dr. Naismith, invented the game of, Basketball) -> 1891 Dr. Naismith (11878ms)
Who invented basketball? james naismith -4.312927514359188 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, james naismith) -> james naismith (11996ms)
Who invented basketball? Springfield -4.320429910333538 Who invented basketball? -> $x: ($x, invented, basketball) -> (Springfield, invented the game of, basketball) -> Springfield (11996ms)
Who invented basketball? Philip Bryant -4.3691243670440265 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, Philip Bryant) -> Philip Bryant (12028ms)
Who invented basketball? Taylor -4.419933943983801 Who invented basketball? -> $x: ($x, invented, basketball) -> (Taylor, is also credited with inventing, a basketball) -> Taylor (12028ms)
Who invented basketball? the jews -4.440572509976248 Who invented basketball? -> $x: ($x, invented, basketball) -> (the jews, invented, basketball) -> the jews (12076ms)
Who invented basketball? Europeans -4.496074228167627 Who invented basketball? -> $x: ($x, invented, basketball) -> (Europeans, invented, baseball , football and basketball) -> Europeans (12096ms)
Who invented basketball? the first try -4.559336374815944 Who invented basketball? -> $x: ($x, invented, basketball) -> (the first try, invented, basketball) -> the first try (12096ms)
Who invented basketball? the movement -4.571111283991028 Who invented basketball? -> $x: ($x, invented, basketball) -> (the movement, invented, basketball and volleyball) -> the movement (12339ms)
Who invented basketball? The guy -4.608307426500529 Who invented basketball? -> $x: ($x, invented, basketball) -> (The guy, invented, basketball) -> The guy (12339ms)
Who invented basketball? the canadian cation instructor -4.6518281082282344 Who invented basketball? -> $x: ($x, invented, basketball) -> (the canadian cation instructor, invented, basketball) -> the canadian cation instructor (12339ms)
Who invented basketball? Vince Carter -4.698299863193332 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (Vince Carter, has helped to popularize, basketball) -> Vince Carter (12339ms)
Who invented basketball? the moment James Naismith -4.765005443232855 Who invented basketball? -> $x: ($x, invented, basketball) -> (the moment James Naismith, invented, basketball) -> the moment James Naismith (12464ms)
Who invented basketball? the short time limit Dr. Naismith -4.773181935791682 Who invented basketball? -> $x: ($x, invented, basketball) -> (the short time limit Dr. Naismith, invented, basketball) -> the short time limit Dr. Naismith (12464ms)
Who invented basketball? active students -4.784092064932921 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (the Science Guy Basketball, was invented by, active students) -> active students (12464ms)
Who invented basketball? the same year James B. Naismith -4.862093669959922 Who invented basketball? -> $x: ($x, invented, basketball) -> (the same year James B. Naismith, invented, basketball) -> the same year James B. Naismith (12464ms)
Who invented basketball? 1891 - James Naismith -5.086940954359002 Who invented basketball? -> $x: ($x, invented, basketball) -> (1891 - James Naismith, invents, basketball) -> 1891 - James Naismith (12496ms)
Who invented basketball? a native -5.226829647566844 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a native) -> a native (12511ms)
Who invented basketball? the person -5.243670521827106 Who invented basketball? -> $x: ($x, invented, basketball) -> (the person, invented, basketball) -> the person (12511ms)
Who invented basketball? a man -5.321127762454148 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was a game invented by, a man) -> a man (12728ms)
Who invented basketball? a Canadian baseball football -5.332267909101374 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a Canadian baseball football) -> a Canadian baseball football (12728ms)
Who invented basketball? a Scottish American -5.43302865926467 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a Scottish American) -> a Scottish American (12751ms)
Who invented basketball? men -5.476647266686143 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Both basketball and volleyball, were invented by, men) -> men (12767ms)
Who invented basketball? a canadian -5.492246923172516 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a canadian) -> a canadian (12767ms)
Who invented basketball? Aaron Cripe -5.563846027498838 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Aaron Cripe, has resigned his position as, head basketball coach) -> Aaron Cripe (12783ms)
Who invented basketball? a Canadian -5.581648109131937 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (?basketball, was invented by, a Canadian) -> a Canadian (12783ms)
Who invented basketball? a rugby coach -5.599585494428371 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a rugby coach) -> a rugby coach (12798ms)
Who invented basketball? an individual -5.624407598000101 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (only basketball, was invented by, an individual) -> an individual (12799ms)
Who invented basketball? YMCA instructors -5.638455486178614 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball and volleyball, were invented by, YMCA instructors) -> YMCA instructors (12798ms)
Who invented basketball? a Y.M.C.A. official -5.6491651334445745 Who 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)
Who invented basketball? a Canadian , Dr. James A. Naismith -5.6616160317570055 Who 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)
Who invented basketball? Quote Koral -5.663760355677829 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Quote Koral, was played by, basketball star James Worthy) -> Quote Koral (12813ms)
Who invented basketball? Canadian Dr. James Naismith -5.700284756662542 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, Canadian Dr. James Naismith) -> Canadian Dr. James Naismith (12828ms)
Who invented basketball? professional players -5.77122095638002 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (professional players, make a living by playing, basketball) -> professional players (12859ms)
Who invented basketball? basketball drills -5.786644535098549 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (basketball drills, are extremely perfect for, a basketball team) -> basketball drills (12859ms)
Who invented basketball? the country -5.867895257325099 Who invented basketball? -> $x: ($x, invented, basketball) -> (the country, invented, basketball) -> the country (13056ms)
Who invented basketball? Square Enix -5.902619781566527 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Square Enix, almost perfected, basketball) -> Square Enix (13096ms)
Who invented basketball? static poses -5.972818038242492 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (static poses, is perfect for, the basketball fan) -> static poses (13095ms)
Who invented basketball? spindly body -6.06163008959564 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (spindly body, were perfect for, basketball) -> spindly body (13152ms)
Who invented basketball? Canadian drillmaster -6.11144473261035 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was originally invented by, Canadian drillmaster) -> Canadian drillmaster (13153ms)
Who invented basketball? the white man -6.164655062336912 Who invented basketball? -> $x: ($x, invented, basketball) -> (the white man, invented, basketball) -> the white man (13152ms)
Who invented basketball? John Allison -6.197566459334844 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (John Allison, actually played like, a live basketball center) -> John Allison (13216ms)
Who invented basketball? Lin -6.246034909970785 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, reinvent, basketball) -> (Lin, was reinventing, basketball) -> Lin (13216ms)
Who invented basketball? the Wizards -6.299463893466939 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Wizards, actually played, team basketball) -> the Wizards (13215ms)
Who invented basketball? Phog Allen -6.30625824150443 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be the inventor of, basketball) -> (Phog Allen, was the inventor of, basketball) -> Phog Allen (13251ms)
Who invented basketball? PlayStation 3 -6.3322720627101905 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (PlayStation 3, is the perfect way to shoot, basketball hoops) -> PlayStation 3 (13249ms)
Who invented basketball? 1869 -6.4012840851728114 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, 1869) -> 1869 (13265ms)
Who invented basketball? Ayman Idais Academy -6.4072670980322215 Who 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)
Who invented basketball? a full-time actor -6.4850765026723245 Who 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)
Who invented basketball? any stereotype--she -6.4903171056539435 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (any stereotype--she, has helped popularize, basketball) -> any stereotype--she (13264ms)
Who invented basketball? the Knights -6.508134571942773 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Knights, are actually playing some of, their best basketball) -> the Knights (13297ms)
Who invented basketball? the Nets -6.51589817925009 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Nets, have actually been playing, decent basketball) -> the Nets (13298ms)
Who invented basketball? J.R. -6.519560193933451 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (J.R., actually play, basketball) -> J.R. (13297ms)
Who invented basketball? soul -6.520828084816686 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (soul, are perfect for, basketball games) -> soul (13298ms)
Who invented basketball? rock -6.536351451754896 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be the inventor of, basketball) -> (rock, only is the inventor of, basketball) -> rock (13298ms)
Who invented basketball? they?re both Italian-Americans -6.580569846143538 Who 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)
Who invented basketball? He?s -6.644232110259211 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (He?s, may actually like to play, basketball) -> He?s (13517ms)
Who invented basketball? Illinois-Chicago -6.652681827881764 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Illinois-Chicago, was a perfect example of, Detroit basketball) -> Illinois-Chicago (13517ms)
Who invented basketball? The Heat -6.664551052142328 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (The Heat, are actually playing, great basketball) -> The Heat (13517ms)
Who invented basketball? I?ll -6.683136786228115 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, first make, basketball) -> (I?ll, make the first substitution in, pickup basketball history) -> I?ll (13735ms)
Who invented basketball? Jeremy Lin -6.708813675463816 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Jeremy Lin, is the perfect blend of, basketball talent) -> Jeremy Lin (13736ms)
Who invented basketball? a street -6.7245688577259255 Who 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)
Who invented basketball? adidas -6.758677283444772 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (adidas, is the perfect way to start off, his basketball wardrobe) -> adidas (13736ms)
Who invented basketball? ?China -6.767894571104902 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (?China, is a massive market for, NBA basketball) -> ?China (13736ms)
Who invented basketball? Kirk -6.772585329154129 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Kirk, can actually play, basketball) -> Kirk (13736ms)
Who invented basketball? Orange and gray -6.794481127600992 Who 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)
Who invented basketball? The Mohegan Sun Arena -6.796314121232736 Who 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)
Who invented basketball? Kiel Turpin -6.964082481862453 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, think up, basketball) -> (Kiel Turpin, was thinking about giving up, basketball) -> Kiel Turpin (14056ms)
Who invented basketball? Nike Blazer -6.968442818320809 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, first make, basketball) -> (Nike Blazer, was first made as, the basketball sneaker) -> Nike Blazer (14057ms)
Who invented basketball? Real -7.0183003847018455 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Real, is the Perfect Exercise to, Jump Higher basketball players) -> Real (14056ms)
Who invented basketball? Rose 2.5 -7.028509044429024 Who 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)
Who invented basketball? almost 6 -7.0418365666796126 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (almost 6, actually plays, basketball) -> almost 6 (14662ms)
Who invented basketball? Paul -7.138615831744789 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Paul, has held positions such as, College Basketball Coach) -> Paul (14662ms)
Who invented basketball? 950 games -7.162907116571436 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (950 games, were played by, Northern Nevada basketball teams) -> 950 games (14662ms)
Who invented basketball? 7... Quote Koral -7.166443914878117 Who 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)
Who invented basketball? the NBA -7.28539488570623 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (the NBA, is by playing, basketball) -> the NBA (14890ms)
Who invented basketball? alumni -7.357135080720517 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (alumni, are given the opportunity to create, a basketball team) -> alumni (14890ms)
Who invented basketball? Fairborn -7.402551048431405 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, reinvent, basketball) -> (Fairborn, needed to reinvent, its boys basketball team) -> Fairborn (14890ms)
Who invented basketball? style -7.443911671152854 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (style, are perfect for playing, basketball) -> style (14890ms)
Who invented basketball? Hawes -7.468538240786916 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Hawes, actually played on, a basketball team) -> Hawes (14890ms)
Who invented basketball? james -7.628799681581837 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented in naismith by, james) -> james (14955ms)
Who invented basketball? Westbrook -7.850759775663074 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Westbrook, is actually playing, the best basketball) -> Westbrook (14955ms)
Who invented basketball? Snyder -7.857074349549724 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Snyder, has actually been playing, some pretty good basketball) -> Snyder (14955ms)
Who invented basketball? Stricklen -7.865032132564183 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Stricklen, want to actually play, basketball) -> Stricklen (14955ms)
Who invented basketball? Phoenix -7.9273533903585 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Phoenix, can get back to playing actually, fun basketball) -> Phoenix (14980ms)
Who invented basketball? Results -7.990760472146174 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Results, is visible by playing, pickup basketball) -> Results (14980ms)
Who invented basketball? Michael -8.009156413225544 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Michael, had positioned, the basketball) -> Michael (14980ms)
Who invented basketball? Shaktoolik -8.017606130848096 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Shaktoolik, passed time by playing, basketball) -> Shaktoolik (14980ms)
Who invented basketball? Gardner -8.06928182633224 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (Gardner, also popularized, basketball) -> Gardner (14980ms)
Who invented basketball? Kabongo -8.070166012733337 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Kabongo, is playing by far, his best basketball) -> Kabongo (14980ms)
Who invented basketball? Spalding -8.17096458001572 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (Spalding, is the global market leader in, basketballs) -> Spalding (15002ms)
Who invented basketball? The idea -8.400424894601233 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (The idea, is to create, basketball team) -> The idea (15003ms)
Who invented basketball? the atmosphere -8.401446472401517 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the atmosphere, was perfect for, basketball) -> the atmosphere (15002ms)
Who invented basketball? the particular football game -8.434124134978646 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, conceive, basketball) -> (the particular football game, also conceived, basketball) -> the particular football game (15003ms)
Who invented basketball? the design -8.43416179086045 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the design, is perfect on, this men basketball shoe) -> the design (15003ms)
Who invented basketball? The school -8.528633556531378 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (The school, actually began playing, basketball) -> The school (15026ms)
Who invented basketball? The height advantage -8.578023411043649 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (The height advantage, may be perfect for, basketball) -> The height advantage (15026ms)
Who invented basketball? The game -8.604674535666994 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (The game, was played by, CU men basketball team) -> The game (15026ms)
Who invented basketball? the energy level -8.60732714757258 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the energy level, was perfect for, NBA basketball) -> the energy level (15026ms)
Who invented basketball? Friday -8.997609585307696 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Friday, was a perfect night for, basketball) -> Friday (15026ms)
Who invented basketball? the guy -9.755265176650415 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, know to play, basketball) -> (the guy, knows to play, basketball) -> the guy (15061ms)
Who invented basketball? North America -9.78870306798297 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, North America) -> North America (15061ms)
Who invented basketball? the kid -9.86930492982457 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (the kid, by playing, basketball) -> the kid (15086ms)
Who invented basketball? further north -10.704158610759759 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented, further north) -> further north (15086ms)
Who invented basketball? rap fashion -11.10882523914779 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (a basketball player, invent, rap fashion) -> rap fashion (15110ms)
Who invented basketball? the University -11.121135522099006 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented at, the University) -> the University (15137ms)
Who invented basketball? two years -11.169317475890491 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented, two years) -> two years (15137ms)
Who invented basketball? ten miles -11.208958276871149 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had just been invented only, ten miles) -> ten miles (15138ms)
Who invented basketball? a religious context -11.271598910484242 Who 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)
Who invented basketball? a few miles -11.279687034809967 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, invented, a few miles) -> a few miles (15162ms)
Who invented basketball? a diversion -11.304587506709195 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented as, a diversion) -> a diversion (15162ms)
Who invented basketball? a couple -11.31593915157558 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented, a couple) -> a couple (15162ms)
Who invented basketball? a pursuit -11.412204488276942 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, a pursuit) -> a pursuit (15185ms)
Who invented basketball? basketball -11.4577944721112 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Dr. James Naismith, invented, basketball) -> basketball (15185ms)
Who invented basketball? a YMCA -11.472192831918635 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented at, a YMCA) -> a YMCA (15185ms)
Who invented basketball? a decade -11.48292220086566 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented only about, a decade) -> a decade (15210ms)
Who invented basketball? a non-contact sport -11.537449496118692 Who 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)
Who invented basketball? a recreational sport -11.6147669661507 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented as, a recreational sport) -> a recreational sport (15324ms)
Who invented basketball? 100 years -11.786116540781542 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented more than, 100 years) -> 100 years (15349ms)
Who invented basketball? the 1800?s -11.877198568618146 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented in, the 1800?s) -> the 1800?s (15349ms)
Who invented basketball? the United States -11.91072665223968 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, the United States) -> the United States (15349ms)
Who invented basketball? period -12.07548079924359 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (the best basketball, ever invented, period) -> period (15349ms)
Who invented basketball? december th -12.088229245740854 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, invented, december th) -> december th (15498ms)
Who invented basketball? springfield -12.102597312902923 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, is invented in, springfield) -> springfield (15498ms)
Who invented basketball? Basketball -12.150834257131148 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball (15498ms)
Who invented basketball? Canada -12.15161067446762 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented in, Canada) -> Canada (15498ms)
Who invented basketball? Massachusetts -12.15413729300201 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, Massachusetts) -> Massachusetts (15498ms)
Who invented basketball? the USA -12.332536945244147 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, the USA) -> the USA (15523ms)
Who invented basketball? 1891 -12.564064497850545 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, 1891) -> 1891 (15523ms)
Who invented basketball? originally -12.567322132353617 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented, originally) -> originally (15547ms)
Who invented basketball? 1892 -12.679827341114287 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, 1892) -> 1892 (15547ms)
Who invented basketball? Sheex -12.702084191679706 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> ('s basketball coaches, invented, Sheex) -> Sheex (15571ms)
Who invented basketball? 1946 -12.756403508497659 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Wheelchair basketball, was invented in, 1946) -> 1946 (15571ms)
Who invented basketball? December 1891 -12.760763844956013 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, December 1891) -> December 1891 (15571ms)
Who invented basketball? 1861 -12.782109798470486 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (The basketball, was invented in, 1861) -> 1861 (15571ms)
Who invented basketball? Almonte -12.92101621421995 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball Basketball, was actually invented in, Almonte) -> Almonte (15616ms)
Who invented basketball? a pursuit for an indoor game -12.947120715234622 Who 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)
Who invented basketball? the 18th century -13.047655915460586 Who 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)
Who invented basketball? December -13.065036242772061 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, December) -> December (15641ms)
Who invented basketball? first -13.177072043661434 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented, first) -> first (15641ms)
Who invented basketball? more than 120 years ago -13.330441956742005 Who 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)
Who invented basketball? the end -13.3559283708649 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (America Basketball, was invented at, the end) -> the end (15641ms)
What are pathogens? disease-causing agent -6.368693462830012 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing agent) -> disease-causing agent (5502ms)
What are pathogens? environmental cue -6.464685175635649 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental cue) -> environmental cue (5502ms)
What are pathogens? micro-environmental factor -6.561467662555906 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, micro-environmental factor) -> micro-environmental factor (5502ms)
What are pathogens? disease-causing microorganism -6.589536665450566 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing microorganism) -> disease-causing microorganism (5502ms)
What are pathogens? disease-causing organism -6.600265620658244 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing organism) -> disease-causing organism (5502ms)
What are pathogens? water quality issue -6.830989660304228 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, water quality issue) -> water quality issue (5502ms)
What are pathogens? primitive life form -6.879479784816725 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, primitive life form) -> primitive life form (5550ms)
What are pathogens? biotic and abiotic stress factor -6.8868123844115114 What 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)
What are pathogens? external stimulus -6.918652913155388 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external stimulus) -> external stimulus (5550ms)
What are pathogens? harmful substance -6.925580604070836 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, harmful substance) -> harmful substance (5550ms)
What are pathogens? natural disturbance event -6.937150408870297 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural disturbance event) -> natural disturbance event (5550ms)
What are pathogens? type of risk -6.948468578495012 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, type of risk) -> type of risk (5550ms)
What are pathogens? stochastic natural event -6.968575581230309 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, stochastic natural event) -> stochastic natural event (5563ms)
What are pathogens? invasive non-native species -6.996947586294257 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, invasive non-native species) -> invasive non-native species (5564ms)
What are pathogens? natural population control -7.0134695366654505 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural population control) -> natural population control (5564ms)
What are pathogens? chronic pulmonary condition -7.016211380944316 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, chronic pulmonary condition) -> chronic pulmonary condition (5563ms)
What are pathogens? external environmental influence -7.01871987648705 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external environmental influence) -> external environmental influence (5563ms)
What are pathogens? long drive or stab plate Alternaria spp fungus -7.022590295512587 What 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)
What are pathogens? biological control -7.0230819385392715 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biological control) -> biological control (5586ms)
What are pathogens? natural control agent -7.023751452174951 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural control agent) -> natural control agent (5586ms)
What are pathogens? component of the environment -7.023961217652019 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, component of the environment) -> component of the environment (5586ms)
What are pathogens? biologically active substance -7.030294489205932 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biologically active substance) -> biologically active substance (5586ms)
What are pathogens? actual field condition -7.030487880127178 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, actual field condition) -> actual field condition (5586ms)
What are pathogens? non-point-source pollutant -7.03172977603357 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, non-point-source pollutant) -> non-point-source pollutant (5586ms)
What are pathogens? type of bacterium -7.0695470771280515 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, type of bacterium) -> type of bacterium (5601ms)
What are pathogens? large particle -7.088561506796851 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, large particle) -> large particle (5602ms)
What are pathogens? invasive species -7.105013096114074 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, invasive species) -> invasive species (5602ms)
What are pathogens? potential contaminant -7.106300628379655 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, potential contaminant) -> potential contaminant (5601ms)
What are pathogens? harmful pollutant -7.110051656301443 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, harmful pollutant) -> harmful pollutant (5602ms)
What are pathogens? mortality agent -7.1314954023993105 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, mortality agent) -> mortality agent (5602ms)
What are pathogens? stormwater pollutant -7.150044554057306 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, stormwater pollutant) -> stormwater pollutant (5635ms)
What are pathogens? noxious stimulus -7.15227851840721 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, noxious stimulus) -> noxious stimulus (5635ms)
What are pathogens? environmental concern -7.154029515554118 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental concern) -> environmental concern (5635ms)
What are pathogens? undesirable contaminant -7.161418326805936 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, undesirable contaminant) -> undesirable contaminant (5635ms)
What are pathogens? damaging agent -7.169692698951695 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, damaging agent) -> damaging agent (5635ms)
What are pathogens? natural enemy -7.1853771913507405 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural enemy) -> natural enemy (5635ms)
What are pathogens? potential risk -7.192870099994442 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, potential risk) -> potential risk (5662ms)
What are pathogens? waste product -7.195054427039045 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, waste product) -> waste product (5662ms)
What are pathogens? soil organism -7.217063152386092 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, soil organism) -> soil organism (5662ms)
What are pathogens? environmental contaminant -7.221059143811949 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental contaminant) -> environmental contaminant (5662ms)
What are pathogens? biological particle -7.231120929355759 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biological particle) -> biological particle (5661ms)
What are pathogens? selective pressure -7.231675958725765 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, selective pressure) -> selective pressure (5661ms)
What are pathogens? water contaminant -7.231842466985201 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, water contaminant) -> water contaminant (5681ms)
What are pathogens? secondary agent -7.233412873459438 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, secondary agent) -> secondary agent (5681ms)
What are pathogens? Natural stressors -7.242251867687119 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, Natural stressors) -> Natural stressors (5681ms)
What are pathogens? pest species -7.242726511219728 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, pest species) -> pest species (5681ms)
What are pathogens? undesirable organism -7.249058790043684 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, undesirable organism) -> undesirable organism (5681ms)
What are pathogens? living organism -7.26136860571956 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living organism) -> living organism (5681ms)
What are pathogens? environmental variable -7.26466021039123 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental variable) -> environmental variable (5710ms)
What are pathogens? catastrophic event -7.271301993478672 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, catastrophic event) -> catastrophic event (5709ms)
What are pathogens? common term -7.273775729627325 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, common term) -> common term (5710ms)
What are pathogens? living factor -7.296996017193408 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living factor) -> living factor (5709ms)
What are pathogens? experimental condition -7.297255787386844 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, experimental condition) -> experimental condition (5710ms)
What are pathogens? others item -7.298688157418235 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, others item) -> others item (5710ms)
What are pathogens? environmental source -7.300574545634925 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental source) -> environmental source (5730ms)
What are pathogens? physical stressors -7.301728403533129 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, physical stressors) -> physical stressors (5730ms)
What are pathogens? micro organism -7.303742953989665 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, micro organism) -> micro organism (5729ms)
What are pathogens? unfavorable condition -7.3063003914207085 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, unfavorable condition) -> unfavorable condition (5729ms)
What are pathogens? trace element -7.311073626965528 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trace element) -> trace element (5730ms)
What are pathogens? microbial contaminant -7.311540987541405 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, microbial contaminant) -> microbial contaminant (5730ms)
What are pathogens? key contaminant -7.317200167112006 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, key contaminant) -> key contaminant (5743ms)
What are pathogens? big word -7.324688799397325 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, big word) -> big word (5743ms)
What are pathogens? contributing factor -7.325441946081462 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, contributing factor) -> contributing factor (5743ms)
What are pathogens? living agent -7.334865256531294 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living agent) -> living agent (5743ms)
What are pathogens? seasonal factor -7.352544568439017 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, seasonal factor) -> seasonal factor (5743ms)
What are pathogens? control contaminant -7.3797592119664355 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, control contaminant) -> control contaminant (5761ms)
What are pathogens? untreated pollutant -7.3797592119664355 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, untreated pollutant) -> untreated pollutant (5761ms)
What are pathogens? trap pollutant -7.3797592119664355 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trap pollutant) -> trap pollutant (5743ms)
What are pathogens? temporary disturbance -7.381547371218787 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, temporary disturbance) -> temporary disturbance (5761ms)
What are pathogens? anionic contaminant -7.382696902243332 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, anionic contaminant) -> anionic contaminant (5761ms)
What are pathogens? noxious substance -7.384735512574937 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, noxious substance) -> noxious substance (5761ms)
What are pathogens? storage issue -7.385431992916062 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, storage issue) -> storage issue (5761ms)
What are pathogens? minor species -7.386203177517649 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, minor species) -> minor species (5796ms)
What are pathogens? control agent -7.386310521245659 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, control agent) -> control agent (5796ms)
What are pathogens? speci?c target -7.386613822510386 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, speci?c target) -> speci?c target (5796ms)
What are pathogens? injurious factor -7.3881526126700185 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, injurious factor) -> injurious factor (5796ms)
What are pathogens? external signal -7.388732520069739 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external signal) -> external signal (5796ms)
What are pathogens? storage factor -7.389159820484794 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, storage factor) -> storage factor (5797ms)
What are pathogens? molecular structure -7.392413877680321 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, molecular structure) -> molecular structure (5817ms)
What are pathogens? unfavourable condition -7.39303550974125 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, unfavourable condition) -> unfavourable condition (5817ms)
What are pathogens? treatment method -7.394816880608232 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, treatment method) -> treatment method (5817ms)
What are pathogens? parasitic organism -7.400323042985436 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, parasitic organism) -> parasitic organism (5817ms)
What are pathogens? global challenge -7.402598880780325 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, global challenge) -> global challenge (5817ms)
What are pathogens? climate change -7.404324416116655 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, climate change) -> climate change (5817ms)
What are pathogens? ecological process -7.40895807141474 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, ecological process) -> ecological process (6012ms)
What are pathogens? indoor air pollutant -7.788497609861658 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, indoor air pollutant) -> indoor air pollutant (6012ms)
What are pathogens? agent -9.160729890631067 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, agent) -> agent (6012ms)
What are pathogens? species -9.185055188458211 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, species) -> species (6012ms)
What are pathogens? target -9.195945835666187 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, target) -> target (6012ms)
What are pathogens? antigen -9.211739604032257 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, antigen) -> antigen (6012ms)
What are pathogens? factor -9.241216909991454 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, factor) -> factor (6039ms)
What are pathogens? micro-organisms -9.31700659404001 What 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)
What are pathogens? microbe -9.34600171635515 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, microbe) -> microbe (6039ms)
What are pathogens? Pharmacists -9.374082291433155 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: ($x, drug, pathogens) -> (Pharmacists, develop drugs against, particular pathogens) -> Pharmacists (6099ms)
What are pathogens? waste -9.377687944849168 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, waste) -> waste (6039ms)
What are pathogens? trigger -9.45091045366156 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trigger) -> trigger (6039ms)
What are pathogens? reagent -9.549936818918205 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, reagent) -> reagent (6039ms)
What are pathogens? article -9.588476987045437 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, article) -> article (6039ms)
What are pathogens? organisims -9.61016643001284 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, organisims) -> organisims (6061ms)
What are pathogens? illness -9.632137959529004 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, illness) -> illness (6062ms)
What are pathogens? disease-causing microorganisms -10.05080530668977 What 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)
What are pathogens? gram-positive bacteria -10.22594104843283 What 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)
What are pathogens? poor-quality water -10.339118383437452 What 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)
What are pathogens? disease-producing microorganisms -10.354149710362977 What 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)
What are pathogens? antibiotic-resistant -10.509592890586866 What 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)
What are pathogens? A BloodBorne Pathogen -10.521944047149148 What 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)
What are pathogens? Bloodborne Pathogens Guidebook -10.58071964094118 What 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)
What are pathogens? Annals -10.594156509768073 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, Annals) -> Annals (8908ms)
What are pathogens? life -10.614322104620861 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogens, be a fact of, $x) -> (pathogens, are a fact of, life) -> life (6061ms)
What are pathogens? healthy unbroken skin -10.65382952078208 What 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)
What are pathogens? A. terreus -10.669605073414894 What 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)
What are pathogens? a much better answers -10.675864235599212 What 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)
What are pathogens? Soilborne plant pathogens -10.690168747106812 What 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)
What are pathogens? Bacterial fish pathogens -10.690168747106812 What 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)
What are pathogens? disease causing organisms -10.707765576378806 What 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)
What are pathogens? Emerging Pathogens -10.728111103910898 What 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)
What are pathogens? Waterborne Pathogens -10.728111103910898 What 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)
What are pathogens? Manure Pathogens -10.728111103910898 What 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)
What are pathogens? Plant Pathogens -10.728111103910898 What 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)
What are pathogens? Emily Hagins -10.729279741268167 What 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)
What are pathogens? a huge public health challenge -10.743808626392688 What 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)
What are pathogens? such a unique creature -10.785996706905244 What 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)
What are pathogens? disease-producing micro-organisms -10.787203340424998 What 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)
What are pathogens? Have constant characteristics -10.787622195954977 What 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)
What are pathogens? a fairly recent phenomenon -10.7961151145149 What 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)
What are pathogens? Plant Pathogens: The Prokaryotes -10.812386915658436 What 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)
What are pathogens? Second World Water Congress -10.812386915658436 What 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)
What are pathogens? Plant pathology and plant pathogens -10.812386915658436 What 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)
What are pathogens? Bacteria as plant pathogens -10.812386915658436 What 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)
What are pathogens? A list of Missouri fungi -10.812386915658436 What 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)
What are pathogens? Theoretical studies in the evolution of human pathogens -10.812386915658436 What 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)
What are pathogens? Infectious Disease and Host-Pathogen Evolution -10.812386915658436 What 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)
What are pathogens? Pathogen specific immune responses in Caenorhabditis elegans -10.812386915658436 What 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)
What are pathogens? Pathogens of marine plants -10.812386915658436 What 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)
What are pathogens? Plant viruses, unique and intriguing pathogens -10.812386915658436 What 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)
What are pathogens? Bloodborne Pathogens Clbpa CD-ROM -10.812386915658436 What 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)
What are pathogens? Physiology of Pathogen -10.812386915658436 What 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)
What are pathogens? An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture -10.812386915658436 What 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)
What are pathogens? Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).) -10.812386915658436 What 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)
What are pathogens? McGraw-Hill Professional -10.812386915658436 What 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)
What are pathogens? Plant pathogen detection and disease diagnosis -10.812386915658436 What 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)
What are pathogens? Plant pathogens and their control in horticulture -10.812386915658436 What 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)
What are pathogens? Water treatment and pathogen control process efficiency in achieving safe drinking-water -10.812386915658436 What 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)
What are pathogens? Pathogens of Soybean Seeds -10.812386915658436 What 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)
What are pathogens? Pathogen survival in sludge stabilization processes -10.812386915658436 What 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)
What are pathogens? Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response -10.812386915658436 What 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)
What are pathogens? Host/pathogen interactions -10.812386915658436 What 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)
What are pathogens? Cell wall deficient forms -10.812386915658436 What 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)
What are pathogens? At the surface of host-pathogen interactions in toxoplasma gondii infections -10.812386915658436 What 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)
What are pathogens? OSHA Bloodborne Pathogens Library Edition -10.812386915658436 What 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)
What are pathogens? Function and maintenance of unidirectional actin-based motility in two bacterial pathogens -10.812386915658436 What 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)
What are pathogens? Diagnostic manual for the identification of insect pathogens -10.812386915658436 What 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)
What are pathogens? Water treatment and pathogen control -10.812386915658436 What 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)
What are pathogens? The OSHA handbook -10.812386915658436 What 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)
What are pathogens? Plant viruses, unique and intriguing pathogens: a textbook of plant virology -10.812386915658436 What 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)
What are pathogens? Pathogens of Soybean Seeds: Bibliography -10.812386915658436 What 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)
What are pathogens? Interstate Transportation of Human Pathogens -10.812386915658436 What 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)
What are pathogens? Subviral Pathogens of Plants and Animals: Viroids and Prions -10.812386915658436 What 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)
What are pathogens? Evaluation of the Doodlebug -10.812386915658436 What 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)
What are pathogens? Plant-fungal pathogen interaction : a classical and molecular view -10.812386915658436 What 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)
What are pathogens? Bacterial fish pathogens disease of farmed and wild fish -10.812386915658436 What 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)
What are pathogens? Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease -10.812386915658436 What 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)
What are pathogens? Physiology and biochemistry of plant-pathogen interactions -10.812386915658436 What 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)
What are pathogens? Bacterial fish pathogens: disease in farmed and wild fish -10.812386915658436 What 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)
What are pathogens? Subviral Pathogens of Plants and Animals -10.812386915658436 What 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)
What are pathogens? Laboratory guide to insect pathogens and parasites -10.812386915658436 What 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)
What are pathogens? Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate -10.812386915658436 What 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)
What are pathogens? Evolution and genomics of the classical Bordetella respiratory pathogens -10.812386915658436 What 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)
What are pathogens? Molecular biology in plant pathogenesis and disease management -10.812386915658436 What 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)
What are pathogens? Plant Resistance to Microbial Pathogens -10.812386915658436 What 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)
What are pathogens? Bloodborne Pathogens Clbpa CD-ROM (System Requirements) -10.812386915658436 What 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)
What are pathogens? Plant Pathogens: The Nematodes -10.812386915658436 What 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)
What are pathogens? Host-pathogen interactions in plant disease -10.812386915658436 What 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)
What are pathogens? Plant-fungal pathogen interaction -10.812386915658436 What 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)
What are pathogens? An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract -10.812386915658436 What 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)
What are pathogens? Postharvest pathogens and disease management -10.812386915658436 What 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)
What are pathogens? Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies -10.812386915658436 What 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)
What are pathogens? Assessment of Pathogens Transmissible by Blood -10.812386915658436 What 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)
What are pathogens? Plant pathogens : the plant parasitic nematodes -10.812386915658436 What 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)
What are pathogens? Epidemological Relations of Bacterial Plant Pathogens -10.812386915658436 What 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)
What are pathogens? Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy) -10.812386915658436 What 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)
What are pathogens? Overcoming Molecular Sample Processing Limitations -10.812386915658436 What 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)
What are pathogens? Microbial Plant Pathogens and Crop Disease Management -10.812386915658436 What 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)
What are pathogens? OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees -10.812386915658436 What 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)
What are pathogens? any foreign organisms -10.814148104201644 What 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)
What are pathogens? a scientifically impossible goal -10.820872649959373 What 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)
What are pathogens? disease causing bacteria -10.821762529657267 What 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)
What are pathogens? viruses gram positive pneumococcal pneumonia -10.822959037354146 What 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)
What are pathogens? one example -10.85088885445698 What 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)
What are pathogens? a normal and natural part -10.887505487870914 What 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)
What are pathogens? such external influences -10.931536333736794 What 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)
What are pathogens? politicaly significant and relevant -10.949965550992912 What 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)
What are pathogens? indirect detriments -10.965372085865653 What 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)
What are pathogens? larger microorganisms -10.974606307074211 What 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)
What are pathogens? an important step -10.991341771971399 What 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)
What are pathogens? false security -10.999363842518687 What 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)
What are pathogens? 93.2 % -11.014351267981622 What 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)
What are pathogens? Bloodborne pathogens -11.015597422772627 What 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)
What are pathogens? Raw milk -11.023232709676947 What 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)
What are pathogens? a general nuisance -11.037555961567508 What 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)
What are pathogens? 40-200 gamma / -11.050202569301078 What 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)
What are pathogens? a debilitated state -11.11981183177468 What 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)
What are pathogens? an excellent medium -11.121711058496743 What 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)
What are pathogens? Foodborne Disease Handbook, Volume 1 -11.204944376439173 What 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)
What are pathogens? Waterborne Pathogens, 2nd Edition -11.204944376439173 What 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)
What are pathogens? Course Reader for CEE-274E: Pathogens in the Environment -11.204944376439173 What 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)
What are pathogens? Waterborne Pathogens, 2nd Edition (Awwa Manual) -11.204944376439173 What 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)
What are pathogens? ?Raw milk -11.264220962933669 What 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)
What are pathogens? Present -11.274021105537727 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogen, is, Present) -> Present (9040ms)
What are pathogens? young people -11.288486076648917 What 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)
What are pathogens? Colloidal Silver -11.289898384978077 What 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)
What are pathogens? state-certified labs -11.298542930696154 What 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)
What are pathogens? a potential hazard -11.301072362900456 What 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)
What are pathogens? a great job -11.306601468979514 What 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)
What are pathogens? The Pathogen -11.33810745560736 What 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)
What are pathogens? OMV -11.33872771361238 What 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)
What are pathogens? White blood cells -11.351988682093099 What 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)
What are pathogens? leverage -11.35316962679148 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogens, modelling, $x) -> (pathogen transmission, is a great model to, leverage) -> leverage (6085ms)
What are pathogens? M hominis -11.398586379136074 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (M hominis, are known, pathogens) -> M hominis (9555ms)
What are pathogens? West Nile virus -11.406300409220739 What 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)
What are pathogens? subject to natural selection -11.421936696694125 What 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)
What are pathogens? HIV-infection -11.46772249404222 What 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)
What are pathogens? S. aureus -11.497624261335808 What 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)
What are pathogens? Prions -11.504105266625237 What 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)
What are pathogens? CMV -11.507790547593371 What 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)
What are pathogens? Dictyostelium -11.521008884259638 What 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)
What are pathogens? transmissible to humans -11.525197597567379 What 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)
What are pathogens? cruise ships -11.53770381433145 What 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)
What are pathogens? deadly to birds -11.54559871643133 What 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)
What are pathogens? harmful to humans -11.54559871643133 What 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)
What are pathogens? a few days -11.606904894083197 What 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)
What are pathogens? Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002 -11.608811578190359 What 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)
What are pathogens? Bacteria -11.652710264966787 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Bacteria, are known as, pathogens) -> Bacteria (9742ms)
What are pathogens? MLOs -11.67059568247952 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (MLOs, are well known, plant pathogens) -> MLOs (9742ms)
What are pathogens? present in the water -11.681734125112882 What 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)
What are pathogens? Retroviruses -11.68670202161982 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Retroviruses, are well known, pathogens) -> Retroviruses (9814ms)
What are pathogens? Abstract Ticks -11.731094163845807 What 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)
What are pathogens? present on or in the seed -11.74439323982326 What 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)
What are pathogens? C. albicans -11.751707764179967 What 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)
What are pathogens? present in the raw milk -11.768365748819324 What 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)
What are pathogens? a new means -11.820801241671207 What 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)
What are pathogens? Alum -11.821730970924996 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Alum, is known to reduce, pathogens) -> Alum (9831ms)
What are pathogens? E. ewingii -11.834901841925644 What 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)
What are pathogens? Seoul viruses -11.840573472216818 What 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)
What are pathogens? Europe -11.844058167439163 What 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)
What are pathogens? cell growth -11.85436324534151 What 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)
What are pathogens? a snap -11.868176570478472 What 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)
What are pathogens? paper logs -11.87358742663364 What 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)
What are pathogens? cause disease -11.890624591155193 What 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)
What are pathogens? a normal gut flora -11.924861554718966 What 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)
What are pathogens? 25 % -11.933607411436013 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (25 %, are known, plant pathogens) -> 25 % (9848ms)
What are pathogens? a very long time -11.941866135367071 What 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)
What are pathogens? resistant to these antibiotics -11.955471529738253 What 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)
What are pathogens? a part -11.965804231795573 What 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)
What are pathogens? a ?Doctrine -11.98486042035034 What 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)
What are pathogens? a reverse -11.993643717580413 What 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)
What are pathogens? a very different manner -12.008177213956072 What 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)
What are pathogens? Rickettsia bacteria -12.025435369776531 What 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)
What are pathogens? not much information -12.025888581570367 What 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)
What are pathogens? harmful to human health -12.031149710520285 What 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)
What are pathogens? the HSE -12.033818935801643 What 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)
What are pathogens? irrigation water -12.051172354125054 What 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)
What are pathogens? academic centers -12.056835040105977 What 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)
What are pathogens? pink slime -12.069679005217825 What 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)
What are pathogens? the MPs -12.085167000322334 What 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)
What are pathogens? more than 8,000 species -12.08938036213333 What 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)
What are pathogens? Pestalotiopsis theae -12.09373732814435 What 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)
What are pathogens? Stressed animals -12.105331161811407 What 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)
What are pathogens? a century -12.118315633906175 What 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)
What are pathogens? Burkholderia species -12.129105205806571 What 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)
What are pathogens? selective enrichment -12.130322765086513 What 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)
What are pathogens? great caution -12.136412870250567 What 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)
What are pathogens? academic settings -12.148806571842249 What 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)
What are pathogens? 10 % -12.155541096737476 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (10 %, are known, animal pathogens) -> 10 % (9916ms)
What are pathogens? canker fungi -12.169036830661467 What 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)
What are pathogens? the United States -12.1825251058198 What 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)
What are pathogens? human breast milk -12.206023276207539 What 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)
What are pathogens? threats to wildlife -12.26141134098453 What 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)
What are pathogens? diseases -12.262443119248221 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, diseases) -> diseases (9935ms)
What are pathogens? disease -12.281960051711078 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, Is, disease) -> disease (9935ms)
What are pathogens? medically relevant -12.282202879555138 What 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)
What are pathogens? present in the body -12.305958860610875 What 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)
What are pathogens? a class setting -12.321872693596744 What 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)
What are pathogens? the Rps genes -12.332350155676366 What 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)
What are pathogens? different than normal body tissue -12.343546400826295 What 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)
What are pathogens? the New World -12.346889547993797 What 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)
What are pathogens? warm , moist conditions -12.361036688518228 What 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)
What are pathogens? present in the tap water in many countries -12.37756443250054 What 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)
What are pathogens? microbes -12.37922182068678 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, microbes) -> microbes (9953ms)
What are pathogens? fungicides -12.429621077976822 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, fungicides) -> fungicides (9953ms)
What are pathogens? likely to survive for extended periods of time -12.440089064879068 What 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)
What are pathogens? subunit vaccines -12.440567491271695 What 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)
What are pathogens? rectal swabs -12.440567491271695 What 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)
What are pathogens? the main problem -12.476551349747389 What 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)
What are pathogens? organisms -12.489621327409136 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, organisms) -> organisms (9970ms)
What are pathogens? the most immediate danger -12.54130530484617 What 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)
What are pathogens? the most abundant -12.544306914905091 What 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)
What are pathogens? the exact phrase -12.557962120821427 What 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)
What are pathogens? dried blood -12.57054457870633 What 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)
What are pathogens? fish farms -12.605847940943592 What 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)
What are pathogens? bacteria -12.622868177734128 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, bacteria) -> bacteria (9987ms)
What are pathogens? the 1980 -12.639333991239617 What 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)
What are pathogens? the maintenance -12.646086102987585 What 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)
What are pathogens? the pathogen causing diabetes or hypertension -12.64628626328897 What 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)
What are pathogens? a level 3 -12.653968801765267 What 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)
What are pathogens? Curvularia -12.668995798398534 What 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)
What are pathogens? the relationship -12.710960184467806 What 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)
What are pathogens? a dormant stage -12.723597722194857 What 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)
What are pathogens? 1 or 2 pathways -12.726184001948907 What 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)
What are pathogens? vein -12.770555220173293 What 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)
What are pathogens? sicknesses -12.912119015093337 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, sicknesses) -> sicknesses (10166ms)
What are pathogens? present -12.927405524346863 What 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)
What are pathogens? examples -12.984813810123013 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, examples) -> examples (10166ms)
What are pathogens? agents -12.998961003349738 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, agents) -> agents (10166ms)
What are pathogens? microorganisms -13.104672489947994 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, microorganisms) -> microorganisms (10166ms)
What are pathogens? The viruses -13.381038332095944 What 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)
What are pathogens? the growing child -13.415185806520755 What 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)
What are pathogens? winter -13.429451900529633 What 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)
What are pathogens? the causes of disease -13.47118879446866 What 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)
What are pathogens? lice -13.523935015333059 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (lice, are known, pathogen vectors) -> lice (10218ms)
What are pathogens? so -13.56535805477377 What 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)
What are pathogens? the meat industry -13.59092769354038 What 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)
What are pathogens? us harm -13.616147758626957 What 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)
What are pathogens? the system -13.624545264471923 What 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)
What are pathogens? the genus Veronica -13.636844491983208 What 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)
What are pathogens? microscopic -13.745914311830301 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, microscopic) -> microscopic (10360ms)
What are pathogens? the immune system -13.747597674651262 What 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)
What are pathogens? the twenty-teens -13.749984077030536 What 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)
What are pathogens? The bad bacteria -13.767953975737173 What 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)
What are pathogens? bacterial -13.769809909058152 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, is, bacterial) -> bacterial (10377ms)
What are pathogens? The rust fungus -13.774123582897928 What 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)
What are pathogens? cloth -13.78884531045557 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (cloth, is known to, harbour pathogens) -> cloth (10377ms)
What are pathogens? you sick -13.849456160472569 What 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)
What are pathogens? the initiation -13.85740725388142 What 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)
What are pathogens? the job -13.868769879312119 What 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)
What are pathogens? dangerous -13.88015982957338 What 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)
What are pathogens? the disease -13.902226407385374 What 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)
What are pathogens? blood -13.904089229803452 What 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)
What are pathogens? market -13.964251834956515 What 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)
What are pathogens? soil -13.989893556802086 What 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)
What are pathogens? parrots -14.093344735990055 What 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)
What are pathogens? nurses -14.106607690113387 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, did, nurses) -> nurses (10583ms)
What are pathogens? the incidence -14.111947551667683 What 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)
What are pathogens? the host -14.114600163573268 What 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)
How tall is St. Peter's Basilica? 183 meters -11.500860383878052 How 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)
How tall is St. Peter's Basilica? 324 -11.698936899712635 How 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)
How tall is St. Peter's Basilica? William Glisson Jr. ?99 -11.884081592110679 How 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)
How tall is St. Peter's Basilica? Gian Lorenzo Bernini -11.951896425473723 How 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)
How tall is St. Peter's Basilica? Rome -12.125426864406458 How 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)
How tall is St. Peter's Basilica? the Vatican -12.152525560369563 How 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)
How tall is St. Peter's Basilica? 1614 -12.153577037948578 How 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)
How tall is St. Peter's Basilica? Pope Benedict -12.169409073365115 How 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)
How tall is St. Peter's Basilica? Vatican City -12.228566539505177 How 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)
How tall is St. Peter's Basilica? Pope Leo X -12.291269109314612 How 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)
How tall is St. Peter's Basilica? St . Peter -12.348090863183717 How 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)
How tall is St. Peter's Basilica? a runway -12.408145634870888 How 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)
How tall is St. Peter's Basilica? a construction site -12.460207453495975 How 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)
How tall is St. Peter's Basilica? the Colosseum -12.479961539797223 How 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)
How tall is St. Peter's Basilica? a pile -12.487723412313184 How 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)
How tall is St. Peter's Basilica? foot -12.488072081175368 How 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)
How tall is St. Peter's Basilica? an annual event -12.52860215370638 How 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)
How tall is St. Peter's Basilica? The Vatican -12.541855378408409 How 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)
How tall is St. Peter's Basilica? a large brazier full -12.606675854835455 How 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)
How tall is St. Peter's Basilica? a ceremony -12.628593689506193 How 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)
How tall is St. Peter's Basilica? a real honor -12.64885303262207 How 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)
How tall is St. Peter's Basilica? Catholic Tide -12.687757761293268 How 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)
How tall is St. Peter's Basilica? the ?the greatest -12.727810920152239 How 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)
How tall is St. Peter's Basilica? numerous pilgrims -12.742276636872367 How 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)
How tall is St. Peter's Basilica? such it -12.75130760829478 How 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)
How tall is St. Peter's Basilica? paper -12.786059544874965 How 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)
How tall is St. Peter's Basilica? limited hours -12.825539541314138 How 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)
How tall is St. Peter's Basilica? Bernini -12.862853324174118 How 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)
How tall is St. Peter's Basilica? regarded architect -12.980747929150535 How 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)
How tall is St. Peter's Basilica? the Danei brothers -13.002538689001867 How 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)
How tall is St. Peter's Basilica? outside -13.026610988132404 How 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)
How tall is St. Peter's Basilica? Hawk -13.027588483395014 How 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)
How tall is St. Peter's Basilica? The Gardens -13.031617473636732 How 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)
How tall is St. Peter's Basilica? Proper attire -13.031674232341432 How 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)
How tall is St. Peter's Basilica? a Vatican archaeologist -13.033936450930979 How 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)
How tall is St. Peter's Basilica? the Cathedral dome -13.03571082738106 How 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)
How tall is St. Peter's Basilica? memory -13.042178212333688 How 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)
How tall is St. Peter's Basilica? a Solemn Funeral -13.048089595103296 How 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)
How tall is St. Peter's Basilica? A special Mass -13.04902709040386 How 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)
How tall is St. Peter's Basilica? Michelangelo?s La Pieta -13.074799336908306 How 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)
How tall is St. Peter's Basilica? Lunetta Hotel -13.074943187015709 How 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)
How tall is St. Peter's Basilica? churches -13.081163688708642 How 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)
How tall is St. Peter's Basilica? a remarkable ceremony -13.110375632805187 How 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)
How tall is St. Peter's Basilica? Special treatment -13.148312414509753 How 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)
How tall is St. Peter's Basilica? stunning architectural masterpiece -13.17468484968731 How 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)
How tall is St. Peter's Basilica? the public -13.267627111846672 How 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)
How tall is St. Peter's Basilica? religious site -13.286543148882858 How 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)
How tall is St. Peter's Basilica? admission -13.312057577292407 How 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)
How tall is St. Peter's Basilica? lives -13.353614865166895 How 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)
How tall is St. Peter's Basilica? means -13.382874185725196 How 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)
How tall is St. Peter's Basilica? basilica -13.443444980406873 How 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)
How tall is St. Peter's Basilica? wonder -13.449194128751254 How 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)
How tall is St. Peter's Basilica? sight -13.476315091123732 How 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)
How tall is St. Peter's Basilica? building -13.517081615101592 How 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)
How tall is St. Peter's Basilica? the chorister -13.566699753695383 How 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)
How tall is St. Peter's Basilica? the week -13.577871087051314 How 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)
How tall is St. Peter's Basilica? Justice -13.755759772388126 How 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)
How tall is St. Peter's Basilica? Pieta -13.830196939693131 How 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)
How tall is St. Peter's Basilica? the aula -13.839684164550132 How 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)
How tall is St. Peter's Basilica? the background -13.853750557370809 How 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)
How tall is St. Peter's Basilica? the dinner -13.871733523319044 How 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)
How tall is St. Peter's Basilica? Baldassini -13.884049234724321 How 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)
How tall is St. Peter's Basilica? the tomb -13.88969122274947 How 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)
How tall is St. Peter's Basilica? the middle -13.945107108599702 How 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)
How tall is St. Peter's Basilica? the who?s -13.982990951045004 How 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)
How tall is St. Peter's Basilica? the sarcophagus -13.98659547056032 How 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)
How tall is St. Peter's Basilica? the trip -14.157621678982558 How 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)
How tall is St. Peter's Basilica? the cathedral -14.16381103649253 How 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)
How tall is St. Peter's Basilica? the choir -14.165078784813684 How 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)
How tall is St. Peter's Basilica? the mal di testa -14.517964842069567 How 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)
How tall is St. Peter's Basilica? the ancient pagan site -14.522475063036733 How 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)
How tall is St. Peter's Basilica? the many glorious churches -14.527650320896583 How 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)
How tall is St. Peter's Basilica? the most famous Catholic Church -14.57949710066777 How 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)
How tall is St. Peter's Basilica? The largest -14.688015433932657 How 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)
How tall is St. Peter's Basilica? The afternoon -14.773643925016042 How 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)
How tall is St. Peter's Basilica? The dome -14.83809312283234 How 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)
How tall is St. Peter's Basilica? The consistory ceremony -14.855809746236666 How 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)
How tall is St. Peter's Basilica? The sculpture -14.952335604801771 How 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)
How tall is St. Peter's Basilica? The blue transfer drawings -14.952335604801771 How 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)
How tall is St. Peter's Basilica? The young men -14.996545504581844 How 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)
How tall is St. Peter's Basilica? the holiest places -15.017455959182211 How 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)
How tall is St. Peter's Basilica? the main body -15.025805941287377 How 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)
How tall is St. Peter's Basilica? the holiest site -15.122367357420325 How 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)
How tall is St. Peter's Basilica? the largest interior -15.549510903267446 How 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)
How tall is St. Peter's Basilica? Madeline -15.554556025026134 How 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)
How tall is St. Peter's Basilica? the most important church in the city -16.007229499520754 How 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)
What is Head Start? quick-rigging system -1.857894113792145 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, quick-rigging system) -> quick-rigging system (10870ms)
What is Head Start? award-winning program -2.016262524328909 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, award-winning program) -> award-winning program (10871ms)
What is Head Start? federal program -2.137930357809707 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federal program) -> federal program (10870ms)
What is Head Start? part of the community -2.388730978842336 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, part of the community) -> part of the community (10870ms)
What is Head Start? Acommunity-based sample -2.40287534828422 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, Acommunity-based sample) -> Acommunity-based sample (10870ms)
What is Head Start? child wellness program -2.441401982475627 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, child wellness program) -> child wellness program (10870ms)
What is Head Start? quality developmental program -2.441401982475627 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, quality developmental program) -> quality developmental program (11154ms)
What is Head Start? formal child care arrangement -2.444968310037213 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, formal child care arrangement) -> formal child care arrangement (11154ms)
What is Head Start? pre school program -2.4505227413227635 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, pre school program) -> pre school program (11154ms)
What is Head Start? vital, active program -2.4505227413227635 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, vital, active program) -> vital, active program (11154ms)
What is Head Start? federally funded program -2.4551112035635274 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federally funded program) -> federally funded program (11154ms)
What is Head Start? community service provider -2.468820424651427 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community service provider) -> community service provider (11154ms)
What is Head Start? state & federally funded program -2.477099875445436 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, state & federally funded program) -> state & federally funded program (11208ms)
What is Head Start? third, alternative screening site -2.4895069719906626 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, third, alternative screening site) -> third, alternative screening site (11207ms)
What is Head Start? separate, federally-subsidized grant program -2.4895069719906626 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, separate, federally-subsidized grant program) -> separate, federally-subsidized grant program (11207ms)
What is Head Start? community-based, family-focused program -2.4916504033607634 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community-based, family-focused program) -> community-based, family-focused program (11207ms)
What is Head Start? popular program -2.510283638293563 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, popular program) -> popular program (11207ms)
What is Head Start? federal early childhood development program -2.521993830880578 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federal early childhood development program) -> federal early childhood development program (11228ms)
What is Head Start? non-profit, federally funded preschool program -2.521993830880578 What 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)
What is Head Start? program of the United States Department -2.521993830880578 What 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)
What is Head Start? preschool, or pre K program -2.521993830880578 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, preschool, or pre K program) -> preschool, or pre K program (11229ms)
What is Head Start? income based federally funded preschool program -2.5494827114797376 What 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)
What is Head Start? national childhood development and social service program -2.5730446091361605 What 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)
What is Head Start? private company -2.5951190210453685 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, private company) -> private company (11251ms)
What is Head Start? community group -2.6038217315249046 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community group) -> community group (11251ms)
What is Head Start? support service -2.629090695694324 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, support service) -> support service (11251ms)
What is Head Start? family affair -2.6554163620320965 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, family affair) -> family affair (11251ms)
What is Head Start? national organization -2.679729937358724 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, national organization) -> national organization (11273ms)
What is Head Start? program area -2.686482403283631 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program area) -> program area (11273ms)
What is Head Start? top priority -2.686959284698516 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, top priority) -> top priority (11273ms)
What is Head Start? key service -2.7043691703111588 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, key service) -> key service (11273ms)
What is Head Start? academic program -2.705430555475883 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, academic program) -> academic program (11273ms)
What is Head Start? good investment -2.7068011654246007 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, good investment) -> good investment (11273ms)
What is Head Start? preventative measure -2.732470188408757 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, preventative measure) -> preventative measure (11319ms)
What is Head Start? complex organization -2.7339757547484425 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, complex organization) -> complex organization (11318ms)
What is Head Start? comprehensive service -2.737583580174036 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, comprehensive service) -> comprehensive service (11318ms)
What is Head Start? teaching method -2.7401665317730144 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, teaching method) -> teaching method (11318ms)
What is Head Start? multidisciplinary program -2.749871150010609 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, multidisciplinary program) -> multidisciplinary program (11318ms)
What is Head Start? complex program -2.7799955559375755 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, complex program) -> complex program (11343ms)
What is Head Start? education provider -2.7813697186741804 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, education provider) -> education provider (11343ms)
What is Head Start? emergency service -2.7832253105694615 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, emergency service) -> emergency service (11343ms)
What is Head Start? supportive service -2.783952684981557 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, supportive service) -> supportive service (11343ms)
What is Head Start? wonderful experience -2.7893899973471727 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, wonderful experience) -> wonderful experience (11343ms)
What is Head Start? instructional program -2.7905091985823134 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, instructional program) -> instructional program (11343ms)
What is Head Start? 3-star facility -2.795432809064957 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, 3-star facility) -> 3-star facility (11497ms)
What is Head Start? educational opportunity -2.7974888531857083 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, educational opportunity) -> educational opportunity (11497ms)
What is Head Start? 34-year-old federal program -2.798186246668358 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, 34-year-old federal program) -> 34-year-old federal program (11497ms)
What is Head Start? flagship program -2.8070473091684116 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, flagship program) -> flagship program (11497ms)
What is Head Start? government initiative -2.8169229444023163 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, government initiative) -> government initiative (11521ms)
What is Head Start? program -3.9954991830571576 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program) -> program (11894ms)
What is Head Start? area -4.527024510244583 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, area) -> area (11977ms)
What is Head Start? model -4.674115088343855 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, model) -> model (11978ms)
What is Head Start? opportunity -4.691104629443618 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, opportunity) -> opportunity (11977ms)
What is Head Start? location -4.889615624614249 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, location) -> location (11986ms)
What is Head Start? control -4.908335807089068 What is Head Start? -> $x: (Head Start, instance of, $x) -> (head start, Instance Of, control) -> control (11986ms)
What is Head Start? package -4.954666351379524 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, package) -> package (11986ms)
What is Head Start? grant -4.962843441187645 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, grant) -> grant (11986ms)
What is Head Start? entity -4.96520197449955 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, entity) -> entity (11986ms)
What is Head Start? the NA'AMAT centers -5.4707373925231675 What 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)
What is Head Start? On-site monitoring -5.587943361224787 What 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)
What is Head Start? the ?Project Head Start ? -5.877936007069817 What 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)
What is Head Start? Date Begun -7.130446667767587 What 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)
What is Head Start? Date Completed -7.1780940608061305 What 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)
What is Head Start? Release date(s) -7.577182808153073 What 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)
What is Head Start? IBM -7.698789786102534 What 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)
What is Head Start? one piece -8.191993083458964 What 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)
What is Head Start? mid handicap players -8.935119063824912 What 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)
What is Head Start? Grubb & Ellis -9.009559069275047 What 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)
What is Head Start? a hub -9.126947240213449 What 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)
What is Head Start? a fourth Breeders -9.159570504639923 What 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)
What is Head Start? a piece -9.169208541018488 What 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)
What is Head Start? the Extreme Angle output -9.197815149601734 What 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)
What is Head Start? Coin Value -9.242897729171423 What 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)
What is Head Start? Nicholas Payton -9.326060657825877 What 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)
What is Head Start? nagging problems head-on -9.378612948793267 What 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)
What is Head Start? HU -9.420846699159464 What 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)
What is Head Start? disadvantaged three -9.46019030699219 What 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)
What is Head Start? a music -9.50540776709473 What 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)
What is Head Start? CIRCE -9.521308496065553 What 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)
What is Head Start? overdraft fees -9.565305737454368 What 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)
What is Head Start? vertical light -9.565797572844687 What 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)
What is Head Start? young people -9.57664138735529 What 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)
What is Head Start? head-top tensions -9.583682260835163 What 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)
What is Head Start? a thousand Roman crowns -9.61259167401462 What 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)
What is Head Start? upward light -9.620775334043007 What 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)
What is Head Start? a bit -9.623638316839422 What 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)
What is Head Start? the NRL -9.647981828092234 What 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)
What is Head Start? January -9.650364962730908 What 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)
What is Head Start? television display -9.658251341866698 What 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)
What is Head Start? eye level -9.673144236460892 What 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)
What is Head Start? Steve Lyons -9.679720876236852 What 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)
What is Head Start? more than simply amuse -9.723510842908707 What 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)
What is Head Start? Full Offset -9.726331343490624 What 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)
What is Head Start? a punk-like ending -9.759979541496364 What 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)
What is Head Start? the Head Start program -9.762941625640009 What 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)
What is Head Start? school readiness -9.775720453937032 What 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)
What is Head Start? CIMMYT?s team -9.784678532963484 What 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)
What is Head Start? mental health consultant -9.802945812779441 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, mental health consultant) -> mental health consultant (13004ms)
What is Head Start? big business -9.807322010883674 What 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)
What is Head Start? global ecosystem goods -9.813717820330552 What 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)
What is Head Start? rich software performs -9.815026893263207 What 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)
What is Head Start? a slot -9.830209690882795 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, features, a slot) -> a slot (15989ms)
What is Head Start? Author s -9.831795623010262 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Author s) -> Author s (13003ms)
What is Head Start? healthy nutrition -9.835617460177005 What 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)
What is Head Start? a hollowed -9.835657798446423 What 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)
What is Head Start? a double-sided design -9.839065384330565 What 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)
What is Head Start? Opto speed control -9.842124054514777 What 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)
What is Head Start? a side-feed design -9.855421958493617 What 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)
What is Head Start? an x-shaped muscle -9.869016786397449 What 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)
What is Head Start? an open U-channel -9.882971128705977 What 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)
What is Head Start? two super- -9.88336338049898 What 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)
What is Head Start? research and evaluation project -9.892026931788706 What 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)
What is Head Start? bud and blossom -9.904776915852674 What 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)
What is Head Start? old value -9.90637473418605 What 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)
What is Head Start? a golf destination -9.91075576556457 What 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)
What is Head Start? ?50,000 -9.912900486785677 What 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)
What is Head Start? buff polished fins -9.930627915699219 What 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)
What is Head Start? 24 -9.937618422313943 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head, values, 24) -> 24 (16069ms)
What is Head Start? small pointed ears -9.940557444970807 What 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)
What is Head Start? home-based programs -9.947062628543128 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, home-based programs) -> home-based programs (16069ms)
What is Head Start? authentic stamps and markings -9.95026368429602 What 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)
What is Head Start? fifty pieces -9.953811184120534 What 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)
What is Head Start? CONTENT RELATED CONTENT -9.96209213893031 What 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)
What is Head Start? partners with community groups and businesses -9.96611224717751 What 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)
What is Head Start? Parent meeting -9.96784038692518 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Parent meeting) -> Parent meeting (16103ms)
What is Head Start? 0 and plus infinity -9.968597618092206 What 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)
What is Head Start? a Threshold value -9.969982189976049 What 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)
What is Head Start? the Gospel vocal group Charity -9.972965578001292 What 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)
What is Head Start? a secondary security lock -9.974788921245125 What 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)
What is Head Start? new raised lip -9.98150933587578 What 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)
What is Head Start? Corian countertops -9.985775320330788 What 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)
What is Head Start? an illusory eye -9.989785080780523 What 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)
What is Head Start? four double-prongs -9.990778724474467 What 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)
What is Head Start? conceptual art spanning music -9.993851630814385 What 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)
What is Head Start? program and -9.998120028168161 What 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)
What is Head Start? a topknot -9.999626589831797 What 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)
What is Head Start? target Two -10.00189558215595 What 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)
What is Head Start? a true roll -10.004505990662185 What 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)
What is Head Start? a full sliding bar -10.004652587232876 What 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)
What is Head Start? several sharp holes -10.006798031089346 What 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)
What is Head Start? solid guitar work -10.009842894787933 What 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)
What is Head Start? a European-made drum shade -10.024169519695732 What 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)
What is Head Start? a motorized color wheel -10.025053706096829 What 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)
What is Head Start? physical activity -10.045400784622954 What 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)
What is Head Start? the Sort box -10.048244441956282 What 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)
What is Head Start? a bi-color design -10.05079473299061 What 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)
What is Head Start? dyno tested and flow bench proven ports -10.05580526375597 What 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)
What is Head Start? the Waratah?s Logrite -10.060202926916979 What 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)
What is Head Start? eligible children -10.078184496506875 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, eligible children) -> eligible children (16318ms)
What is Head Start? a person -10.078819249585932 What 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)
What is Head Start? Soviet Russia -10.08096552682523 What 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)
What is Head Start? a slim , angled neck -10.08182166381552 What 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)
What is Head Start? dual continuous drag fluid movement -10.082149294778972 What 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)
What is Head Start? Amtico vinyl flooring -10.08324661919084 What 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)
What is Head Start? a large sweetspot and packs plenty -10.088933783573895 What 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)
What is Head Start? a long term -10.090273178316746 What 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)
What is Head Start? 1965 -10.098216389602264 What 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)
What is Head Start? a moisture-proof O-ring seal -10.098442126029154 What 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)
What is Head Start? physical examination -10.100514131243363 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, physical examination) -> physical examination (16464ms)
What is Head Start? program funds -10.113060439561004 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, program funds) -> program funds (16464ms)
What is Head Start? alto , tenor -10.114000177186025 What 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)
What is Head Start? a combined $ 73.5 billion -10.11445796873194 What 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)
What is Head Start? a more mature queen -10.11612611756256 What 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)
What is Head Start? the U.S. -10.116506407626124 What 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)
What is Head Start? a straight-wall ACOUSTICON? construction -10.122415210589917 What 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)
What is Head Start? four leveling bubbles -10.12528053720284 What 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)
What is Head Start? a more rounded head -10.134401296049976 What 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)
What is Head Start? a sumptuous curved-face teak vanity -10.137426356697052 What 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)
What is Head Start? 0, 1 -10.141287325066765 What 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)
What is Head Start? incredible low and mid-lift flow numbers -10.144271493741398 What 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)
What is Head Start? Pettersson and Colt Knost -10.147892628790846 What 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)
What is Head Start? two springs -10.153002392973956 What 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)
What is Head Start? bright LED emitters -10.169277239104105 What 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)
What is Head Start? greenish-yellow -10.169286545881826 What is Head Start? -> what be head [ start ] ? -> what be fruit start ? -> $x: (fruit, start, $x) -> (fruit, start out, greenish-yellow) -> greenish-yellow (16556ms)
What is Head Start? a recommendation -10.171645816029717 What 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)
What is Head Start? a separate stall shower -10.183260559155363 What 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)
What is Head Start? powder coat paint -10.187502059479772 What 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)
What is Head Start? Blarg -10.18782416346438 What 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)
What is Head Start? government advisors -10.200678813753278 What 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)
What is Head Start? pre-k programs -10.21512293042113 What 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)
What is Head Start? Population -10.224185309951277 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Population) -> Population (16592ms)
What is Head Start? the Sanchez estate -10.230772876272482 What 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)
What is Head Start? three rings -10.238763924150636 What 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)
What is Head Start? Kelly -10.250012091111572 What 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)
What is Head Start? a flickering glow -10.251927874057047 What 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)
What is Head Start? Enterprise System -10.260292436323217 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Enterprise System) -> Enterprise System (16628ms)
What is Head Start? type list -10.26320085733191 What 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)
What is Head Start? 2003 -10.29598896254139 What 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)
What is Head Start? program resembling pumpkins -10.296572926656168 What 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)
What is Head Start? Consortium -10.300257336485974 What is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the Head, Start, Consortium) -> Consortium (18970ms)
What is Head Start? a wiry , brush-like mustache -10.303655560897301 What 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)
What is Head Start? two channels -10.315694798867524 What 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)
What is Head Start? 70cc combustion chambers -10.341669492790162 What 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)
What is Head Start? 70-cc combustion chambers -10.341669492790162 What 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)
What is Head Start? incredible $ 1,950.00Price -10.347858850300133 What 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)
What is Head Start? rot -10.350748413788885 What is Head Start? -> what be head [ start ] ? -> what be fruit start ? -> $x: (fruit, start, $x) -> (fruit, is just starting to, rot) -> rot (16661ms)
What is Head Start? Ferrea valves -10.350884479062964 What 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)
Who is the governor of Alaska? Sarah Palin 3.2921084567553587 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah Palin, has been the governor of, Alaska) -> Sarah Palin (7641ms)
Who is the governor of Alaska? todd palin 2.7572246676402568 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (todd palin, actually is the governor of, alaska) -> todd palin (7989ms)
Who is the governor of Alaska? Frank Murkowki 2.728532782125315 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Frank Murkowki, is the governor of, Alaska) -> Frank Murkowki (7987ms)
Who is the governor of Alaska? Shawn Parnell 2.618444395963863 Who 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)
Who is the governor of Alaska? McCain 2.603021765140443 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (McCain, is the Governor of, Alaska) -> McCain (8222ms)
Who is the governor of Alaska? a woman 1.99304400245952 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (a woman, would be either the Governor of, Alaska) -> a woman (8222ms)
Who is the governor of Alaska? VP 1.9540394941979757 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (VP, is being the governor of, Alaska) -> VP (8221ms)
Who is the governor of Alaska? Trig?s mum 1.581831876045979 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Trig?s mum, is the Governor of, Alaska) -> Trig?s mum (8265ms)
Who is the governor of Alaska? Pages Governor Sarah Palin 1.4979766834200263 Who 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)
Who is the governor of Alaska? Sara Palin 1.383052001632266 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sara Palin, was the Governor of, Alaska) -> Sara Palin (8414ms)
Who is the governor of Alaska? A contrasting example 1.3692019484801734 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (A contrasting example, is the Governor of, Alaska) -> A contrasting example (8414ms)
Who is the governor of Alaska? Sarah Palin Sarah Palin 1.357642799031777 Who 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)
Who is the governor of Alaska? Palin 1.1660524638300527 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Palin, is the governor of, Alaska) -> Palin (8414ms)
Who is the governor of Alaska? John F. A. 1.119569654312233 Who 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)
Who is the governor of Alaska? a 44 year old mother 0.7198817866886449 Who 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)
Who is the governor of Alaska? 1 Sarah Louise Heath Palin 0.674723132380219 Who 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)
Who is the governor of Alaska? she?s 0.6228997561227634 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (she?s, been the governor of, Alaska) -> she?s (8636ms)
Who is the governor of Alaska? Frank Murkowski 0.6038165165000886 Who 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)
Who is the governor of Alaska? Sarah 0.470697253245405 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah, is the governor of, Alaska) -> Sarah (8746ms)
Who is the governor of Alaska? the brow 0.2105154526598414 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (the brow, is the governor of, Alaska) -> the brow (8747ms)
Who is the governor of Alaska? 2010 0.16352055929770748 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (2010, has been the former governor of, Alaska) -> 2010 (8811ms)
Who is the governor of Alaska? the Interior -0.41464034095832836 Who 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)
Who is the governor of Alaska? the fading carnival attraction -0.47920489887064255 Who 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)
Who is the governor of Alaska? The vice presidential choice -0.4852013593659019 Who 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)
Who is the governor of Alaska? gubernatorial chutzpah -0.49812276577433623 Who 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)
Who is the governor of Alaska? Pew -0.5957131914473337 Who 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)
Who is the governor of Alaska? Rick Perry -0.7508984852015189 Who 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)
Who is the governor of Alaska? the Alaska Daily Empire -0.7687375460767025 Who 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)
Who is the governor of Alaska? mayor -0.8482751057014407 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (mayor, is Governor of, Alaska) -> mayor (9921ms)
Who is the governor of Alaska? Sean Parnell -0.8499286269794143 Who 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)
Who is the governor of Alaska? a Finn -0.9662021574501104 Who 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)
Who is the governor of Alaska? Ms. Palin -1.0112962436312802 Who 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)
Who is the governor of Alaska? a beauty queen -1.0653718031721076 Who 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)
Who is the governor of Alaska? Mr. Parnell -1.1085579599046875 Who 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)
Who is the governor of Alaska? help Sarah -1.234874429857737 Who 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)
Who is the governor of Alaska? Democrat Tony Knowles -1.2675897483166698 Who 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)
Who is the governor of Alaska? Todd Palin -1.2731521307750904 Who 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)
Who is the governor of Alaska? sarah palin -1.3182184082609032 Who 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)
Who is the governor of Alaska? a small town -1.3251271703473324 Who 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)
Who is the governor of Alaska? Summary Sarah Palin -1.328897943738189 Who 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)
Who is the governor of Alaska? resource development -1.3488451555362924 Who 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)
Who is the governor of Alaska? Alaska Anchorage -1.367010578214197 Who 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)
Who is the governor of Alaska? Robert Brewster -1.3992339620650363 Who 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)
Who is the governor of Alaska? Randy Zarnke -1.4232415506752027 Who 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)
Who is the governor of Alaska? Also Summary Sarah Palin -1.428948788849393 Who 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)
Who is the governor of Alaska? president -1.4377745953812764 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (president, was governor of, Alaska) -> president (11058ms)
Who is the governor of Alaska? a person -1.4899263133835359 Who 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)
Who is the governor of Alaska? young Bayard -1.4911083622269712 Who 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)
Who is the governor of Alaska? four -1.5792462114347567 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (four, was governor of, Alaska) -> four (11194ms)
Who is the governor of Alaska? frank murkowski -1.579780469566394 Who 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)
Who is the governor of Alaska? whose mother -1.603758331842458 Who 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)
Who is the governor of Alaska? levi johnston -1.6270775141267124 Who 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)
Who is the governor of Alaska? Lake Erie -1.6879099826088777 Who 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)
Who is the governor of Alaska? Rhode Island -1.7419409915321296 Who 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)
Who is the governor of Alaska? last year -1.7758183380155041 Who 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)
Who is the governor of Alaska? Darsha Spalinger -1.800998117328229 Who 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)
Who is the governor of Alaska? Jim Minnery -1.8471415085659266 Who 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)
Who is the governor of Alaska? John Brady -1.8537236211484303 Who 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)
Who is the governor of Alaska? Mr. Geary -1.8899544564526298 Who 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)
Who is the governor of Alaska? The MCUs -1.9037984701574087 Who 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)
Who is the governor of Alaska? Ben Stevens -2.0124865263650795 Who 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)
Who is the governor of Alaska? William A. Egan -2.017798478740851 Who 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)
Who is the governor of Alaska? The Aleutian Range -2.088834358282261 Who 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)
Who is the governor of Alaska? The writer -2.1667750329713185 Who 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)
Who is the governor of Alaska? Swineford -2.2399842969786605 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Swineford, was governor of, Alaska) -> Swineford (11970ms)
Who is the governor of Alaska? insects -2.254076498481441 Who 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)
Who is the governor of Alaska? John McCain -2.2610999434764323 Who 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)
Who is the governor of Alaska? I?oza -2.279436539796787 Who 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)
Who is the governor of Alaska? Vladimir Putin -2.2912712421858012 Who 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)
Who is the governor of Alaska? Frank H. Murkowski -2.2954467224448445 Who 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)
Who is the governor of Alaska? De Gaulle -2.3262197981861026 Who 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)
Who is the governor of Alaska? residents -2.359363159254453 Who 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)
Who is the governor of Alaska? Mitigation -2.3919153218121783 Who 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)
Who is the governor of Alaska? Mark Wilson -2.395685204285766 Who 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)
Who is the governor of Alaska? ? Students -2.4027527646321056 Who 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)
Who is the governor of Alaska? Jack Phelps -2.4090127265363552 Who 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)
Who is the governor of Alaska? the years Palin -2.415686961211334 Who 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)
Who is the governor of Alaska? now and 2012 -2.446571133282739 Who 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)
Who is the governor of Alaska? Kirk Hoessle -2.4558751855197185 Who 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)
Who is the governor of Alaska? lisa murkowski -2.458506414786599 Who 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)
Who is the governor of Alaska? Clemson University -2.479157973733055 Who 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)
Who is the governor of Alaska? polar bears -2.498523218203897 Who 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)
Who is the governor of Alaska? Murkowski -2.500008223819981 Who 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)
Who is the governor of Alaska? Lanette Higham -2.5414612884170413 Who 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)
Who is the governor of Alaska? the hell -2.553129181740266 Who 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)
Who is the governor of Alaska? The late Jay Hammond -2.5815189979210333 Who 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)
Who is the governor of Alaska? an Elephant Maggie -2.605531639199017 Who 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)
Who is the governor of Alaska? an account -2.6067909966022893 Who 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)
Who is the governor of Alaska? CVEA -2.628011786442377 Who 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)
Who is the governor of Alaska? Exxon Valdez -2.67721830999114 Who 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)
Who is the governor of Alaska? Judy Waldron -2.700375706523501 Who 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)
Who is the governor of Alaska? Chris Hanson -2.70974331097521 Who 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)
Who is the governor of Alaska? colored postcards -2.7523871807267497 Who 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)
Who is the governor of Alaska? Mano Frey -2.759678338258285 Who 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)
Who is the governor of Alaska? Cripple Creek -2.761709059451603 Who 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)
Who is the governor of Alaska? Denver -2.7826536795707497 Who 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)
Who is the governor of Alaska? a qualified voter -2.793391819711589 Who 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)
Who is the governor of Alaska? bald eagles -2.801490341063797 Who 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)
Who is the governor of Alaska? cross-country skiing -2.802838105505854 Who 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)
Who is the governor of Alaska? The rising Republican star -2.8028865575104946 Who 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)
Who is the governor of Alaska? divorce -2.807003410144707 Who 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)
Who is the governor of Alaska? John Miller -2.814308351957516 Who 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)
Who is the governor of Alaska? Senator John McCain -2.8289555503299137 Who 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)
Who is the governor of Alaska? a rate -2.8432345215639883 Who 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)
Who is the governor of Alaska? The Iditarod -2.859638321526484 Who 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)
Who is the governor of Alaska? conservationist -2.874202472567061 Who 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)
Who is the governor of Alaska? a student -2.89111045512303 Who 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)
Who is the governor of Alaska? Holly madison -2.9036189223718787 Who 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)
Who is the governor of Alaska? Sep 5 , 2008 4:40 PM EDT Ms. Palin -2.905562224331568 Who 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)
Who is the governor of Alaska? Two additional ports -2.940168659576239 Who 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)
Who is the governor of Alaska? ted stevens -2.94044731226927 Who 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)
Who is the governor of Alaska? ASU. Students -2.9433709370707333 Who 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)
Who is the governor of Alaska? a former president -2.9502870671858936 Who 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)
Who is the governor of Alaska? Mr. Davidge -2.953431613699572 Who 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)
Who is the governor of Alaska? the Republican Party -2.968187142291675 Who 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)
Who is the governor of Alaska? an Alaska Native artist -2.9914819244907873 Who 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)
Who is the governor of Alaska? 75.7 % -3.0214830214739608 Who 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)
Who is the governor of Alaska? the America -3.040923491960179 Who 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)
Who is the governor of Alaska? 1994 Tony Knowles -3.044801189864669 Who 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)
Who is the governor of Alaska? Seattle -3.075613348037746 Who 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)
Who is the governor of Alaska? John McCain?s running mate -3.0776306651638885 Who 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)
Who is the governor of Alaska? God -3.0821964452435444 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (God, can do in, Alaska) -> God (13721ms)
Who is the governor of Alaska? five species -3.092322396092665 Who 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)
Who is the governor of Alaska? Pat Robertson -3.1053774317619145 Who 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)
Who is the governor of Alaska? hand sanizter -3.107820533945389 Who 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)
Who is the governor of Alaska? evaluation sites -3.1135321219691114 Who 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)
Who is the governor of Alaska? the first woman -3.1139707050210297 Who 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)
Who is the governor of Alaska? John McCain?s -3.128782397581769 Who 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)
Who is the governor of Alaska? 330 subscribers -3.129792551756147 Who 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)
Who is the governor of Alaska? Ted Stevens -3.1311164063079566 Who 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)
Who is the governor of Alaska? Bell -3.136185517534031 Who 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)
Who is the governor of Alaska? Pete -3.1458766578806237 Who 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)
Who is the governor of Alaska? Republican Stevens -3.1464532402820256 Who 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)
Who is the governor of Alaska? literacy rates -3.216336608061463 Who 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)
Who is the governor of Alaska? Laters Soviet -3.2307071847600985 Who 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)
Who is the governor of Alaska? Anchorage Daily News -3.254074888228036 Who 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)
Who is the governor of Alaska? various studies -3.2949656309754065 Who 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)
Who is the governor of Alaska? legal opinions -3.3047564076216096 Who 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)
Who is the governor of Alaska? The North Slope -3.3061138786078605 Who 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)
Who is the governor of Alaska? Travel Guard -3.319126984320245 Who 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)
Who is the governor of Alaska? a state -3.3198862517312575 Who 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)
Who is the governor of Alaska? Alaskan History -3.3204385899044744 Who 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)
Who is the governor of Alaska? quota -3.3229958111144167 Who 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)
Who is the governor of Alaska? Murphy -3.330681179862181 Who 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)
Who is the governor of Alaska? applicable provisions -3.3580367363862553 Who 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)
Who is the governor of Alaska? Maggie -3.3592729087107283 Who 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)
Who is the governor of Alaska? Mark Begich -3.376054754808489 Who 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)
Who is the governor of Alaska? Cheyenne Brown -3.396052202559251 Who 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)
Who is the governor of Alaska? Atlantis -3.397993584600252 Who 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)
Who is the governor of Alaska? congressional representative -3.4066676208741065 Who 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)
Who is the governor of Alaska? the rules -3.4076104982123048 Who 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)
Who is the governor of Alaska? 13-90 semester credit hours -3.4152480525268514 Who 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)
Who is the governor of Alaska? individual citizens -3.418162149492952 Who 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)
Who is the governor of Alaska? a cross-roads -3.4910648305907843 Who 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)
Who is the governor of Alaska? the Yugtarvik Regional Museum -3.529933912247879 Who 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)
Who is the governor of Alaska? Deer hunting -3.5343117580183656 Who 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)
Who is the governor of Alaska? 20 meters -3.5358136098812856 Who 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)
Who is the governor of Alaska? a number -3.5475999412271855 Who 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)
Who is the governor of Alaska? Charlie -3.5632703746771255 Who 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)
Who is the governor of Alaska? Diesel -3.58593923433136 Who 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)
Who is the governor of Alaska? Reeve -3.586651736410114 Who 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)
Who is the governor of Alaska? CNN -3.5974999779339796 Who 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)
Who is the governor of Alaska? Students -3.6127850774389016 Who 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)
Who is the governor of Alaska? trip -3.6235910589989087 Who 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)
Who is the governor of Alaska? d_p -3.624603226275338 Who 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)
Who is the governor of Alaska? seaweeds -3.6277001382101894 Who 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)
Who is the governor of Alaska? much oil -3.637107157671959 Who 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)
Who is the governor of Alaska? a seven-member Board -3.6415694091967348 Who 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)
Who is the governor of Alaska? a Republican -3.6435136124980185 Who 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)
Who is the governor of Alaska? Bear hunting -3.6467081498142275 Who 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)
Who is the governor of Alaska? one delegate -3.648841167904287 Who 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)
Who is the governor of Alaska? Joe Miller -3.651890015320277 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elect, Joe Miller) -> Joe Miller (15350ms)
Who is the governor of Alaska? WUWT -3.656559522007558 Who 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)
Who is the governor of Alaska? Thompson -3.6797158214467784 Who 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)
Who is the governor of Alaska? Mr McCain?s running mate -3.6811673838344108 Who 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)
Who is the governor of Alaska? provost and vice president -3.684267514377459 Who 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)
Who is the governor of Alaska? The Deering survey -3.712212418070304 Who 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)
Who is the governor of Alaska? Boardwalk Wilderness Lodge -3.7171643182720255 Who 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)
Who is the governor of Alaska? the Russian-American Company -3.7523935322333077 Who 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)
Who is the governor of Alaska? BP -3.7566555855208663 Who 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)
Who is the governor of Alaska? GeoPRISMS Primary Site -3.757888599745343 Who 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)
Who is the governor of Alaska? Hensley -3.763779204426403 Who 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)
Who is the governor of Alaska? DIRECTV -3.767507534997942 Who 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)
Who is the governor of Alaska? John McCain?s choice -3.7713555561967507 Who 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)
Who is the governor of Alaska? Mrs. Palin -3.773123928998944 Who 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)
Who is the governor of Alaska? felt information -3.7744049513119124 Who 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)
Who is the governor of Alaska? an advocate -3.7819658984144993 Who 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)
Who is the governor of Alaska? ?ConocoPhillips -3.7930074378038667 Who 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)
Who is the governor of Alaska? Emmons -3.794956899352982 Who 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)
Who is the governor of Alaska? an offshoot -3.8134210109581246 Who 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)
Who is the governor of Alaska? Halibut and salmon fishing -3.816957809264806 Who 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)
Who is the governor of Alaska? Illustrated -3.818515477465446 Who 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)
Who is the governor of Alaska? geothermal and hydropower resources -3.8214685384830314 Who 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)
Who is the governor of Alaska? Wolf-haters -3.830310507898587 Who 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)
Who is the governor of Alaska? Ron Paul -3.834447434009685 Who 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)
Who is the governor of Alaska? an eligible Native village -3.8393790647628663 Who 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)
Who is the governor of Alaska? no governor -3.8785164588696244 Who 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)
Who is the governor of Alaska? North America?s largest peak -3.886834607273641 Who 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)
Who is the governor of Alaska? governor -3.8954019280639627 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (R-Alaska, was elected, governor) -> governor (15624ms)
Who is the governor of Alaska? an Inupiat Eskimo -3.901272903374051 Who 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)
Who is the governor of Alaska? the vehicle owner -3.9065880922539615 Who 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)
Who is the governor of Alaska? The Valley ! Offer -3.9165369484374315 Who 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)
Who is the governor of Alaska? Sole Survivor -3.9436339796047397 Who 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)
Who is the governor of Alaska? the student -3.9485213829223293 Who 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)
Who is the governor of Alaska? the Senate -3.9528579718312136 Who 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)
Who is the governor of Alaska? a board -3.9846201972608823 Who 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)
Who is the governor of Alaska? Buist -4.010023552455388 Who 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)
Who is the governor of Alaska? ice -4.032470138539975 Who 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)
Who is the governor of Alaska? a model -4.033251081748733 Who 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)
Who is the governor of Alaska? Tony Knowles -4.035013237376877 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected, Tony Knowles) -> Tony Knowles (15891ms)
Who is the governor of Alaska? a historic Alaskan landmark -4.043564190403667 Who 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)
Who is the governor of Alaska? last night?s results -4.075727723414448 Who 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)
Who is the governor of Alaska? the well -4.076150752948074 Who 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)
Who is the governor of Alaska? Such homophobia -4.087201477615176 Who 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)
Who is the governor of Alaska? 16 -4.09175292986329 Who 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)
Who is the governor of Alaska? a dividend check -4.0947526685669144 Who 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)
Who is the governor of Alaska? the place -4.096268002433529 Who 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)
Who is the governor of Alaska? the family members -4.104648375809752 Who 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)
Who is the governor of Alaska? a real estate developer -4.11290384771017 Who 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)
Who is the governor of Alaska? a singer songwriter -4.114215400592104 Who 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)
Who is the governor of Alaska? specific user benefits -4.11482263547936 Who 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)
Who is the governor of Alaska? Lisa Murkowski -4.1171790585975 Who 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)
Who is the governor of Alaska? the US Senate -4.12440217376127 Who 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)
Who is the governor of Alaska? The breed -4.132817493184229 Who 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)
Who is the governor of Alaska? pastor -4.1388780267143765 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, was elected as, pastor) -> pastor (16033ms)
Who is the governor of Alaska? The Nautilus Swell -4.142007379343281 Who 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)
Who is the governor of Alaska? Kim -4.163059465455113 Who 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)
Who is the governor of Alaska? sustainable -4.163611820963212 Who 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)
Who is the governor of Alaska? Much work -4.16411230288217 Who 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)
Who is the governor of Alaska? Mitt Romney -4.1649903248115105 Who 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)
Who is the governor of Alaska? time -4.1691455043433985 Who 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)
Who is the governor of Alaska? territory -4.184798777528751 Who 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)
Who is the governor of Alaska? George -4.18788699384095 Who 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)
Who is the governor of Alaska? CMU -4.189788953416061 Who 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)
Who is the governor of Alaska? a freshman -4.196902609860244 Who 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)
Who is the governor of Alaska? Kayakers and hunters -4.236756093059794 Who 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)
Who is the governor of Alaska? the 1950s and 60s -4.2406400847183825 Who 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)
Who is the governor of Alaska? Bruce -4.246700854065713 Who 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)
Who is the governor of Alaska? a medical and dental plan -4.254440031890907 Who 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)
Who is the governor of Alaska? Chris Chris A -4.261685865359402 Who 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)
Who is the governor of Alaska? Williams -4.267921591203505 Who 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)
Who is the governor of Alaska? the broader community Patti -4.272535173466817 Who 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)
Who is the governor of Alaska? so much -4.274003984832216 Who 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)
Who is the governor of Alaska? Applicants -4.274538268678834 Who 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)
Who is the governor of Alaska? John McCains -4.282380539691845 Who 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)
Who is the governor of Alaska? Lescanec -4.288193573812945 Who 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)
Who is the governor of Alaska? the military and -4.291388121311837 Who 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)
Who is the governor of Alaska? Tilden -4.292679126647979 Who 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)
Who is the governor of Alaska? a radio-collared bear -4.315449684100994 Who 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)
Who is the governor of Alaska? Obama/Biden -4.3340178620354965 Who 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)
Who is the governor of Alaska? a Democrat -4.376394768183827 Who 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)
Who is the governor of Alaska? Sport trips -4.384098414449184 Who 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)
Who is the governor of Alaska? Archimandrite Raphael Hawaweeny -4.401216871755556 Who 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)
Who is the governor of Alaska? storms -4.401536008110439 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (storms, usually do in, Alaska) -> storms (16707ms)
Who is the governor of Alaska? a rock -4.402985297260043 Who 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)
Who is the governor of Alaska? an oil tanker -4.4286270191056145 Who 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)
Who is the governor of Alaska? salmon roe -4.433048003813392 Who 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)
Who is the governor of Alaska? ?The girls -4.442648943253366 Who 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)
Who is the governor of Alaska? Alder -4.445764757587069 Who 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)
Who is the governor of Alaska? a chance -4.4502751754265395 Who 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)
Who is the governor of Alaska? a real climate champ -4.460458151163451 Who 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)
Who is the governor of Alaska? risk -4.471926242063397 Who 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)
Who is the governor of Alaska? Mr Romney -4.477002721265466 Who 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)
Who is the governor of Alaska? numerous winter trips -4.481825505835985 Who 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)
Who is the governor of Alaska? You?ve -4.486099873009021 Who 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)
Who is the governor of Alaska? There?s so..SO -4.486984059410117 Who 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)
Who is the governor of Alaska? just what Palin -4.4896366713157025 Who 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)
Who is the governor of Alaska? Barr -4.493547450610723 Who 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)
Who is the governor of Alaska? fact -4.494441360505619 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (fact, do in, Alaska visitors) -> fact (16830ms)
Who is the governor of Alaska? Nearly three-quarters -4.4992982590051 Who 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)
Who is the governor of Alaska? Max Newman Max Newman -4.501950870910683 Who 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)
Who is the governor of Alaska? AS 25.24.430 -4.515082812590521 Who 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)
Who is the governor of Alaska? Alternative energy -4.527520191341468 Who 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)
Who is the governor of Alaska? AS 40.25.300 -4.538349615393722 Who 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)
Who is the governor of Alaska? One biology student -4.554183069130177 Who 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)
Who is the governor of Alaska? Mushing -4.5544178646915725 Who 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)
Who is the governor of Alaska? Fishing -4.6013590569240375 Who 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)
Who is the governor of Alaska? the military -4.643083627506925 Who 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)
Who is the governor of Alaska? grizzlies -4.65843584578202 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (grizzlies, is done in, Alaska) -> grizzlies (16868ms)
Who is the governor of Alaska? The raven -4.670561287626068 Who 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)
Who is the governor of Alaska? collegiate 10,000-meter record holder -4.717574913448853 Who 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)
Who is the governor of Alaska? family -4.748931880492302 Who 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)
Who is the governor of Alaska? Keri -4.759800971932533 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Keri, originally hails from, Alaska) -> Keri (16929ms)
Who is the governor of Alaska? axes -4.771677696211601 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (axes, is done in, Alaska) -> axes (16929ms)
Who is the governor of Alaska? wolves -4.787180829629126 Who 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)
Who is the governor of Alaska? officials -4.791601814336904 Who 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)
Who is the governor of Alaska? Preserve -4.7958028970531235 Who 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)
Who is the governor of Alaska? a big 5-1 -4.83684187044606 Who 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)
Who is the governor of Alaska? Chelsea -4.853501703900385 Who 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)
Who is the governor of Alaska? Treasurer -4.858833597768241 Who 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)
Who is the governor of Alaska? the site -4.860195981182809 Who 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)
Who is the governor of Alaska? Paul -4.877032468008926 Who 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)
Who is the governor of Alaska? everybody -4.878656272780331 Who 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)
Who is the governor of Alaska? the venue -4.899259766549703 Who 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)
Who is the governor of Alaska? the winner -4.901688700930041 Who 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)
Who is the governor of Alaska? 1990 -4.9049848832075 Who 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)
Who is the governor of Alaska? Florida researcher -4.912619290017276 Who 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)
Who is the governor of Alaska? Heartbeat -4.9255293037958054 Who 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)
Who is the governor of Alaska? Obama -4.941203543762519 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Obama, could win in, Alaska) -> Obama (17068ms)
Who is the governor of Alaska? the MSM -4.973351441283027 Who 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)
Who is the governor of Alaska? more than 28 basins -4.978313539201835 Who 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)
Who is the governor of Alaska? the manager -4.981490155897584 Who 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)
Who is the governor of Alaska? women -5.0205201406268145 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (women, do in, Alaska) -> women (17112ms)
Who is the governor of Alaska? Democrats -5.0278549178181775 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Democrats, can win in, Alaska) -> Democrats (17169ms)
Who is the governor of Alaska? the state -5.046463873677416 Who 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)
Who is the governor of Alaska? Brenda -5.051663698734298 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Brenda, hails from, Juneau Alaska) -> Brenda (17168ms)
Who is the governor of Alaska? the recipient -5.065031998909623 Who 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)
Who is the governor of Alaska? Seward -5.079169803613258 Who 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)
Who is the governor of Alaska? Kentucky bluegrasses -5.088966901827181 Who 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)
Who is the governor of Alaska? representatives -5.092075566927395 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska?s, elected, representatives) -> representatives (17248ms)
Who is the governor of Alaska? Commercial airlines -5.104882415153805 Who 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)
Who is the governor of Alaska? a company -5.106961751626885 Who 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)
Who is the governor of Alaska? the tremendous diversity -5.110445612829638 Who 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)
Who is the governor of Alaska? Willow -5.115347107007604 Who 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)
Who is the governor of Alaska? 1966 -5.129571127712252 Who 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)
Who is the governor of Alaska? Alaska -5.148990035837256 Who 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)
Who is the governor of Alaska? Heather -5.161368803559494 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Heather, hails from, Alaska) -> Heather (17298ms)
Who is the governor of Alaska? Correct -5.165458379315334 Who 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)
Who is the governor of Alaska? the sample state -5.166085473101301 Who 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)
Who is the governor of Alaska? the highest point -5.202462402549717 Who 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)
Who is the governor of Alaska? Exxon -5.208166694415601 Who 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)
Who is the governor of Alaska? the top carbon-storage forests -5.21094472747219 Who 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)
Who is the governor of Alaska? The pungent beverage -5.216027811253312 Who 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)
Who is the governor of Alaska? drinking -5.231843378305938 Who 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)
Who is the governor of Alaska? the highest priority site -5.24779834776402 Who 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)
Who is the governor of Alaska? the state governments -5.252204008185094 Who 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)
Who is the governor of Alaska? the world?s largest volcanic eruption -5.255933074573031 Who 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)
Who is the governor of Alaska? the same system -5.260161791199552 Who 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)
Who is the governor of Alaska? the average bear -5.276926475457213 Who 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)
Who is the governor of Alaska? the highest priority primary site -5.277194982663897 Who 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)
Who is the governor of Alaska? The race -5.280011898214122 Who 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)
Who is the governor of Alaska? Greens -5.30243869432087 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Greens, are doing in, Alaska) -> Greens (17865ms)
Who is the governor of Alaska? the counting -5.305199196614156 Who 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)
Who is the governor of Alaska? the grey wolf -5.329294890768379 Who 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)
Who is the governor of Alaska? the same law -5.3414729259739815 Who 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)
Who is the governor of Alaska? a 2011 Fellow -5.346179612193794 Who 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)
Who is the governor of Alaska? the abortion -5.3539891377977025 Who 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)
Who is the governor of Alaska? the legendary Copper River salmon -5.394260144112833 Who 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)
Who is the governor of Alaska? the board -5.396793311209095 Who 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)
Who is the governor of Alaska? Robertson -5.425029488048134 Who 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)
Who is the governor of Alaska? Stevens -5.453964202559044 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Stevens, is winning in, Alaska) -> Stevens (19326ms)
Who is the governor of Alaska? Romney -5.512728840728876 Who 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)
Who is the governor of Alaska? the companies -5.529791026764729 Who 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)
Who is the governor of Alaska? Bethel -5.544582033728929 Who 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)
Who is the governor of Alaska? the goods -5.567876084459792 Who 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)
Who is the governor of Alaska? 10 troops in Afghanistan -5.613795485962841 Who 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)
Who is the governor of Alaska? oil companies -5.614510062397674 Who 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)
Who is the governor of Alaska? Defense -5.615702372876173 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Defense, recently did in, Alaska) -> Defense (19579ms)
Who is the governor of Alaska? The former Massachusetts governor -5.616458427768778 Who 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)
Who is the governor of Alaska? Doctors -5.617535138657749 Who 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)
Who is the governor of Alaska? the firm -5.676255017615299 Who 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)
Who is the governor of Alaska? the job SP -5.726010061544098 Who 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)
What political party does Thabo Mbeki belong to? Monwabise Kwanda Mbeki -7.606067202164608 What 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)
What political party does Thabo Mbeki belong to? Thabo Mvuyelwa Mbeki -10.203477842447496 What 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)
What political party does Thabo Mbeki belong to? Aids sceptic -10.490969514360781 What 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)
What political party does Thabo Mbeki belong to? african political leader -10.665684688502225 What 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)
What political party does Thabo Mbeki belong to? influential political figure -10.683160201761567 What 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)
What political party does Thabo Mbeki belong to? key political figure -10.707703833872953 What 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)
What political party does Thabo Mbeki belong to? prominent South Africans -10.739128006643961 What 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)
What political party does Thabo Mbeki belong to? misunderstood man -10.747852423031066 What 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)
What political party does Thabo Mbeki belong to? intelligent man -10.754245549617037 What 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)
What political party does Thabo Mbeki belong to? political figure -10.896627569094925 What 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)
What political party does Thabo Mbeki belong to? political leader -10.898263679822099 What 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)
What political party does Thabo Mbeki belong to? man -10.901393344057698 What 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)
What political party does Thabo Mbeki belong to? leader of neighbouring country -10.930491922841684 What 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)
What political party does Thabo Mbeki belong to? advocate of debt cancellation -10.936488056116529 What 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)
What political party does Thabo Mbeki belong to? ANC leader -10.94410802065624 What 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)
What political party does Thabo Mbeki belong to? leader of the ANC -10.949674642596504 What 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)
What political party does Thabo Mbeki belong to? VIPs -10.994367668580058 What 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)
What political party does Thabo Mbeki belong to? prominent world leader -11.032675788979244 What 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)
What political party does Thabo Mbeki belong to? senior ANC leader -11.033814227204042 What 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)
What political party does Thabo Mbeki belong to? strong, credible leader -11.059720214160954 What 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)
What political party does Thabo Mbeki belong to? no-show -11.069339427965563 What 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)
What political party does Thabo Mbeki belong to? man of culture -11.074769979370844 What 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)
What political party does Thabo Mbeki belong to? respected african leader -11.09549341074896 What 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)
What political party does Thabo Mbeki belong to? iconic african leader -11.09549341074896 What 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)
What political party does Thabo Mbeki belong to? world class leader -11.098920716020935 What 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)
What political party does Thabo Mbeki belong to? prominent world figure -11.104306481273225 What 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)
What political party does Thabo Mbeki belong to? typical African leader -11.104614169596097 What 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)
What political party does Thabo Mbeki belong to? AIDS theory denier -11.104614169596097 What 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)
What political party does Thabo Mbeki belong to? key ANC leader -11.104614169596097 What 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)
What political party does Thabo Mbeki belong to? famous leader from the province -11.106912263521957 What 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)
What political party does Thabo Mbeki belong to? political figurehead -11.13191651886003 What 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)
What political party does Thabo Mbeki belong to? respected African statesman -11.132032611771896 What 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)
What political party does Thabo Mbeki belong to? south african leader -11.139784741360407 What 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)
What political party does Thabo Mbeki belong to? extremely embarrassing situation -11.142617206061805 What 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)
What political party does Thabo Mbeki belong to? responsible, democratic leader -11.147684632078265 What 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)
What political party does Thabo Mbeki belong to? champion of the empowerment of woman -11.147684632078265 What 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)
What political party does Thabo Mbeki belong to? great South African Statesman -11.151737964908941 What 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)
What political party does Thabo Mbeki belong to? man of integrity and intelligence -11.151737964908941 What 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)
What political party does Thabo Mbeki belong to? south african great leader -11.151737964908941 What 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)
What political party does Thabo Mbeki belong to? petty and stupid man -11.151737964908941 What 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)
What political party does Thabo Mbeki belong to? national and international leader -11.15722165346667 What 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)
What political party does Thabo Mbeki belong to? african leader -11.159304160642808 What 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)
What political party does Thabo Mbeki belong to? South Africa n politician -11.192578587513406 What 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)
What political party does Thabo Mbeki belong to? administrative, policy or technocratic leader -11.192578587513406 What 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)
What political party does Thabo Mbeki belong to? strong supporter of Aristide -11.192865626946942 What 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)
What political party does Thabo Mbeki belong to? senior african national congress figure -11.233706249551407 What 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)
What political party does Thabo Mbeki belong to? tenacious and courageous champion of the search -11.287873373590493 What 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)
What political party does Thabo Mbeki belong to? weak leader -11.293214706274345 What 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)
What political party does Thabo Mbeki belong to? ethical, extremely hard working, frugal, highly intelligent and capitalistic leader -11.335520766629037 What 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)
What political party does Thabo Mbeki belong to? prominent leader -11.337708418271667 What 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)
What political party does Thabo Mbeki belong to? real leader -11.338797483224766 What 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)
What political party does Thabo Mbeki belong to? good leader -11.339887239472576 What 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)
What political party does Thabo Mbeki belong to? revolutionary leader -11.349928363796497 What 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)
What political party does Thabo Mbeki belong to? world leader -11.352414102689519 What 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)
What political party does Thabo Mbeki belong to? better leader -11.37400774110883 What 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)
What political party does Thabo Mbeki belong to? militant individual -11.406805324851627 What 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)
What political party does Thabo Mbeki belong to? exceptional leader -11.413855781393607 What 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)
What political party does Thabo Mbeki belong to? ruthless hypocrite -11.416889130614802 What 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)
What political party does Thabo Mbeki belong to? contemporary figure -11.42124513045951 What 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)
What political party does Thabo Mbeki belong to? international figure -11.423865687755375 What 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)
What political party does Thabo Mbeki belong to? capable leader -11.427481525580843 What 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)
What political party does Thabo Mbeki belong to? great leader -11.43373632826242 What 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)
What political party does Thabo Mbeki belong to? close friend -11.439316890739418 What 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)
What political party does Thabo Mbeki belong to? parent figure -11.475492307137845 What 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)
What political party does Thabo Mbeki belong to? influential leader -11.475501099229344 What 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)
What political party does Thabo Mbeki belong to? public figure -11.482548370643759 What 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)
What political party does Thabo Mbeki belong to? good entry -11.48720745921359 What 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)
What political party does Thabo Mbeki belong to? thought leader -11.493118448186374 What 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)
What political party does Thabo Mbeki belong to? urbane statesman -11.50890688136279 What 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)
What political party does Thabo Mbeki belong to? Democrat -11.677441157043017 What 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)
What political party does Thabo Mbeki belong to? prestigious event -11.758868716020359 What 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)
What political party does Thabo Mbeki belong to? leader par excellence -11.922757833870298 What 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)
What political party does Thabo Mbeki belong to? Giraldo -12.76212591894626 What 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)
What political party does Thabo Mbeki belong to? leader -13.24529342758795 What 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)
What political party does Thabo Mbeki belong to? person -13.301298499454319 What 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)
What political party does Thabo Mbeki belong to? dignitary -13.373974605554181 What 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)
What political party does Thabo Mbeki belong to? intellectual -13.445756434708034 What 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)
What political party does Thabo Mbeki belong to? luminary -13.466418140310905 What 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)
What political party does Thabo Mbeki belong to? president -13.549885474476577 What 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)
What political party does Thabo Mbeki belong to? dictator -13.551631380496744 What 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)
What political party does Thabo Mbeki belong to? individual -13.557237658484688 What 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)
What political party does Thabo Mbeki belong to? idiot -13.60361136211802 What 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)
What political party does Thabo Mbeki belong to? area -13.627437008399703 What 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)
What political party does Thabo Mbeki belong to? pain -13.657892741247286 What 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)
What political party does Thabo Mbeki belong to? shantytown -13.658363912523974 What 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)
What political party does Thabo Mbeki belong to? exile -13.681331306615716 What 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)
What political party does Thabo Mbeki belong to? mean -13.711656427139808 What 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)
What political party does Thabo Mbeki belong to? guest -13.71963789525297 What 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)
What is Jerry's last name? the same party -12.298202070722894 What 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)
What is Hong Kong's population? 10 million -3.0463143223815905 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of over, 10 million) -> 10 million (4729ms)
What is Hong Kong's population? Buddhists and Taoists -3.3661513653020023 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a huge population of, Buddhists and Taoists) -> Buddhists and Taoists (4729ms)
What is Hong Kong's population? migrant workers -3.4132326599835525 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a huge population of, migrant workers) -> migrant workers (4729ms)
What is Hong Kong's population? a dense urban setting -3.733093464963627 What 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)
What is Hong Kong's population? 7 million -3.7834664142295082 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (densely populated Hong Kong, has a population of, 7 million) -> 7 million (5514ms)
What is Hong Kong's population? seven million -3.7959926652976774 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, seven million) -> seven million (5514ms)
What is Hong Kong's population? more than 7.2 million -3.8382866562273303 What 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)
What is Hong Kong's population? 247,501 -3.8517823284885173 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population density of, 247,501) -> 247,501 (5513ms)
What is Hong Kong's population? 6,600,000 -3.8768680590193942 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,600,000) -> 6,600,000 (7187ms)
What is Hong Kong's population? 4.3 million -3.8792712090876766 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has an online population of, 4.3 million) -> 4.3 million (7187ms)
What is Hong Kong's population? 16,470 persons -3.8792712090876766 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population density of, 16,470 persons) -> 16,470 persons (7187ms)
What is Hong Kong's population? 6,571 people -3.8886213453901184 What 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)
What is Hong Kong's population? 4.2 million -3.9030012040524027 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, 4.2 million) -> 4.2 million (7203ms)
What is Hong Kong's population? 6,708,389 -3.930704379098734 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,708,389) -> 6,708,389 (7203ms)
What is Hong Kong's population? 6,900,000 -3.9333569910043185 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,900,000) -> 6,900,000 (7203ms)
What is Hong Kong's population? 5,674,114 -3.948323749802589 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, 5,674,114) -> 5,674,114 (7203ms)
What is Hong Kong's population? 6.7 million -3.958705685153616 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.7 million) -> 6.7 million (7728ms)
What is Hong Kong's population? six million -3.9924981020327692 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of approximately, six million) -> six million (7728ms)
What is Hong Kong's population? 6.80 million -3.9933327304933934 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a total population of, 6.80 million) -> 6.80 million (7747ms)
What is Hong Kong's population? 600,000 -4.002915584933689 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of about, 600,000) -> 600,000 (7747ms)
What is Hong Kong's population? 7.3 million -4.005632712264235 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 7.3 million) -> 7.3 million (7747ms)
What is Hong Kong's population? 7 million people -4.006595684616727 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 7 million people) -> 7 million people (7748ms)
What is Hong Kong's population? 6.9 million people -4.018909884211708 What 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)
What is Hong Kong's population? 6.78 million -4.030213851332105 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a total population of, 6.78 million) -> 6.78 million (7763ms)
What is Hong Kong's population? 5.6 million -4.034746664289231 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 5.6 million) -> 5.6 million (7763ms)
What is Hong Kong's population? 6 million people -4.047760720698213 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6 million people) -> 6 million people (7780ms)
What is Hong Kong's population? 6.9 million -4.055147783153183 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.9 million) -> 6.9 million (7780ms)
What is Hong Kong's population? 6,855,125 people -4.055147783153183 What 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)
What is Hong Kong's population? 6,970,000 -4.067526550875419 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of about, 6,970,000) -> 6,970,000 (7780ms)
What is Hong Kong's population? 524 200 -4.0783508392790235 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 524 200) -> 524 200 (7797ms)
What is Hong Kong's population? 324.200 -4.133608708758823 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 324.200) -> 324.200 (7798ms)
What is Hong Kong's population? pressing issue -4.140344249517652 What 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)
What is Hong Kong's population? 517 560 -4.154029020061056 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 517 560) -> 517 560 (7798ms)
What is Hong Kong's population? China -4.315190471670769 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (The Hong Kong SAR, has a small population compared to, China) -> China (7909ms)
What is Hong Kong's population? five -6.167012591177029 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, five) -> five (8017ms)
What is Hong Kong's population? bisexuals -6.27259058373416 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has the world 's largest population of, bisexuals) -> bisexuals (8018ms)
What is Hong Kong's population? priority -6.587573709789652 What 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)
What is Hong Kong's population? British Hong Kong -8.667684719445695 What 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)
What is Hong Kong's population? pearl-river -9.357771466839608 What 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)
What is Hong Kong's population? NEW -9.470626308374433 What 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)
What is Hong Kong's population? TV show -9.645305984172575 What 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)
What is Hong Kong's population? Southern China -9.665394305088327 What 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)
What is Hong Kong's population? CHina -9.740600770249662 What 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)
What is Hong Kong's population? Asian person -9.848516491286768 What 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)
What is Hong Kong's population? United Kingdom -9.924907076329044 What 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)
What is Hong Kong's population? Christopher Maltby -9.924907076329044 What 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)
What is Hong Kong's population? Takashi Sakai -9.924907076329044 What 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)
What is Hong Kong's population? the Executive Council -9.962249470918461 What 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)
What is Hong Kong's population? Empire of Japan -10.009182888076582 What 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)
What is Hong Kong's population? Mark Aitchison Young -10.011498474257646 What 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)
What is Hong Kong's population? a place -10.057824931190206 What 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)
What is Hong Kong's population? a doubt -10.092244054324075 What 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)
What is Hong Kong's population? hong kong -10.097769686703511 What 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)
What is Hong Kong's population? a never-ending commercial paradise -10.104875135928374 What 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)
What is Hong Kong's population? Asia -10.114370525529068 What 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)
What is Hong Kong's population? a major tourist attraction -10.202201473031334 What 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)
What is Hong Kong's population? a Special Administrative Region -10.263703059849515 What 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)
What is Hong Kong's population? a British dependency -10.264030743515262 What 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)
What is Hong Kong's population? Kowloon -10.372262028584716 What 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)
What is Hong Kong's population? an international city -10.375172713487439 What 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)
What is Hong Kong's population? growth mode -10.470001835396683 What 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)
What is Hong Kong's population? the Far East -10.484419575432893 What 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)
What is Hong Kong's population? Taiwan -10.51028758255226 What 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)
What is Hong Kong's population? Countries -10.63023906153041 What 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)
What is Hong Kong's population? Eastern Asia -10.646838324003594 What 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)
What is Hong Kong's population? hongkongs population -10.662644612757894 What 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)
What is Hong Kong's population? Canada -10.668414380153466 What 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)
What is Hong Kong's population? sleek skyscrapers -10.707790385775347 What 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)
What is Hong Kong's population? a popular place -10.7154184975818 What 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)
What is Hong Kong's population? 852 -10.847122795339468 What 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)
What is Hong Kong's population? the Consortium -10.90081270238112 What 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)
What is Hong Kong's population? HKD -10.9882019590087 What 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)
What is Hong Kong's population? Chinese -11.055887047484006 What 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)
What is Hong Kong's population? Asia-Pacific -11.058595974444177 What 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)
What is Hong Kong's population? great fun -11.146209509463123 What 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)
What is Hong Kong's population? out -11.16701116602286 What 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)
What is Hong Kong's population? SMS -11.169859413124028 What 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)
What is Hong Kong's population? a highly connected transport system -11.19896555272254 What 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)
What is Hong Kong's population? due -11.210525077113052 What 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)
What is Hong Kong's population? new -11.210525077113052 What 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)
What is Hong Kong's population? an efficient train network -11.211572780013793 What 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)
What is Hong Kong's population? a free market economy -11.3066739243943 What 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)
What is Hong Kong's population? HK Honey -11.324852209326572 What 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)
What is Hong Kong's population? so successful -11.324853232461848 What 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)
What is Hong Kong's population? Prof. -11.330546665148283 What 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)
What is Hong Kong's population? the Basic Law -11.355946855154546 What 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)
What is Hong Kong's population? the place -11.361147122707381 What 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)
What is Hong Kong's population? Hong Kongers -11.373835745512507 What 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)
What is Hong Kong's population? GOD -11.38035911265148 What 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)
What is Hong Kong's population? an average connection speed -11.421783424425099 What 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)
What is Hong Kong's population? Papua New Guinea -11.460318967193786 What 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)
What is Hong Kong's population? universal suffrage -11.463621324407768 What 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)
What is Hong Kong's population? Hong Kong Phooey -11.469137611528186 What 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)
What is Hong Kong's population? South Korea -11.484190205801907 What 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)
What is Hong Kong's population? a British territory -11.49956198580343 What 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)
What is Hong Kong's population? Hong Kong -11.50823627315965 What 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)
What is Hong Kong's population? a long coastline -11.537428988199569 What 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)
What is Hong Kong's population? the Model Law -11.53978121223451 What 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)
What is Hong Kong's population? an English colony -11.560140298952552 What 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)
What is Hong Kong's population? 14 million inhabitants -11.579720569834194 What 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)
What is Hong Kong's population? one such example -11.580541417816505 What 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)
What is Hong Kong's population? debenture-holders -11.588546940227717 What 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)
What is Hong Kong's population? an international financial center -11.640960260839462 What 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)
What is Hong Kong's population? ?Aid -11.647671346250249 What 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)
What is Hong Kong's population? where East meets West -11.648977333935655 What 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)
What is Hong Kong's population? 72 patients -11.660354532306773 What 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)
What is Hong Kong's population? way behind -11.673236839468814 What 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)
What is Hong Kong's population? one of the places -11.67583620389359 What 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)
What is Hong Kong's population? a highly externally-oriented economy -11.67583620389359 What 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)
What is Hong Kong's population? a pretty safe city -11.67583620389359 What 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)
What is Hong Kong's population? a global financial center -11.67583620389359 What 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)
What is Hong Kong's population? a paradigm of contradictions -11.684178081233089 What 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)
What is Hong Kong's population? Final Appeal -11.699873945093907 What 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)
What is Hong Kong's population? ?Finding Neverland -11.709892815824887 What 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)
What is Hong Kong's population? Lord Patten -11.724319386200547 What 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)
What is Hong Kong's population? simply dazzling -11.739708524555216 What 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)
What is Hong Kong's population? very international -11.740365624583736 What 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)
What is Hong Kong's population? a complete retail therapy course -11.745291927049909 What 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)
What is Hong Kong's population? a territory in perpetual re-invention -11.753804665229389 What 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)
What is Hong Kong's population? Masa -11.75956032926095 What 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)
What is Hong Kong's population? INFERNAL AFFAIRS -11.763673085234087 What 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)
What is Hong Kong's population? ALB -11.765348806736732 What 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)
What is Hong Kong's population? the skyscraper capital -11.771570292612573 What 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)
What is Hong Kong's population? the Hong Kong Museum -11.778230147139793 What 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)
What is Hong Kong's population? The World Factbook -11.79202477314168 What 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)
What is Hong Kong's population? North Carolina -11.792546752887716 What 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)
What is Hong Kong's population? Vtech -11.795472979719403 What 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)
What is Hong Kong's population? the Chinese American Museum -11.796533819779505 What 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)
What is Hong Kong's population? a powder keg ready to explode -11.81877838300922 What 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)
What is Hong Kong's population? a make -11.82188944012629 What 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)
What is Hong Kong's population? Hung Fat Fashions -11.824082363665678 What 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)
What is Hong Kong's population? a good example -11.832895110855018 What 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)
What is Hong Kong's population? H shares -11.843561048540273 What 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)
What is Hong Kong's population? IRC -11.847196666067074 What 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)
What is Hong Kong's population? Matthew Gearing -11.855007442052955 What 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)
What is Hong Kong's population? ABM -11.861627084263127 What 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)
What is Hong Kong's population? a very liveable city in many respects -11.87375614420754 What 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)
What is Hong Kong's population? emissions trading -11.874942596314682 What 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)
What is Hong Kong's population? Munich Airport -11.88098071756971 What 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)
What is Hong Kong's population? a new lease -11.884686583923326 What 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)
What is Hong Kong's population? a mini-constitution -11.90083534504955 What 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)
What is Hong Kong's population? Chinese parsley -11.9023921453674 What 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)
What is Hong Kong's population? a new experience -11.907024702559522 What 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)
What is Hong Kong's population? Fine Dining -11.910061715412018 What 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)
What is Hong Kong's population? ?The Gateway -11.910496932738948 What 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)
What is Hong Kong's population? one of Asias most popular travel spots -11.928897012616577 What 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)
What is Hong Kong's population? a Hong Kong resident -11.938130704911957 What 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)
What is Hong Kong's population? Liao Hui -11.950936739897257 What 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)
What is Hong Kong's population? Asia?s World City -11.952118788740693 What 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)
What is Hong Kong's population? ?Asia?s World City -11.952118788740693 What 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)
What is Hong Kong's population? the educational home -11.959477001168578 What 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)
What is Hong Kong's population? Discovery Bay -11.96899133119449 What 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)
What is Hong Kong's population? due regard -11.976774410427092 What 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)
What is Hong Kong's population? a cha chaan teng -11.979166505521157 What 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)
What is Hong Kong's population? ULI Asia-Pacific -11.982832539300125 What 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)
What is Hong Kong's population? the ' City -11.983001166270176 What 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)
What is Hong Kong's population? China ?s leadership -11.984693763957784 What 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)
What is Hong Kong's population? ?Luxury brands -11.990988205157503 What 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)
What is Hong Kong's population? an election -11.99168797413437 What 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)
What is Hong Kong's population? Europeans full access -12.006730818383442 What 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)
What is Hong Kong's population? an examiner -12.011075770342714 What 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)
What is Hong Kong's population? a special case -12.01163603173972 What 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)
What is Hong Kong's population? the Pearl River Delta -12.012403311245379 What 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)
What is Hong Kong's population? the US dollar -12.015483190414027 What 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)
What is Hong Kong's population? Singapore -12.033893586703096 What 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)
What is Hong Kong's population? girl service provider -12.039565682577013 What 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)
What is Hong Kong's population? the PROC -12.041517263270375 What 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)
What is Hong Kong's population? a busy city -12.046203146457689 What 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)
What is Hong Kong's population? DARKIE many years -12.059265770228743 What 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)
What is Hong Kong's population? Mrs. Palin -12.060080804056435 What 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)
What is Hong Kong's population? the U.N. Sanctions Regulation -12.060969627605974 What 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)
What is Hong Kong's population? ?the Eating Paradise? -12.065455180441008 What 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)
What is Hong Kong's population? Sa Sa -12.065455180441008 What 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)
What is Hong Kong's population? No. 1 economy freedom -12.068393664674328 What 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)
What is Hong Kong's population? the ?most thrilling city -12.070238864284592 What 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)
What is Hong Kong's population? Beijing -12.073911310862101 What 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)
What is Hong Kong's population? HTC -12.07989875488123 What 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)
What is Hong Kong's population? I?d -12.089433349628791 What 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)
What is Hong Kong's population? acupuncture treatments -12.094035417415734 What 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)
What is Hong Kong's population? an ?international city ? -12.102134564469685 What 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)
What is Hong Kong's population? Above Second -12.103129520540243 What 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)
What is Hong Kong's population? city -12.105538103546301 What 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)
What is Hong Kong's population? country -12.105538103546301 What 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)
What is Hong Kong's population? Bangkok -12.107804093299357 What 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)
What is Hong Kong's population? New York -12.110698078512403 What 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)
What is Hong Kong's population? freedom of religion -12.117491940883667 What 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)
What is Hong Kong's population? a humid subtropical climate -12.121600228497437 What 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)
What is Hong Kong's population? the USA flyers -12.13918206393155 What 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)
What is Hong Kong's population? a first mover advantage -12.147963433372087 What 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)
What is Hong Kong's population? a comprehensive arbitration law -12.156476171551567 What 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)
What is Hong Kong's population? one active international airport -12.156476171551567 What 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)
What is Hong Kong's population? a high degree of autonomy -12.16856191157753 What 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)
What is Hong Kong's population? the transit point ? -12.172072244515723 What 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)
What is Hong Kong's population? an established system of rights -12.188963030441482 What 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)
What is Hong Kong's population? a staggering range of international restaurants -12.216451911040641 What 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)
What is Hong Kong's population? the south east coast -12.222044234542706 What 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)
What is Hong Kong's population? home to more than 7 million people -12.231437661934148 What 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)
What is Hong Kong's population? a salaries tax on all employment income -12.240013808697064 What 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)
What is Hong Kong's population? the south end -12.251585453830764 What 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)
What is Hong Kong's population? the jurisdiction -12.30345318810423 What 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)
What is Hong Kong's population? the southern coast -12.308695608598363 What 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)
What is Hong Kong's population? a British colony for more than 150 years -12.31343740030112 What 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)
What is Hong Kong's population? the China -12.424876554613762 What 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)
What is Hong Kong's population? yet -12.454903264077654 What 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)
What is Hong Kong's population? more than 11,000 restaurants -12.549033632332304 What 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)
What is Hong Kong's population? asia -12.564995107846539 What 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)
What is Hong Kong's population? a tropical climate -12.574288924901875 What 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)
What is Hong Kong's population? much to offer -12.593738563183145 What 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)
What is Hong Kong's population? a competitive advantage -12.594690043765828 What 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)
What is Hong Kong's population? a free market -12.594690043765828 What 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)
What is Hong Kong's population? a fertility rate of 0.95 children per woman -12.652991580780034 What 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)
What is Hong Kong's population? a problem -12.656356892523538 What 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)
What is Hong Kong's population? a government -12.702460381482483 What 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)
What is Hong Kong's population? so much to offer -12.702474679959302 What 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)
What is Hong Kong's population? one of the worlds -12.725423845131479 What 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)
What is Hong Kong's population? a long way to go -12.737509585157444 What 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)
What is Hong Kong's population? two official languages -12.74171667638166 What 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)
What is Hong Kong's population? any such prospect -12.74171667638166 What 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)
What is Hong Kong's population? a lot to offer -12.745824963995432 What 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)
What is Hong Kong's population? two licensed terrestrial broadcasters -12.760299788185609 What 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)
What is Hong Kong's population? a strong services sector -12.760299788185609 What 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)
What is Hong Kong's population? a lot of advantages -12.78070090704956 What 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)
What is Hong Kong's population? a myriad of problems -12.78070090704956 What 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)
What is Hong Kong's population? two broadcast television stations -12.78070090704956 What 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)
What is Hong Kong's population? a high market transparency -12.78070090704956 What 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)
What is Hong Kong's population? a lot of land -12.78070090704956 What 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)
What is Hong Kong's population? a population of close -12.78070090704956 What 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)
What is Hong Kong's population? a very bright future -12.78070090704956 What 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)
What is Hong Kong's population? a small domestic market -12.78070090704956 What 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)
What is Hong Kong's population? hot , humid summers -12.78070090704956 What 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)
What is Hong Kong's population? a very strong economy -12.78070090704956 What 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)
What is Hong Kong's population? a low crime rate -12.78070090704956 What 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)
What is Hong Kong's population? a relatively free economy -12.78070090704956 What 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)
What is Hong Kong's population? a highly developed transportation system -12.804675027759997 What 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)
What is Hong Kong's population? world-class hospitals providing outstanding care -12.813187765939476 What 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)
What is Hong Kong's population? a unitary system of government -12.813187765939476 What 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)
What is Hong Kong's population? an excellent public transportation systems -12.813187765939476 What 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)
What is Hong Kong's population? an impressive record of openness -12.813187765939476 What 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)
What is Hong Kong's population? an edge in its proximity to China -12.827779834433539 What 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)
What is Hong Kong's population? a subtropical climate with distinct seasons -12.840676646538636 What 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)
What is Hong Kong's population? contradictions -12.855307213165158 What 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)
What is Hong Kong's population? one of the freest press in the world -12.864238544195057 What 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)
What is Hong Kong's population? one of the world 's most liberal economies -12.86425773663334 What 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)
What is Hong Kong's population? one of the lowest fertility rates in the world -12.88465885549729 What 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)
What is Hong Kong's population? the most active market -12.885613657377721 What 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)
What is Hong Kong's population? low taxes -12.975596676502565 What 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)
What is Hong Kong's population? travelers -12.994937545868169 What 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)
What is Hong Kong's population? 1,755 cases -13.086626744123855 What 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)
What is Hong Kong's population? it especially rough -13.092832596351231 What 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)
What is Hong Kong's population? 166,960 public servants -13.134274137162398 What 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)
What is Hong Kong's population? a subtropical climate -13.137935347250746 What 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)
What is Hong Kong's population? wealthy -13.150294296781102 What 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)
What is Hong Kong's population? integral -13.15886520690638 What 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)
What is Hong Kong's population? one operational 3G network -13.174052538711749 What 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)
What is Hong Kong's population? the best Chinese food you?ll -13.177351291538557 What 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)
What is Hong Kong's population? a population of 7 million -13.185344107856261 What 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)
What is Hong Kong's population? an unemployment rate of 5.30 % -13.187130618360428 What 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)
What is Hong Kong's population? a free press -13.190000922220388 What 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)
What is Hong Kong's population? a population of 7 million people -13.198358164265244 What 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)
What is Hong Kong's population? a competitive edge -13.198513660399868 What 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)
What is Hong Kong's population? a long history -13.198513660399868 What 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)
What is Hong Kong's population? a population of 7.3 million -13.205745226720213 What 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)
What is Hong Kong's population? a bright future -13.207378405022846 What 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)
What is Hong Kong's population? a maximum average tax rate of 16 percent -13.277216316278027 What 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)
What is Hong Kong's population? the place to do it -13.510441985612633 What 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)
What is Hong Kong's population? the preferred choice for enterprises -13.587806854211513 What 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)
What is Hong Kong's population? the Mainland -13.732149837230562 What 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)
What is Hong Kong's population? the first free wine port among major economies -13.734481009638555 What 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)
What is Hong Kong's population? busy -13.788993856469272 What 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)
What is Hong Kong's population? successful -13.809394975333225 What 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)
What is Hong Kong's population? flat -13.809394975333225 What 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)
What is Hong Kong's population? cheap -13.809394975333225 What 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)
What is Hong Kong's population? easy -13.809394975333225 What 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)
What is Hong Kong's population? substantially -13.809394975333225 What 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)
What is Hong Kong's population? the world 's 11th largest trading economy -14.06543985091627 What 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)
What is Hong Kong's population? the edge -14.122340922646416 What 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)
What is Hong Kong's population? the sub-tropical climate -14.52961537640484 What 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)
What is Hong Kong's population? the best food -14.575718865363784 What 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)
What is Hong Kong's population? the same problem -14.575718865363784 What 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)
What is Hong Kong's population? the highest population density in the world -14.666166097341279 What 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)
What is Hong Kong's population? the highest rate of East Asian immigration -14.686704358936206 What 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)
What is Hong Kong's population? eight -15.116115120674674 What 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)
Who is the Greek God of the Sea? Pomona Poseidon Poseidon -0.18047137592024765 Who 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)
Who is the Greek God of the Sea? Neptune -0.3805383817533097 Who 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)
Who is the Greek God of the Sea? Poseidon -0.614450720859155 Who 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)
Who is the Greek God of the Sea? Kellan Lutz -1.905491176801383 Who 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)
Who is the Greek God of the Sea? Okeanos -5.33197342873326 Who 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)
Who is the Greek God of the Sea? Proteus -5.366027520221086 Who 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)
Who is the Greek God of the Sea? Neptune Neptune -6.787487962520158 Who 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)
Who is the Greek God of the Sea? Poseidon Poseidon -6.839138177145009 Who 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)
Who is the Greek God of the Sea? ?Nereus -7.258154385665298 Who 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)
Who is the Greek God of the Sea? Hea -7.49525399871042 Who 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)
Who is the Greek God of the Sea? Tyr -7.497022424214908 Who 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)
Who is the Greek God of the Sea? ? Tangaroa? -7.527899284478476 Who 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)
Who is the Greek God of the Sea? Zeus -7.555759177486731 Who 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)
Who is the Greek God of the Sea? Lyr -7.621694287838374 Who 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)
Who is the Greek God of the Sea? Shells from the Greek seas -7.623594729969654 Who 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)
Who is the Greek God of the Sea? Greek and Roman mythology -7.683021996544278 Who 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)
Who is the Greek God of the Sea? Mythology Neptune -7.788789013223673 Who 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)
Who is the Greek God of the Sea? God -7.858118605264256 Who 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)
Who is the Greek God of the Sea? Poseidon Poseidon Poseidon -7.9200768427628985 Who 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)
Who is the Greek God of the Sea? AEGIR Aegir -7.95964080594113 Who 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)
Who is the Greek God of the Sea? Minos -7.974058962966281 Who 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)
Who is the Greek God of the Sea? NEPTUNE Neptune -8.005744294900076 Who 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)
Who is the Greek God of the Sea? Aegir Aegir -8.063350638677289 Who 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)
Who is the Greek God of the Sea? GREEKS AT SEA - PIRAEUS -8.078410754428475 Who 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)
Who is the Greek God of the Sea? The Greeks and the Black Sea : from the Bronze Age to the early twentieth century -8.116027117353642 Who 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)
Who is the Greek God of the Sea? Euripides Hippolytos -8.17870518695875 Who 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)
Who is the Greek God of the Sea? Yamm -8.189774636928632 Who 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)
Who is the Greek God of the Sea? Apostolos Valerianos -8.19878494930344 Who 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)
Who is the Greek God of the Sea? Roman mythology Neptune -8.21496497605214 Who 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)
Who is the Greek God of the Sea? Agwe -8.226910992797638 Who 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)
Who is the Greek God of the Sea? Nikolaos Sifounakis -8.229483670304948 Who 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)
Who is the Greek God of the Sea? a magician -8.235492140989582 Who 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)
Who is the Greek God of the Sea? Ea or Hea -8.27495337239613 Who 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)
Who is the Greek God of the Sea? Pontus kingdom Poseidon Poseidon -8.330165866186954 Who 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)
Who is the Greek God of the Sea? Llyr -8.330392370975893 Who 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)
Who is the Greek God of the Sea? Gerasimos Andreas -8.345780461249745 Who 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)
Who is the Greek God of the Sea? Greek mythology Poseidon -8.362325680999778 Who 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)
Who is the Greek God of the Sea? Agios Georgios -8.386621083854212 Who 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)
Who is the Greek God of the Sea? The Greeks and the Sea (Hellenism : Ancient, Mediaeval, Modern, No18) -8.407897138741696 Who 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)
Who is the Greek God of the Sea? Norse mythology Aegir -8.422976998579907 Who 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)
Who is the Greek God of the Sea? Size Poseidon -8.435722274814097 Who 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)
Who is the Greek God of the Sea? Mannan mac Lyr -8.499017977715521 Who 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)
Who is the Greek God of the Sea? AMPHITRITE -8.514607060161943 Who 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)
Who is the Greek God of the Sea? HAON -8.645120008236717 Who 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)
Who is the Greek God of the Sea? Tangaroa -8.667991825884245 Who 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)
Who is the Greek God of the Sea? Mazu -8.71005375588376 Who 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)
Who is the Greek God of the Sea? Vesta -8.763179046671173 Who 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)
Who is the Greek God of the Sea? Kanaloa -8.78623277744071 Who 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)
Who is the Greek God of the Sea? Eastern Sedna -8.862790509179801 Who 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)
Who is the Greek God of the Sea? Visited Mythology Neptune -8.874666169239402 Who 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)
Who is the Greek God of the Sea? Cos -8.903374202665823 Who 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)
Who is the Greek God of the Sea? Neptune / Poseidon -8.92475044083075 Who 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)
Who is the Greek God of the Sea? Ma-cho -9.056488011294043 Who 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)
Who is the Greek God of the Sea? wife -9.073671468206197 Who 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)
Who is the Greek God of the Sea? Finnish mythology Vellamo -9.099302336531107 Who 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)
Who is the Greek God of the Sea? Billy Joe Leck -9.10304766897683 Who 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)
Who is the Greek God of the Sea? the Greek Poseidon -9.12588475661767 Who 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)
Who is the Greek God of the Sea? rel=shortlink Matzu -9.145581429690228 Who 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)
Who is the Greek God of the Sea? Iemanj ? -9.176292122897369 Who 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)
Who is the Greek God of the Sea? Triton -9.227465132456851 Who 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)
Who is the Greek God of the Sea? Ionian Sea -9.234994295852795 Who 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)
Who is the Greek God of the Sea? justice -9.266191702612462 Who 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)
Who is the Greek God of the Sea? Dylan -9.305604731882251 Who 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)
Who is the Greek God of the Sea? worshiped Poseidon -9.309752274913897 Who 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)
Who is the Greek God of the Sea? Greek mythology -9.326041756531401 Who 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)
Who is the Greek God of the Sea? Lir -9.330278509254592 Who 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)
Who is the Greek God of the Sea? ?Dt 4:19.20 Yam -9.341871829714005 Who 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)
Who is the Greek God of the Sea? Njord -9.348563674327517 Who 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)
Who is the Greek God of the Sea? Aegir -9.354688463710232 Who 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)
Who is the Greek God of the Sea? Triton's namesake -9.377936474968426 Who 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)
Who is the Greek God of the Sea? the Greek god Poseidon -9.388197781061304 Who 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)
Who is the Greek God of the Sea? Njordur -9.395426133310881 Who 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)
Who is the Greek God of the Sea? Athena and Poseidon -9.407212851583646 Who 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)
Who is the Greek God of the Sea? POSEIDON -9.411970309893334 Who 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)
Who is the Greek God of the Sea? Arki -9.413518300133342 Who 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)
Who is the Greek God of the Sea? Nereus -9.427376916281839 Who 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)
Who is the Greek God of the Sea? Susanoo -9.565629847420027 Who 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)
Who is the Greek God of the Sea? Ulysse Nardin -9.58256411563212 Who 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)
Who is the Greek God of the Sea? Teos -9.617347205219636 Who 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)
Who is the Greek God of the Sea? Richard Lewis -9.787925515397172 Who 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)
Who is the Greek God of the Sea? Peter Carey -9.798013692572892 Who 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)
Who is the Greek God of the Sea? Yemaya -9.80160856347016 Who 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)
Who is the Greek God of the Sea? the most feared Gods -9.836441574860359 Who 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)
Who is the Greek God of the Sea? Iemanj? -9.839867664432656 Who 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)
Who is the Greek God of the Sea? Yemaja -9.843985469618488 Who 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)
Who is the Greek God of the Sea? Mannanan -9.849120330813967 Who 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)
Who is the Greek God of the Sea? the behemothic squid -9.866759463741706 Who 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)
Who is the Greek God of the Sea? Tiamat -9.893565108634693 Who 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)
Who is the Greek God of the Sea? William Cowper -10.0229608888539 Who 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)
Who is the Greek God of the Sea? Manannan mac Lir -10.031437587081639 Who 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)
Who is the Greek God of the Sea? Aquaman Aquaman -10.081404432725598 Who 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)
Who is the Greek God of the Sea? Yemay? -10.08764182657144 Who 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)
Who is the Greek God of the Sea? ?gir -10.092619006510578 Who 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)
Who is the Greek God of the Sea? Neraeos -10.14122369843017 Who 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)
Who is the Greek God of the Sea? a sailor -10.159202814289632 Who 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)
Who is the Greek God of the Sea? King Neptune -10.162755023251696 Who 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)
Who is the Greek God of the Sea? tsipoura -10.168047399245912 Who 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)
Who is the Greek God of the Sea? Dewa Baruna -10.18315614211565 Who 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)
Who is the Greek God of the Sea? Namakaokahai -10.187099913938969 Who 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)
Who is the Greek God of the Sea? Conon -10.222714980221182 Who 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)
Who is the Greek God of the Sea? Krisi Davis -10.259480901517271 Who 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)
Who is the Greek God of the Sea? killer whales -10.270090859461783 Who 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)
Who is the Greek God of the Sea? Halcyone -10.337905486718395 Who 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)
Who is the Greek God of the Sea? Xar?tenga -10.351168440841729 Who 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)
Who is the Greek God of the Sea? Matsu -10.387230773103408 Who 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)
Who is the Greek God of the Sea? Lefkada -10.40584188088238 Who 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)
Who is the Greek God of the Sea? Dodecanese -10.40584188088238 Who 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)
Who is the Greek God of the Sea? Hilton Alves -10.415887742025806 Who 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)
Who is the Greek God of the Sea? Vellamo -10.425833298968152 Who 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)
Who is the Greek God of the Sea? experience -10.4460536832146 Who 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)
Who is the Greek God of the Sea? Barbara Kreiger -10.44675915853297 Who 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)
Who is the Greek God of the Sea? Alcyone -10.474464183456003 Who 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)
Who is the Greek God of the Sea? The Pliosaur -10.47859679814171 Who 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)
Who is the Greek God of the Sea? Olbia -10.488308522679858 Who 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)
Who is the Greek God of the Sea? Glaucus -10.49326300563401 Who 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)
Who is the Greek God of the Sea? Varuna -10.502382255831195 Who 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)
Who is the Greek God of the Sea? Lynne Griffin -10.530739043506937 Who 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)
Who is the Greek God of the Sea? Olokun -10.531956947654283 Who 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)
Who is the Greek God of the Sea? Taiwanese 14 May 07 Matzu -10.552728276243645 Who 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)
Who is the Greek God of the Sea? bell-bottoms -10.563770752668889 Who 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)
Who is the Greek God of the Sea? Horst Kleinschmidt -10.567196174840785 Who 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)
Who is the Greek God of the Sea? Neptunus -10.578060436613228 Who 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)
Who is the Greek God of the Sea? Peter Flint -10.582162986341348 Who 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)
Who is the Greek God of the Sea? 14 May 07 Matzu -10.59504572172963 Who 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)
Who is the Greek God of the Sea? Decapolis -10.620255149555824 Who 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)
Who is the Greek God of the Sea? Thalassa -10.653329655456478 Who 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)
Who is the Greek God of the Sea? Delos -10.653329655456478 Who 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)
Who is the Greek God of the Sea? Lemnos -10.673858466724184 Who 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)
Who is the Greek God of the Sea? Chios -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Miletus -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Chidos -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Phocaea -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Halicarnassus -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Smyrna -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Mytilene -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Ephesus -10.692137427766152 Who 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)
Who is the Greek God of the Sea? Syros -10.69822361089162 Who 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)
Who is the Greek God of the Sea? Svokos -10.69822361089162 Who 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)
Who is the Greek God of the Sea? Takis -10.69822361089162 Who 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)
Who is the Greek God of the Sea? Kraken -10.69822361089162 Who 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)
Who is the Greek God of the Sea? The Devil -10.720727730139764 Who 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)
Who is the Greek God of the Sea? Blaquiere -10.721155511284502 Who 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)
Who is the Greek God of the Sea? disabled several -10.726512014589083 Who 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)
Who is the Greek God of the Sea? the Blessed -10.74148940319209 Who 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)
Who is the Greek God of the Sea? The Romans -10.742768085551397 Who 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)
Who is the Greek God of the Sea? Samut Sakhon -10.758876127590781 Who 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)
Who is the Greek God of the Sea? northern Europe -10.762953834020466 Who 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)
Who is the Greek God of the Sea? The Selkie -10.773779599335391 Who 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)
Who is the Greek God of the Sea? The Kingfisher -10.783744366546735 Who 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)
Who is the Greek God of the Sea? The British -10.817989499115464 Who 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)
Who is the Greek God of the Sea? Nerissa -10.818175089869772 Who 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)
Who is the Greek God of the Sea? Man -10.84010039787262 Who 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)
Who is the Greek God of the Sea? Blue whales -10.84479202427764 Who 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)
Who is the Greek God of the Sea? Bob -10.853573947012142 Who 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)
Who is the Greek God of the Sea? Greek mythology Thalassa -10.858452690564318 Who 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)
Who is the Greek God of the Sea? Larus -10.865298885182618 Who 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)
Who is the Greek God of the Sea? aggressive warfare -10.907342349335806 Who 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)
Who is the Greek God of the Sea? ?Bluefin -10.931984451060725 Who 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)
Who is the Greek God of the Sea? The Essenes -10.933247409634337 Who 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)
Who is the Greek God of the Sea? the Moros -10.940489040350313 Who 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)
Who is the Greek God of the Sea? Marine research -10.947673872140982 Who 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)
Who is the Greek God of the Sea? The Dutch -10.94997351804469 Who 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)
Who is the Greek God of the Sea? Ian -10.951034523681889 Who 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)
Who is the Greek God of the Sea? The English -10.957931301059148 Who 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)
Who is the Greek God of the Sea? the Dutch -10.96813779909506 Who 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)
Who is the Greek God of the Sea? The Minipirates -10.972078494285872 Who 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)
Who is the Greek God of the Sea? Cape Cod -10.987166902530225 Who 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)
Who is the Greek God of the Sea? final refuge -10.994165407713808 Who 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)
Who is the Greek God of the Sea? the Athenians -10.995938339123526 Who 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)
Who is the Greek God of the Sea? Ron -11.025725473306037 Who 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)
Who is the Greek God of the Sea? Sedna -11.030151960723668 Who 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)
Who is the Greek God of the Sea? the Milesians -11.040895355839693 Who 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)
Who is the Greek God of the Sea? Amphitrite -11.08542902264175 Who 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)
Who is the Greek God of the Sea? the Vikings -11.093455290427228 Who 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)
Who is the Greek God of the Sea? the English -11.099580079809943 Who 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)
Who is the Greek God of the Sea? Ireon -11.105015583078394 Who 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)
Who is the Greek God of the Sea? Ea-Oannes -11.107468956196234 Who 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)
Who is the Greek God of the Sea? Nereid -11.119041734354921 Who 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)
Who is the Greek God of the Sea? Manannan -11.139251964770942 Who 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)
Who is the Greek God of the Sea? the Druchii -11.14473873411837 Who 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)
Who is the Greek God of the Sea? Corinth -11.148041657059686 Who 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)
Who is the Greek God of the Sea? Posiedon -11.18188405324727 Who 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)
Who is the Greek God of the Sea? Frey -11.182789099240669 Who 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)
Who is the Greek God of the Sea? Mananan -11.202285172111223 Who 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)
Who is the Greek God of the Sea? Brahadair -11.202285172111223 Who 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)
Who is the Greek God of the Sea? Basque -11.202285172111223 Who 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)
Who is the Greek God of the Sea? Liranan -11.202285172111223 Who 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)
Who is the Greek God of the Sea? Posideon -11.202285172111223 Who 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)
Who is the Greek God of the Sea? chemical waste -11.203479131535149 Who 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)
Who is the Greek God of the Sea? the Law -11.203518855105093 Who 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)
Who is the Greek God of the Sea? The Persian Goddess Atargatis -11.21306864776999 Who 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)
Who is the Greek God of the Sea? the Sultan -11.2157131535398 Who 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)
Who is the Greek God of the Sea? the Romans -11.236933890677593 Who 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)
Who is the Greek God of the Sea? whose sons -11.29593613683365 Who 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)
Who is the Greek God of the Sea? Pisces -11.30503252847743 Who 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)
Who is the Greek God of the Sea? course -11.307100886643116 Who 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)
Who is the Greek God of the Sea? Water Bound -11.318921404737852 Who 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)
Who is the Greek God of the Sea? the Tsunami -11.34304410245076 Who 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)
Who is the Greek God of the Sea? Dant?s -11.3588842884696 Who 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)
Who is the Greek God of the Sea? Halioti?s -11.36603147640033 Who 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)
Who is the Greek God of the Sea? ?the masses -11.380433045479773 Who 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)
Who is the Greek God of the Sea? St . Vincent -11.385609004410313 Who 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)
Who is the Greek God of the Sea? Atlantic Bluefin Tuna Bluefin -11.385648520230738 Who 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)
Who is the Greek God of the Sea? the Abyss -11.388064350710888 Who 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)
Who is the Greek God of the Sea? Lagoona Blue -11.391883924763608 Who 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)
Who is the Greek God of the Sea? Odysseus -11.403739649795723 Who 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)
Who is the Greek God of the Sea? Nick Band -11.415165535279678 Who 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)
Who is the Greek God of the Sea? Ellora?s Cave -11.438535657229263 Who 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)
Who is the Greek God of the Sea? the Chinese fleet -11.44042929911043 Who 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)
Who is the Greek God of the Sea? fresh blue crab -11.459315726199721 Who 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)
Who is the Greek God of the Sea? The Mackeral Shark -11.459784410745558 Who 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)
Who is the Greek God of the Sea? Dragon King -11.471758602904924 Who 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)
Who is the Greek God of the Sea? The Great Lord Hawke -11.488603363678022 Who 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)
Who is the Greek God of the Sea? the Royal Navy -11.489944369999378 Who 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)
Who is the Greek God of the Sea? rich nutrients -11.49285083629496 Who 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)
Who is the Greek God of the Sea? the Portuguese -11.494670513784921 Who 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)
Who is the Greek God of the Sea? the Lapis Dragon -11.503158135255891 Who 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)
Who is the Greek God of the Sea? Rolla-Mano -11.510017492212476 Who 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)
Who is the Greek God of the Sea? The U.S. Navy -11.520766099279438 Who 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)
Who is the Greek God of the Sea? We?ll -11.529286465057016 Who 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)
Who is the Greek God of the Sea? iron -11.536107539369738 Who 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)
Who is the Greek God of the Sea? The Otodus obliquus shark -11.539670212478631 Who 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)
Who is the Greek God of the Sea? Leisure Hotel Cochin -11.546514107623286 Who 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)
Who is the Greek God of the Sea? 4 Servings Salmon -11.58175568300835 Who 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)
Who is the Greek God of the Sea? Block Island Chris Warfel -11.59167229097859 Who 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)
Who is the Greek God of the Sea? the Tsunami? -11.59798117858127 Who 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)
Who is the Greek God of the Sea? the Ocean King -11.601589531949108 Who 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)
Who is the Greek God of the Sea? out -11.612135306039601 Who 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)
Who is the Greek God of the Sea? The god Poseidon -11.616150564336188 Who 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)
Who is the Greek God of the Sea? the Atlantic bluefin tuna -11.616998163000295 Who 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)
Who is the Greek God of the Sea? the Clan -11.622026303367663 Who 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)
Who is the Greek God of the Sea? Thomas N. Graves -11.635138921751665 Who 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)
Who is the Greek God of the Sea? New South Wales -11.638554074797229 Who 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)
Who is the Greek God of the Sea? Funding -11.649039589113247 Who 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)
Who is the Greek God of the Sea? marine waters -11.654575295221893 Who 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)
Who is the Greek God of the Sea? music -11.657234781033745 Who 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)
Who is the Greek God of the Sea? multiple messiahs -11.658490668920447 Who 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)
Who is the Greek God of the Sea? Lida Pet-Soede -11.661664829998331 Who 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)
Who is the Greek God of the Sea? King Triton -11.663082469865225 Who 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)
Who is the Greek God of the Sea? McCormick and Schmick -11.675862138282529 Who 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)
Who is the Greek God of the Sea? The Cetusidae family -11.689362808160077 Who 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)
Who is the Greek God of the Sea? A Liquid Mirror Light -11.693546077113641 Who 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)
Who is the Greek God of the Sea? Origin Davy Jones -11.693546077113641 Who 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)
Who is the Greek God of the Sea? carbon cycling -11.702871840875003 Who 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)
Who is the Greek God of the Sea? the British -11.76985076653084 Who 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)
Who is the Greek God of the Sea? Eva -11.775216242427925 Who 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)
Who is the Greek God of the Sea? A Purifying Mud Mask -11.784035151632503 Who 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)
Who is the Greek God of the Sea? the Tsunami ? -11.798173715412918 Who 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)
Who is the Greek God of the Sea? The Egyptians -11.804848760037457 Who 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)
Who is the Greek God of the Sea? NSW forces -11.806823632800121 Who 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)
Who is the Greek God of the Sea? PG-13 Bill -11.811722359544508 Who 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)
Who is the Greek God of the Sea? The Captain & the yacht Nick Band -11.825492703989607 Who 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)
Who is the Greek God of the Sea? Baveras -11.82660645014344 Who 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)
Who is the Greek God of the Sea? Eardil -11.84072704652266 Who 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)
Who is the Greek God of the Sea? the Makah Tribe -11.841245686133693 Who 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)
Who is the Greek God of the Sea? Osse -11.843541854138525 Who 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)
Who is the Greek God of the Sea? John Oysterman -11.844442789210682 Who 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)
Who is the Greek God of the Sea? Asherah -11.857928831192233 Who 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)
Who is the Greek God of the Sea? Sharks -11.87257332313647 Who 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)
Who is the Greek God of the Sea? Iris -11.875939627115862 Who 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)
Who is the Greek God of the Sea? the Chinese Fleet -11.8792661757015 Who 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)
Who is the Greek God of the Sea? AIDA Cruises -11.899858243578354 Who 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)
Who is the Greek God of the Sea? ?Jack -11.906457616165707 Who 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)
Who is the Greek God of the Sea? Pell -11.946307601917148 Who 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)
Who is the Greek God of the Sea? Thetis -11.957136936115397 Who 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)
Who is the Greek God of the Sea? 20m and -11.957736488714701 Who 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)
Who is the Greek God of the Sea? reality -11.972421386915595 Who 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)
Who is the Greek God of the Sea? England -11.983753909027733 Who 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)
Who is the Greek God of the Sea? the Essenes -11.984264035204285 Who 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)
Who is the Greek God of the Sea? noise -11.992980272871694 Who 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)
Who is the Greek God of the Sea? daughter -12.010902823097496 Who 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)
Who is the Greek God of the Sea? the Mabinogian -12.027102450306852 Who 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)
Who is the Greek God of the Sea? the 'salvation ' -12.029842583685303 Who 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)
Who is the Greek God of the Sea? storm-water -12.063338866948314 Who 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)
Who is the Greek God of the Sea? Varunan -12.071290045970397 Who 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)
Who is the Greek God of the Sea? the Israelites -12.072414552017872 Who 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)
Who is the Greek God of the Sea? the ancient Greeks -12.085333599784022 Who 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)
Who is the Greek God of the Sea? Bluefin -12.1563819199218 Who 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)
Who is the Greek God of the Sea? the Kenai Peninsula -12.166836055588767 Who 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)
Who is the Greek God of the Sea? The project -12.193904980060022 Who 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)
Who is the Greek God of the Sea? nutrients -12.24469088603992 Who 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)
Who is the Greek God of the Sea? Dragon -12.339260179316094 Who 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)
Who is the Greek God of the Sea? Gojun -12.45188193559856 Who 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)
Who is the Greek God of the Sea? help -12.48305003728358 Who 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)
Who is the Greek God of the Sea? Brizo -12.524380805020371 Who 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)
Who is the Greek God of the Sea? the dolphin -12.539249002803068 Who 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)
Who is the Greek God of the Sea? Nsambakalunga -12.644891139879528 Who 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)
Who is the Greek God of the Sea? Arnemetia -12.66529225874348 Who 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)
Who is the Greek God of the Sea? Melanie -12.679767082933656 Who 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)
Who is the Greek God of the Sea? Enderalath -12.705529458318791 Who 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)
Who is the Greek God of the Sea? the shark -12.792775208767676 Who 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)
Who is the Greek God of the Sea? the island -12.83724637206215 Who 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)
Who is the Greek God of the Sea? date -12.859339139338882 Who 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)
Who is the Greek God of the Sea? the trash -13.003395825737789 Who 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)
Who is the Greek God of the Sea? the largest creatures -13.07854586409309 Who 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)
Who is the Greek God of the Sea? Council -13.139916803708616 Who 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)
Who is the Greek God of the Sea? the depths -13.170015023169373 Who 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)
Who is the Greek God of the Sea? The herring -13.538000675994352 Who 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)
Who is the Greek God of the Sea? 2007 -13.541888794143532 Who 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)
Who is the Greek God of the Sea? the reef -13.588832188756747 Who 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)
Who developed the Macintosh computer? Jobs -0.9756311819891174 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (Jobs, develop, the Macintosh computer) -> Jobs (2936ms)
Who developed the Macintosh computer? the unit -1.5798179113116868 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (the unit, developed, the Macintosh computer) -> the unit (2936ms)
Who developed the Macintosh computer? The program -2.5495523308678885 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (The program, was developed for, the Macintosh computer) -> The program (2935ms)
Who developed the Macintosh computer? 1984 -2.7193453386362987 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (1984, developed to run on, the Macintosh computer) -> 1984 (2935ms)
Who developed the Macintosh computer? PageMaker -2.905577179344494 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (PageMaker, was developed for, Macintosh computers) -> PageMaker (5190ms)
Who developed the Macintosh computer? Apple -2.9580235425397765 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (Apple, developing, the Macintosh computer) -> Apple (2936ms)
Who developed the Macintosh computer? a new program Aldus -3.7685602153804236 Who 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)
Who developed the Macintosh computer? image -4.254846071049126 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (image, was developed on, Macintosh computer) -> image (5204ms)
Who developed the Macintosh computer? Later versions -4.289430149165785 Who 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)
Who developed the Macintosh computer? a network protocol -4.3596485851052 Who 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)
Who developed the Macintosh computer? Company -4.369064704207156 Who 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)
Who developed the Macintosh computer? Animal stack -4.9186039552602105 Who 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)
Who developed the Macintosh computer? Steve Jobs -8.986646420721645 Who 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)
Who developed the Macintosh computer? CAD users -9.588345930965579 Who 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)
Who developed the Macintosh computer? Acrobat Reader -10.192891849886866 Who 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)
Who developed the Macintosh computer? Release Forms -10.81454275943067 Who 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)
Who developed the Macintosh computer? Steve -11.163759803711706 Who 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)
Who developed the Macintosh computer? the Aldus PageMaker -11.178838074686931 Who 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)
Who developed the Macintosh computer? architects and CAD users -11.210898529778497 Who 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)
Who developed the Macintosh computer? Kawasaki -11.244380824250793 Who 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)
Who developed the Macintosh computer? GameTap -11.289620865156996 Who 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)
Who developed the Macintosh computer? FileMaker -11.351985688810284 Who 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)
Who developed the Macintosh computer? tool -11.58822734236522 Who 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)
Who developed the Macintosh computer? Bart -11.59629122296775 Who 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)
Who developed the Macintosh computer? IronKey drives -11.703734180340414 Who 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)
Who developed the Macintosh computer? Zune players -11.737025875554796 Who 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)
Who developed the Macintosh computer? a file -11.750428542015474 Who 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)
Who developed the Macintosh computer? FriendBlasterPro -11.773898632713841 Who 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)
Who developed the Macintosh computer? few -11.782713042357624 Who 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)
Who developed the Macintosh computer? a guy -11.848821380651971 Who 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)
Who developed the Macintosh computer? The POV.1.5 -11.859291380050443 Who 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)
Who developed the Macintosh computer? MacGenogram -11.863103313626873 Who 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)
Who developed the Macintosh computer? Simple WindowSets -11.878214195251395 Who 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)
Who developed the Macintosh computer? Windows-compatible PCs -11.89124868980571 Who 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)
Who developed the Macintosh computer? students -11.936954940038037 Who 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)
Who developed the Macintosh computer? Data Co-op -11.978863036213863 Who 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)
Who developed the Macintosh computer? Manifesto -12.4215774657282 Who 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)
Who developed the Macintosh computer? users -12.527580170676002 Who 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)
Who developed the Macintosh computer? designers -12.562868546341523 Who 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)
Who developed the Macintosh computer? command -12.62926292435948 Who 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)
Who developed the Macintosh computer? Suppliers -12.653988665387978 Who 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)
Who developed the Macintosh computer? Firefox -12.743435952725578 Who 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)
Who developed the Macintosh computer? Deutch -13.10158732746525 Who 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)
Who developed the Macintosh computer? Syphone -13.116618707093073 Who 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)
Who developed the Macintosh computer? NT & 2000 -13.15666324030187 Who 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)
Who developed the Macintosh computer? Susan -13.159944367769754 Who 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)
Who developed the Macintosh computer? the game -13.18317097754053 Who 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)
Who developed the Macintosh computer? Tinderbox -13.183852453734087 Who 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)
Who developed the Macintosh computer? The activity -13.275975409280345 Who 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)
Who developed the Macintosh computer? Bavari -13.304148150427814 Who 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)
Who developed the Macintosh computer? The patch -13.315300480941165 Who 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)
Who developed the Macintosh computer? Sorren -13.315414272179938 Who 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)
Who developed the Macintosh computer? The same font file -13.348445191755339 Who 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)
Who developed the Macintosh computer? The instructor -13.407684346071056 Who 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)
Who developed the Macintosh computer? January -13.564816474503829 Who 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)
Who developed the Macintosh computer? The files -14.13447415584161 Who 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)
Who developed the Macintosh computer? the same font file -14.715020500738094 Who 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)
Who developed the Macintosh computer? January of 1984 -14.73138971402156 Who 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)
In what city are the three Great Pyramids located? the Sphinx -11.201907535529347 In 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)
In what city are the three Great Pyramids located? such a way -11.222269656902137 In 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)
In what city are the three Great Pyramids located? drake puppy -11.570738748001924 In 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)
In what city are the three Great Pyramids located? Atlantis -12.412368684323813 In 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)
In what city are the three Great Pyramids located? the escarpment -12.922570121232038 In 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)
In what city are the three Great Pyramids located? The sole exception -13.51424430464509 In 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)
Who invented television? Robert Adler -1.0206316830629767 Who invented television? -> $x: ($x, invented, television) -> (Robert Adler, invented, the television remote control) -> Robert Adler (4283ms)
Who invented television? Philo Farnsworth -1.1178943105700925 Who invented television? -> $x: ($x, invented, television) -> (Philo Farnsworth, invented, the Television) -> Philo Farnsworth (4283ms)
Who invented television? Vladimir Zworykin -1.20470107873407 Who invented television? -> $x: ($x, invented, television) -> (Vladimir Zworykin, invented, the television) -> Vladimir Zworykin (4283ms)
Who invented television? wishing someone -2.0202940579223903 Who invented television? -> $x: ($x, invented, television) -> (wishing someone, invent, television) -> wishing someone (4283ms)
Who invented television? the Americans -2.088380839116369 Who invented television? -> $x: ($x, invented, television) -> (the Americans, invented, television) -> the Americans (4435ms)
Who invented television? Vinton Cerf -2.12165672759023 Who invented television? -> $x: ($x, invented, television) -> (Vinton Cerf, invented, the Television) -> Vinton Cerf (4436ms)
Who invented television? Philo T Farnsworth -2.141433500953586 Who invented television? -> $x: ($x, invented, television) -> (Philo T Farnsworth, invented, electronic television) -> Philo T Farnsworth (4435ms)
Who invented television? weeks pregnant -2.1715616871691634 Who invented television? -> $x: ($x, invented, television) -> (weeks pregnant, invented, the television nina) -> weeks pregnant (4436ms)
Who invented television? Papua New Guinea -2.1761100431329075 Who invented television? -> $x: ($x, invented, television) -> (Papua New Guinea, had invented, the television) -> Papua New Guinea (4435ms)
Who invented television? David Sarnoff ? -2.288637760001368 Who invented television? -> $x: ($x, invented, television) -> (David Sarnoff ?, invented, the television) -> David Sarnoff ? (4523ms)
Who invented television? John Logie Baird -2.3342452006828127 Who invented television? -> $x: ($x, invented, television) -> (John Logie Baird, invented, television) -> John Logie Baird (4523ms)
Who invented television? Philo T. Farnsworth -2.339856635565253 Who invented television? -> $x: ($x, invented, television) -> (Philo T. Farnsworth, invented, the Television) -> Philo T. Farnsworth (4523ms)
Who invented television? the Mayans -2.5559773625563817 Who invented television? -> $x: ($x, invented, television) -> (the Mayans, invented, television) -> the Mayans (4612ms)
Who invented television? a teenager -2.6285378531338255 Who invented television? -> $x: ($x, invented, television) -> (a teenager, invented, television) -> a teenager (4612ms)
Who invented television? two people -2.641964802393324 Who invented television? -> $x: ($x, invented, television) -> (two people, invented, the television) -> two people (4612ms)
Who invented television? The Boy -2.6653208687839918 Who invented television? -> $x: ($x, invented, television) -> (The Boy, Invented, Television) -> The Boy (4612ms)
Who invented television? a boy genius -2.701460836790443 Who invented television? -> $x: ($x, invented, television) -> (a boy genius, invented, television) -> a boy genius (4646ms)
Who invented television? ?The Boy -2.7213785846994556 Who invented television? -> $x: ($x, invented, television) -> (?The Boy, Invented, Television) -> ?The Boy (4646ms)
Who invented television? a legal battle -2.7394813790605452 Who invented television? -> $x: ($x, invented, television) -> (a legal battle, invented, television) -> a legal battle (4646ms)
Who invented television? J.L. Baird -2.7417151354361513 Who invented television? -> $x: ($x, invented, television) -> (J.L. Baird, invented, television) -> J.L. Baird (4646ms)
Who invented television? one man -2.786809221617321 Who invented television? -> $x: ($x, invented, television) -> (one man, invented, television) -> one man (4646ms)
Who invented television? humans -2.792661770410314 Who invented television? -> $x: ($x, invented, television) -> (humans, invented, radio and television) -> humans (4646ms)
Who invented television? ?the country -2.8257094650601466 Who invented television? -> $x: ($x, invented, television) -> (?the country, invented, photography , television , computers) -> ?the country (4793ms)
Who invented television? John Lack -2.848694055699707 Who invented television? -> $x: ($x, invented, television) -> (John Lack, invented, MTV Music Television) -> John Lack (4793ms)
Who invented television? Sarnoff versus Farnsworth -2.8915633900340696 Who invented television? -> $x: ($x, invented, television) -> (Sarnoff versus Farnsworth, invented, television) -> Sarnoff versus Farnsworth (4793ms)
Who invented television? a Mormon -2.919857723785225 Who invented television? -> $x: ($x, invented, television) -> (a Mormon, invented, the Television) -> a Mormon (4793ms)
Who invented television? ?Shelly Palmer ? -2.932771627052925 Who invented television? -> $x: ($x, invented, television) -> (?Shelly Palmer ?, invented, Enhanced Television) -> ?Shelly Palmer ? (4793ms)
Who invented television? one station?KDKA-TV?which -2.958413348898495 Who invented television? -> $x: ($x, invented, television) -> (one station?KDKA-TV?which, literally invented, television news) -> one station?KDKA-TV?which (4793ms)
Who invented television? age 14 -3.0128793554308935 Who invented television? -> $x: ($x, invented, television) -> (age 14, invented, television) -> age 14 (4831ms)
Who invented television? Famous Scots scientists -3.1196553438801544 Who invented television? -> $x: ($x, invented, television) -> (Famous Scots scientists, also invented, the television) -> Famous Scots scientists (4831ms)
Who invented television? Media event -3.124724293101071 Who invented television? -> $x: ($x, invented, television) -> (Media event, was a term invented by, television) -> Media event (4831ms)
Who invented television? the who -3.216445142605437 Who invented television? -> $x: ($x, invented, television) -> (the who, invented, the television reciever) -> the who (4831ms)
Who invented television? Mr Adler -3.4771900009341277 Who invented television? -> $x: ($x, invented, television) -> (Mr Adler, co-invented, the television remote control) -> Mr Adler (4925ms)
Who invented television? nobody -3.541002497239086 Who invented television? -> $x: ($x, invented, television) -> (nobody, had invented, television) -> nobody (4926ms)
Who invented television? Marconi -3.583148702059617 Who invented television? -> $x: ($x, invented, television) -> (Marconi, invented, the television) -> Marconi (4953ms)
Who invented television? Scottish pioneers -3.608073084727967 Who invented television? -> $x: ($x, invented, television) -> (Scottish pioneers, invented, television) -> Scottish pioneers (4954ms)
Who invented television? Mexico -3.7894552301462854 Who invented television? -> $x: ($x, invented, television) -> (Mexico, invented, the early color television transmission system) -> Mexico (4982ms)
Who invented television? Mitsubishi -3.9007100509316013 Who invented television? -> $x: ($x, invented, television) -> (Mitsubishi, invented, the first rear-projection television) -> Mitsubishi (5155ms)
Who invented television? Farnsworth -3.9671694894662792 Who invented television? -> $x: ($x, invented, television) -> (Farnsworth, invented, television) -> Farnsworth (5155ms)
Who invented television? the age -3.9771343107658517 Who invented television? -> $x: ($x, invented, television) -> (the age, invented, television) -> the age (5270ms)
Who invented television? the Philo Farnsworth -4.002548531058695 Who invented television? -> $x: ($x, invented, television) -> (the Philo Farnsworth, invented, television) -> the Philo Farnsworth (5270ms)
Who invented television? Junior -4.049166584499076 Who invented television? -> $x: ($x, invented, television) -> (Junior, invented, the television) -> Junior (5270ms)
Who invented television? Roone -4.190108301554183 Who invented television? -> $x: ($x, invented, television) -> (Roone, invented many of, television) -> Roone (5481ms)
Who invented television? August 1888 -4.192687283373185 Who invented television? -> $x: ($x, invented, television) -> (August 1888, invented, the very first working television system) -> August 1888 (5481ms)
Who invented television? Douglas L Ross -4.196979204669828 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (Douglas L Ross, Patents, Analog/Digital System for Television Services) -> Douglas L Ross (5481ms)
Who invented television? United States Patent and Trademark Office -4.196979204669828 Who 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)
Who invented television? Princeton -4.2264249864470536 Who invented television? -> $x: ($x, invented, television) -> (Princeton, invented, electronic color television) -> Princeton (5481ms)
Who invented television? Repeats -4.235832074953407 Who invented television? -> $x: ($x, invented, television) -> (Repeats, Invented, American Television) -> Repeats (5481ms)
Who invented television? a date -4.363374621493697 Who invented television? -> $x: ($x, invented, television) -> (a date, was invented, television) -> a date (5551ms)
Who invented television? Ralph Bauer -4.447583337117994 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was invented by, Ralph Bauer) -> Ralph Bauer (5551ms)
Who invented television? the same Farnsworth -4.554915390108166 Who invented television? -> $x: ($x, invented, television) -> (the same Farnsworth, invented, television) -> the same Farnsworth (5591ms)
Who invented television? the guy -4.560685997492747 Who invented television? -> $x: ($x, invented, television) -> (the guy, invented, television) -> the guy (5591ms)
Who invented television? The issue -4.716240185943402 Who invented television? -> $x: ($x, invented, television) -> (The issue, invented, television) -> The issue (5622ms)
Who invented television? James Cameron -4.7192280840555085 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (James Cameron, is set to create, a television show) -> James Cameron (5622ms)
Who invented television? the first band -4.789762978677329 Who invented television? -> $x: ($x, invented, television) -> (the first band, invented for, television) -> the first band (5622ms)
Who invented television? the cave-men -4.864254294555118 Who invented television? -> $x: ($x, invented, television) -> (the cave-men, had invented, television many thousand years) -> the cave-men (5646ms)
Who invented television? the history -4.879502620281124 Who invented television? -> $x: ($x, invented, television) -> (the history, was invented before, the small one ? television) -> the history (5646ms)
Who invented television? somebody -4.941317046253138 Who invented television? -> $x: ($x, invented, television) -> (somebody, would invent, television) -> somebody (5646ms)
Who invented television? Jamie Oliver -4.947643643142559 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Jamie Oliver, reinvent, his television career) -> Jamie Oliver (5891ms)
Who invented television? Elvis Presley -4.9818721520756855 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Elvis Presley, made his first appearance on, national television) -> Elvis Presley (5892ms)
Who invented television? Royal Caribbean -5.02987403249044 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Royal Caribbean, are marketing on, Television) -> Royal Caribbean (5891ms)
Who invented television? bounty hunters -5.158590537720553 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (bounty hunters, have been popularized by, television displays) -> bounty hunters (5920ms)
Who invented television? Jim Carrey -5.23177578965474 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Jim Carrey, popularized, reality television) -> Jim Carrey (5977ms)
Who invented television? The Monkees -5.269731711095291 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Monkees, first made their debut on, network television) -> The Monkees (5977ms)
Who invented television? product placement -5.332185802107486 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (product placement, have been conceived for, television) -> product placement (6038ms)
Who invented television? news sources -5.3556668993578604 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, skewed, television) -> (news sources, skewed mostly toward, television) -> news sources (6038ms)
Who invented television? the building -5.366322645278413 Who invented television? -> $x: ($x, invented, television) -> (the building, was invented, television) -> the building (6038ms)
Who invented television? Constantin Perskyi -5.407644352224885 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have coin, television) -> (Constantin Perskyi, had coined, the word television) -> Constantin Perskyi (6056ms)
Who invented television? Dmitry Shapiro -5.435701880993651 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Dmitry Shapiro, wants to reinvent, television ?) -> Dmitry Shapiro (6056ms)
Who invented television? a Briton -5.469984017303805 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (television, was invented by, a Briton) -> a Briton (6074ms)
Who invented television? Joe Biden -5.485148302518741 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Joe Biden, would be the perfect person to go on, television) -> Joe Biden (6073ms)
Who invented television? Growing Bolder -5.493049571222675 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Growing Bolder, is such a perfect fit on, public television) -> Growing Bolder (6074ms)
Who invented television? engineers -5.528444808872983 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (Television, was invented by, engineers) -> engineers (6073ms)
Who invented television? Bentley Designs -5.529426851662672 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bentley Designs, is perfect for, your television) -> Bentley Designs (6091ms)
Who invented television? The Simpsons -5.559748592517909 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Simpsons, make their first appearance on, television) -> The Simpsons (6091ms)
Who invented television? an inventor -5.5846187356301 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was invented by, an inventor) -> an inventor (6091ms)
Who invented television? Fox -5.6464424935405875 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Fox, reinvented, television / Daniel M. Kimmel) -> Fox (6108ms)
Who invented television? Proactiv Solution -5.665528781182317 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Proactiv Solution, is marketed on, television and online) -> Proactiv Solution (6108ms)
Who invented television? Waverly Hills -5.6717827068195446 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Waverly Hills, has been popularized on, paranormal television) -> Waverly Hills (6108ms)
Who invented television? a Scotsman -5.6765752807946335 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (The television, was invented by, a Scotsman) -> a Scotsman (6108ms)
Who invented television? Steve Jobs -5.695652960467925 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Steve Jobs, was keen to reinvent, the television) -> Steve Jobs (6108ms)
Who invented television? Holy Week -5.723294907442352 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Holy Week, has been so popularized by, the film and television) -> Holy Week (6126ms)
Who invented television? the Scot John Logie Baird -5.739268987330442 Who 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)
Who invented television? Eye -5.745597851695161 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Eye, presented this experiment on, television) -> Eye (6126ms)
Who invented television? HBO -5.792703950223625 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (HBO, has reinvented, countless television genres) -> HBO (6142ms)
Who invented television? LG -5.802986661477922 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (LG, was then marketing, its active-technology televisions) -> LG (6143ms)
Who invented television? The Sloth -5.84892692853937 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (The Sloth, was originally conceived as, a television sketch) -> The Sloth (6143ms)
Who invented television? the Amish -5.86174029207634 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, can live without, television) -> (the Amish, Can Live Without, Television) -> the Amish (6143ms)
Who invented television? the country -5.867895257325099 Who invented television? -> $x: ($x, invented, television) -> (the country, invented, television) -> the country (6160ms)
Who invented television? RCA -5.9226810376582595 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (RCA, devised, a superior television camera) -> RCA (6160ms)
Who invented television? J.J. Abrams -5.952808312338863 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (J.J. Abrams, have helped reinvent, the television drama) -> J.J. Abrams (6160ms)
Who invented television? early editions -5.957786711316965 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (early editions, has devised, many television formats) -> early editions (6160ms)
Who invented television? poultry farmers -5.9906390992409015 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (poultry farmers, are outraged over, his new television show) -> poultry farmers (6177ms)
Who invented television? numerous movies -6.004157182989939 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be relatively new to, television) -> (numerous movies, is relatively new to, series television) -> numerous movies (6177ms)
Who invented television? dryer sheets -6.008578220400012 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (dryer sheets, are perfect for cleaning, your television screen) -> dryer sheets (6177ms)
Who invented television? JVC -6.017656965662088 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (JVC, has also been dedicated to creating, televisions) -> JVC (6177ms)
Who invented television? adjustable beds -6.035596115957068 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (adjustable beds, are perfect for watching, television) -> adjustable beds (6193ms)
Who invented television? more than -6.041293538858945 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (more than, is being popularized by, television) -> more than (6193ms)
Who invented television? DVRs -6.042871268324525 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (DVRs, are the perfect tools for, the television obsessive) -> DVRs (6193ms)
Who invented television? BBC Music -6.0730592439568465 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (BBC Music, is a market leader in, music television distribution) -> BBC Music (6193ms)
Who invented television? flipping houses -6.079805963034846 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (flipping houses, is popularized on, television) -> flipping houses (6193ms)
Who invented television? TiVo -6.091627369189054 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, do this with, television) -> (TiVo, does this with, television shows) -> TiVo (6211ms)
Who invented television? EDTV -6.092119356499444 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (EDTV, is the perfect entry point into, digital television) -> EDTV (6211ms)
Who invented television? club stores -6.110196353253941 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (club stores, are being marketed on, television) -> club stores (6211ms)
Who invented television? LCDs -6.122182063052792 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (LCDs, can also be used to create, flat-panel televisions) -> LCDs (6229ms)
Who invented television? Adam Walsh -6.123293853001423 Who 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)
Who invented television? ?JONAS -6.12660304776057 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (?JONAS, is the perfect complement to, the hit television show) -> ?JONAS (6229ms)
Who invented television? Paul Nipkow -6.139084202653662 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (Paul Nipkow, patented, the first mechanical television scanner) -> Paul Nipkow (6229ms)
Who invented television? The Stroll -6.141596421867574 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The Stroll, was perfect for, television) -> The Stroll (6246ms)
Who invented television? NASCAR -6.1446792383846836 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (NASCAR, is nearly perfect for, television) -> NASCAR (6246ms)
Who invented television? Iraq -6.1474490492874665 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (Iraq, was to create, a 24-hour television feed) -> Iraq (6246ms)
Who invented television? MTV -6.157942192508017 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, know to use, television) -> (MTV, used to be known as, Music Television) -> MTV (6246ms)
Who invented television? Bell Laboratories -6.1922612882259696 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bell Laboratories, perfected, color television) -> Bell Laboratories (6246ms)
Who invented television? the Enterprise -6.2101599075056955 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (the Enterprise, was used to create, a television show) -> the Enterprise (6262ms)
Who invented television? End -6.214203777912949 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (End, was first made available to, American television) -> End (6262ms)
Who invented television? can Apple -6.249064636176895 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (can Apple, reinvent, the television) -> can Apple (6262ms)
Who invented television? any part -6.326093453874757 Who 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)
Who invented television? the Doctor -6.36224191847922 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the Doctor, will be marketed as, *event television*) -> the Doctor (6262ms)
Who invented television? Levi -6.3826456360099675 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Levi, experimented with, television?s visuals) -> Levi (6281ms)
Who invented television? a compelling new platform -6.393119904805497 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (a compelling new platform, reinvent, the television experience) -> a compelling new platform (6281ms)
Who invented television? John Paul -6.411281642573403 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (John Paul, was the perfect pope for, the television age) -> John Paul (6281ms)
Who invented television? the first in the world -6.41308321101499 Who invented television? -> $x: ($x, invented, television) -> (the first in the world, to invent, a television device) -> the first in the world (6281ms)
Who invented television? 10 years -6.432643210809441 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (10 years, is actually produced in, TELEVISION PROGRAMS solutions) -> 10 years (6281ms)
Who invented television? the X-wing Squadron format -6.436445618184473 Who 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)
Who invented television? MyPrimeTime .com -6.463463513741528 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (MyPrimeTime .com, was to create, television programming) -> MyPrimeTime .com (6446ms)
Who invented television? RCA televisions -6.464675383808373 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (RCA televisions, are perfect for, the bedroom RCA televisions) -> RCA televisions (6447ms)
Who invented television? a woman?s right -6.477118719657865 Who 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)
Who invented television? a weekly magazine program -6.479771278861155 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (a weekly magazine program, conceived as, a public television) -> a weekly magazine program (6446ms)
Who invented television? the 100 -6.481209527170035 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the 100, are marketed heavily in, print and television ads) -> the 100 (6446ms)
Who invented television? Mulder and Scully -6.481639439883029 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Mulder and Scully, first made, their television debut way) -> Mulder and Scully (6552ms)
Who invented television? Fairge Anma -6.484395233366378 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Fairge Anma, is conceived as, a television series) -> Fairge Anma (6552ms)
Who invented television? any other group -6.510200809050509 Who 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)
Who invented television? cycling -6.520828084816686 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (cycling, is to create, a television product) -> cycling (6552ms)
Who invented television? a platform -6.521234650573556 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (a platform, is the perfect hybrid of, cinema , television) -> a platform (6552ms)
Who invented television? Harvey Radio Labs -6.522212805839035 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Harvey Radio Labs, was also experimenting with, television) -> Harvey Radio Labs (6552ms)
Who invented television? the NTSC -6.523588979550521 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (the NTSC, devised, the NTSC television broadcast system) -> the NTSC (6568ms)
Who invented television? THE DARK -6.534199321768269 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (THE DARK, is a perfect example of, 1970s television) -> THE DARK (6568ms)
Who invented television? HD projection TV -6.541600549345084 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (HD projection TV, is the perfect way to watch, television) -> HD projection TV (6568ms)
Who invented television? The HPT -6.544946786153316 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually buy, television) -> (The HPT, had to actually buy, television time) -> The HPT (6568ms)
Who invented television? ?Our intention -6.546021586755156 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (?Our intention, is to create, another classic television show) -> ?Our intention (6568ms)
Who invented television? Me-TV -6.556696497100161 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Me-TV, is a perfect antidote for, commercial television) -> Me-TV (6568ms)
Who invented television? Deputy Dawg -6.562704382037132 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Deputy Dawg, was first introduced on, television) -> Deputy Dawg (6583ms)
Who invented television? NFT?s -6.590331169350321 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (NFT?s, patented, NiFTy Online Television player) -> NFT?s (6583ms)
Who invented television? an iPhone -6.60493512979501 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (an iPhone, make its first appearance on, a television show) -> an iPhone (6583ms)
Who invented television? TrueCar -6.611452223673023 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be relatively new to, television) -> (TrueCar, was relatively new to, television) -> TrueCar (6583ms)
Who invented television? the Art -6.6247151777963555 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have coin, television) -> (the Art, had coined, the word television) -> the Art (6598ms)
Who invented television? You?d -6.633621715339167 Who 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)
Who invented television? regurgitated air?conditioner units -6.634505901740264 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, skewed, television) -> (regurgitated air?conditioner units, skewed, television aerials) -> regurgitated air?conditioner units (6598ms)
Who invented television? Blog television -6.6406953119525305 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Blog television, is reinventing, television standards) -> Blog television (6598ms)
Who invented television? Mr. Grand -6.649080461447826 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (Mr. Grand, is the former play by, play television announcer) -> Mr. Grand (6668ms)
Who invented television? a stand -6.650029215976179 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (a stand, be a perfect fit for, your television) -> a stand (6668ms)
Who invented television? so many people -6.651305654170279 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, talk over, television) -> (so many people, talked over, a television broadcast viewable) -> so many people (6668ms)
Who invented television? small cliffhangers and climaxes -6.667096003822518 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (small cliffhangers and climaxes, are perfect for, television) -> small cliffhangers and climaxes (6668ms)
Who invented television? Grace and Henry -6.671642204906975 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Grace and Henry, are the most perfect couple on, television) -> Grace and Henry (6668ms)
Who invented television? PA -6.673410630411462 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (PA, patented, the iconoscope television system) -> PA (6668ms)
Who invented television? comics -6.681687549780805 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (comics, tried to censor, television) -> comics (6749ms)
Who invented television? BILL LIBLICK -6.686216764614537 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (BILL LIBLICK, is a perfect fit for, daytime television) -> BILL LIBLICK (6749ms)
Who invented television? Don?t -6.699052352257033 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (Don?t, be played by, the television media) -> Don?t (6749ms)
Who invented television? Dark Films -6.700199309595794 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Dark Films, is making its first foray into, television) -> Dark Films (6749ms)
Who invented television? The Asus LCD panel -6.712315306380367 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The Asus LCD panel, would be perfect for, television) -> The Asus LCD panel (6749ms)
Who invented television? left-wing opinion -6.713199492781463 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (left-wing opinion, was outraged by, television images) -> left-wing opinion (6787ms)
Who invented television? The Word -6.714066175733571 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Word, makes its first appearance on, television) -> The Word (6787ms)
Who invented television? V.K. Zworykin -6.716218875620758 Who 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)
Who invented television? front ? -6.726462499607091 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (front ?, was coined in, a BBC television comedy) -> front ? (6787ms)
Who invented television? 1931 -6.7266378079945985 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was already invented by, 1931) -> 1931 (6787ms)
Who invented television? A Married Couple -6.7308834843148695 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually create, television) -> (A Married Couple, were actually created for, television) -> A Married Couple (6787ms)
Who invented television? Jordi Hidalgo S?nchez -6.734420282621551 Who 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)
Who invented television? crystal encrusted jewellery -6.738103698462973 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (crystal encrusted jewellery, is perfect on, television) -> crystal encrusted jewellery (6845ms)
Who invented television? lunch -6.743520740142567 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (lunch, made more perfect by, flat screen television) -> lunch (6845ms)
Who invented television? such a material -6.746799050343787 Who 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)
Who invented television? KISS -6.759177818066025 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (KISS, made their first mark on, television) -> KISS (6845ms)
Who invented television? radio -6.761329895350357 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (radio, plays followed by, television work) -> radio (6845ms)
Who invented television? rebuses -6.769287678364816 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (rebuses, were popularized by, the television show Concentration) -> rebuses (7048ms)
Who invented television? blogs -6.778129647780371 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (blogs, are a perfect extension of, the television mindset) -> blogs (7048ms)
Who invented television? the Ica stones -6.783051114407106 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the Ica stones, was marketed for, cable television) -> the Ica stones (7048ms)
Who invented television? Digital media -6.789987741478429 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Digital media, was first introduced with, the Television) -> Digital media (7048ms)
Who invented television? View -6.790241910017667 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (View, is the market leader in, coinmeter television retailing) -> View (7048ms)
Who invented television? Cablecom and Swisscom -6.791008897421566 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Cablecom and Swisscom, are the market leaders for, television) -> Cablecom and Swisscom (7048ms)
Who invented television? SmartPay -6.794545695728248 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (SmartPay, is the perfect rental solution for, HD Televisions) -> SmartPay (7165ms)
Who invented television? Le Gai Savoir -6.795365314002089 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (Le Gai Savoir, was actually produced for, television) -> Le Gai Savoir (7166ms)
Who invented television? acting and -6.798966680436025 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (acting and, made her first appearance on, British television) -> acting and (7165ms)
Who invented television? so many more possibilities -6.801619292341609 Who 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)
Who invented television? Louis-Dreyfus -6.803387665143803 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Louis-Dreyfus, first made her mark on, television) -> Louis-Dreyfus (7166ms)
Who invented television? AC/DC -6.805156090648291 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (AC/DC, made their first appearance on, North American television) -> AC/DC (7325ms)
Who invented television? Frye -6.8052732896454895 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Frye, has experimented with, television commercials) -> Frye (7326ms)
Who invented television? HDMI cord HDMI cord -6.806040277049387 Who 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)
Who invented television? fans -6.82499215946603 Who invented television? -> $x: ($x, invented, television) -> $x: (television, be an invention of, $x) -> (Music Television, was an invention of, fans) -> fans (7325ms)
Who invented television? color -6.847981269406015 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (color, was first introduced to, television) -> color (7326ms)
Who invented television? toys -6.8788636469355 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (toys, are marketed on, television) -> toys (7353ms)
Who invented television? consumers -6.893075355587185 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (consumers, is being marketed on, television) -> consumers (7354ms)
Who invented television? Coral Calcium -6.905056131466265 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Coral Calcium, was popularized by, a television infomercial) -> Coral Calcium (7354ms)
Who invented television? Miss Banon -6.929679250720421 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Miss Banon, first made her allegations public on, television) -> Miss Banon (7354ms)
Who invented television? Bill Oxnard -6.965031236390805 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bill Oxnard, had perfected, true three-dimensional television) -> Bill Oxnard (7379ms)
Who invented television? Debt Cures -6.997746554849739 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Debt Cures, has been marketed on, television) -> Debt Cures (7379ms)
Who invented television? the 16 :9 aspect ratio -7.024088059721246 Who 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)
Who invented television? 60 inches -7.052321745222978 Who 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)
Who invented television? Love -7.054224817801712 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually play, television) -> (Love, Actually plays on, the television) -> Love (7560ms)
Who invented television? Media consultants -7.069375353555982 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (Media consultants, must then devise, television and radio) -> Media consultants (7560ms)
Who invented television? Wildlife biology -7.082573739552059 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Wildlife biology, has been popularized by, television specials) -> Wildlife biology (7561ms)
Who invented television? mission -7.11895427854885 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (mission, is to create, an enhanced television experience) -> mission (7560ms)
Who invented television? Apple -7.133811662851278 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Apple, could reinvent, television) -> Apple (7560ms)
Who invented television? 1965-66 -7.139098335655315 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (1965-66, was conceived for, television) -> 1965-66 (7598ms)
Who invented television? The 1,000 lumens lighting -7.1762346388220255 Who 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)
Who invented television? the BBC -7.192554101438306 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (the BBC, has devised, a television channel) -> the BBC (7598ms)
Who invented television? Initially Oxygen8 -7.200599975175791 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Initially Oxygen8, was marketed on, television) -> Initially Oxygen8 (7598ms)
Who invented television? Colleges -7.202330087578124 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Colleges, conceive to, television show) -> Colleges (7598ms)
Who invented television? poop -7.24408301479487 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (poop, is a perfect example of, a television show) -> poop (7598ms)
Who invented television? Joost -7.260195193274534 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Joost, is reinventing, the television experience) -> Joost (7623ms)
Who invented television? music -7.287344107344296 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (music, is played indirectly by, the radio or television) -> music (7623ms)
Who invented television? life -7.320123993930484 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (life, is been played by, the biggest music television channel) -> life (7623ms)
Who invented television? advice -7.330669820723273 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (advice, has drawn outraged reaction from, television viewers) -> advice (7648ms)
Who invented television? Japan -7.344194008126902 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Japan, first experimented with, a 1025 line television standard) -> Japan (7648ms)
Who invented television? Montana -7.361058328684172 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Montana, had found a position as, a television reporter) -> Montana (7648ms)
Who invented television? Alias -7.364595126990854 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Alias, are as perfect as, television) -> Alias (7648ms)
Who invented television? the PSA -7.380888229177444 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the PSA, was highly played by, television stations) -> the PSA (7648ms)
Who invented television? shelve -7.411196352693921 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (shelve, is perfect for viewing, your television) -> shelve (7648ms)
Who invented television? the room -7.415520292925812 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, come along with, television) -> (the room, comes along with, a 24 inch television) -> the room (7675ms)
Who invented television? sure -7.4226263658878056 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (sure, is a great marketing ploy for, campaign television ads) -> sure (7675ms)
Who invented television? Visual images -7.4239386327930745 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (Visual images, are used to create, television series) -> Visual images (7675ms)
Who invented television? Al Gore -7.425449386317537 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Al Gore, reinventing himself on, television) -> Al Gore (7675ms)
Who invented television? Marty -7.42603214568178 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Marty, makes his first appearance on, Fuji Television`) -> Marty (7675ms)
Who invented television? sexuality -7.427996105123936 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be glorified in, television) -> (sexuality, is glorified in, television shows) -> sexuality (7701ms)
Who invented television? legs -7.428880344227327 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (legs, is the perfect height for, a television) -> legs (7701ms)
Who invented television? Germany -7.445057090834246 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Germany, experimented with, television broadcasting) -> Germany (7701ms)
Who invented television? bachelorette -7.448332655860631 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (bachelorette, was popularized by, 1970s television producers) -> bachelorette (7701ms)
Who invented television? Eminem -7.449478075542024 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (Eminem, has also taken this censor-free concept to, television) -> Eminem (7701ms)
Who invented television? Ecclestone -7.462840817885038 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Ecclestone, experimented with, a digital television package) -> Ecclestone (7726ms)
Who invented television? part -7.483700586225149 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (part, was played by, public television stations) -> part (7726ms)
Who invented television? Batman -7.4857301923076385 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Batman, first made, his television debut) -> Batman (7726ms)
Who invented television? artworks -7.504037136961845 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (artworks, were expressly conceived for, the television screen) -> artworks (7726ms)
Who invented television? Costco -7.515537769235282 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Costco, was marketed on, daytime television programming) -> Costco (7726ms)
Who invented television? Provo -7.529055905686615 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Provo, conceived the idea for, his television set) -> Provo (7727ms)
Who invented television? Nancy -7.531643896762649 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Nancy, made her first appearance on, television) -> Nancy (7751ms)
Who invented television? Soccer -7.544087232612141 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Soccer, is the perfect antidote to, television and video games) -> Soccer (7751ms)
Who invented television? Hamas -7.573265805466688 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Hamas, made his first appearance on, Gaza television) -> Hamas (7751ms)
Who invented television? the models -7.629535282480779 Who 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)
Who invented television? the kid -7.684735548546799 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, can live without, television) -> (the kid, can?t live without, their television) -> the kid (7752ms)
Who invented television? the records -7.706679861837048 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the records, were marketed through, television commercials) -> the records (7775ms)
Who invented television? 1968 -7.773872414901473 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, seek to use, television) -> (1968, sought to use, television) -> 1968 (7775ms)
Who invented television? The place -7.791231486028765 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The place, looks perfect for, your television) -> The place (7775ms)
Who invented television? the leader -7.836463016311418 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (the leader, made his first appearance on, Gaza television) -> the leader (7800ms)
Who invented television? Patridge -7.838506224317516 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Patridge, would make her first appearance on, television) -> Patridge (7800ms)
Who invented television? 7500 -7.872445789461405 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (7500, is perfect for watching, television) -> 7500 (7800ms)
Who invented television? Devlin -7.933707104215408 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Devlin, made his first foray into, television) -> Devlin (7800ms)
Who invented television? Benny -7.954328309102869 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Benny, made his first appearance on, television) -> Benny (7800ms)
Who invented television? 2001 -7.969215571126718 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (2001, was perfect fodder for, the tabloids and television) -> 2001 (7824ms)
Who invented television? The BBC -7.998792277427363 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (The BBC, experiments with, television broadcasting) -> The BBC (7824ms)
Who invented television? Abrams -8.017933814513842 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Abrams, made his first attempt at, television production) -> Abrams (7824ms)
Who invented television? Cyrus -8.017933814513842 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Cyrus, made his first foray into, television) -> Cyrus (7824ms)
Who invented television? Whoever -8.018882569042194 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (Whoever, coined, the phase describing television) -> Whoever (7824ms)
Who invented television? Verity -8.032145523165529 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (Verity, actually produced one of, the greatest television shows) -> Verity (7824ms)
Who invented television? Morgan -8.04318328456641 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Morgan, was first introduced to, television audiences) -> Morgan (7847ms)
Who invented television? Flingo -8.05841630178649 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Flingo, is virtually reinventing, television) -> Flingo (7847ms)
Who invented television? the producers -8.090208853841105 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (the producers, can actually produce, a television commercial) -> the producers (7847ms)
Who invented television? Samsung -8.098068147393782 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Samsung, is even marketing, 3D televisions) -> Samsung (7847ms)
Who invented television? Jerry -8.107302368602342 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Jerry, then perfected, the television sit-com format) -> Jerry (7847ms)
Who invented television? Corus -8.120073335415288 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Corus, is a market leader in, specialty television and radio) -> Corus (7871ms)
Who invented television? Sotir -8.124102121032356 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Sotir, has held positions in, television stations) -> Sotir (7871ms)
Who invented television? Hepburn -8.132944090447912 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Hepburn, made the first of, her several television movies) -> Hepburn (7871ms)
Who invented television? Kilmer -8.151512215680121 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Kilmer, made his first foray into, television) -> Kilmer (7871ms)
Who invented television? the role -8.155610090021845 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the role, played by, television) -> the role (7871ms)
Who invented television? the life -8.161372081050978 Who 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)
Who invented television? Renae -8.162122610600164 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Renae, was first introduced to, television broadcasting) -> Renae (7893ms)
Who invented television? Humphrey -8.16703558261833 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Humphrey, made his first appearance on, Australian Television) -> Humphrey (7893ms)
Who invented television? Tyler -8.184227534139053 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Tyler, made her first appearance on, U.S. television) -> Tyler (7894ms)
Who invented television? Idibia -8.188648518846831 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Idibia, made his first appearance on, National Television) -> Idibia (7894ms)
Who invented television? the growing role -8.256792601250261 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the growing role, played by, television) -> the growing role (7917ms)
Who invented television? the film -8.263119402861715 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the film, is marketed on, television) -> the film (7917ms)
Who invented television? the morning -8.304184756128109 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (the morning, outraged at, the Sunday morning television shows) -> the morning (7917ms)
Who invented television? The model -8.400424894601233 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The model, is to create, television) -> The model (7917ms)
Who invented television? the central role -8.418108833432344 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the central role, played by, conventional television) -> the central role (7917ms)
Who invented television? The plan -8.419877206234537 Who 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)
Who invented television? the dominant role -8.428719175650091 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the dominant role, played by, television) -> the dominant role (7940ms)
Who invented television? The challenge -8.435728204136197 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The challenge, was to create, a new television spot) -> The challenge (7940ms)
Who invented television? the way viewers -8.444276079649592 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be actually use, television) -> (the way viewers, are actually using, television) -> the way viewers (7940ms)
Who invented television? the characters Jay Ward -8.506628368509874 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (the characters Jay Ward, popularized on, television) -> the characters Jay Ward (7940ms)
Who invented television? the first TV cameras -8.545433308961393 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (the first TV cameras, began experimenting with, television) -> the first TV cameras (7940ms)
Who invented television? The visionary Powel -8.55034628097956 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (The visionary Powel, was also experimenting with, television) -> The visionary Powel (7940ms)
Who invented television? The camera -8.566654046099186 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The camera, first made, its television debut) -> The camera (7964ms)
Who invented television? The project -8.57549601551474 Who 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)
Who invented television? The aim -8.581685425727008 Who 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)
Who invented television? The term -8.59013514334956 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (The term, was coined by, a local television station) -> The term (7964ms)
Who invented television? The movement -8.60693494848187 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (The movement, has been popularized on, public television) -> The movement (7964ms)
Who invented television? The size -8.613451989657587 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The size, is just perfect for, relaxed television viewing) -> The size (7964ms)
Who invented television? The latter song -8.623242713601496 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (The latter song, was popularized in, the 1970s television show) -> The latter song (7964ms)
Who invented television? the southern shaft -8.628483316583115 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, explore on, television) -> (the southern shaft, was explored on, live television) -> the southern shaft (7964ms)
Who invented television? The film -8.650652860951556 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (The film, was initially conceived for, Yugoslavian television) -> The film (8040ms)
Who invented television? The picture -8.653305420154844 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The picture, is perfect on, both televisions) -> The picture (8039ms)
Who invented television? Whedon -9.430233569715792 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive of, television) -> (Whedon, conceived of, the television series) -> Whedon (8039ms)
Who invented television? the hit Somebody -9.857644072763105 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, know to use, television) -> (the hit Somebody, Used to Know on, television) -> the hit Somebody (8168ms)
Who invented television? psychic cars -10.705537709854115 Who 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)
Who invented television? the United States versus Russia -11.324406833855038 Who 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)
Who invented television? a century -11.427624316926899 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (televisions, were invented over, a century) -> a century (8289ms)
Who invented television? jet airplane travel -11.44560646729908 Who 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)
Who invented television? a means -11.466528992895803 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented as, a means) -> a means (8289ms)
Who invented television? magicians -11.751562279626999 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented so, magicians) -> magicians (8319ms)
Who invented television? the 1920s -11.830533997158469 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (televisions, were invented in, the 1920s) -> the 1920s (8319ms)
Who invented television? the 1930s -11.894688195882235 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, the 1930s) -> the 1930s (8319ms)
Who invented television? the 1950s -11.91276438650635 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, was invented in, the 1950s) -> the 1950s (8319ms)
Who invented television? the 1890s -11.915734960302219 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was actually invented in, the 1890s) -> the 1890s (8319ms)
Who invented television? the United States -11.943479904924665 Who 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)
Who invented television? the 1950?s -11.953755449870027 Who 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)
Who invented television? history -12.00838962806067 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (A television interviewer, is inventing, history) -> history (8349ms)
Who invented television? the 1960s -12.022246314825098 Who 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)
Who invented television? hundreds -12.08706549902379 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Think television, was invented, hundreds) -> hundreds (8349ms)
Who invented television? France -12.178399091067522 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, France) -> France (8349ms)
Who invented television? Scotland -12.241538762078926 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (' Telephone and television, were invented in, Scotland) -> Scotland (8349ms)
Who invented television? a means of providing entertainment -12.264573034731827 Who 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)
Who invented television? yet -12.496702924524152 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, been invented, yet) -> yet (8384ms)
Who invented television? 1926 -12.578313074217366 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, 1926) -> 1926 (8384ms)
Who invented television? 1939 -12.581586756985557 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, 1939) -> 1939 (8413ms)
Who invented television? 1924 -12.656643814202688 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented around, 1924) -> 1924 (8413ms)
Who invented television? 1855 -12.686183980354063 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, has n?t been invented yet in, 1855) -> 1855 (8413ms)
Who invented television? 1929 -12.706629505212138 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented prior to, 1929) -> 1929 (8414ms)
Who invented television? around 1935 -12.727914810477188 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, around 1935) -> around 1935 (8554ms)
Who invented television? centuries ago -12.750384973414139 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented, centuries ago) -> centuries ago (8554ms)
Who invented television? 1967 -12.75526038969999 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (standard television, was invented on, 1967) -> 1967 (8554ms)
Who invented television? the 1930 -12.762716516330894 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, had been invented in, the 1930) -> the 1930 (8554ms)
Who invented television? America -12.76895975357823 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, America) -> America (8554ms)
Who invented television? the radio -13.030322765734464 Who 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)
Who invented television? the base -13.130336451663961 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The first television, was invented at, the base) -> the base (8584ms)
Who invented television? first -13.163072273641315 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented, first) -> first (8584ms)
Who invented television? initially -13.178670486855355 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented, initially) -> initially (8612ms)
Who invented television? the act -13.373746059561615 Who 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)
Who invented television? the early decades -13.43080648085363 Who 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)
Who invented television? the war -13.454600327900305 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, had been invented just before, the war) -> the war (8612ms)
Who invented television? the late 1950s -13.523893292083581 Who 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)
Who invented television? the early 19th century -13.775279618783998 Who 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)
Who invented television? Manly Mitsubishi -13.94462291732042 Who 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)
Who invented television? junior's -14.68424126168278 Who 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)
Who invented television? Mitsubishi Corp -14.820898318788146 Who 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)
Who invented television? Be Someone -14.832776802822465 Who 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)
What are enzymes? project-independent tool -5.3648011674571325 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, project-independent tool) -> project-independent tool (4167ms)
What are enzymes? agent-reactive catalyst -5.3648011674571325 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, agent-reactive catalyst) -> agent-reactive catalyst (4167ms)
What are enzymes? physiologically-active substance -5.3648011674571325 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, physiologically-active substance) -> physiologically-active substance (4167ms)
What are enzymes? biological catalyst -5.6302419753692465 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological catalyst) -> biological catalyst (4168ms)
What are enzymes? biological product -5.655698910429229 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological product) -> biological product (4167ms)
What are enzymes? target molecule -5.720014078603011 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, target molecule) -> target molecule (4167ms)
What are enzymes? high quality supplement -5.737340765561768 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, high quality supplement) -> high quality supplement (4324ms)
What are enzymes? non-radioactive label -5.743034220056205 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, non-radioactive label) -> non-radioactive label (4322ms)
What are enzymes? complex organic molecule -5.751673923770983 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, complex organic molecule) -> complex organic molecule (4322ms)
What are enzymes? group of protein -5.784801611745147 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, group of protein) -> group of protein (4322ms)
What are enzymes? proteinaceous biological catalyst -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, proteinaceous biological catalyst) -> proteinaceous biological catalyst (4322ms)
What are enzymes? moredifferent surface molecule -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, moredifferent surface molecule) -> moredifferent surface molecule (4359ms)
What are enzymes? active biological agent -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, active biological agent) -> active biological agent (4359ms)
What are enzymes? physiologically active protein -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, physiologically active protein) -> physiologically active protein (4359ms)
What are enzymes? aerobic process additive -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, aerobic process additive) -> aerobic process additive (4323ms)
What are enzymes? heat-sensitive bioactive agent -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, heat-sensitive bioactive agent) -> heat-sensitive bioactive agent (4395ms)
What are enzymes? regulator of aggressive Breast Cancer DevelopmentScienceDaily researcher -5.797854797519154 What 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)
What are enzymes? kind of macromolecule activated protein -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, kind of macromolecule activated protein) -> kind of macromolecule activated protein (4395ms)
What are enzymes? body's protective compound -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, body's protective compound) -> body's protective compound (4359ms)
What are enzymes? type of a protein molecule -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, type of a protein molecule) -> type of a protein molecule (4359ms)
What are enzymes? soluble, colloidal, organic catalyst -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, soluble, colloidal, organic catalyst) -> soluble, colloidal, organic catalyst (4395ms)
What are enzymes? powerful and specific catalyst -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, powerful and specific catalyst) -> powerful and specific catalyst (4395ms)
What are enzymes? certified organic ingredient -5.807535255708735 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, certified organic ingredient) -> certified organic ingredient (4395ms)
What are enzymes? nonimmunologic antibacterial salivary content -5.818418628538154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nonimmunologic antibacterial salivary content) -> nonimmunologic antibacterial salivary content (4395ms)
What are enzymes? source of energy -5.820624437198207 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, source of energy) -> source of energy (4470ms)
What are enzymes? convenient source of information -5.825273239694954 What are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, convenient source of information) -> convenient source of information (4470ms)
What are enzymes? readable indicator label -5.829861700710017 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, readable indicator label) -> readable indicator label (4470ms)
What are enzymes? soil biochemical property -5.829861700710017 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, soil biochemical property) -> soil biochemical property (4470ms)
What are enzymes? novel experimental therapeutic agent -5.838982459557154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, novel experimental therapeutic agent) -> novel experimental therapeutic agent (4470ms)
What are enzymes? polymer of Amino Acids -5.838982459557154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, polymer of Amino Acids) -> polymer of Amino Acids (4470ms)
What are enzymes? catalytic protein -5.890353092755625 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, catalytic protein) -> catalytic protein (4569ms)
What are enzymes? regulatory protein -5.918367317919226 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, regulatory protein) -> regulatory protein (4569ms)
What are enzymes? chemical substance -5.921865970418829 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical substance) -> chemical substance (4569ms)
What are enzymes? structural protein -5.990746490433155 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, structural protein) -> structural protein (4569ms)
What are enzymes? chemical species -6.008864525794162 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical species) -> chemical species (4569ms)
What are enzymes? body structure -6.02838528339291 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, body structure) -> body structure (4569ms)
What are enzymes? large polymer -6.032955023959827 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, large polymer) -> large polymer (4597ms)
What are enzymes? active protein -6.052147932992607 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, active protein) -> active protein (4597ms)
What are enzymes? plant protein -6.059467315355711 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, plant protein) -> plant protein (4597ms)
What are enzymes? label moiety -6.060373464909927 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, label moiety) -> label moiety (4597ms)
What are enzymes? cleaning additive -6.069357389981554 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, cleaning additive) -> cleaning additive (4597ms)
What are enzymes? bioactive molecule -6.083458303065516 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, bioactive molecule) -> bioactive molecule (4597ms)
What are enzymes? large protein -6.085808455041894 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, large protein) -> large protein (4625ms)
What are enzymes? biological characteristic -6.086573620231551 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological characteristic) -> biological characteristic (4625ms)
What are enzymes? biotechnology product -6.091292144212474 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biotechnology product) -> biotechnology product (4625ms)
What are enzymes? natural treatment -6.091463509307538 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, natural treatment) -> natural treatment (4626ms)
What are enzymes? amino group -6.092673860937212 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, amino group) -> amino group (4626ms)
What are enzymes? complex product -6.094666721409323 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, complex product) -> complex product (4626ms)
What are enzymes? nonradioactive label -6.1002031365100535 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nonradioactive label) -> nonradioactive label (4719ms)
What are enzymes? optional component -6.101127963812674 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, optional component) -> optional component (4719ms)
What are enzymes? raw ingredient -6.104345993918422 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, raw ingredient) -> raw ingredient (4719ms)
What are enzymes? natural substance -6.132410422424304 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, natural substance) -> natural substance (4720ms)
What are enzymes? detergent ingredient -6.137548200713661 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, detergent ingredient) -> detergent ingredient (4719ms)
What are enzymes? 2-component cleaning system important component -6.145518302864748 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, 2-component cleaning system important component) -> 2-component cleaning system important component (4719ms)
What are enzymes? rigid macromolecule -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, rigid macromolecule) -> rigid macromolecule (4734ms)
What are enzymes? microbiological system -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, microbiological system) -> microbiological system (4734ms)
What are enzymes? cellular product -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, cellular product) -> cellular product (4734ms)
What are enzymes? photosynthetic component -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, photosynthetic component) -> photosynthetic component (4735ms)
What are enzymes? huge protein -6.1595934542334945 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, huge protein) -> huge protein (4734ms)
What are enzymes? food factor -6.1595934542334945 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, food factor) -> food factor (4734ms)
What are enzymes? health food -6.1659104486186855 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, health food) -> health food (4767ms)
What are enzymes? 6 letter word -6.168187824929217 What are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, 6 letter word) -> 6 letter word (4767ms)
What are enzymes? management strategy -6.16852647082513 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, management strategy) -> management strategy (4767ms)
What are enzymes? chemical contaminant -6.169307572564149 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical contaminant) -> chemical contaminant (4767ms)
What are enzymes? protein class -6.171474779033343 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, protein class) -> protein class (4767ms)
What are enzymes? pharmaceutical product -6.174005711930979 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, pharmaceutical product) -> pharmaceutical product (4767ms)
What are enzymes? animal protein -6.1743181722377845 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, animal protein) -> animal protein (4784ms)
What are enzymes? skin treatment -6.176823621609984 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, skin treatment) -> skin treatment (4783ms)
What are enzymes? variable factor -6.179098442074003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, variable factor) -> variable factor (4783ms)
What are enzymes? yeast product -6.180333045400772 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, yeast product) -> yeast product (4784ms)
What are enzymes? external stimulus -6.180420518695775 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, external stimulus) -> external stimulus (4783ms)
What are enzymes? proteinaceous molecule -6.196151376011002 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, proteinaceous molecule) -> proteinaceous molecule (4784ms)
What are enzymes? detection method -6.196927371484474 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, detection method) -> detection method (4817ms)
What are enzymes? viral protein -6.2011780887347765 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, viral protein) -> viral protein (4818ms)
What are enzymes? serine hydrolases -6.204376910379723 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, serine hydrolases) -> serine hydrolases (4818ms)
What are enzymes? Biosystems -6.403906824494506 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, Biosystems) -> Biosystems (4818ms)
What are enzymes? Babor Cosmetics America -6.530798978475009 What 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)
What are enzymes? biological new molecule -6.5483108354615105 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological new molecule) -> biological new molecule (4818ms)
What are enzymes? Samjoko Skyblue -6.678190441444729 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Samjoko Skyblue, Drugs manufactured, E Enzyme 1.2 dentifrice paste) -> Samjoko Skyblue (4954ms)
What are enzymes? FDA OTC monograph part 355 -7.155023713973003 What 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)
What are enzymes? FDA OTC monograph part 310.545 -7.155023713973003 What 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)
What are enzymes? molecule -7.639845419736783 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, molecule) -> molecule (5162ms)
What are enzymes? protein -7.666612116648472 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, protein) -> protein (5162ms)
What are enzymes? chemical -7.754831395966798 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical) -> chemical (5162ms)
What are enzymes? substance -7.805310078196275 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, substance) -> substance (5162ms)
What are enzymes? Vitamin C -7.834450529481106 What 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)
What are enzymes? nutrient -7.902380610605514 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nutrient) -> nutrient (5176ms)
What are enzymes? digestive enzymes -7.911965674365272 What 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)
What are enzymes? organism -7.944481298239428 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, organism) -> organism (5176ms)
What are enzymes? item -8.010738327055265 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, item) -> item (5176ms)
What are enzymes? product -8.049066635039278 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, product) -> product (5184ms)
What are enzymes? dietary fiber -8.066188559584777 What 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)
What are enzymes? solution -8.071288430919829 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, solution) -> solution (5184ms)
What are enzymes? alternative -8.108731082838489 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, alternative) -> alternative (5184ms)
What are enzymes? database -8.109663182477966 What are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, database) -> database (5184ms)
What are enzymes? element -8.223164162034369 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, element) -> element (5193ms)
What are enzymes? marker -8.267302833026934 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, marker) -> marker (5193ms)
What are enzymes? Vitamin B6 -8.279991288961991 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (Vitamin B6, is an integral element for, 100 enzymes) -> Vitamin B6 (5193ms)
What are enzymes? engine -8.293312381837715 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, engine) -> engine (5193ms)
What are enzymes? subtance -8.38634488001022 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, subtance) -> subtance (5193ms)
What are enzymes? moiety -8.405027052788226 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, moiety) -> moiety (5200ms)
What are enzymes? speciality -8.409527952536305 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, speciality) -> speciality (5200ms)
What are enzymes? target -8.410177833301518 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, target) -> target (5200ms)
What are enzymes? function -8.415401802803842 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzymes, Instance Of, function) -> function (5200ms)
What are enzymes? quantum mechanics -8.422863695973096 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (the enzyme, is modeled with, quantum mechanics) -> quantum mechanics (5200ms)
What are enzymes? name -8.426461897983934 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzymes, Instance Of, name) -> name (5208ms)
What are enzymes? bacterial activity -8.707079581065733 What 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)
What are enzymes? protease enzymes -8.777869353542824 What 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)
What are enzymes? a living organism -8.804199159550759 What 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)
What are enzymes? Selenium -8.981015883541492 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (Selenium, is an essential element in, enzyme production) -> Selenium (5251ms)
What are enzymes? BioMarin -9.17693927219546 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (BioMarin, makes drugs for extremely, rare enzyme disorders) -> BioMarin (5259ms)
What are enzymes? Recent results -9.270573810738968 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Recent results, have linked the drug to, an enzyme) -> Recent results (5259ms)
What are enzymes? the body?s cells -10.1811113368184 What 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)
What are enzymes? proteins -10.20489288968371 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a class of, $x) -> (Enzymes, are a class of, proteins) -> proteins (5321ms)
What are enzymes? antioxidants -10.21409763876759 What 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)
What are enzymes? iron -10.284728033469163 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be good source of, $x) -> (enzymes, are a good source of, iron) -> iron (5319ms)
What are enzymes? the heart -10.316416897980515 What 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)
What are enzymes? information -10.33876955509335 What 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)
What are enzymes? I and phase II -10.418473740249084 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (I and phase II, drug-metabolizing, enzymes) -> I and phase II (5333ms)
What are enzymes? Cambridge University Press -10.593330306497545 What 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)
What are enzymes? fermentation -10.61016517005531 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (the enzyme, is a by-product of, fermentation) -> fermentation (5334ms)
What are enzymes? Phase II -10.615161170337966 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Phase II, drug-metabolizing, enzymes) -> Phase II (5334ms)
What are enzymes? gamers -10.70131603439906 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (the enzyme, was modeled by, gamers) -> gamers (5334ms)
What are enzymes? Bioengineered protein drugs -10.702779412663178 What 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)
What are enzymes? Automated enzyme assays -10.702779412663178 What 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)
What are enzymes? Microbial enzyme production -10.702779412663178 What 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)
What are enzymes? Virus induced enzymes -10.702779412663178 What 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)
What are enzymes? Fibrinolytic enzyme manufacture -10.702779412663178 What 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)
What are enzymes? Allosteric regulatory enzymes -10.702779412663178 What 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)
What are enzymes? copper -10.738987406791523 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (copper, is an essential element in, many enzyme systems) -> copper (5334ms)
What are enzymes? Hydrolytic Enzymes -10.740721769467264 What 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)
What are enzymes? Digestive Enzymes -10.740721769467264 What 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)
What are enzymes? Enzyme Handbook -10.740721769467264 What 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)
What are enzymes? Proteolytic Enzymes -10.740721769467264 What 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)
What are enzymes? zinc -10.754621350060013 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (zinc, is a key element of, enzymes) -> zinc (5419ms)
What are enzymes? Allosteric enzymes : kinetic behaviour -10.824997581214802 What 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)
What are enzymes? Enzyme Regulation and Metabolic Diseases -10.824997581214802 What 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)
What are enzymes? Proteins, enzymes, genes : the interplay of chemistry and biology -10.824997581214802 What 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)
What are enzymes? Enzyme structure and function -10.824997581214802 What 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)
What are enzymes? Practice and theory of enzyme immunoassays -10.824997581214802 What 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)
What are enzymes? Enzyme kinetics; open and closed systems -10.824997581214802 What 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)
What are enzymes? Enzymes; properties, distribution, methods and applications -10.824997581214802 What 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)
What are enzymes? Immobilized enzymes, preparation and engineering: recent advances -10.824997581214802 What 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)
What are enzymes? Enzymes: Nature's Energizers -10.824997581214802 What 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)
What are enzymes? Enzymes and enzyme therapy: how to jump start your way to lifelong good health -10.824997581214802 What 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)
What are enzymes? Multi-enzyme systems -10.824997581214802 What 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)
What are enzymes? Handbook of enzyme biotechnology -10.824997581214802 What 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)
What are enzymes? Enzyme kinetics : physical bases, data analysis and uses -10.824997581214802 What 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)
What are enzymes? The Enzymes: Control by Phosphorylation, Part B -10.824997581214802 What 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)
What are enzymes? Industrial enzymes: recent advances -10.824997581214802 What 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)
What are enzymes? Industrial Enzymes from Microbial Sources: Recent Advances (Chemical technology review) -10.824997581214802 What 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)
What are enzymes? Allgemeine chemie der enzyme -10.824997581214802 What 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)
What are enzymes? Enzyme immunoassays : from concept to product development -10.824997581214802 What 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)
What are enzymes? Enzyme kinetics : from diastase to multi-enzyme systems -10.824997581214802 What 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)
What are enzymes? Digestive Enzymes (Good Health Guide Series) -10.824997581214802 What 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)
What are enzymes? Enzyme synthesis and degradation in mammalian systems -10.824997581214802 What 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)
What are enzymes? Enzyme kinetics : principles and methods -10.824997581214802 What 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)
What are enzymes? Handbook of Enzymes -10.824997581214802 What 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)
What are enzymes? Analysis of enzyme kinetic data -10.824997581214802 What 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)
What are enzymes? Enzymes : biochemistry, biotechnology and clinical chemistry -10.824997581214802 What 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)
What are enzymes? Food enzymes: the missing link to radiant health -10.824997581214802 What 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)
What are enzymes? Immuno enzyme techniques in cytochemistry -10.824997581214802 What 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)
What are enzymes? Enzymes, nature's energizer -10.824997581214802 What 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)
What are enzymes? Mechanism-based enzyme inactivation: chemistry and enzymology -10.824997581214802 What 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)
What are enzymes? Acute trauma and systemic enzyme therapy -10.824997581214802 What 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)
What are enzymes? Topics Enzyme Fermentation Vol -10.824997581214802 What 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)
What are enzymes? Markets for bugs and enzymes -10.824997581214802 What 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)
What are enzymes? Practical Guide to Protein & Enzyme -10.824997581214802 What 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)
What are enzymes? Enzymes, growth and cancer -10.824997581214802 What 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)
What are enzymes? Thermodynamic Kinetic Aspects of Enzyme -10.824997581214802 What 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)
What are enzymes? Handbook of enzyme electrophoresis in human genetics -10.824997581214802 What 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)
What are enzymes? Enzyme induction by viruses -10.824997581214802 What 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)
What are enzymes? Bugs & enzymes -10.824997581214802 What 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)
What are enzymes? Crystalline enzymes; the chemistry of pepsin, trypsin, and bacteriophage -10.824997581214802 What 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)
What are enzymes? Source book of enzymes -10.824997581214802 What 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)
What are enzymes? TheM ethuselah enzyme -10.824997581214802 What 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)
What are enzymes? Chemistry and methods of enzymes -10.824997581214802 What 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)
What are enzymes? Principles of enzyme kinetics -10.824997581214802 What 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)
What are enzymes? Enzyme structure and mechanism -10.824997581214802 What 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)
What are enzymes? Introduction to the chemistry of enzymes -10.824997581214802 What 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)
What are enzymes? Enzymes in Metabolic Pathways: A Comparative Study of Mechanism, Structure, Evolution, and Control -10.824997581214802 What 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)
What are enzymes? Digestive Enzymes (Woodland Health) -10.824997581214802 What 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)
What are enzymes? Outlines of enzyme chemistry -10.824997581214802 What 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)
What are enzymes? Proteolytic Enzymes: A Practical Approach -10.824997581214802 What 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)
What are enzymes? Electroenzymatic synthesis using flavin-containing enzymes -10.824997581214802 What 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)
What are enzymes? Behavior of enzyme systems -10.824997581214802 What 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)
What are enzymes? Enzymes: The Sparks of Life (Natural Health Guide) -10.824997581214802 What 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)
What are enzymes? Fundamentals of enzyme kinetics -10.824997581214802 What 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)
What are enzymes? Immobilized Enzyme Cell Technol -10.824997581214802 What 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)
What are enzymes? Enzyme Kinetics and Mechanism -10.824997581214802 What 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)
What are enzymes? Enzyme catalysis and regulation -10.824997581214802 What 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)
What are enzymes? Enzymes in action -10.824997581214802 What 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)
What are enzymes? Enzymes: Biochemistry, Biotechnology and Clinical Chemistry (Horwood Chemical Science) -10.824997581214802 What 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)
What are enzymes? Hydrolytic Enzymes (New Comprehensive Biochemistry) -10.824997581214802 What 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)
What are enzymes? Kinetics of enzyme mechanisms -10.824997581214802 What 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)
What are enzymes? Enzymes in metabolic pathways : a comparative study of mechanism, structure, evolution, and control -10.824997581214802 What 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)
What are enzymes? Digestive Enzymes: The Key to Good Health and Longevity (Woodland Health) -10.824997581214802 What 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)
What are enzymes? Biomedical Applications of Immobilized Enzymes and Proteins -10.824997581214802 What 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)
What are enzymes? Behavior of enzyme systems; an analysis of kinetics and mechanism -10.824997581214802 What 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)
What are enzymes? Enzymes: physical principles -10.824997581214802 What 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)
What are enzymes? Industrial enzymes and their applications -10.824997581214802 What 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)
What are enzymes? Respiration & Enzyme Action -10.824997581214802 What 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)
What are enzymes? Structure analysis of enzymes -10.824997581214802 What 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)
What are enzymes? Enzyme Biotechnology: Protein Engineering, Structure Prediction and Fermentation (Ellis Horwood Books in the Biological Sciences) -10.824997581214802 What 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)
What are enzymes? The Enzymes. Volume VIII: Group Transfer. Part A. Nucleotidyl Transfer. Nucleosidyl Transfer. Acyl Transfer. Phosphoryl Transfer. Third Edition -10.824997581214802 What 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)
What are enzymes? Fundamentals of Enzyme Kinetics -10.824997581214802 What 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)
What are enzymes? Enzymes in food processing -10.824997581214802 What 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)
What are enzymes? Enzyme kinetics : a modern approach -10.824997581214802 What 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)
What are enzymes? Function and Regulation of Monoamine Enzymes -10.824997581214802 What 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)
What are enzymes? Enzyme assays for food scientists -10.824997581214802 What 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)
What are enzymes? Lactic acid bacteria -10.917166292718647 What 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)
What are enzymes? what make seeds sprout -10.960611764592546 What 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)
What are enzymes? P-450 -11.022065415752152 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (P-450, drug-metabolizing, enzyme system of the liver) -> P-450 (5419ms)
What are enzymes? understanding -11.22003203818527 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (The COX-2 enzyme, has become a primary model for, understanding) -> understanding (5419ms)
What are enzymes? pill Galvus -11.293525569570498 What 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)
What are enzymes? vitamin C -11.336389781113592 What 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)
What are enzymes? biodegradable and non-toxic -11.415521449670825 What 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)
What are enzymes? present in every organism -11.434547362250491 What 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)
What are enzymes? Folic acid -11.504630213149934 What 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)
What are enzymes? Reverse transcriptase -11.5277986133063 What 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)
What are enzymes? Tobacco smoke -11.53485679287875 What 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)
What are enzymes? nature 's catalysts -11.538345160605402 What 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)
What are enzymes? active on carbohydrates -11.558209381987696 What 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)
What are enzymes? GoutClear -11.589813160704319 What 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)
What are enzymes? ?beta-glucosidase? -11.602191928426556 What 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)
What are enzymes? a class of proteins -11.603693782083958 What 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)
What are enzymes? protease inhibitors -11.6092176217246 What 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)
What are enzymes? a type of protein -11.614921327988775 What 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)
What are enzymes? special types of proteins -11.614921327988775 What 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)
What are enzymes? what?s -11.62297280324725 What 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)
What are enzymes? a form of proteins -11.649797271042903 What 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)
What are enzymes? present in raw food -11.649797271042903 What 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)
What are enzymes? specific types of proteins -11.649797271042903 What 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)
What are enzymes? ? production -11.665754887494018 What 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)
What are enzymes? a kind of protein -11.68876255465091 What 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)
What are enzymes? substances produced by living organisms -11.68895539347713 What 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)
What are enzymes? Vitamin B-6 -11.69315754854264 What 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)
What are enzymes? essential to digestion and metabolism -11.694344790669248 What 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)
What are enzymes? essential for health and longevity -11.709356512341081 What 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)
What are enzymes? promoters instead of inhibitors of inflammation -11.709356512341081 What 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)
What are enzymes? biological catalysts -11.723660634439828 What 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)
What are enzymes? a water soluble vitamin -11.72887594224437 What 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)
What are enzymes? one pill Galvus -11.735969307473242 What 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)
What are enzymes? one of the fundamental building materials -11.757003905379626 What 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)
What are enzymes? A lot -11.776314294811712 What 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)
What are enzymes? heat sensitive -11.78218497464327 What 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)
What are enzymes? prostate cancer cells -11.786233898157956 What 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)
What are enzymes? a reaction -11.795760164657416 What 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)
What are enzymes? too large to cross the blood-brain barrier -11.795988136047525 What 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)
What are enzymes? unable to travel inside of the lysosome -11.795988136047525 What 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)
What are enzymes? substrate particular -11.804055526800914 What 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)
What are enzymes? large proteins -11.828288463602215 What 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)
What are enzymes? Europe -11.831119674254746 What 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)
What are enzymes? Orlistat -11.831494193857008 What 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)
What are enzymes? worker bees -11.839563816250111 What 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)
What are enzymes? Alcohol -11.856151993784096 What 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)
What are enzymes? Caffeine -11.863705636898239 What 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)
What are enzymes? Chlorite dismutase -11.877886866020464 What 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)
What are enzymes? Papaya Papaya -11.893144060787728 What 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)
What are enzymes? a promising new drug -11.909658703883897 What 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)
What are enzymes? Dead Sea Mud -11.924824823259895 What 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)
What are enzymes? so important -11.928800052090073 What 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)
What are enzymes? Viral DNA polymerase -11.93818042707024 What 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)
What are enzymes? Copper -11.954397201506811 What 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)
What are enzymes? MNT -11.955947297806365 What 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)
What are enzymes? Glutathione -11.956573243142921 What 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)
What are enzymes? Triclosan -11.957049813412397 What 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)
What are enzymes? Fluoride -11.957049813412397 What 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)
What are enzymes? Aromatase -11.957442495674574 What 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)
What are enzymes? Papayas -11.961152783527595 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Papayas, are known for, their enzyme) -> Papayas (8193ms)
What are enzymes? a poison -11.972855878899239 What 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)
What are enzymes? Soccol et al -11.974963077980048 What 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)
What are enzymes? adult bone marrow -11.97895180220637 What 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)
What are enzymes? optical density measurements -12.004658092179195 What 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)
What are enzymes? Serotonin -12.013638480914706 What 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)
What are enzymes? raw , unpasteurized honey -12.021873066536024 What 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)
What are enzymes? Inosine -12.031302669396602 What 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)
What are enzymes? several other steps -12.031546851481739 What 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)
What are enzymes? seminal plasma -12.031765773363421 What 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)
What are enzymes? Sprouts -12.032042732971448 What 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)
What are enzymes? essential to healthy digestion -12.043760376076651 What 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)
What are enzymes? Deramaxx functions -12.059952081550637 What 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)
What are enzymes? one specific job -12.063168705538601 What 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)
What are enzymes? Resveratrol -12.067083032372512 What 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)
What are enzymes? expensive to produce -12.068843965405325 What 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)
What are enzymes? Danny J Lewis -12.071681165121245 What 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)
What are enzymes? Cimetidine -12.088775523300008 What 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)
What are enzymes? identical reactions -12.09015755058888 What 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)
What are enzymes? Protein catalysts -12.093332929568593 What 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)
What are enzymes? an AST -12.107503821695353 What 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)
What are enzymes? The Angel Juicer -12.1311479140474 What 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)
What are enzymes? cGMP or sildenafil -12.137566528248701 What 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)
What are enzymes? certain spices -12.143666670173943 What 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)
What are enzymes? molecular conversions -12.147694972619544 What 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)
What are enzymes? essential to life -12.15134235019858 What 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)
What are enzymes? irradiating or microwaving -12.153482094277619 What 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)
What are enzymes? Cooking foods -12.155480161942807 What 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)
What are enzymes? carbon dioxide dissolution -12.161653075170886 What 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)
What are enzymes? Statins Cause Viagra Drink Vodka -12.185805213645844 What 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)
What are enzymes? rather flexible structures -12.188325080310388 What 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)
What are enzymes? non-ideal conditions -12.196807807656596 What 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)
What are enzymes? proteins in nature -12.197445839157524 What 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)
What are enzymes? Organophosphate pesticides -12.201423750306413 What 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)
What are enzymes? oil -12.205649777072152 What 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)
What are enzymes? identical to EC -12.224748360605414 What 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)
What are enzymes? highly specific -12.229730943517012 What 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)
What are enzymes? damage cell structures -12.235369126066663 What 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)
What are enzymes? rigorous quality control testing -12.23659672272889 What 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)
What are enzymes? Galvus -12.237887783699563 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Galvus, is known as, enzyme inhibitors) -> Galvus (8349ms)
What are enzymes? necessary for proper digestion -12.238609166005112 What 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)
What are enzymes? beneficial to the body -12.238609166005112 What 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)
What are enzymes? extremely sensitive to heat -12.239146063486768 What 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)
What are enzymes? catalysts in the body -12.239146063486768 What 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)
What are enzymes? seconds & minutes -12.239678057171302 What 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)
What are enzymes? an extent -12.243748452105976 What 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)
What are enzymes? CYP3A4 and fluvoxamine -12.252915388222858 What 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)
What are enzymes? off-kilter downstream -12.254280661560003 What 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)
What are enzymes? important for proper digestion -12.259010284869063 What 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)
What are enzymes? very little -12.264309748180338 What 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)
What are enzymes? last a long time -12.265710674753887 What 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)
What are enzymes? highly specific for their substrate -12.268909049646737 What 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)
What are enzymes? aid digestion -12.2729718249282 What 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)
What are enzymes? essential for normal digestion -12.274022006540896 What 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)
What are enzymes? a bit haywire -12.276385585098891 What 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)
What are enzymes? very useful -12.289035382293878 What 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)
What are enzymes? extremely powerful -12.294813545111504 What 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)
What are enzymes? extremely safe -12.303510206484056 What 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)
What are enzymes? extremely important -12.303510206484056 What 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)
What are enzymes? very delicate -12.303510206484056 What 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)
What are enzymes? more concentrated -12.303510206484056 What 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)
What are enzymes? present in all living cells -12.313180128975123 What 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)
What are enzymes? good for the digestive system -12.318569526167241 What 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)
What are enzymes? very fragile -12.323911325348009 What 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)
What are enzymes? especially important -12.323911325348009 What 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)
What are enzymes? highly efficient -12.323911325348009 What 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)
What are enzymes? very selective -12.323911325348009 What 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)
What are enzymes? proteins made by the body -12.333581247839076 What 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)
What are enzymes? essential to all bodily functions -12.333581247839076 What 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)
What are enzymes? responsible for every biochemical reaction -12.333581247839076 What 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)
What are enzymes? necessary for replication of DNA -12.334995408517422 What 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)
What are enzymes? substances which make life possible -12.35615706638266 What 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)
What are enzymes? TADALAFIL -12.36227091590874 What 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)
What are enzymes? a part of every living cell -12.366216919205785 What 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)
What are enzymes? Nattokinase -12.368941855751196 What 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)
What are enzymes? thorough testing -12.400126287632432 What 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)
What are enzymes? a memory Easter egg hunt -12.40017326232126 What 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)
What are enzymes? present in all living biological systems -12.403804459421204 What 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)
What are enzymes? normal levels -12.416926040062448 What 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)
What are enzymes? substrate specific -12.417100358564422 What 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)
What are enzymes? a part of animal and plant life -12.429959844768645 What 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)
What are enzymes? high doses -12.438146829902536 What 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)
What are enzymes? protein molecules -12.45251319910021 What 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)
What are enzymes? wrong direction -12.453178156828061 What 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)
What are enzymes? full speed -12.459367567040328 What 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)
What are enzymes? a part of every metabolic process in the body -12.480188611034594 What 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)
What are enzymes? a must for you to enjoy a full , healthy life -12.491502179148592 What 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)
What are enzymes? intestinal lumen -12.496503870207038 What 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)
What are enzymes? degrade lignin -12.538061158081526 What 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)
What are enzymes? genes -12.541656884035966 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (genes, encoding drug, metabolizing enzymes) -> genes (5477ms)
What are enzymes? normal range -12.563702879927098 What 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)
What are enzymes? ingredients lists -12.565471305431586 What 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)
What are enzymes? Dianabol -12.56879647613994 What 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)
What are enzymes? more work -12.583155244262697 What 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)
What are enzymes? ordinary chemistry -12.583155244262697 What 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)
What are enzymes? important work -12.584859048937634 What 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)
What are enzymes? simultaneous reductions -12.59452460920716 What 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)
What are enzymes? different material -12.604867968710877 What 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)
What are enzymes? Vanadate -12.655527404894595 What 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)
What are enzymes? Danny -12.656366773517652 What 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)
What are enzymes? bio-catalysts -12.665066441419174 What 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)
What are enzymes? Papaya -12.669138223502067 What 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)
What are enzymes? Mood -12.687454225867437 What 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)
What are enzymes? Hematin -12.698773563574576 What 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)
What are enzymes? a good job cleaning the toxic byproducts -12.818500567879955 What 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)
Who is the conductor of the Boston Pops? Casella -0.16780111296264344 Who 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)
Who is the conductor of the Boston Pops? Williams -0.5103986544639829 Who 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)
Who is the conductor of the Boston Pops? Keith Lockhart -0.8759290516112841 Who 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)
Who is the conductor of the Boston Pops? John Williams -1.6433587754232823 Who 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)
Who is the conductor of the Boston Pops? Mr. Lockhart -1.7471798257728142 Who 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)
Who is the conductor of the Boston Pops? 1930 -3.2518892216125277 Who 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)
When was the Red Cross founded? 1914 3.53458084166472 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Australian Red Cross, was founded in, 1914) -> 1914 (4250ms)
When was the Red Cross founded? 1864 3.2609854723088834 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, 1864) -> 1864 (4250ms)
When was the Red Cross founded? 1836 3.2301637430288217 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the red cross, was founded in, 1836) -> 1836 (4250ms)
When was the Red Cross founded? 1881 3.2234863180862963 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Red Cross, was founded in, 1881) -> 1881 (4396ms)
When was the Red Cross founded? 1863 3.187661620503814 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, 1863) -> 1863 (4396ms)
When was the Red Cross founded? 1886 3.0659749154469327 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, 1886) -> 1886 (4396ms)
When was the Red Cross founded? 1932 3.035549357837708 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Haitian Red Cross, was founded in, 1932) -> 1932 (4396ms)
When was the Red Cross founded? 1931 3.0063062695582006 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Haitian Red Cross, was founded in, 1931) -> 1931 (4427ms)
When was the Red Cross founded? 1877 2.9303745435120327 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Japanese Red Cross Agency, was founded in, 1877) -> 1877 (4427ms)
When was the Red Cross founded? May 1881 1.4882267361440054 When 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)
When was the Red Cross founded? 1950 1.223518222702611 When 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)
When was the Red Cross founded? 2004 0.9429122404990964 When 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)
When was the Red Cross founded? 1954 0.8567225493589503 When 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)
When was the Red Cross founded? 1997 0.8219360735986769 When 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)
When was the Red Cross founded? 1870 0.7727237872088764 When 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)
When was the Red Cross founded? 1923 0.7688982762479308 When 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)
When was the Red Cross founded? 1917 0.7532068547460207 When 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)
When was the Red Cross founded? 1924 0.7148363387352474 When 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)
When was the Red Cross founded? 1876 0.7018914980033046 When 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)
When was the Red Cross founded? 1865 0.6545803806157564 When 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)
When was the Red Cross founded? 1967 0.5371444662654334 When 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)
When was the Red Cross founded? 1939 0.5142352006426525 When 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)
When was the Red Cross founded? May 0.48096833579484555 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The American Red Cross, was founded in, May) -> May (4505ms)
When was the Red Cross founded? 1955 0.4803933934010476 When 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)
When was the Red Cross founded? July 0.46914820027357784 When 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)
When was the Red Cross founded? June 2 , 1917 0.4481697695855331 When 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)
When was the Red Cross founded? May 21 , 1881 0.427074248824419 When 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)
When was the Red Cross founded? 1900 -0.3023879930050768 When 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)
When was the Red Cross founded? 2010 -0.35877196914139864 When 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)
When was the Red Cross founded? the 19th century -0.42325451682404847 When 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)
When was the Red Cross founded? 2007 -0.5416830108222794 When 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)
When was the Red Cross founded? May 1905 -0.8330165230387525 When 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)
When was the Red Cross founded? September 2002 -1.335936517353646 When 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)
When was the Red Cross founded? 29 May 1904 -1.4893190530488911 When 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)
When was the Red Cross founded? Geneva -1.6726874204255149 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, Geneva) -> Geneva (4659ms)
When was the Red Cross founded? Switzerland -1.6758270512416455 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was originally founded in, Switzerland) -> Switzerland (4658ms)
When was the Red Cross founded? February 1941 -1.8281013123703977 When 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)
When was the Red Cross founded? Copenhagen -1.888918714425258 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Danish Red Cross, was founded in, Copenhagen) -> Copenhagen (4868ms)
When was the Red Cross founded? September -2.185503385635341 When 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)
When was the Red Cross founded? Dansville -2.430848492448115 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, Dansville) -> Dansville (4868ms)
When was the Red Cross founded? 1952as -2.5450358378802376 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts -3.107129714998587 When 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)
When was the Red Cross founded? response -3.208886387662891 When 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)
When was the Red Cross founded? Iraq -3.2108228798121705 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Australian%20Red%20Cross -3.26106744635388 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society -3.3317531393231476 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing -3.446617390398207 When 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)
When was the Red Cross founded? favor -3.519567503487952 When 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)
When was the Red Cross founded? New York -3.5720249612616244 When 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)
When was the Red Cross founded? the ?About -3.664430632890928 When 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)
When was the Red Cross founded? food -3.7513917020063894 When 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)
When was the Red Cross founded? the belief -3.7707509069229457 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Red Cross, was founded on, the belief) -> the belief (5227ms)
When was the Red Cross founded? national laws -3.827189269642522 When 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)
When was the Red Cross founded? Libya -3.829472002546253 When 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)
When was the Red Cross founded? celebration -3.8601261168938947 When 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)
When was the Red Cross founded? the battlefield -3.955448500838017 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Red Cross, was founded on, the battlefield) -> the battlefield (5227ms)
When was the Red Cross founded? Europe -4.033689198123728 When 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)
When was the Red Cross founded? Haiti -4.087168433800194 When 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)
When was the Red Cross founded? Paris -4.093814611230425 When 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)
When was the Red Cross founded? Australia -4.104743119541858 When 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)
When was the Red Cross founded? storm-hit areas -4.123745463228389 When 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)
When was the Red Cross founded? temporary housing -4.154614046150665 When 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)
When was the Red Cross founded? North Korea -4.187203326368809 When 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)
When was the Red Cross founded? the Town -4.22476506892907 When 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)
When was the Red Cross founded? the United States -4.240256866154335 When 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)
When was the Red Cross founded? Crossing The Red Sea With The Adverts -4.250269751071338 When 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)
When was the Red Cross founded? the Bolsheviks -4.25520923314377 When 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)
When was the Red Cross founded? humanity -4.3343915571568035 When 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)
When was the Red Cross founded? the Samouni family -4.409151374237156 When 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)
When was the Red Cross founded? Similar statements -4.422478896487746 When 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)
When was the Red Cross founded? more information -4.434828065037306 When 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)
When was the Red Cross founded? an HIV infection case -4.4459525330631156 When 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)
When was the Red Cross founded? Five potential donors -4.456013885922815 When 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)
When was the Red Cross founded? Darfur -4.472577568999798 When 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)
When was the Red Cross founded? a listing -4.495268516544996 When 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)
When was the Red Cross founded? a compatible donor -4.525835855673487 When 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)
When was the Red Cross founded? community resources -4.53032140850852 When 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)
When was the Red Cross founded? size -4.530524296976452 When 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)
When was the Red Cross founded? More information -4.555014375825738 When 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)
When was the Red Cross founded? disaster supplies -4.559374712284093 When 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)
When was the Red Cross founded? Pakistan -4.595851551837457 When 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)
When was the Red Cross founded? mid-February -4.617066587487647 When 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)
When was the Red Cross founded? Chaska -4.6313879726727585 When 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)
When was the Red Cross founded? Further advice -4.639961945206459 When 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)
When was the Red Cross founded? www.redcross -4.660259540467415 When 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)
When was the Red Cross founded? the town -4.692732143486627 When 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)
When was the Red Cross founded? biomedical research -4.719331011194456 When 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)
When was the Red Cross founded? Washington -4.745941481388865 When 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)
When was the Red Cross founded? exceptional volunteers and employees -4.832878898302136 When 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)
When was the Red Cross founded? the UK -4.87305484906619 When 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)
When was the Red Cross founded? every county -5.026949789695756 When 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)
When was the Red Cross founded? www.redcross .org -5.1074530891096686 When 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)
When was the Red Cross founded? Japan -5.132494750600754 When 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)
When was the Red Cross founded? class scheduling -5.379846802396177 When 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)
When was the Red Cross founded? already -5.523633310977368 When 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)
When was the Red Cross founded? the country -5.568290078809593 When 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)
When was the Red Cross founded? Monday -5.581177601066902 When 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)
When was the Red Cross founded? 600 MT -5.814150511188794 When 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)
When was the Red Cross founded? the parking lot -5.901819151074274 When 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)
When was the Red Cross founded? the Internet -5.922822873189293 When 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)
When was the Red Cross founded? several -5.952341561835469 When 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)
When was the Red Cross founded? war-time knitting -5.976233492998015 When 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)
When was the Red Cross founded? the infield -6.0291785428556075 When 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)
When was the Red Cross founded? the left -6.029970195420293 When 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)
When was the Red Cross founded? the D.C. Circuit Court -6.049017006852415 When 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)
When was the Red Cross founded? 16,000 bottles -6.104763815693548 When 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)
When was the Red Cross founded? clean water -6.108171749533714 When 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)
When was the Red Cross founded? affected areas -6.129015040549 When 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)
When was the Red Cross founded? page 56 -6.152035607260742 When 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)
When was the Red Cross founded? evacuees -6.2492761787804945 When 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)
When was the Red Cross founded? 60 community services -6.29087265149246 When 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)
When was the Red Cross founded? Haiti earthquake -6.362167988227013 When 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)
When was the Red Cross founded? steps -6.3945022814776085 When 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)
When was the Red Cross founded? free , safe -6.529575112519191 When 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)
When was the Red Cross founded? the city -6.5784578201260775 When 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)
When was the Red Cross founded? The lesson plan -6.58391965658522 When 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)
When was the Red Cross founded? the new county complex -6.620144870758736 When 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)
When was the Red Cross founded? the Federation -6.770784891597153 When 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)
When was the Red Cross founded? Spanish -6.803291343534992 When 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)
When was the Red Cross founded? essential health care -6.825599869217663 When 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)
When was the Red Cross founded? the wake -7.0076823075851244 When 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)
When was the Red Cross founded? Monday?s -7.186357875746629 When 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)
When was the Red Cross founded? one occasion -7.201389202672155 When 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)
When was the Red Cross founded? water safety -7.246682149249666 When 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)
When was the Red Cross founded? a family ?s -7.324677638579599 When 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)
When was the Red Cross founded? a regular basis -7.346832729878256 When 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)
When was the Red Cross founded? Twitter -7.444269576806431 When 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)
When was the Red Cross founded? the streets -7.900948254184929 When 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)
When was the Red Cross founded? the shield -7.971809278588347 When 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)
When was the Red Cross founded? the night -8.01350659045418 When 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)
When was the Red Cross founded? the scene -8.26982974701454 When 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)
When was the Red Cross founded? Services Offered -8.41745242565377 When 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)
When was the Red Cross founded? the form -8.42258232845961 When 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)
When was the Red Cross founded? the law -8.980571149656457 When 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)
When was the Red Cross founded? the news -9.078851344600045 When 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)
Who is the president of Stanford University? Donald Kennedy 3.523012497813199 Who 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)
Who is the president of Stanford University? David Starr Jordan 2.634954161018904 Who 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)
Who is the president of Stanford University? John Hennessy 1.7368627427973178 Who 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)
Who is the president of Stanford University? Casper 0.9518284973593787 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Casper, was the president of, Stanford University) -> Casper (1565ms)
Who is the president of Stanford University? Jordan 0.5697695070140518 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Jordan, was the first President of, Stanford University) -> Jordan (1565ms)
Who is the president of Stanford University? Gerhard Casper 0.47466719684619996 Who 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)
Who is the president of Stanford University? the founder 0.4038986332722794 Who 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)
Who is the president of Stanford University? The author 0.21386895600288103 Who 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)
Who is the president of Stanford University? Richard W. Lyman -0.43835036568712327 Who 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)
Who is the president of Stanford University? Hennessy -1.0339834507271617 Who 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)
Who is the president of Stanford University? Greg -1.073547099980408 Who 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)
Who is the president of Stanford University? Dr. Shapiro -1.4632309750642802 Who 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)
Who is the president of Stanford University? Kennedy -1.8624529642956644 Who 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)
Who is the president of Stanford University? Lucky Gunasekara -2.0376110133550203 Who 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)
Who is the president of Stanford University? Dr. Sieburg -3.925803851369801 Who 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)
Who is the president of Stanford University? Eddy -4.014340849927146 Who 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)
Who is the president of Stanford University? Fellow -4.566645359718104 Who 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)
Who is the president of Stanford University? Harvard -4.643514308898154 Who 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)
Who is the president of Stanford University? Kosal -5.109175159637035 Who 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)
Who is the president of Stanford University? Summit -5.304875347562858 Who 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)
Who is the president of Stanford University? the Institute -7.742536942666818 Who 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)
Who is the president of Stanford University? palo alto -9.107488596611573 Who 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)
Who is the president of Stanford University? the PSA -9.140405316300528 Who 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)
Who is the president of Stanford University? Villanova University -9.188849514541806 Who 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)
Who is the president of Stanford University? Herbert Hoover -9.32445579715604 Who 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)
Who is the president of Stanford University? Anyone Responsible -9.365090169011303 Who 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)
Who is the president of Stanford University? Tocqueville Right -9.514851224325119 Who 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)
Who is the president of Stanford University? Charles Coolidge -9.526345752943964 Who 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)
Who is the president of Stanford University? sports team -9.553022661387562 Who 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)
Who is the president of Stanford University? NASA -9.679486470303942 Who 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)
Who is the president of Stanford University? Silicon Valley -9.802451336457105 Who 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)
Who is the president of Stanford University? private corporations -9.829666925338785 Who 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)
Who is the president of Stanford University? campus visitors -9.855800634494745 Who 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)
Who is the president of Stanford University? Philip Zimbardo -9.921490398008245 Who 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)
Who is the president of Stanford University? private property -9.971138594094562 Who 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)
Who is the president of Stanford University? natural selection -10.061045193604468 Who 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)
Who is the president of Stanford University? Francis Fukuyama -10.067766849011901 Who 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)
Who is the president of Stanford University? Fouad Ajami -10.067766849011901 Who 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)
Who is the president of Stanford University? the U.S. Recovery -10.153143843035142 Who 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)
Who is the president of Stanford University? Sebastian Thrun -10.156809551345958 Who 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)
Who is the president of Stanford University? Computer Science -10.185300600597044 Who 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)
Who is the president of Stanford University? the Robert M. -10.195649885437982 Who 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)
Who is the president of Stanford University? Mr. Yang -10.217661526209278 Who 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)
Who is the president of Stanford University? the Green Dorm -10.2203428527552 Who 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)
Who is the president of Stanford University? Michael Shanks -10.220733099088818 Who 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)
Who is the president of Stanford University? the MDI Principal Investigator -10.22516675250231 Who 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)
Who is the president of Stanford University? David Kelley -10.238584559051002 Who 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)
Who is the president of Stanford University? Keith Devlin -10.248143246438875 Who 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)
Who is the president of Stanford University? the AHPCRC lead organization -10.34342430672174 Who 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)
Who is the president of Stanford University? co-chairperson -10.445118306430455 Who 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)
Who is the president of Stanford University? a result -10.461784069593598 Who 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)
Who is the president of Stanford University? the GP-B prime contractor -10.462032029211914 Who 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)
Who is the president of Stanford University? a published author -10.464897888299038 Who 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)
Who is the president of Stanford University? a multi-disciplinary facility -10.478915115574441 Who 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)
Who is the president of Stanford University? Sergey Brin -10.483843595967237 Who 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)
Who is the president of Stanford University? a former advertising executive -10.49142369732793 Who 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)
Who is the president of Stanford University? a regular client -10.518959160272441 Who 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)
Who is the president of Stanford University? a fully-accredited -10.533278847644757 Who 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)
Who is the president of Stanford University? a respected developmental psychologist -10.54636915570243 Who 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)
Who is the president of Stanford University? an Affirmative Action employer -10.552558565914696 Who 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)
Who is the president of Stanford University? a good example -10.574236222190523 Who 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)
Who is the president of Stanford University? non-voting associate members -10.576004594992716 Who 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)
Who is the president of Stanford University? an immediate alert -10.576888834096108 Who 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)
Who is the president of Stanford University? a highly respected expert -10.578200287760266 Who 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)
Who is the president of Stanford University? a national leader providing education -10.579604791715441 Who 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)
Who is the president of Stanford University? Accelerated C++ -10.584295308621869 Who 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)
Who is the president of Stanford University? a national research -10.597225384832804 Who 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)
Who is the president of Stanford University? a Junior Research Fellow -10.60735337975552 Who 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)
Who is the president of Stanford University? Economic Advisers -10.61529706995409 Who 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)
Who is the president of Stanford University? an affirmative -10.618916069347998 Who 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)
Who is the president of Stanford University? an Equal -10.626672214770197 Who 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)
Who is the president of Stanford University? a double-blind randomized study -10.638954757642354 Who 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)
Who is the president of Stanford University? a week-long journalism camp -10.641862551875938 Who 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)
Who is the president of Stanford University? an equal opportunity -10.649686736104986 Who 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)
Who is the president of Stanford University? Professor Eric Dunham -10.664359826425606 Who 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)
Who is the president of Stanford University? four definitions -10.672727421858534 Who 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)
Who is the president of Stanford University? a truly wonderful human being -10.67418561854187 Who 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)
Who is the president of Stanford University? Andreas Wigend -10.67440738119617 Who 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)
Who is the president of Stanford University? an affirmative action -10.690626872994702 Who 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)
Who is the president of Stanford University? Professor Huneeus -10.690846114481612 Who 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)
Who is the president of Stanford University? a huge success -10.692718728304017 Who 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)
Who is the president of Stanford University? a typical modern quadrotor design -10.694187701168673 Who 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)
Who is the president of Stanford University? a Rhodes Scholar -10.714568522217203 Who 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)
Who is the president of Stanford University? Peter Raven -10.741245371771656 Who 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)
Who is the president of Stanford University? a proud father and grandfather -10.745406576732558 Who 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)
Who is the president of Stanford University? a Mechanical Engineer -10.74753897030184 Who 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)
Who is the president of Stanford University? an affirmative-action -10.749148339110633 Who 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)
Who is the president of Stanford University? Observatory Post-Doctoral Fellow -10.75720061069353 Who 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)
Who is the president of Stanford University? multiple studies -10.76523995833776 Who 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)
Who is the president of Stanford University? Brother Billy -10.773960690230588 Who 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)
Who is the president of Stanford University? a Fulbright Fellow -10.777601729557482 Who 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)
Who is the president of Stanford University? university -10.783261785371977 Who 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)
Who is the president of Stanford University? Jonathan Gelbart -10.787092728890402 Who 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)
Who is the president of Stanford University? an NSF Postdoctoral Fellow -10.787298385419234 Who 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)
Who is the president of Stanford University? much publicity -10.79302469997588 Who 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)
Who is the president of Stanford University? an equal-opportunity employer -10.793452727459144 Who 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)
Who is the president of Stanford University? a highly-regarded academic institution -10.795712935651657 Who 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)
Who is the president of Stanford University? Dragomir Anguelov -10.798230713175055 Who 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)
Who is the president of Stanford University? a large , scenic campus -10.799407253158835 Who 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)
Who is the president of Stanford University? 250 -10.80204971407976 Who 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)
Who is the president of Stanford University? David Lobell -10.809610209445026 Who 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)
Who is the president of Stanford University? Today Karim -10.811558288127939 Who 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)
Who is the president of Stanford University? a smoke-free campus -10.813853846323097 Who 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)
Who is the president of Stanford University? an equal opportunity employer -10.816836009661946 Who 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)
Who is the president of Stanford University? a four year varsity athlete -10.81974380389553 Who 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)
Who is the president of Stanford University? 00130500 -10.819798221038127 Who 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)
Who is the president of Stanford University? Kenji Hakuta -10.825244186624024 Who 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)
Who is the president of Stanford University? Ren Ng -10.83553817749144 Who 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)
Who is the president of Stanford University? an additional conference partner -10.846539612124833 Who 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)
Who is the president of Stanford University? yield rates -10.851300173688594 Who 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)
Who is the president of Stanford University? zombie rats -10.856376937930747 Who 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)
Who is the president of Stanford University? the nation -10.856775828277438 Who 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)
Who is the president of Stanford University? a Wasserstein Public Interest Fellow -10.862677265481505 Who 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)
Who is the president of Stanford University? Ramesh Johari -10.86380144736975 Who 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)
Who is the president of Stanford University? a selective depository library -10.892090518226262 Who 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)
Who is the president of Stanford University? Dr. Perl -10.926744621664806 Who 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)
Who is the president of Stanford University? 12 minutes -10.931008573144132 Who 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)
Who is the president of Stanford University? ncaa -10.932159888617425 Who 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)
Who is the president of Stanford University? significant commitments -10.935989882763174 Who 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)
Who is the president of Stanford University? Larry Page -10.942978668390865 Who 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)
Who is the president of Stanford University? Meg Webster -10.951498585558065 Who 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)
Who is the president of Stanford University? a social demographer studying race -10.955910248840137 Who 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)
Who is the president of Stanford University? Ph.D. -10.957613641021732 Who 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)
Who is the president of Stanford University? David Filo -10.958562630876203 Who 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)
Who is the president of Stanford University? Dr. Wang -10.982232603006361 Who 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)
Who is the president of Stanford University? an intense 3-day course -11.015830516937648 Who 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)
Who is the president of Stanford University? invaluable -11.02558141475777 Who 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)
Who is the president of Stanford University? a debate -11.047596685979856 Who 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)
Who is the president of Stanford University? Mr. Moghadam -11.08955487957698 Who 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)
Who is the president of Stanford University? a 2011-2012 post-doctoral fellow -11.094779237604552 Who 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)
Who is the president of Stanford University? eligible -11.106927617704555 Who 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)
Who is the president of Stanford University? Dr. Keith Devlin -11.121194844901282 Who 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)
Who is the president of Stanford University? Ann Arvin -11.134632013327488 Who 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)
Who is the president of Stanford University? the University -11.202335762946946 Who 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)
Who is the president of Stanford University? one of the worlds -11.221005767320047 Who 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)
Who is the president of Stanford University? Tom Byers -11.271119931799126 Who 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)
Who is the president of Stanford University? new discoveries -11.28078036068046 Who 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)
Who is the president of Stanford University? The Evans-Wentz Lectureship -11.283220592667716 Who 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)
Who is the president of Stanford University? Erin Krampetz -11.28790733480756 Who 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)
Who is the president of Stanford University? offering -11.300502348425312 Who 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)
Who is the president of Stanford University? The Chair -11.311488267907114 Who 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)
Who is the president of Stanford University? a great profit center -11.31609337762485 Who 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)
Who is the president of Stanford University? an Honorable Mention All-Pac 10 -11.316378454796123 Who 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)
Who is the president of Stanford University? stem cells -11.316572344379756 Who 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)
Who is the president of Stanford University? Physiologist -11.320280514168463 Who 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)
Who is the president of Stanford University? the ICTP four times -11.328015378129123 Who 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)
Who is the president of Stanford University? a review -11.347941714518717 Who 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)
Who is the president of Stanford University? Bill Ascherfeld -11.3674205441226 Who 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)
Who is the president of Stanford University? a peice -11.368216427808594 Who 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)
Who is the president of Stanford University? a chip -11.368342833382668 Who 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)
Who is the president of Stanford University? immortality -11.396140192889819 Who 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)
Who is the president of Stanford University? a show-and-tell conference -11.401464568756449 Who 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)
Who is the president of Stanford University? William Hewlett -11.412874828326505 Who 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)
Who is the president of Stanford University? an annual Stressed -11.422179153462007 Who 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)
Who is the president of Stanford University? an important new structure -11.429020084639811 Who 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)
Who is the president of Stanford University? numerous ongoing exhibits -11.4311677931146 Who 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)
Who is the president of Stanford University? a number one -11.433673734783149 Who 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)
Who is the president of Stanford University? an Equal Opportunity -11.446239259116824 Who 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)
Who is the president of Stanford University? a novel method -11.46247562972482 Who 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)
Who is the president of Stanford University? a Java-based application -11.463736494038791 Who 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)
Who is the president of Stanford University? Football -11.467423328166225 Who 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)
Who is the president of Stanford University? nanoparticles -11.47761161221328 Who 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)
Who is the president of Stanford University? Deliberative Polling -11.478822880711757 Who 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)
Who is the president of Stanford University? a church -11.479880519636726 Who 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)
Who is the president of Stanford University? on-campus health facilities -11.484957231176583 Who 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)
Who is the president of Stanford University? night and weekend duties -11.488572762732366 Who 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)
Who is the president of Stanford University? an admirable job chronicling -11.489145497746508 Who 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)
Who is the president of Stanford University? a resurgence -11.495110806176369 Who 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)
Who is the president of Stanford University? a method -11.506052751937698 Who 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)
Who is the president of Stanford University? a C++ compiler -11.5200116429972 Who 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)
Who is the president of Stanford University? a website -11.521045555718212 Who 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)
Who is the president of Stanford University? the Author Betsy Fields -11.523681241914085 Who 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)
Who is the president of Stanford University? the Author Maneesh Sethi -11.525449667418574 Who 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)
Who is the president of Stanford University? a mandate -11.526514519051073 Who 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)
Who is the president of Stanford University? recent stem cell research -11.53146180834771 Who 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)
Who is the president of Stanford University? Boyd?s already vital work -11.536827627706007 Who 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)
Who is the president of Stanford University? an institutional organization -11.538009100372213 Who 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)
Who is the president of Stanford University? a pilot project -11.554003399650231 Who 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)
Who is the president of Stanford University? the Association -11.555065002985565 Who 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)
Who is the president of Stanford University? a technique -11.557336248331133 Who 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)
Who is the president of Stanford University? Sax -11.560617085664276 Who 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)
Who is the president of Stanford University? Tory Kiam -11.561175578789157 Who 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)
Who is the president of Stanford University? Brian Holloway -11.562821695564127 Who 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)
Who is the president of Stanford University? piezoelectricity -11.570060144688203 Who 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)
Who is the president of Stanford University? days -11.570060144688203 Who 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)
Who is the president of Stanford University? a key home-fairway edge -11.577876748693608 Who 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)
Who is the president of Stanford University? a different approach -11.577876748693608 Who 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)
Who is the president of Stanford University? the Stanford Guidelines -11.580158585942243 Who 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)
Who is the president of Stanford University? a similar set-up -11.588408357662257 Who 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)
Who is the president of Stanford University? a great time -11.602555550888983 Who 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)
Who is the president of Stanford University? a young man -11.605073815188382 Who 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)
Who is the president of Stanford University? Rice -11.605566485647088 Who 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)
Who is the president of Stanford University? Tom -11.609588025830115 Who 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)
Who is the president of Stanford University? Olympic-medalist Enith Brigitha -11.611476253553638 Who 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)
Who is the president of Stanford University? a program -11.614050079507827 Who 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)
Who is the president of Stanford University? Paromita Pain Josh Nesbit -11.616113014866686 Who 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)
Who is the president of Stanford University? a new experiment -11.61652629503681 Who 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)
Who is the president of Stanford University? a wide variety and selection -11.619058017053888 Who 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)
Who is the president of Stanford University? short-courses and talks -11.6380022145026 Who 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)
Who is the president of Stanford University? a great resource -11.64065477370589 Who 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)
Who is the president of Stanford University? a B. S. degree -11.653917727829224 Who 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)
Who is the president of Stanford University? Apple?s iPad -11.665269007774008 Who 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)
Who is the president of Stanford University? a great site -11.683725304756868 Who 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)
Who is the president of Stanford University? Wu -11.694284850076384 Who 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)
Who is the president of Stanford University? a booth and FAH -11.704317037821564 Who 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)
Who is the president of Stanford University? Soyoung Kwon -11.716819397261801 Who 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)
Who is the president of Stanford University? Student Initiated Courses -11.747563965249144 Who 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)
Who is the president of Stanford University? a d .school -11.760021466220483 Who 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)
Who is the president of Stanford University? a 16-megapixel camera -11.764524738368596 Who 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)
Who is the president of Stanford University? the ?mother -11.766196827863562 Who 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)
Who is the president of Stanford University? one of many institutions -11.766784996670633 Who 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)
Who is the president of Stanford University? a unique training environment -11.77032040975357 Who 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)
Who is the president of Stanford University? three waves -11.793940837234175 Who 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)
Who is the president of Stanford University? Mr. Steele -11.816825201729541 Who 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)
Who is the president of Stanford University? Henry I. Miller -11.816825201729541 Who 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)
Who is the president of Stanford University? Dr. Michelson -11.826249154739738 Who 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)
Who is the president of Stanford University? CA Emanuel -11.82713339384313 Who 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)
Who is the president of Stanford University? Mr. Ajami -11.828052747634356 Who 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)
Who is the president of Stanford University? a State Department adviser -11.82900150216271 Who 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)
Who is the president of Stanford University? Dr. Miller -11.836206014239592 Who 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)
Who is the president of Stanford University? Mr. Robinson -11.836533645203044 Who 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)
Who is the president of Stanford University? Jean Guo -11.836994939933684 Who 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)
Who is the president of Stanford University? Mr. Berkowitz -11.842527571824533 Who 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)
Who is the president of Stanford University? a PhD -11.84730834376773 Who 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)
Who is the president of Stanford University? B.J.Fogg -11.862998957902583 Who 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)
Who is the president of Stanford University? Dr. Robert Sapolsky -11.864269697009842 Who 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)
Who is the president of Stanford University? a decade -11.8648279789542 Who 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)
Who is the president of Stanford University? One graduate -11.867644894504426 Who 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)
Who is the president of Stanford University? nice guys -11.870288909970132 Who 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)
Who is the president of Stanford University? David Woo David -11.873603653735785 Who 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)
Who is the president of Stanford University? an essayist -11.873966452089366 Who 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)
Who is the president of Stanford University? economics -11.884664047771938 Who 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)
Who is the president of Stanford University? larrycuban Sean Reardon -11.890795605256509 Who 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)
Who is the president of Stanford University? Smith -11.893284983631837 Who 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)
Who is the president of Stanford University? a former U.S. ambassador -11.899637574672063 Who 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)
Who is the president of Stanford University? Andrew Lo -11.900260477445972 Who 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)
Who is the president of Stanford University? the next speaker -11.901443412489957 Who 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)
Who is the president of Stanford University? John Kim -11.901605958577708 Who 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)
Who is the president of Stanford University? Dr. Mark Holodniy -11.902457707708722 Who 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)
Who is the president of Stanford University? Pages Erika Williams -11.907595357686523 Who 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)
Who is the president of Stanford University? Rui Hu -11.916245086412527 Who 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)
Who is the president of Stanford University? Dr. Ehrlich -11.919712841781571 Who 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)
Who is the president of Stanford University? Michael Ray -11.921481214583766 Who 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)
Who is the president of Stanford University? Dr. Puerta -11.922626737314344 Who 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)
Who is the president of Stanford University? a Ph.D. -11.92413382648935 Who 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)
Who is the president of Stanford University? cheap solar power -11.927652370873554 Who 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)
Who is the president of Stanford University? Dr. Larkin -11.9314687067299 Who 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)
Who is the president of Stanford University? 12 points -11.938494628267216 Who 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)
Who is the president of Stanford University? an Ethics Fellow -11.939361921617103 Who 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)
Who is the president of Stanford University? the Plenary -11.942857321291413 Who 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)
Who is the president of Stanford University? Page and Brin -11.949352603962168 Who 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)
Who is the president of Stanford University? Dr. Tiller -11.958814285952702 Who 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)
Who is the president of Stanford University? Faculty Andrei Linde -11.962415652386639 Who 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)
Who is the president of Stanford University? 25 years -11.963023704142673 Who 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)
Who is the president of Stanford University? the rare instance -11.964156869374984 Who 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)
Who is the president of Stanford University? an MBA degree -11.964184025188832 Who 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)
Who is the president of Stanford University? a $ 10 million gift -11.968279705898912 Who 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)
Who is the president of Stanford University? Dr. Barrett -11.97330148215512 Who 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)
Who is the president of Stanford University? Dr. Corey Goodman -11.980983777618848 Who 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)
Who is the president of Stanford University? Mr. Guzman -11.980983777618848 Who 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)
Who is the president of Stanford University? Greg Bybee -11.989170856451555 Who 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)
Who is the president of Stanford University? Chester E. Finn Jr. -11.99478191998994 Who 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)
Who is the president of Stanford University? biology -11.99525333899823 Who 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)
Who is the president of Stanford University? Herbert L. Abrams -11.997066864778839 Who 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)
Who is the president of Stanford University? Dr. G. Scott Hubbard -12.003256274991106 Who 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)
Who is the president of Stanford University? Ge Wang -12.00690098701515 Who 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)
Who is the president of Stanford University? the unit -12.010820362819533 Who 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)
Who is the president of Stanford University? Erik -12.020892949421262 Who 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)
Who is the president of Stanford University? the first test site -12.050227236551493 Who 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)
Who is the president of Stanford University? Box .net -12.079453012895277 Who 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)
Who is the president of Stanford University? an Equal Opportunity employer -12.098662851525532 Who 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)
Who is the president of Stanford University? the most successful college -12.101510680242633 Who 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)
Who is the president of Stanford University? the AlwaysOn Summit -12.120378740604712 Who 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)
Who is the president of Stanford University? the first choice -12.120724485885837 Who 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)
Who is the president of Stanford University? Endy -12.120877404350036 Who 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)
Who is the president of Stanford University? a plant -12.127384577456564 Who 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)
Who is the president of Stanford University? Jure Leskovec -12.157950108036243 Who 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)
Who is the president of Stanford University? Kori Schake -12.167384884310323 Who 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)
Who is the president of Stanford University? Jack -12.184697134963912 Who 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)
Who is the president of Stanford University? Thad Kousser -12.185953009542532 Who 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)
Who is the president of Stanford University? the third largest ice storage facility -12.200975934866467 Who 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)
Who is the president of Stanford University? Sean Reardon -12.203375664746456 Who 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)
Who is the president of Stanford University? an 11 percent black student population -12.204260796207418 Who 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)
Who is the president of Stanford University? President David Starr Jordan -12.219244426817895 Who 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)
Who is the president of Stanford University? guidelines -12.23106750740721 Who 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)
Who is the president of Stanford University? Jeff -12.235885370650342 Who 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)
Who is the president of Stanford University? Vyas -12.236634166777538 Who 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)
Who is the president of Stanford University? Hall -12.236634166777538 Who 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)
Who is the president of Stanford University? the technique -12.243364390338744 Who 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)
How long is human gestation? approximate length of time -8.71442996711359 How 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)
How long is human gestation? haphazard process -8.759370595067605 How 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)
How long is human gestation? matter of common knowledge -8.773356036963449 How 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)
How long is human gestation? good analogy -8.797913964790235 How 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)
How long is human gestation? random variable -8.851806399163607 How 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)
How long is human gestation? topic -9.0329388086347 How 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)
How long is human gestation? week -9.170803798978433 How 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)
How long is human gestation? nine months -13.8355450697429 How 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)
How long is human gestation? the Tzolkin -13.967400475550892 How 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)
How many types of human blood are there? Book Edition -6.128957266064445 How 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)
How many types of human blood are there? EP -6.635270477649976 How 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)
How many types of human blood are there? Book -6.919476813357754 How 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)
How many types of human blood are there? Written Work -6.966972588939308 How 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)
How many types of human blood are there? Creative Work -7.109914768054937 How 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)
How many types of human blood are there? Canonical Version -7.409876638556236 How 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)
How many types of human blood are there? Musical Recording -7.409876638556236 How 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)
How many types of human blood are there? Award-Winning Work -7.473908481821414 How 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)
How many types of human blood are there? Release track -7.485031691456637 How 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)
How many types of human blood are there? Musical Album -7.552818817671866 How 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)
How many types of human blood are there? Musical Release -7.552818817671866 How 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)
How many types of human blood are there? Cataloged instance -7.594987213853275 How 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)
How many types of human blood are there? biological cell -7.925475440644471 How 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)
How many types of human blood are there? Image -8.07879720856348 How 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)
How many types of human blood are there? Content -8.07879720856348 How 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)
How many types of human blood are there? certain markers -8.904242925634183 How 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)
How many types of human blood are there? TV Episode -9.940463932427033 How 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)
How many types of human blood are there? an Austrian , -10.049394850566747 How 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)
How many types of human blood are there? sample -10.290328989338649 How 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)
How many types of human blood are there? monocytes -10.295063186242267 How 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)
How many types of human blood are there? albumin -10.313490064662645 How 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)
How many types of human blood are there? lymphocyte -10.313490064662645 How 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)
How many types of human blood are there? plasma -10.316397725676412 How 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)
How many types of human blood are there? potassium -10.33851315766329 How 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)
How many types of human blood are there? gender -10.340248032347434 How 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)
How many types of human blood are there? cell -10.353957253435334 How 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)
How many types of human blood are there? platelet -10.37283664564298 How 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)
How many types of human blood are there? myoglobin -10.387347733760683 How 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)
How many types of human blood are there? cytokines -10.407281681342345 How 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)
How many types of human blood are there? antibody -10.407281681342345 How 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)
How many types of human blood are there? thrombocytopenia -10.452175636777488 How 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)
How many types of human blood are there? oxygen -10.452175636777488 How 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)
How many types of human blood are there? boxing -10.452175636777488 How 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)
How many types of human blood are there? leukemia -10.452175636777488 How 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)
How many types of human blood are there? hormone -10.452175636777488 How 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)
How many types of human blood are there? lymphoma -10.452175636777488 How 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)
How many types of human blood are there? hemophilia -10.452175636777488 How 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)
How many types of human blood are there? leukocyte -10.463926397885073 How 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)
How many types of human blood are there? transferrin -10.463969889455786 How 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)
How many types of human blood are there? whole blood -10.531044098454181 How 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)
How many types of human blood are there? erythrocyte -10.549636213447235 How 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)
How many types of human blood are there? lactate -10.549636213447235 How 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)
How many types of human blood are there? granulocytes -10.549636213447235 How 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)
How many types of human blood are there? glucose -10.549636213447235 How 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)
How many types of human blood are there? IVIG -10.633782544559118 How 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)
How many types of human blood are there? human plasma protein -10.710807218908949 How 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)
How many types of human blood are there? AAT -10.714928805787784 How 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)
How many types of human blood are there? blood product -10.72361293930204 How 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)
How many types of human blood are there? Labeled -10.737543824366583 How 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)
How many types of human blood are there? blood cell -10.747517419083332 How 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)
How many types of human blood are there? Factor VIII -10.781962454782695 How 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)
How many types of human blood are there? barbarism -10.826066951926672 How 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)
How many types of human blood are there? MMA -10.826856410217838 How 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)
How many types of human blood are there? ATIII -10.826856410217838 How 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)
How many types of human blood are there? Hep-C -10.826856410217838 How 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)
How many types of human blood are there? aplastic anemia -10.835450980702166 How 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)
How many types of human blood are there? monocytic cell -10.838607171325423 How 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)
How many types of human blood are there? PMNLs -10.838607171325423 How 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)
How many types of human blood are there? human serum -10.843307475278177 How 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)
How many types of human blood are there? clotting factor -10.852359883984036 How 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)
How many types of human blood are there? ascorbic acid -10.871005717583987 How 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)
How many types of human blood are there? Human Serum Albumin -10.917351011296473 How 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)
How many types of human blood are there? Lutheran antigen system -10.921117304693615 How 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)
How many types of human blood are there? serum albumin -10.924316986887586 How 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)
How many types of human blood are there? dendritic cell -10.924316986887586 How 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)
How many types of human blood are there? Lewis antigen system -10.935628392811317 How 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)
How many types of human blood are there? polymorphonuclear leukocyte -10.936067747995171 How 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)
How many types of human blood are there? Rh factor -10.951735429063385 How 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)
How many types of human blood are there? Anti-D immunoglobulin -10.971320031317928 How 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)
How many types of human blood are there? lymphoid leukemia -11.003017335287922 How 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)
How many types of human blood are there? Lewis X -11.006783628685064 How 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)
How many types of human blood are there? Natural Killer cell -11.006783628685064 How 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)
How many types of human blood are there? myeloid leukemia -11.006783628685064 How 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)
How many types of human blood are there? Don Zauker -11.006783628685064 How 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)
How many types of human blood are there? Level I -11.006783628685064 How 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)
How many types of human blood are there? fresh frozen plasma -11.013110961542006 How 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)
How many types of human blood are there? Topic -11.06831799726114 How 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)
How many types of human blood are there? Immune Serum Globulin Intravenous -11.07746932165433 How 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)
How many types of human blood are there? internal mammary artery -11.07746932165433 How 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)
How many types of human blood are there? stem cells -11.07854933779535 How 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)
How many types of human blood are there? EPILEPSY -11.096476570847148 How 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)
How many types of human blood are there? R hesus D immunoglobulin -11.124472366084674 How 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)
How many types of human blood are there? Christ Jesus -11.21171540627599 How 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)
How many types of human blood are there? Necro Butcher -11.217640591411481 How 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)
How many types of human blood are there? Bromley Marks -11.217640591411481 How 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)
How many types of human blood are there? Rhogam -11.238252405078269 How 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)
How many types of human blood are there? death -11.315474196044585 How 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)
How many types of human blood are there? Albumin -11.431745136959902 How 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)
How many types of human blood are there? Antithrombin -11.431745136959902 How 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)
How many types of human blood are there? Transferrin -11.431745136959902 How 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)
How many types of human blood are there? Immunoglobulin -11.478748181390246 How 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)
How many types of human blood are there? Amlodipine -11.52920571362965 How 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)
How many types of human blood are there? RhIG -11.680155544503734 How 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)
How many types of human blood are there? LC -11.773611681969443 How 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)
How many types of human blood are there? malaria control -11.813728228005191 How 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)
How many types of human blood are there? clinical medicine -12.142324451494662 How 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)
How many types of human blood are there? the growth -13.580531354564961 How 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)
What color are UPS trucks? windows & -7.155715345379142 What color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, shade, $x) -> (The pick-up truck, had shaded, windows &) -> windows & (5056ms)
What color are UPS trucks? Pattani and Yala -7.758321429079797 What 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)
What color are UPS trucks? Home Farm -7.875919748792196 What 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)
What color are UPS trucks? a fair-sized cedar -8.007319921445397 What 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)
What color are UPS trucks? Bay -10.187056107202789 What 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)
What color are UPS trucks? Red Wine -10.412415159000552 What 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)
What color are UPS trucks? White Wine -11.038090702019819 What 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)
What color are UPS trucks? overnight express truck -12.066973664241054 What 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)
What color are UPS trucks? an already great time -12.327424865735107 What 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)
What color are UPS trucks? Brown's -12.510942802111964 What 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)
What color are UPS trucks? used cars and trucks -12.527994459820125 What 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)
What color are UPS trucks? Brown -12.54061421532066 What 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)
What color are UPS trucks? fair condition -12.571437107891226 What 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)
What color are UPS trucks? Red -12.572163464263221 What 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)
What color are UPS trucks? excavator skin -12.602602022083612 What 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)
What color are UPS trucks? A Jeep -12.632166878294303 What 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)
What color are UPS trucks? Resident Gypsy -12.694375588311932 What 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)
What color are UPS trucks? purple spots -12.981227440304679 What 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)
What color are UPS trucks? RAF Waddington -12.999059281500958 What 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)
What color are UPS trucks? Jeep trucks -13.031861377758776 What 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)
What color are UPS trucks? Water -13.164776459535778 What 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)
What color are UPS trucks? Brownie -13.389831108594537 What 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)
What color are UPS trucks? Jerry ! Enclosed -13.442517384672943 What 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)
What color are UPS trucks? Rollin? Thunder -13.551087490124718 What 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)
What color are UPS trucks? antique ocean -13.60601422848359 What 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)
What color are UPS trucks? Amsterdam -13.618655074646702 What 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)
What color are UPS trucks? Hoofddorp -13.625808173256765 What 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)
What color are UPS trucks? a firefighter?s real bunker coat -13.764243721435587 What 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)
What color are UPS trucks? the Missouri state line -13.812874605923438 What 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)
What color are UPS trucks? McGruff -13.818179777032313 What 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)
What color are UPS trucks? today?s Mini Page -13.838516327769009 What 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)
What color are UPS trucks? FB. -13.857904123977352 What 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)
What color are UPS trucks? the Rhinos and Giraffes -13.895924613545159 What 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)
What color are UPS trucks? Sue Wiese -14.024928209815847 What 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)
What color are UPS trucks? brown -14.04905242923435 What 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)
What color are UPS trucks? Management -14.086937297782184 What 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)
What color are UPS trucks? the body -14.103261961257186 What 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)
What color are UPS trucks? the lot -14.110344123958274 What 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)
What color are UPS trucks? Attached -14.160911370206327 What 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)
What color are UPS trucks? a wider range -14.172966376403588 What 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)
What color are UPS trucks? the bottom -14.222251421431096 What 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)
What color are UPS trucks? Mike -14.230195131320837 What 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)
What color are UPS trucks? June 7 , 1930 -14.255548057862992 What 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)
What color are UPS trucks? guys -15.018524532157098 What 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)
What color are UPS trucks? the chocolate sandwich cookie -15.340819008631769 What 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)
What color are UPS trucks? the blockades -15.50013260588314 What 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)
What color are UPS trucks? mortar -15.519466274528805 What 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)
What color are UPS trucks? the future -15.524741183755298 What 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)
What color are UPS trucks? brownie -15.612004469912861 What 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)
What color are UPS trucks? the back -15.802518854102075 What 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)
What color are UPS trucks? the injury -15.821087032036578 What 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)
What color are UPS trucks? the fire -15.900664809478874 What 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)
What color are UPS trucks? the materials -15.930662947904967 What 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)
What color are UPS trucks? the truck -15.961609893561707 What 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)
What color are UPS trucks? knitters -16.010294672072785 What 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)
What color are UPS trucks? the sides -16.032345701588447 What 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)
What color are UPS trucks? the group -16.066009774575733 What 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)
What color are UPS trucks? often -16.40579531203946 What 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)
What color are UPS trucks? pages -16.445212508961895 What 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)
What color are UPS trucks? the box -17.026161550767856 What 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)
What color are UPS trucks? the post -17.363030155925987 What 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)
What color are UPS trucks? above -17.56353537352184 What 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)
What color are UPS trucks? below -17.671213551755027 What 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)
Who was Carolyn Bessette Kennedy married to? John F. Kennedy Jr. -10.073480677960209 Who 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)
What books has Walter Mosley written? Fear of the Dark -1.2264489321536678 What 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)
What books has Walter Mosley written? Fortunate Son -1.3602917274457678 What 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)
What books has Walter Mosley written? Fear Itself -1.7558782550286507 What 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)
What books has Walter Mosley written? What Comes Next -1.7675604837372618 What 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)
What books has Walter Mosley written? Blonde Faith -2.0408038598361835 What 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)
What books has Walter Mosley written? Life Out of Context -2.088700858876228 What 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)
What books has Walter Mosley written? RL's Dream -2.1626658631047393 What 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)
What books has Walter Mosley written? Killing Johnny Fry -2.179723623180954 What 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)
What books has Walter Mosley written? Devil in a blue dress -2.3389592348307637 What 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)
What books has Walter Mosley written? Devil in a Blue Dress -2.3976359560654825 What 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)
What books has Walter Mosley written? CINNAMON KISS -2.4403838787550614 What 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)
What books has Walter Mosley written? The Wave -2.5586519971607635 What 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)
What books has Walter Mosley written? Fortunate Sons -3.0947149495122215 What 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)
What books has Walter Mosley written? Blue light -3.7371075078326403 What 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)
What books has Walter Mosley written? Always outnumbered, always outgunned -4.467704855071653 What 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)
What books has Walter Mosley written? Always Outnumbered Always Outgunned -4.467704855071653 What 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)
What books has Walter Mosley written? Always Outnumbered, Always Outgunned -4.467704855071653 What 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)
What books has Walter Mosley written? Always Outnumbered Always Outgunned Uk -4.5651654317414 What 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)
What books has Walter Mosley written? A Little Yellow Dog -4.5651654317414 What 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)
What books has Walter Mosley written? Blue Light (Five Star) -4.5651654317414 What 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)
What books has Walter Mosley written? Devil in a blue dress. -4.64763207353888 What 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)
What books has Walter Mosley written? What next -4.768128272116576 What 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)
What books has Walter Mosley written? Devil in a Blue Dress (Five Star) -4.779578700414845 What 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)
What books has Walter Mosley written? Devil in a Blue Dress (Easy Rowlins Mysteries) -4.833182017583206 What 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)
What books has Walter Mosley written? DEVIL IN A BLUE DRESS (Easy Rawlins Mysteries) -4.833182017583206 What 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)
What books has Walter Mosley written? Devil in a Blue Dress (Easy Rawlins Mysteries (Audio)) -4.880479062143525 What 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)
What books has Walter Mosley written? Fear itself -5.339896988579095 What 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)
What books has Walter Mosley written? Blue Light -5.625923986025282 What 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)
What books has Walter Mosley written? Walter Mosely Omnibus -5.721874369097153 What 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)
What books has Walter Mosley written? Black Betty -5.869265832066873 What 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)
What books has Walter Mosley written? Muerte Escarlata -5.869265832066873 What 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)
What books has Walter Mosley written? White Butterfly -5.869265832066873 What 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)
What books has Walter Mosley written? Fearless Jones -5.869265832066873 What 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)
What books has Walter Mosley written? Little Scarlet -5.869265832066873 What 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)
What books has Walter Mosley written? GONE FISHIN -5.906478528163188 What 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)
What books has Walter Mosley written? Always Outnumbered -5.947234293402671 What 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)
What books has Walter Mosley written? RL's dream -5.95354164381441 What 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)
What books has Walter Mosley written? Socrates' Welt -5.95354164381441 What 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)
What books has Walter Mosley written? de Pesca -5.95354164381441 What 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)
What books has Walter Mosley written? novel -6.001537129757501 What 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)
What books has Walter Mosley written? Walkin' the dog -6.0315101051502085 What 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)
What books has Walter Mosley written? EL CASO BROWN -6.0315101051502085 What 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)
What books has Walter Mosley written? Six easy pieces -6.0315101051502085 What 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)
What books has Walter Mosley written? Un Perro Amarillo -6.0315101051502085 What 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)
What books has Walter Mosley written? La mariposa blanca -6.0315101051502085 What 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)
What books has Walter Mosley written? The Tempest Tales -6.075289747616461 What 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)
What books has Walter Mosley written? La musique du diable -6.09648382293004 What 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)
What books has Walter Mosley written? Um demo?nio vestido de azul -6.151461584128359 What 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)
What books has Walter Mosley written? The Man in My Basement -6.151461584128359 What 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)
What books has Walter Mosley written? Blues de Los Suenos Rotos -6.151461584128359 What 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)
What books has Walter Mosley written? Fische fangen -6.156752150928602 What 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)
What books has Walter Mosley written? Papillon blanc -6.156752150928602 What 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)
What books has Walter Mosley written? Easy Rawlins Mysteries -6.1734120850231085 What 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)
What books has Walter Mosley written? 47 -6.25080431851806 What 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)
What books has Walter Mosley written? Bad Boy Brawly Brown: An Easy Rawlins Mystery -6.275161546824577 What 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)
What books has Walter Mosley written? Workin' on the Chain Gang: Shaking Off the Dead Hand of History -6.3597983634062 What 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)
What books has Walter Mosley written? Transgressions Vol. 3 -6.424067565930946 What 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)
What books has Walter Mosley written? Red Death -6.479262183763334 What 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)
What books has Walter Mosley written? Futureland -6.5499652087041245 What 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)
What books has Walter Mosley written? Diablerie -6.5499652087041245 What 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)
What books has Walter Mosley written? Cinnamon Kiss -6.882764555160634 What 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)
What books has Walter Mosley written? The wave -7.658029057167201 What 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)
What books has Walter Mosley written? Novels -7.696041167163703 What 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)
What books has Walter Mosley written? The right mistake -7.865512294132332 What 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)
What books has Walter Mosley written? Red Mask of Death -7.986233648385568 What 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)
What books has Walter Mosley written? Response -8.503960575374236 What 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)
What books has Walter Mosley written? the novel -8.828432788220663 What 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)
What books has Walter Mosley written? fiction -9.500819597745997 What 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)
What books has Walter Mosley written? The novel -10.16219277626174 What 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)
What books has Walter Mosley written? novels -11.24681043958462 What 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)
What was the name of Ayn Rand's husband? Cardiovascular disease -9.071744071186155 What 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)
What was the name of Ayn Rand's husband? New York City -9.443202051103158 What 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)
What was the name of Ayn Rand's husband? 1982-03-06 -9.509652118087068 What 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)
What was the name of Ayn Rand's husband? 1920 -11.596814567690998 What 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)
What was the name of Ayn Rand's husband? values -12.021500557881584 What 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)
What is Africa's largest country? Africa -3.2670816707989547 What is Africa's largest country? -> $x: (Africa, largest country, $x) -> (South Africa, is the tenth largest country in, Africa) -> Africa (6805ms)
What is Africa's largest country? crossword puzzle clue -3.931523224772496 What 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)
What is Africa's largest country? society of different religious, ethnic and social group -4.10684443656873 What 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)
What is Africa's largest country? South East Asia -9.591250552441362 What 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)
What is Africa's largest country? DR Congo -9.799037574094255 What 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)
What is Africa's largest country? South Africa -9.94254442223492 What 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)
What is Africa's largest country? ? Tanzania -10.14573006006131 What 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)
What is Africa's largest country? Ethiopia -10.25236375951461 What 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)
What is Africa's largest country? land mass -10.398136343663031 What 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)
What is Africa's largest country? Sudan Sudan -10.415714479271244 What 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)
What is Africa's largest country? Southern Sudan Sudan -10.460542783546975 What 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)
What is Africa's largest country? OPEC -10.490933475593627 What 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)
What is Africa's largest country? Eastern Algeria Algeria -10.494534540200007 What 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)
What is Africa's largest country? Algeria Algeria -10.52786448176401 What 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)
What is Africa's largest country? Darfur Context Sudan -10.538287520842047 What 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)
What is Africa's largest country? Tanzania Tanzania -10.567135928666623 What 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)
What is Africa's largest country? Angola Angola -10.57377818621902 What 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)
What is Africa's largest country? Sudan -10.587677311113527 What 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)
What is Africa's largest country? Shi? Islam -10.594842079005335 What 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)
What is Africa's largest country? Nigeria -10.606057031615208 What 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)
What is Africa's largest country? The DRC -10.619546768037308 What 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)
What is Africa's largest country? Libya -10.623200149782498 What 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)
What is Africa's largest country? Mali -10.647251084418816 What 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)
What is Africa's largest country? Program Sudan -10.648115360679697 What 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)
What is Africa's largest country? Tanzania -10.651734309839116 What 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)
What is Africa's largest country? Chad -10.659385237736107 What 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)
What is Africa's largest country? Overview Algeria -10.660037209263901 What 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)
What is Africa's largest country? French StampAlgeria -10.673512644857441 What 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)
What is Africa's largest country? South-East Asia -10.673872176703032 What 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)
What is Africa's largest country? Algeria -10.675481234057719 What 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)
What is Africa's largest country? Za?re -10.681402281782548 What 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)
What is Africa's largest country? The Congo/Zaire -10.711990053563284 What 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)
What is Africa's largest country? Rape DR Congo -10.715783954667778 What 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)
What is Africa's largest country? Magola ADP Tanzania -10.740869173777998 What 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)
What is Africa's largest country? nearly twice the size -10.750267698631198 What 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)
What is Africa's largest country? ARMED RESISTANCE Sudan -10.751261401248122 What 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)
What is Africa's largest country? Namibia -10.752073574384326 What 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)
What is Africa's largest country? Niger -10.765008844841914 What 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)
What is Africa's largest country? Nile Water Resources Sudan -10.778070045071964 What 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)
What is Africa's largest country? More African Genocide Sudan -10.852342651405387 What 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)
What is Africa's largest country? 1 . Algeria -11.02031386768137 What 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)
What is Africa's largest country? United States -11.08072227961922 What 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)
What is Africa's largest country? The Congo -11.10715069278612 What 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)
What is Africa's largest country? The Sudan -11.271070473232257 What 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)
What is Africa's largest country? 2010 Sudan -11.397005806595073 What 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)
What is Africa's largest country? Congo -11.468682122309914 What 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)
What is Africa's largest country? India -11.675332838036292 What 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)
What is Africa's largest country? Brazil -11.706734454071897 What 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)
What is Africa's largest country? China -11.718036452884368 What 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)
What is Africa's largest country? Argentina -11.78271011222743 What 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)
What is Africa's largest country? Russia -11.812668553893232 What 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)
What is Africa's largest country? Mexico -11.842560152750293 What 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)
What is Africa's largest country? France -11.860969784604563 What 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)
What is Africa's largest country? Israel -11.954949610473896 What 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)
What is Africa's largest country? Australia -11.977390130268406 What 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)
What is Africa's largest country? Japan -11.981387378238153 What 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)
How fast is an eye blink? 0-60 time -9.322241671504498 How 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)
How fast is an eye blink? little Max -15.744073901477257 How 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)
What is Dr. Ruth's last name? Banking Law -9.592841961924421 What 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)
What is Dr. Ruth's last name? In-Q-Tel -10.219010417796913 What 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)
What is Dr. Ruth's last name? The Career Services Coordinator -10.659749277526608 What 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)
What is Dr. Ruth's last name? a lady -10.76046374446651 What 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)
What is Dr. Ruth's last name? An excellent book -10.776556309208855 What 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)
What is Dr. Ruth's last name? TCI -10.814608572044094 What 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)
What is Dr. Ruth's last name? Bobbie Stevens Johnson -10.829042410158689 What 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)
What is Dr. Ruth's last name? The Frodo Franchise -10.836223286678111 What 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)
What is Dr. Ruth's last name? Pierre A. Lehu -10.868294739625764 What 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)
What is Dr. Ruth's last name? Kyros Ministry -10.893877632026085 What 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)
What is Dr. Ruth's last name? The Conference organizer -10.899823820797216 What 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)
What is Dr. Ruth's last name? An experiment -10.90525695844939 What 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)
What is Dr. Ruth's last name? the RPSEC -10.935619018424795 What 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)
What is Dr. Ruth's last name? Resource people -10.971129810978884 What 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)
What is Dr. Ruth's last name? Archivist -10.990733866171364 What 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)
What is Dr. Ruth's last name? The DARE curriculum -11.003467481953445 What 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)
What is Dr. Ruth's last name? A Director?s Software Grant -11.036547089745678 What 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)
What is Dr. Ruth's last name? the Education honoree -11.046263877869492 What 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)
What is Dr. Ruth's last name? Past speakers -11.082201284063146 What 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)
What is Dr. Ruth's last name? Sex -11.104289512990857 What 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)
What is Dr. Ruth's last name? a program -11.132483155626979 What 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)
What is Dr. Ruth's last name? the English program -11.143952914108256 What 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)
What is Dr. Ruth's last name? Dummies -11.151251205570794 What 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)
What is Dr. Ruth's last name? Trainers -11.280379221292169 What 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)
What is Dr. Ruth's last name? medical ethicists -11.285714338265283 What 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)
What is Dr. Ruth's last name? core curriculum -11.32019802952641 What 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)
What is Dr. Ruth's last name? Training -11.390530788236024 What 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)
What is Dr. Ruth's last name? October 2004 -11.430830080655298 What 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)
What is Dr. Ruth's last name? Dr. Alexander -11.543927720548925 What 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)
What is Dr. Ruth's last name? Merit -11.620263772778234 What 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)
What is Dr. Ruth's last name? Friedman -11.621639946489719 What 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)
What is Dr. Ruth's last name? S101 -11.66407847171896 What 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)
What is Dr. Ruth's last name? a doctor -11.683663133176111 What 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)
What is Dr. Ruth's last name? a researcher -11.688336358762873 What 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)
What is Dr. Ruth's last name? Flannery -11.706617284391553 What 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)
What is Dr. Ruth's last name? Studies -11.754950306437065 What 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)
What is Dr. Ruth's last name? Speaker -11.951321719187362 What 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)
What is Dr. Ruth's last name? Acting Director -11.967136584658652 What 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)
What is Dr. Ruth's last name? January 25 , 2005 MadChatter -11.978504884657081 What 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)
What is Dr. Ruth's last name? the Department -11.993193729567675 What 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)
What is Dr. Ruth's last name? Sharon Mora -12.00778410888665 What 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)
What is Dr. Ruth's last name? the Center -12.0565420077945 What 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)
What is Dr. Ruth's last name? The trial -12.121258714767956 What 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)
What is Dr. Ruth's last name? honor -12.260664295425597 What 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)
What is Dr. Ruth's last name? the University -12.366543476634767 What 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)
What is Dr. Ruth's last name? Dude -12.368222502198634 What 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)
What is Dr. Ruth's last name? Sydney -12.392458836159179 What 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)
What is Dr. Ruth's last name? WITI Hall -12.436256724794424 What 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)
What is Dr. Ruth's last name? The event -12.437550876447583 What 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)
What is Dr. Ruth's last name? a reboot -12.588335766968854 What 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)
What is Dr. Ruth's last name? Acting Precentor -12.592543546977852 What 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)
What is Dr. Ruth's last name? the second encounter -12.617539196433395 What 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)
What is Dr. Ruth's last name? The report -12.631756396970125 What 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)
What is Dr. Ruth's last name? The study -12.666632340024254 What 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)
What is Dr. Ruth's last name? The bequest -12.666632340024254 What 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)
What is Dr. Ruth's last name? the grandma -12.675268594568193 What 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)
What is Dr. Ruth's last name? The award -12.690505689067631 What 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)
What is Dr. Ruth's last name? The webinar -12.694627373055646 What 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)
What is Dr. Ruth's last name? The garden -12.699347658483187 What 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)
What is Dr. Ruth's last name? The resolution -12.704810348792558 What 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)
What is Dr. Ruth's last name? Israel -12.710137576061475 What 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)
What is Dr. Ruth's last name? the participants -12.719053610684343 What 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)
What is Dr. Ruth's last name? The office -12.769618082936514 What 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)
What is Dr. Ruth's last name? breastfeeding -12.836381509334803 What 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)
What is Dr. Ruth's last name? the event -12.842074403788022 What 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)
What is Dr. Ruth's last name? the lunch -12.853056895514545 What 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)
What is Dr. Ruth's last name? mind -12.856261140933466 What 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)
What is Dr. Ruth's last name? the College -12.894541262927035 What 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)
What is Dr. Ruth's last name? The guy -12.925826340645882 What 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)
What is Dr. Ruth's last name? the position -12.960331843545895 What 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)
What is Dr. Ruth's last name? The project -13.01661695763715 What 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)
What is Dr. Ruth's last name? PRSSA -13.032817399354817 What 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)
What is Dr. Ruth's last name? The morning -13.051476668412487 What 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)
What is Dr. Ruth's last name? The site -13.070929032748086 What 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)
What is Dr. Ruth's last name? the years -13.076226358583355 What 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)
What is Dr. Ruth's last name? attendance -13.169589283599194 What 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)
What is Dr. Ruth's last name? guests -13.286458811018814 What 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)
What is Dr. Ruth's last name? Kasem -13.430739894134074 What 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)
What is Dr. Ruth's last name? October 2009 -13.514092730396062 What 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)
What is Dr. Ruth's last name? Nov. 1 , 2000 -13.61574579193831 What 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)
What is Dr. Ruth's last name? August 7 , 2010 -13.64737395070182 What 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)
What is Dr. Ruth's last name? vaccines -13.760031452235484 What 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)
What is Dr. Ruth's last name? quizzed on the article -14.080920138119456 What 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)
What is Dr. Ruth's last name? five parenting tips -14.091927159311457 What 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)
What is Dr. Ruth's last name? abstinence -14.546650222113083 What 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)
What is Dr. Ruth's last name? the first 25 -14.613605904769077 What 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)
Who is the manager of the Boston Pops? Arthur Fiedler -7.276790816238527 Who 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)
Who is the manager of the Boston Pops? Athah Feedlah -7.296926808322255 Who 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)
Who is the manager of the Boston Pops? Laureate Conductor -7.635092586827939 Who 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)
Who is the manager of the Boston Pops? musical artist -7.6712113780158155 Who 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)
Who is the manager of the Boston Pops? world class -7.990192849819314 Who 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)
Who is the manager of the Boston Pops? John Williams -8.271336494315019 Who 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)
Who is the manager of the Boston Pops? The Sinfonietta -8.386900779454578 Who 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)
Who is the manager of the Boston Pops? popular songs -8.417709875801062 Who 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)
Who is the manager of the Boston Pops? The Typewriter -8.428522635456321 Who 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)
Who is the manager of the Boston Pops? famous composer -8.43137476725449 Who 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)
Who is the manager of the Boston Pops? Soft Serve Ice Cream -8.472715972535559 Who 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)
Who is the manager of the Boston Pops? Neil Diamond -8.479062338140334 Who 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)
Who is the manager of the Boston Pops? a must-see -8.605336145674382 Who 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)
Who is the manager of the Boston Pops? a coveted job -8.608227316272362 Who 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)
Who is the manager of the Boston Pops? Mr. Lockhart -8.650158893595492 Who 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)
Who is the manager of the Boston Pops? a brand -8.658132832542012 Who 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)
Who is the manager of the Boston Pops? an hour -8.659510812665797 Who 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)
Who is the manager of the Boston Pops? a winner -8.684268348110272 Who 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)
Who is the manager of the Boston Pops? two euro -8.695196012245148 Who 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)
Who is the manager of the Boston Pops? a special concert -8.713881928406167 Who 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)
Who is the manager of the Boston Pops? a special -8.791390512469416 Who 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)
Who is the manager of the Boston Pops? Yeo -8.814573454655331 Who 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)
Who is the manager of the Boston Pops? a popular scheduled highlight -8.837669605628536 Who 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)
Who is the manager of the Boston Pops? a must -8.84267400886285 Who 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)
Who is the manager of the Boston Pops? a regular guest conductor -8.862377026015537 Who 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)
Who is the manager of the Boston Pops? Arthur Fielder -8.864010429727466 Who 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)
Who is the manager of the Boston Pops? Symphony Hall -8.88027174406665 Who 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)
Who is the manager of the Boston Pops? national television broadcast -8.90147848727895 Who 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)
Who is the manager of the Boston Pops? a musical special -8.901910758759833 Who 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)
Who is the manager of the Boston Pops? McCoy Stadium -8.902165941087834 Who 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)
Who is the manager of the Boston Pops? huge fan -8.948253578180987 Who 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)
Who is the manager of the Boston Pops? AFIO -8.959788645566098 Who 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)
Who is the manager of the Boston Pops? professor -8.965141585892422 Who 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)
Who is the manager of the Boston Pops? Ernst Schmidt -8.995957056603432 Who 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)
Who is the manager of the Boston Pops? year many prestigious figure -8.999354645917181 Who 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)
Who is the manager of the Boston Pops? John F. Williams -9.004782996229881 Who 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)
Who is the manager of the Boston Pops? an audience favorite -9.015972280165549 Who 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)
Who is the manager of the Boston Pops? more recordings -9.031358098151562 Who 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)
Who is the manager of the Boston Pops? Shaq -9.037761513123815 Who 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)
Who is the manager of the Boston Pops? annual University tradition -9.046829954515637 Who 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)
Who is the manager of the Boston Pops? cool -9.058419611271312 Who 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)
Who is the manager of the Boston Pops? Charles Floyd -9.081978674076574 Who 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)
Who is the manager of the Boston Pops? a wide range -9.098457851841431 Who 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)
Who is the manager of the Boston Pops? official Santa-sanctioned, Humbug-squashing activity -9.12038827951456 Who 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)
Who is the manager of the Boston Pops? the Van Wezel -9.145320310824793 Who 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)
Who is the manager of the Boston Pops? jazz and blues -9.154608398798675 Who 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)
Who is the manager of the Boston Pops? irreplaceable New England landmark -9.16243009690151 Who 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)
Who is the manager of the Boston Pops? David Mugar -9.188200160294679 Who 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)
Who is the manager of the Boston Pops? tops -9.188685160222365 Who 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)
Who is the manager of the Boston Pops? Kay Hanley -9.199701402107175 Who 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)
Who is the manager of the Boston Pops? Casella -9.24910145848433 Who 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)
Who is the manager of the Boston Pops? the Boston Symphony -9.272534676471578 Who 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)
Who is the manager of the Boston Pops? New York City -9.33500131149584 Who 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)
Who is the manager of the Boston Pops? the Deutsche Opera -9.359164343452916 Who 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)
Who is the manager of the Boston Pops? Nantucket -9.464756830650906 Who 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)
Who is the manager of the Boston Pops? scores -9.49967008363617 Who 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)
Who is the manager of the Boston Pops? a way -9.567824426250144 Who 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)
Who is the manager of the Boston Pops? the vision -9.612258386854515 Who 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)
Who is the manager of the Boston Pops? Christmas -9.612417856916652 Who 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)
Who is the manager of the Boston Pops? numerous engagements year -9.614990922750971 Who 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)
Who is the manager of the Boston Pops? numerous television shows -9.645250397506544 Who 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)
Who is the manager of the Boston Pops? Williams -9.67399904250679 Who 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)
Who is the manager of the Boston Pops? the music -9.689933499225534 Who 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)
Who is the manager of the Boston Pops? Italy -9.76365848983972 Who 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)
Who is the manager of the Boston Pops? Group Saloum -9.79394040156032 Who 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)
Who is the manager of the Boston Pops? Keith Lockhart -9.81132118463026 Who 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)
Who is the manager of the Boston Pops? ages -9.81860975035025 Who 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)
Who is the manager of the Boston Pops? a fun -9.837662124216493 Who 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)
Who is the manager of the Boston Pops? several new works -9.848272519136538 Who 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)
Who is the manager of the Boston Pops? renowned orchestra -9.870995972447382 Who 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)
Who is the manager of the Boston Pops? conductors -9.887403433089379 Who 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)
Who is the manager of the Boston Pops? dance ensemble -9.90015593348544 Who 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)
Who is the manager of the Boston Pops? symphony orchestra -9.901318643257316 Who 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)
Who is the manager of the Boston Pops? orchestral group -9.919798428300108 Who 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)
Who is the manager of the Boston Pops? large orchestra -9.924308103176013 Who 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)
Who is the manager of the Boston Pops? great orchestra -9.92567380824105 Who 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)
Who is the manager of the Boston Pops? audiences -9.93072909376606 Who 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)
Who is the manager of the Boston Pops? american orchestra -9.95499211207935 Who 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)
Who is the manager of the Boston Pops? South Carolina -9.956572172312201 Who 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)
Who is the manager of the Boston Pops? artistic organization -10.036654099731555 Who 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)
Who is the manager of the Boston Pops? famous performer -10.03758881843191 Who 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)
Who is the manager of the Boston Pops? musical group -10.045158515134178 Who 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)
Who is the manager of the Boston Pops? Atheism -10.049583096457305 Who 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)
Who is the manager of the Boston Pops? famous orchestra -10.070331419731144 Who 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)
Who is the manager of the Boston Pops? music ensemble -10.071837905655478 Who 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)
Who is the manager of the Boston Pops? prestigious orchestra -10.072440508726343 Who 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)
Who is the manager of the Boston Pops? symphonic orchestra -10.074790660702721 Who 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)
Who is the manager of the Boston Pops? local orchestra -10.078661499252048 Who 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)
Who is the manager of the Boston Pops? notable orchestra -10.079470900252126 Who 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)
Who is the manager of the Boston Pops? musical performer -10.080220038190635 Who 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)
Who is the manager of the Boston Pops? Dr. Hallberg -10.084289617430452 Who 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)
Who is the manager of the Boston Pops? cultural icon -10.087109130122572 Who 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)
Who is the manager of the Boston Pops? professional group -10.09098449150432 Who 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)
Who is the manager of the Boston Pops? incredible performer -10.096294014855694 Who 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)
Who is the manager of the Boston Pops? classical artist -10.097749861906943 Who 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)
Who is the manager of the Boston Pops? advertising client -10.097859498948337 Who 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)
Who is the manager of the Boston Pops? outstanding artist -10.098186809192613 Who 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)
Who is the manager of the Boston Pops? interesting place -10.099060929292724 Who 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)
Who is the manager of the Boston Pops? notable ensemble -10.111459081769143 Who 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)
Who is the manager of the Boston Pops? national ensemble -10.111459081769143 Who 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)
Who is the manager of the Boston Pops? student ensembles -10.11486260116397 Who 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)
Who is the manager of the Boston Pops? the Class -10.12744498087708 Who 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)
Who is the manager of the Boston Pops? social event -10.158876811430966 Who 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)
Who is the manager of the Boston Pops? holiday event -10.15910796126158 Who 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)
Who is the manager of the Boston Pops? Spring 2007 Bob -10.16178333316473 Who 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)
Who is the manager of the Boston Pops? Lizzie -10.16236993337893 Who 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)
Who is the manager of the Boston Pops? 1885 -10.17296661341936 Who 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)
Who is the manager of the Boston Pops? Cellist William Rounds -10.175108582268416 Who 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)
Who is the manager of the Boston Pops? Evening at Pops -10.190342620005648 Who 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)
Who is the manager of the Boston Pops? the same band? -10.251004206917367 Who 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)
Who is the manager of the Boston Pops? Carnegie Hall -10.262729627939207 Who 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)
Who is the manager of the Boston Pops? the Esplanade -10.271176957043142 Who 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)
Who is the manager of the Boston Pops? Paradise -10.331450557178808 Who 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)
Who is the manager of the Boston Pops? art event -10.35496568372144 Who 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)
Who is the manager of the Boston Pops? the first records -10.380394970393244 Who 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)
Who is the manager of the Boston Pops? The orchestra -10.416254835365855 Who 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)
Who is the manager of the Boston Pops? the holidays -10.440012880661815 Who 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)
Who is the manager of the Boston Pops? art group -10.444040375003013 Who 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)
Who is the manager of the Boston Pops? a jingle -10.456593450406181 Who 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)
Who is the manager of the Boston Pops? Videos -10.460274131740203 Who 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)
Who is the manager of the Boston Pops? concert in the city -10.466882729059032 Who 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)
Who is the manager of the Boston Pops? Boston -10.466969068171917 Who 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)
Who is the manager of the Boston Pops? IBIS Chamber Music Society -10.473275856710785 Who 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)
Who is the manager of the Boston Pops? orchestra across the world -10.487446560078032 Who 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)
Who is the manager of the Boston Pops? the Symphony -10.491695819288976 Who 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)
Who is the manager of the Boston Pops? Watjen -10.512013039295613 Who 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)
Who is the manager of the Boston Pops? Mark Lamber and Ian Hu's Red Dwarf -10.518169812145928 Who 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)
Who is the manager of the Boston Pops? the best-known , most recorded -10.578594810595431 Who 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)
Who is the manager of the Boston Pops? england's major orchestra -10.60436980429635 Who 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)
Who is the manager of the Boston Pops? the committee -10.610799586502054 Who 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)
Who is the manager of the Boston Pops? act -10.63285299149879 Who 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)
Who is the manager of the Boston Pops? critically acclaimed group -10.635740791696193 Who 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)
Who is the manager of the Boston Pops? big deal -10.643093495229133 Who 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)
Who is the manager of the Boston Pops? Below -10.661525103194208 Who 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)
Who is the manager of the Boston Pops? Leonard -10.693364300181209 Who 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)
Who is the manager of the Boston Pops? boston area ensemble -10.708784539030669 Who 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)
Who is the manager of the Boston Pops? famous boston attraction -10.717924019551651 Who 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)
Who is the manager of the Boston Pops? boston's finest ensemble -10.718008021837658 Who 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)
Who is the manager of the Boston Pops? world-renown performer -10.738700628049274 Who 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)
Who is the manager of the Boston Pops? BSO tradition -10.738700628049274 Who 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)
Who is the manager of the Boston Pops? symphonic pop orchestra -10.738700628049274 Who 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)
Who is the manager of the Boston Pops? world-renowned orchestra -10.738700628049274 Who 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)
Who is the manager of the Boston Pops? top international artist -10.740856724059391 Who 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)
Who is the manager of the Boston Pops? world famous group -10.742573522463259 Who 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)
Who is the manager of the Boston Pops? prominent act -10.754780616159213 Who 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)
Who is the manager of the Boston Pops? plum job -10.759264459068275 Who 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)
Who is the manager of the Boston Pops? opera company and orchestra -10.764001857964349 Who 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)
Who is the manager of the Boston Pops? prestigious musical organization -10.764851005658608 Who 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)
Who is the manager of the Boston Pops? orchestra and performer -10.77053115150155 Who 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)
Who is the manager of the Boston Pops? a pretty good time -10.770978258136545 Who 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)
Who is the manager of the Boston Pops? popular classical event -10.7737582568105 Who 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)
Who is the manager of the Boston Pops? fun -10.774938211027813 Who 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)
Who is the manager of the Boston Pops? prominent symphony orchestra -10.778217497782078 Who 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)
Who is the manager of the Boston Pops? world-class orchestra -10.782247566632003 Who 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)
Who is the manager of the Boston Pops? best selling ensemble -10.783842062573678 Who 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)
Who is the manager of the Boston Pops? world renown performer -10.784040172320001 Who 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)
Who is the manager of the Boston Pops? well-known orchestra -10.789505386460593 Who 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)
Who is the manager of the Boston Pops? a tax deductible donation -10.797336697954433 Who 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)
Who is the manager of the Boston Pops? a more social event -10.798843787129439 Who 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)
Who is the manager of the Boston Pops? internationally acclaimed orchestra -10.8011766989863 Who 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)
Who is the manager of the Boston Pops? top U.S. orchestra -10.803674345829107 Who 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)
Who is the manager of the Boston Pops? Seattle concert event -10.803674345829107 Who 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)
Who is the manager of the Boston Pops? top notch orchestra -10.803674345829107 Who 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)
Who is the manager of the Boston Pops? leveraged top tier sponsorship -10.813758151592284 Who 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)
Who is the manager of the Boston Pops? signature Boston tradition -10.813758151592284 Who 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)
Who is the manager of the Boston Pops? member of musical organization -10.831092788004906 Who 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)
Who is the manager of the Boston Pops? group of musician -10.843146714937387 Who 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)
Who is the manager of the Boston Pops? The national anthem -10.84562252937577 Who 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)
Who is the manager of the Boston Pops? year internationally acclaimed orchestra -10.854885813630283 Who 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)
Who is the manager of the Boston Pops? so new items -10.85871407061043 Who 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)
Who is the manager of the Boston Pops? Pop Rock Shayne Holland -10.872144439833317 Who 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)
Who is the manager of the Boston Pops? Conductor Arthur Fiedler -10.87879854796773 Who 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)
Who is the manager of the Boston Pops? live music series -10.883572902360418 Who 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)
Who is the manager of the Boston Pops? featured soloist wit h orchestra -10.902009608943128 Who 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)
Who is the manager of the Boston Pops? The evening -10.914776049290147 Who 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)
Who is the manager of the Boston Pops? orchestra -10.917206609858484 Who 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)
Who is the manager of the Boston Pops? Mr. Williams -10.919052793911142 Who 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)
Who is the manager of the Boston Pops? multi-cultural, racial, denominational, ethnic and generational choir -10.942728196890108 Who 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)
Who is the manager of the Boston Pops? Henson-Conant -10.964966551068448 Who 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)
Who is the manager of the Boston Pops? nation's best classical talent -10.974034967120536 Who 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)
Who is the manager of the Boston Pops? August -10.979742927274794 Who 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)
Who is the manager of the Boston Pops? MA -10.98198833812392 Who 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)
Who is the manager of the Boston Pops? Mr. LeBow -11.009398485473978 Who 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)
Who is the manager of the Boston Pops? a former member -11.01761760481792 Who 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)
Who is the manager of the Boston Pops? Deborah Henson-Conant -11.019944312266766 Who 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)
Who is the manager of the Boston Pops? Mr. Farber?s arrangements -11.02089306679512 Who 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)
Who is the manager of the Boston Pops? artist -11.021514977754261 Who 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)
Who is the manager of the Boston Pops? several awards -11.028231980909277 Who 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)
Who is the manager of the Boston Pops? a member -11.031503461715163 Who 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)
Who is the manager of the Boston Pops? musician -11.074871340132024 Who 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)
Who is the manager of the Boston Pops? American orchestra -11.097728452120387 Who 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)
Who is the manager of the Boston Pops? group -11.122629211314374 Who 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)
Who is the manager of the Boston Pops? a guest conductor Michael -11.12300462523686 Who 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)
Who is the manager of the Boston Pops? lead trumpeter and soloist -11.152067498322598 Who 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)
Who is the manager of the Boston Pops? developed on-line channel -11.16102979361818 Who 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)
Who is the manager of the Boston Pops? Jordan -11.186086127392642 Who 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)
Who is the manager of the Boston Pops? ensemble -11.195697308730654 Who 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)
Who is the manager of the Boston Pops? client -11.29521367406261 Who 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)
Who is the manager of the Boston Pops? performer -11.359267790816322 Who 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)
Who is the manager of the Boston Pops? Tf3 -11.367876231300018 Who 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)
Who is the manager of the Boston Pops? Hallberg -11.387083829336001 Who 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)
Who is the manager of the Boston Pops? concert -11.409313919291606 Who 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)
Who is the manager of the Boston Pops? event -11.446408369995675 Who 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)
Who is the manager of the Boston Pops? program -11.453534752550876 Who 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)
Who is the manager of the Boston Pops? Massachusetts -11.595082507075936 Who 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)
Who is the manager of the Boston Pops? a free solo -11.664537391734013 Who 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)
Who is the manager of the Boston Pops? Deborah -11.726002669273482 Who 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)
Who is the manager of the Boston Pops? Brodeur -11.758289376285394 Who 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)
Who is the manager of the Boston Pops? Melinda -11.839598754403491 Who 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)
Who is the manager of the Boston Pops? August 24 -12.021329551831444 Who 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)
Who is the manager of the Boston Pops? a 1999 Grammy nomination -12.062881380021546 Who 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)
Who is the manager of the Boston Pops? Corin -12.063667722142805 Who 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)
Who is the manager of the Boston Pops? 16,000 copies -12.114577125072827 Who 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)
Who is the manager of the Boston Pops? 43 -12.146140715709079 Who 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)
Who is the manager of the Boston Pops? Thursday event -12.194738570406079 Who 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)
Who is the manager of the Boston Pops? Karmin -12.266335030180347 Who 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)
Who is the manager of the Boston Pops? Steichen -12.278736645815925 Who 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)
Who is the manager of the Boston Pops? Kulhawik -12.310602793343822 Who 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)
Who is the manager of the Boston Pops? Emery -12.34868106659474 Who 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)
Who is the manager of the Boston Pops? The gala celebration -12.49856355103566 Who 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)
Who is the manager of the Boston Pops? The Boston Symphony Orchestra -12.514946320185633 Who 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)
Who is the manager of the Boston Pops? the main attraction -12.526631299265535 Who 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)
Who is the manager of the Boston Pops? place Sunday -12.566815632588224 Who 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)
Who is the manager of the Boston Pops? Independence Day -12.59733593166676 Who 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)
Who is the manager of the Boston Pops? the most renowned orchestras -12.672947253750301 Who 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)
Who is the manager of the Boston Pops? the wild woman -12.793885603567155 Who 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)
Who is the manager of the Boston Pops? Amanda -12.833091587566754 Who 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)
Who is the manager of the Boston Pops? the odd coupling -13.224971858552307 Who 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)
How old was Crosby when he died? Republican member of the South Carolina House of Representatives , representing District 117 -11.974107553860295 How 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)
How old was Crosby when he died? big name -11.991877596895772 How 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)
How old was Crosby when he died? long time -12.788421479625178 How 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)
How old was Crosby when he died? Teahen -12.793871211112249 How 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)
How old was Crosby when he died? Twitter spammer -12.842115379618905 How 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)
How old was Crosby when he died? true comic icon -12.869604260218065 How 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)
How old was Crosby when he died? successful twitter marketer -12.869604260218065 How 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)
How old was Crosby when he died? great man -12.875822274839773 How 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)
How old was Crosby when he died? Social Media guru -12.890168091237065 How 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)
How old was Crosby when he died? graduate of Tennessee Theological University -12.893166157874488 How 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)
How old was Crosby when he died? man of extraordinary talent -12.894913591645834 How 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)
How old was Crosby when he died? blue singer -12.938620464751832 How 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)
How old was Crosby when he died? member of the State University of New York -12.941397170482631 How 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)
How old was Crosby when he died? oldie show -12.954483128615621 How 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)
How old was Crosby when he died? active artist -12.982484940180349 How 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)
How old was Crosby when he died? private company -12.98846892938439 How 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)
How old was Crosby when he died? comic legend -12.993965683289598 How 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)
How old was Crosby when he died? celebrity -13.011747907316227 How 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)
How old was Crosby when he died? favorite -13.1479823030867 How 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)
How old was Crosby when he died? entertainer -13.193075160189583 How 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)
How old was Crosby when he died? musician -13.19699129815371 How 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)
How old was Joan of Arc when she died? 11:03 -12.11644451626746 How 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)
How old was Joan of Arc when she died? God -12.309005083852384 How 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)
How old was Joan of Arc when she died? old -12.370501629697541 How 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)
How old was Joan of Arc when she died? the Old Marketplace -12.507453509297164 How 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)
How old was Joan of Arc when she died? 1430 -12.52215653645274 How 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)
How old was Joan of Arc when she died? 2006 -12.570156727101335 How 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)
How old was Joan of Arc when she died? heaven -12.596843623455223 How 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)
How old was Joan of Arc when she died? 1999 -12.611179783228003 How 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)
How old was Joan of Arc when she died? Rachel Corrie -12.747980855834943 How 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)
How old was Joan of Arc when she died? Anita Hill -12.747980855834943 How 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)
How old was Joan of Arc when she died? Oriana Fallaci -12.747980855834943 How 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)
How old was Joan of Arc when she died? Nightingale -12.939647568453468 How 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)
How old was Joan of Arc when she died? Snape -12.95366949260122 How 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)
How old was Joan of Arc when she died? okay i -12.96864096556511 How 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)
How old was Joan of Arc when she died? a girl -13.023243063993887 How 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)
How old was Joan of Arc when she died? Hillary -13.032233170393393 How 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)
How old was Joan of Arc when she died? Boo Human -13.057068574547813 How 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)
How old was Joan of Arc when she died? La Pucelle -13.099902300616401 How 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)
How old was Joan of Arc when she died? Obvious exceptions -13.128041766115906 How 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)
How old was Joan of Arc when she died? Jamie McKenzie -13.144112200396474 How 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)
How old was Joan of Arc when she died? French history -13.177711705256502 How 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)
How old was Joan of Arc when she died? Mr. Glasses -13.187900196508572 How 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)
How old was Joan of Arc when she died? Modern France -13.203353427102073 How 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)
How old was Joan of Arc when she died? RMS -13.207382212719143 How 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)
How old was Joan of Arc when she died? France -13.20748533523329 How 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)
How old was Joan of Arc when she died? the Brain -13.226342589744354 How 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)
How old was Joan of Arc when she died? a classic one -13.252054395232339 How 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)
How old was Joan of Arc when she died? Lorraine -13.252653559816073 How 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)
How old was Joan of Arc when she died? One movie -13.273205048727718 How 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)
How old was Joan of Arc when she died? the Orleans shore -13.276078426329773 How 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)
How old was Joan of Arc when she died? Emile?s hero -13.283750875520505 How 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)
How old was Joan of Arc when she died? A Teacher -13.303238156108389 How 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)
How old was Joan of Arc when she died? record -13.306735811090393 How 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)
How old was Joan of Arc when she died? The Hundrer Years War -13.349958833572487 How 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)
How old was Joan of Arc when she died? One such story -13.416350870283459 How 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)
How old was Joan of Arc when she died? One famous casualty -13.43675198914741 How 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)
How old was Joan of Arc when she died? BOSTON GLOBE ?Kay Fanning -13.50174384622884 How 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)
How old was Joan of Arc when she died? Koos -13.56048041532213 How 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)
How old was Joan of Arc when she died? right -13.57585006876661 How 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)
How old was Joan of Arc when she died? private -13.605912775319958 How 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)
How old was Joan of Arc when she died? A certain Senator Paola Binetti -13.623214006510066 How 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)
How old was Joan of Arc when she died? Life -13.791666536004996 How 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)
How old was Joan of Arc when she died? Wishbone -13.843278790454036 How 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)
How old was Joan of Arc when she died? one important name -13.866058700270612 How 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)
How old was Joan of Arc when she died? Columbus -14.07437250586015 How 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)
How old was Joan of Arc when she died? the selected 15 -14.084184484380064 How 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)
How old was Joan of Arc when she died? Katniss -14.141477348280278 How 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)
How old was Joan of Arc when she died? the question -14.169025579511242 How 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)
How old was Joan of Arc when she died? Hannah -14.200390944022425 How 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)
How old was Joan of Arc when she died? the video -14.2839067191908 How 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)
How old was Joan of Arc when she died? the inspiration -14.370558093246458 How 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)
How old was Joan of Arc when she died? the topics -14.39973661339871 How 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)
How old was Joan of Arc when she died? Noah?s wife -14.441131045564141 How 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)
How old was Joan of Arc when she died? teacher -14.698155341953026 How 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)
How old was Joan of Arc when she died? the inn -14.991312775374674 How 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)
How old was Joan of Arc when she died? the most famous figure -15.065413948313859 How 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)
How old was Joan of Arc when she died? The girl -15.080224509542916 How 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)
How old was Joan of Arc when she died? the evil alchemist -15.435923326834503 How 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)
How old was Joan of Arc when she died? the appointed local heroin -15.436936801584054 How 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)
How old was Joan of Arc when she died? the girl -15.567727178362391 How 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)
How old was Joan of Arc when she died? the virtuous stenographer -15.659513004156022 How 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)
How old was Joan of Arc when she died? the young saint -15.66980836067507 How 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)
How old was Joan of Arc when she died? the biggest inspiration -15.70075530633181 How 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)
What is Curveball's real name? the Iraqi defector -11.857880402529858 What 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)
Which college athletic teams are nicknamed the Cougars? football -5.506868710700054 Which 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)
Which college athletic teams are nicknamed the Cougars? Gaels -6.201846748286544 Which 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)
Which college athletic teams are nicknamed the Cougars? soccer -7.356384670068007 Which 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)
Which college athletic teams are nicknamed the Cougars? lacrosse -7.668034377972964 Which 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)
In what year was Padre Pio born? Southern Italy -3.281891934179617 In 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)
In what year was Padre Pio born? Italy -4.440592781612687 In 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)
In what year was Padre Pio born? Pietrelcina -4.728270248823564 In 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)
In what year was Padre Pio born? 1887 -5.0243647367470885 In 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)
In what year was Padre Pio born? Pietralcina -5.127103607514868 In 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)
In what year was Padre Pio born? the village -5.903051409311785 In 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)
In what year was Padre Pio born? Francesco Forgione -7.659759237579928 In 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)
In what year was Padre Pio born? May 25,1887 -7.933737846676236 In 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)
In what year was Padre Pio born? May 25 , 1887 -8.073094058132547 In 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)
In what year was Padre Pio born? the streets -9.528467262549986 In 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)
In what year was Padre Pio born? the left side -10.124282981112096 In 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)
What is schizophrenia? biologically-based disorder -4.99602648885058 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, biologically-based disorder) -> biologically-based disorder (1934ms)
What is schizophrenia? neuro-functional disorder -5.081692812842029 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neuro-functional disorder) -> neuro-functional disorder (1934ms)
What is schizophrenia? devastating brain disorder -5.120260520275424 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, devastating brain disorder) -> devastating brain disorder (1934ms)
What is schizophrenia? mental health condition -5.12338279136269 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental health condition) -> mental health condition (1934ms)
What is schizophrenia? serious psychiatric disorder -5.143678595419926 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, serious psychiatric disorder) -> serious psychiatric disorder (1934ms)
What is schizophrenia? devastating psychiatric disorder -5.151560649040539 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, devastating psychiatric disorder) -> devastating psychiatric disorder (1934ms)
What is schizophrenia? Nonfatal mental health disorders -5.208653775994163 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, Nonfatal mental health disorders) -> Nonfatal mental health disorders (1997ms)
What is schizophrenia? behavioral or psychiatric condition -5.213830210120189 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, behavioral or psychiatric condition) -> behavioral or psychiatric condition (1997ms)
What is schizophrenia? developmental or psychiatric disorder -5.299496534111638 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, developmental or psychiatric disorder) -> developmental or psychiatric disorder (1997ms)
What is schizophrenia? chronic mental illness -5.306714639595445 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, chronic mental illness) -> chronic mental illness (1997ms)
What is schizophrenia? group of related disorder -5.317122675160167 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, group of related disorder) -> group of related disorder (1997ms)
What is schizophrenia? common complex disorder -5.319840410528823 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, common complex disorder) -> common complex disorder (1997ms)
What is schizophrenia? incurable brain disease -5.334795924442895 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, incurable brain disease) -> incurable brain disease (2067ms)
What is schizophrenia? mental health difficulty -5.340404241547823 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental health difficulty) -> mental health difficulty (2067ms)
What is schizophrenia? complex neurodevelopmental disorder -5.350744101134356 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, complex neurodevelopmental disorder) -> complex neurodevelopmental disorder (2067ms)
What is schizophrenia? chronic and disabling illness -5.367190467350387 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic and disabling illness) -> chronic and disabling illness (2067ms)
What is schizophrenia? chronic debilitating disorder -5.369847772955838 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic debilitating disorder) -> chronic debilitating disorder (2067ms)
What is schizophrenia? chronic disorder of the brain -5.378968531802974 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic disorder of the brain) -> chronic disorder of the brain (2067ms)
What is schizophrenia? common human disease -5.3850802398779605 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, common human disease) -> common human disease (2085ms)
What is schizophrenia? chronic, debilitating disease -5.393677162456447 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic, debilitating disease) -> chronic, debilitating disease (2085ms)
What is schizophrenia? prevalent psychiatric disorder -5.3982678198873515 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, prevalent psychiatric disorder) -> prevalent psychiatric disorder (2085ms)
What is schizophrenia? progressive, degenerative disorder -5.415806520706754 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, progressive, degenerative disorder) -> progressive, degenerative disorder (2085ms)
What is schizophrenia? progressive neurodevelopmental disorder -5.419200969362558 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, progressive neurodevelopmental disorder) -> progressive neurodevelopmental disorder (2085ms)
What is schizophrenia? dangerous mental illness -5.42861781529587 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, dangerous mental illness) -> dangerous mental illness (2085ms)
What is schizophrenia? cognitive and behavioral disorder -5.4290801189126014 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, cognitive and behavioral disorder) -> cognitive and behavioral disorder (2109ms)
What is schizophrenia? selected DSM-IV-TR disorder -5.4290801189126014 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, selected DSM-IV-TR disorder) -> selected DSM-IV-TR disorder (2109ms)
What is schizophrenia? chronic neuropsychiatric disorder -5.442392630936574 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic neuropsychiatric disorder) -> chronic neuropsychiatric disorder (2109ms)
What is schizophrenia? cognitive and neurological disorder -5.443591207030303 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, cognitive and neurological disorder) -> cognitive and neurological disorder (2109ms)
What is schizophrenia? underlying psychiatric condition -5.447377802241265 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, underlying psychiatric condition) -> underlying psychiatric condition (2109ms)
What is schizophrenia? CNS disease -5.458991146740747 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, CNS disease) -> CNS disease (2109ms)
What is schizophrenia? disorder of language -5.4702077809506005 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disorder of language) -> disorder of language (2125ms)
What is schizophrenia? illness or condition -5.491787241699828 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, illness or condition) -> illness or condition (2125ms)
What is schizophrenia? human behavioral disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, human behavioral disorder) -> human behavioral disorder (2125ms)
What is schizophrenia? severe psychotic condition -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe psychotic condition) -> severe psychotic condition (2140ms)
What is schizophrenia? heritable brain disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, heritable brain disorder) -> heritable brain disorder (2140ms)
What is schizophrenia? notoriously difficult disease -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, notoriously difficult disease) -> notoriously difficult disease (2140ms)
What is schizophrenia? functional brain disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, functional brain disorder) -> functional brain disorder (2126ms)
What is schizophrenia? long lasting effect -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, long lasting effect) -> long lasting effect (2140ms)
What is schizophrenia? minor psychological disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, minor psychological disorder) -> minor psychological disorder (2140ms)
What is schizophrenia? symptom psychotic condition -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, symptom psychotic condition) -> symptom psychotic condition (2125ms)
What is schizophrenia? severe mental disease -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe mental disease) -> severe mental disease (2140ms)
What is schizophrenia? second mental illness -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, second mental illness) -> second mental illness (2125ms)
What is schizophrenia? neurodevelopmental and neurobehavioural disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurodevelopmental and neurobehavioural disorder) -> neurodevelopmental and neurobehavioural disorder (2159ms)
What is schizophrenia? awful long term health complication -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, awful long term health complication) -> awful long term health complication (2186ms)
What is schizophrenia? neurological and mental health disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurological and mental health disorder) -> neurological and mental health disorder (2159ms)
What is schizophrenia? difficult-to-treat disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, difficult-to-treat disorder) -> difficult-to-treat disorder (2186ms)
What is schizophrenia? long and debilitating illness -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, long and debilitating illness) -> long and debilitating illness (2159ms)
What is schizophrenia? common heritable disease trait -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, common heritable disease trait) -> common heritable disease trait (2159ms)
What is schizophrenia? lot mental illness -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, lot mental illness) -> lot mental illness (2186ms)
What is schizophrenia? psychiatric illness personality disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric illness personality disorder) -> psychiatric illness personality disorder (2159ms)
What is schizophrenia? disease of the spirit -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disease of the spirit) -> disease of the spirit (2186ms)
What is schizophrenia? illness es -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, illness es) -> illness es (2159ms)
What is schizophrenia? kind of illness -5.520977907034913 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, kind of illness) -> kind of illness (2186ms)
What is schizophrenia? group of illness -5.52297197543422 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, group of illness) -> group of illness (2186ms)
What is schizophrenia? chronic, degenerative disease -5.523255614634913 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, chronic, degenerative disease) -> chronic, degenerative disease (2216ms)
What is schizophrenia? cluster of disorder -5.52502835841355 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, cluster of disorder) -> cluster of disorder (2217ms)
What is schizophrenia? adult mental disorder -5.526189515075914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, adult mental disorder) -> adult mental disorder (2217ms)
What is schizophrenia? psychological disorder s -5.53119750796439 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, psychological disorder s) -> psychological disorder s (2216ms)
What is schizophrenia? real mental disease -5.5330441262327135 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, real mental disease) -> real mental disease (2217ms)
What is schizophrenia? brain disease -5.543903108602061 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, brain disease) -> brain disease (2217ms)
What is schizophrenia? psychological related issue -5.546753346094913 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychological related issue) -> psychological related issue (2230ms)
What is schizophrenia? neurological disorder -5.5521912348078875 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurological disorder) -> neurological disorder (2230ms)
What is schizophrenia? severe medical mental condition -5.55587410494205 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe medical mental condition) -> severe medical mental condition (2230ms)
What is schizophrenia? complex disease -5.572743983634905 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, complex disease) -> complex disease (2230ms)
What is schizophrenia? psychiatric diagnosis -5.62200567584461 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric diagnosis) -> psychiatric diagnosis (2230ms)
What is schizophrenia? debilitating condition -5.6369192235929395 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, debilitating condition) -> debilitating condition (2230ms)
What is schizophrenia? severe condition -5.6422210600999145 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe condition) -> severe condition (2283ms)
What is schizophrenia? immunologic disorder -5.715390446816772 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, immunologic disorder) -> immunologic disorder (2283ms)
What is schizophrenia? lonely illness -5.742464781113766 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, lonely illness) -> lonely illness (2283ms)
What is schizophrenia? tragic disease -5.745272000198361 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, tragic disease) -> tragic disease (2283ms)
What is schizophrenia? neurobiological disease -5.759987754927845 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurobiological disease) -> neurobiological disease (2283ms)
What is schizophrenia? psychiatric label -5.7999582564543495 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric label) -> psychiatric label (2283ms)
What is schizophrenia? family disease -5.808682306237559 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, family disease) -> family disease (2335ms)
What is schizophrenia? blanket diagnosis -5.832505092480487 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, blanket diagnosis) -> blanket diagnosis (2335ms)
What is schizophrenia? modern illness -5.8333487367796995 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, modern illness) -> modern illness (2335ms)
What is schizophrenia? spiritual disorder -5.839676069636641 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, spiritual disorder) -> spiritual disorder (2335ms)
What is schizophrenia? brain condition -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, brain condition) -> brain condition (2364ms)
What is schizophrenia? straightforward disorder -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, straightforward disorder) -> straightforward disorder (2364ms)
What is schizophrenia? intimidating diagnosis -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, intimidating diagnosis) -> intimidating diagnosis (2335ms)
What is schizophrenia? disturbing disease -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, disturbing disease) -> disturbing disease (2335ms)
What is schizophrenia? permanent disease -5.8754916778626 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, permanent disease) -> permanent disease (2364ms)
What is schizophrenia? genetic issue -5.878242692214841 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, genetic issue) -> genetic issue (2364ms)
What is schizophrenia? understood disease -5.882882736473359 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, understood disease) -> understood disease (2364ms)
What is schizophrenia? emotional condition -5.885344799748211 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, emotional condition) -> emotional condition (2364ms)
What is schizophrenia? life situation -5.885436782392937 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, life situation) -> life situation (2380ms)
What is schizophrenia? diagnostic label -5.885624580445799 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, diagnostic label) -> diagnostic label (2380ms)
What is schizophrenia? ambiguous term -5.888546217425425 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, ambiguous term) -> ambiguous term (2380ms)
What is schizophrenia? undiagnosed condition -5.890194320399866 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, undiagnosed condition) -> undiagnosed condition (2380ms)
What is schizophrenia? mental impairment -5.890897357315875 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental impairment) -> mental impairment (2381ms)
What is schizophrenia? extreme case -5.901455970887858 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, extreme case) -> extreme case (2588ms)
What is schizophrenia? health issue -5.903292755644747 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, health issue) -> health issue (2588ms)
What is schizophrenia? human oddity -5.904817489478579 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, human oddity) -> human oddity (2588ms)
What is schizophrenia? developmental disease -5.919897630101299 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, developmental disease) -> developmental disease (2588ms)
What is schizophrenia? disease -7.595681897167982 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disease) -> disease (2588ms)
What is schizophrenia? Atypical antipsychotics -7.905334915472646 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Atypical antipsychotics, are standard drugs for, schizophrenia) -> Atypical antipsychotics (2588ms)
What is schizophrenia? malady -7.972877598157053 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, malady) -> malady (2607ms)
What is schizophrenia? form -8.019286487574044 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, form) -> form (2607ms)
What is schizophrenia? reason -8.053395504918727 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, reason) -> reason (2607ms)
What is schizophrenia? contraindication -8.124703676974441 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, contraindication) -> contraindication (2607ms)
What is schizophrenia? drug -8.14804396327805 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, drug) -> drug (2607ms)
What is schizophrenia? a wandering uterus -8.244336930338665 What 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)
What is schizophrenia? severe mental illness -8.29013793488524 What 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)
What is schizophrenia? Aripiprazole -8.551130689061736 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Aripiprazole, is a drug used to treat, schizophrenia) -> Aripiprazole (2631ms)
What is schizophrenia? Clozapine -8.68209126794568 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Clozapine, is a drug used for, schizophrenia) -> Clozapine (2631ms)
What is schizophrenia? Zyprexa -8.69348654421861 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Zyprexa, is a drug used to treat, schizophrenia) -> Zyprexa (2631ms)
What is schizophrenia? Psychiatrists -9.090481949507662 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Psychiatrists, use antipsychotic drugs to treat, schizophrenia) -> Psychiatrists (2631ms)
What is schizophrenia? Animals -9.142739411149009 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, modelling, $x) -> (Autism and Schizophrenia, Be Modeled in, Animals) -> Animals (2631ms)
What is schizophrenia? human brain evolution -9.284108711116824 What 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)
What is schizophrenia? each entry -9.32445276939149 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, element, schizophrenia) -> (each entry, incorporates a formalised element of, schizophrenia) -> each entry (2648ms)
What is schizophrenia? delusions -10.027332652625956 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (Schizophrenia, is a disorder characterized by, delusions) -> delusions (2648ms)
What is schizophrenia? violent -10.305348359371916 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, and / or, $x) -> (schizophrenia, can be verbally and/or physically, violent) -> violent (2648ms)
What is schizophrenia? the illness -10.33517429489185 What 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)
What is schizophrenia? affinity -10.366402552245539 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a disease by, affinity) -> affinity (2662ms)
What is schizophrenia? disturbances -10.383645482942516 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a disorder characterized by, disturbances) -> disturbances (2663ms)
What is schizophrenia? disorders -10.537549831168585 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a class of, $x) -> (Schizophrenia, may be a class of, disorders) -> disorders (2662ms)
What is schizophrenia? seroquel -10.582818847549134 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (seroquel, is a drug that might treat, Schizophrenia) -> seroquel (2663ms)
What is schizophrenia? clozapine -10.582818847549134 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (clozapine, is a drug that might treat, Schizophrenia) -> clozapine (2677ms)
What is schizophrenia? risperdal -10.582818847549134 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (risperdal, is a drug that might treat, Schizophrenia) -> risperdal (2663ms)
What is schizophrenia? the same people -10.606470040395038 What 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)
What is schizophrenia? The patients -10.70049301922472 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (The patients, take antipsychotic drugs for, schizophrenia) -> The patients (2677ms)
What is schizophrenia? CBD -11.596390532748432 What 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)
What is schizophrenia? an illusion -11.696786529471003 What 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)
What is schizophrenia? ISPS-US -11.736176280115755 What 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)
What is schizophrenia? A user's guide to capitalism and schizophrenia: deviations from Deleuze and Guattari -11.736176280115755 What 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)
What is schizophrenia? The Schizophrenias: ours to conquer -11.736176280115755 What 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)
What is schizophrenia? Sex differences in schizophrenia -11.736176280115755 What 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)
What is schizophrenia? On the Origin of the "Influencing Machine" in Schizophrenia -11.736176280115755 What 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)
What is schizophrenia? En Trange to Exit -11.736176280115755 What 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)
What is schizophrenia? Schizophrenia International Research Society -11.736176280115755 What 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)
What is schizophrenia? Schizophrenia Fellowship of NSW -11.736176280115755 What 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)
What is schizophrenia? Unethical Psychiatrists -11.751708461730194 What 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)
What is schizophrenia? private What -11.775736338535406 What 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)
What is schizophrenia? Autism -11.790226316741494 What 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)
What is schizophrenia? Diogenes Nkosi -11.864712254486179 What 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)
What is schizophrenia? GABA synthesis -11.870965135894041 What 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)
What is schizophrenia? Rice -11.907528073575895 What 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)
What is schizophrenia? Catastrophic schizophrenia -11.939386787229946 What 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)
What is schizophrenia? GABA -12.046117272515815 What 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)
What is schizophrenia? the Mentally Ill -12.074554295741935 What 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)
What is schizophrenia? An Overview -12.086284607288233 What 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)
What is schizophrenia? KIAA1913 -12.128733740896491 What 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)
What is schizophrenia? the DISC 1 gene -12.232376744106219 What 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)
What is schizophrenia? Tom Middleton -12.261896820064678 What 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)
What is schizophrenia? Fear -12.373170077999738 What 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)
What is schizophrenia? What Really Causes Schizophrenia -12.405185239145933 What 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)
What is schizophrenia? Schizophrenia -12.427894631082555 What 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)
What is schizophrenia? split personality -12.428292421409763 What 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)
What is schizophrenia? Schizoaffect Disorder -12.475919306417373 What 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)
What is schizophrenia? visual perception -12.494179878247888 What 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)
What is schizophrenia? More About -12.533596935809152 What 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)
What is schizophrenia? Afghanistan -12.564591367376707 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Afghanistan, is, schizophrenia) -> Afghanistan (6084ms)
What is schizophrenia? Hoffman-LaRoche -12.566949373533545 What 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)
What is schizophrenia? NIMH Schizophrenia ? -12.61817181246703 What 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)
What is schizophrenia? Residual type schizophrenic disorders -12.636294381276924 What 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)
What is schizophrenia? Schizo-Affctive -12.64481942642307 What 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)
What is schizophrenia? an attorney -12.646432690376196 What 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)
What is schizophrenia? Lewis SW -12.650650325943575 What 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)
What is schizophrenia? Evidence based treatment summaries -12.667484827263968 What 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)
What is schizophrenia? Oxford University Press -12.709551136112287 What 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)
What is schizophrenia? Chelsea House Publishers -12.709551136112287 What 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)
What is schizophrenia? a new idea -12.724582765080262 What 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)
What is schizophrenia? psychiatric case register -12.730036565940688 What 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)
What is schizophrenia? Three major psychiatric disorders -12.794809302793018 What 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)
What is schizophrenia? Religion -12.815436537414097 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Religion, is, schizophrenia) -> Religion (6130ms)
What is schizophrenia? Recovery from schizophrenia -12.81900024227792 What 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)
What is schizophrenia? Simple type schizophrenia -12.820168879635187 What 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)
What is schizophrenia? the PubMed search -12.828033891565935 What 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)
What is schizophrenia? Key Q&A Key Q&A -12.844414841168266 What 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)
What is schizophrenia? SSDs The outcome -12.848370442302631 What 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)
What is schizophrenia? Tandem Library -12.856942599082005 What 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)
What is schizophrenia? Surviving Schizophrenia -12.856942599082005 What 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)
What is schizophrenia? Paranoid Schizophrenia -12.856942599082005 What 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)
What is schizophrenia? Chronic Schizophrenia -12.856942599082005 What 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)
What is schizophrenia? Beautiful Minds -12.856942599082005 What 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)
What is schizophrenia? Catatonic Schizophrenia -12.856942599082005 What 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)
What is schizophrenia? Conquering Schizophrenia -12.856942599082005 What 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)
What is schizophrenia? Borgo Press -12.856942599082005 What 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)
What is schizophrenia? Diseases Explained -12.856942599082005 What 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)
What is schizophrenia? Healing Schizophrenia -12.856942599082005 What 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)
What is schizophrenia? Strategic Intervention in Schizophrenia -12.890142161285581 What 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)
What is schizophrenia? NAMI | Schizophrenia -12.908077052581643 What 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)
What is schizophrenia? now its most overt manifestation -12.927917183481872 What 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)
What is schizophrenia? Surviving Schizophrenia: A Family Manual -12.941218410829544 What 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)
What is schizophrenia? Medicating schizophrenia : a history -12.941218410829544 What 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)
What is schizophrenia? Family management of schizophrenia: a study of clinical, social, family, and economic benefits -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia and genetics: a twin study vantage point -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia and the poor -12.941218410829544 What 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)
What is schizophrenia? A tragedy of schizophrenia: the wife's tale -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: the meanings of madness -12.941218410829544 What 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)
What is schizophrenia? Recovery from Schizophrenia: Psychiatry & Political Economy -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: medical & psychological subject index with bibliography -12.941218410829544 What 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)
What is schizophrenia? The Management of Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Language behavior and psychopathology -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: the facts -12.941218410829544 What 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)
What is schizophrenia? Surviving schizophrenia : a manual for families, consumers, and providers -12.941218410829544 What 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)
What is schizophrenia? Levels of schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia; chemistry, metabolism and treatment -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia and bipolar disorders: often misdiagnosed, often mistreated : a family manual -12.941218410829544 What 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)
What is schizophrenia? Mind, Brain, and Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Inheritance of schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Language behavior in schizophrenia: selected readings in research and theory. -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia and Human Value -12.941218410829544 What 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)
What is schizophrenia? A Carer's Guide to Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? The Concept of Schizophrenia: Historical Perspectives -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia:Voices of an Illness -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: the cutting edge -12.941218410829544 What 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)
What is schizophrenia? Neurochemistry of schizophrenia & depression -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Lothian Primary Care NHS Trust -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Aspects of Care -12.941218410829544 What 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)
What is schizophrenia? Living With Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia (Life Balance) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Losing Touch With Reality (Encyclopedia of Psychological Disorders Series) -12.941218410829544 What 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)
What is schizophrenia? Research techniques in schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Family care of schizophrenia : a problem-solving approach to the treatment of mental illness -12.941218410829544 What 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)
What is schizophrenia? Recovery from schizophrenia: psychiatry and political economy -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia; research and theory -12.941218410829544 What 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)
What is schizophrenia? The Neuropsychology Of Schizophrenia (Brain Damage, Behaviour, & Cognition) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: selected papers -12.941218410829544 What 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)
What is schizophrenia? Healing Schizophrenia: Complementary Vitamin & Drug Treatments -12.941218410829544 What 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)
What is schizophrenia? Mind, brain, and schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Theories of schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia (The Bode Library) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia, somatic aspects -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia : empirical research and findings -12.941218410829544 What 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)
What is schizophrenia? Essays in Schizophrenia (Pocket picture guides to clinical medicine) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia; conditional reflex studies -12.941218410829544 What 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)
What is schizophrenia? Drug Maintenance in Schizophrenia (Clinical Insights) -12.941218410829544 What 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)
What is schizophrenia? How to live with schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: a review of Schizophrenia services in Scotland. -12.941218410829544 What 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)
What is schizophrenia? The Reality of Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia Simplified: A Field Guide to Schizophrenia for Frontline Workers, Families, and Professionals -12.941218410829544 What 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)
What is schizophrenia? Frontal lobes and schizophrenia: second lobotomy project of Boston Psychopathic Hospital. -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia : a philosophical reflection on Lacan's structuralist interpretation -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: A Fresh Approach -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia as a life style -12.941218410829544 What 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)
What is schizophrenia? Working with schizophrenia: a needs based approach -12.941218410829544 What 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)
What is schizophrenia? Orthomolecular psychiatry: treatment of schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia and human value : chronic schizophrenia, science, and society -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: New Medical Therapies -12.941218410829544 What 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)
What is schizophrenia? Language and schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia (Popular Medical Booklets) -12.941218410829544 What 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)
What is schizophrenia? Anti-Oedipus -12.941218410829544 What 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)
What is schizophrenia? Families coping with schizophrenia: a practitioner's guide to family groups -12.941218410829544 What 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)
What is schizophrenia? Drug Therapy and Schizophrenia (Psychiatric Disorders: Drugs & Psychology for the Mind and Body) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Straight Talk for Family and Friends -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Your Questions Answered -12.941218410829544 What 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)
What is schizophrenia? Common questions on schizophrenia and their answers -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia (Roseneath Popular Medical Booklets) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: straight talk for family and friends -12.941218410829544 What 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)
What is schizophrenia? Psychodiagnosis in schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Interpretation of Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: a scientific delusion? -12.941218410829544 What 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)
What is schizophrenia? Adaptation in schizophrenia: the theory of segmental set -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Where Families Fear to Tread from Despair to Hope. -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia as a human process -12.941218410829544 What 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)
What is schizophrenia? Generalizing ability in schizophrenia : an inquiry into the disorders of problem thinking in schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Welcome, Silence -12.941218410829544 What 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)
What is schizophrenia? Towards a sociology of schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Mental Illness and Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Stages of Schizophrenia, ( Part One) The -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Medical & Psychological Subject Index With Bibliography -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia : an introduction to research and theory -12.941218410829544 What 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)
What is schizophrenia? Conquering schizophrenia : a father, his son, and a medical breakthrough -12.941218410829544 What 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)
What is schizophrenia? A Thousand Plateaus -12.941218410829544 What 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)
What is schizophrenia? A psychotherapy of schizophrenia: direct analysis -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: the sacred symbol of psychiatry -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Positive and Negative Symptoms and Syndromes (Modern Problems of Pharmacopsychiatry) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: a review of schizophrenia services in Scotland -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia and the family -12.941218410829544 What 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)
What is schizophrenia? Cognitive remediation therapy for schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Innovations in Diagnosis and Treatment -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: A Scientific Delusion? -12.941218410829544 What 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)
What is schizophrenia? A tragedy of schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Paranoid Schizophrenia: A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References -12.941218410829544 What 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)
What is schizophrenia? Recovery from Schizophrenia: Psychiatry and Political Economy -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: a guide for sufferers and their families -12.941218410829544 What 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)
What is schizophrenia? Cultural schizophrenia : Islamic societies confronting the west -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: From Mind to Molecule (American Psychopathological Association) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: The Major Issues -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: Voices of an Illness -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia Revealed: From Neurons to Social Interactions -12.941218410829544 What 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)
What is schizophrenia? Recent research on schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia (Current concepts) -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia, a biopsychological perspective -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia, a source of social insight -12.941218410829544 What 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)
What is schizophrenia? Recovery from Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Managing Negative Symptoms of Schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia : selected papers -12.941218410829544 What 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)
What is schizophrenia? Magic and schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Depression and schizophrenia: a contribution on their chemical pathologies -12.941218410829544 What 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)
What is schizophrenia? Perceptual constancy in schizophrenia -12.941218410829544 What 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)
What is schizophrenia? Interpretation of schizophrenia. -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: pharmacotherapy and psychotherapy -12.941218410829544 What 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)
What is schizophrenia? Catatonic Schizophrenia: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: a fresh approach -12.941218410829544 What 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)
What is schizophrenia? Language behavior and communication; an introduction -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: a psychopharmacological approach -12.941218410829544 What 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)
What is schizophrenia? Schizophrenia: its causes, symptoms and treatment -12.941218410829544 What 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)
What is schizophrenia? Intellectual schizophrenia: culture, crisis, and education. -12.941218410829544 What 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)
What is schizophrenia? Bipolar illness -12.968241503800426 What 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)
What is schizophrenia? inappropriate responses -12.983186923329628 What 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)
What is schizophrenia? primary psychiatric diagnoses -13.061183316054663 What 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)
What is schizophrenia? mental illnesses -13.072918275771709 What 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)
What is schizophrenia? any comments -13.12384457758715 What 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)
What is schizophrenia? Toxo -13.166932084627495 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Toxo, is, schizophrenia) -> Toxo (6149ms)
What is schizophrenia? 1 Yes No -13.210739980153342 What 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)
What is schizophrenia? Depression -13.249991429533829 What 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)
What is schizophrenia? predominant concern -13.258172425124425 What 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)
What is schizophrenia? 60 Minutes and PBS Frontline -13.303419709504595 What 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)
What is schizophrenia? tri-personal -13.384901772119544 What 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)
What is schizophrenia? no organic lesion -13.405277176546956 What 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)
What is schizophrenia? Flutterrage -13.48072657347619 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Flutterrage, is, schizophrenia) -> Flutterrage (7792ms)
What is schizophrenia? an illness -13.502588306489908 What 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)
What is schizophrenia? a Disease -13.530416187912559 What 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)
What is schizophrenia? The diagnosis and stigma of schizophrenia -13.570178469097877 What 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)
What is schizophrenia? violent ? -13.573793625839272 What 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)
What is schizophrenia? a psychosis -13.588593269551534 What 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)
What is schizophrenia? pregnancy -13.738276980298561 What 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)
What is schizophrenia? autism -13.75308959767972 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (autism, was known as, childhood schizophrenia) -> autism (2840ms)
What is schizophrenia? the form -13.85031181990042 What 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)
What is schizophrenia? the behavior -14.051317662106586 What 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)
What is schizophrenia? very -14.173884310385791 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (very, little was known about, schizophrenia) -> very (2851ms)
What is schizophrenia? speed -14.212461355391245 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (speed, are known problems in, schizophrenia) -> speed (2851ms)
What is schizophrenia? five -14.29154714552315 What 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)
What is schizophrenia? Shea -14.696635253664457 What 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)
What is schizophrenia? Psssssh -14.75578079145505 What 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)
What is schizophrenia? Nobody -14.944114919194188 What 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)
What is schizophrenia? a disease -14.972586594181628 What 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)
What is schizophrenia? a gene -14.972586594181628 What 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)
What is schizophrenia? dementia praecox -15.287042878380277 What 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)
What is schizophrenia? The woman?s family -15.884801675347042 What 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)
What is schizophrenia? The general public -15.895412070267085 What 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)
What is schizophrenia? a mental ailment -16.037937782985104 What 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)
What is schizophrenia? a mental illness -16.072813726039232 What 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)
What is schizophrenia? a mental condition -16.072813726039232 What 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)
What is schizophrenia? the mental disorder -17.409216693275244 What 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)
What is schizophrenia? the mental illness -17.42149174288117 What 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)
What is schizophrenia? the brain disorder -17.42149174288117 What 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)
What is schizophrenia? the crippling mental disorder -17.436263676927364 What 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)
What is schizophrenia? symptoms -17.53576802982341 What 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)
What is schizophrenia? the condition -17.67758660880718 What 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)
What is schizophrenia? the disorder -17.712462551861307 What 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)
What is the length of the Big Dig? 139.333 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 139.333) -> 139.333 (467ms)
What is the length of the Big Dig? 501.907 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 501.907) -> 501.907 (466ms)
What is the length of the Big Dig? 88.946 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 88.946) -> 88.946 (467ms)
What is the length of the Big Dig? 177.44 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 177.44) -> 177.44 (466ms)
What is the length of the Big Dig? 129.96 -0.2636501994473963 What 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)
What is the length of the Big Dig? 260401 -1.3240187573543514 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (Traffic before the "Big Dig", Length, 260401) -> 260401 (577ms)
What is the length of the Big Dig? 90.973 -1.9431041831761093 What 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)
What is the length of the Big Dig? 261.2 -1.9431041831761093 What 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)
What is the length of the Big Dig? 365.72 -1.9431041831761093 What 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)
What is the length of the Big Dig? 541.92 -1.9431041831761093 What 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)
What is the length of the Big Dig? 160.84 -1.9431041831761093 What 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)
What is the length of the Big Dig? 261.0 -2.1163674305889937 What 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)
What is the length of the Big Dig? 248.0 -2.4195781135615415 What 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)
What is the length of the Big Dig? 198.0 -2.5062097372679837 What 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)
What is the length of the Big Dig? The Dig -2.9937080884520553 What 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)
What is the length of the Big Dig? TeleAtlas -3.257855137558815 What 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)
What is the length of the Big Dig? even worse -3.36125928935566 What 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)
What is the length of the Big Dig? Hopalong Cassidy -3.4739314664616265 What 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)
What is the length of the Big Dig? cost overruns -3.5404080227769956 What 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)
What is the length of the Big Dig? a challenge -3.7697087568408696 What 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)
What is the length of the Big Dig? private quarters -3.918327695247934 What 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)
What is the length of the Big Dig? aforementioned money-sucking vaccum -3.960127889091602 What 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)
What is the length of the Big Dig? Romneycare ? -4.037488167474251 What 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)
What is the length of the Big Dig? medication history -4.043195490151751 What 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)
What is the length of the Big Dig? so many other ways -4.052961366652694 What 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)
What is the length of the Big Dig? Concerts -4.152293368183875 What 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)
What is the length of the Big Dig? the MBTA -4.154785666609795 What 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)
What is the length of the Big Dig? Boston -4.156297962296316 What 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)
What is the length of the Big Dig? a record -4.1695417264593075 What 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)
What is the length of the Big Dig? a discussion -4.240402750862726 What 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)
What is the length of the Big Dig? the 50 attendees -4.25453939449554 What 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)
What is the length of the Big Dig? Sunday -4.2640115406411745 What 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)
What is the length of the Big Dig? contaminated soil -4.281243496473882 What 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)
What is the length of the Big Dig? A skyscraper -4.325686508334909 What 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)
What is the length of the Big Dig? DiMasi -4.337181089656049 What 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)
What is the length of the Big Dig? Darwin Core providers -4.341520617632073 What 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)
What is the length of the Big Dig? the ?little dig? -4.470118390248674 What 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)
What is the length of the Big Dig? Sunday morning -4.508545378130529 What 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)
What is the length of the Big Dig? drilled shafts -4.541197671343152 What 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)
What is the length of the Big Dig? an infrastructure project -4.638540233371394 What 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)
What is the length of the Big Dig? underground roadways -4.66528237171012 What 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)
What is the length of the Big Dig? Dinosaur Hall -4.709620083421848 What 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)
What is the length of the Big Dig? nearly $ 15 billion -4.751702556581578 What 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)
What is the length of the Big Dig? a year 2006 -4.775430573324992 What 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)
What is the length of the Big Dig? Global 2000 companies -4.815108399622073 What 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)
What is the length of the Big Dig? Milford -4.955399871817541 What 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)
What is the length of the Big Dig? the Basin -5.058574509401918 What 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)
What is the length of the Big Dig? The bridge -5.215149034838861 What 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)
What is the length of the Big Dig? The subject -5.490423050852372 What 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)
What is the length of the Big Dig? the MBTA?s debt -5.58055033932148 What 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)
What is the length of the Big Dig? the projected damage -5.639092328374964 What 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)
What is the length of the Big Dig? McNichol -5.6444488031844555 What 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)
What is the length of the Big Dig? money -5.7586861917551335 What 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)
What is the length of the Big Dig? The Bonehunters Quarry -5.83588952461875 What 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)
What is the length of the Big Dig? two federal agencies -5.8763661831997975 What 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)
What is the length of the Big Dig? ? Natsios -5.891581843481013 What 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)
What is the length of the Big Dig? the healthcare reform law -5.900604308481371 What 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)
What is the length of the Big Dig? The traffic -5.903783747617219 What 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)
What is the length of the Big Dig? OK Park face-lift -6.122405254100672 What 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)
What is the length of the Big Dig? The toll increases -6.129625990763684 What 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)
What is the length of the Big Dig? the most -6.187820143592371 What 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)
What is the length of the Big Dig? action -6.230952735454508 What 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)
What is the length of the Big Dig? Lawsuits -6.253132276224596 What 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)
What is the length of the Big Dig? a big milestone -6.2562867542563785 What 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)
What is the length of the Big Dig? the highway -6.262028234500831 What 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)
What is the length of the Big Dig? a hole -6.56822547731455 What 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)
What is the length of the Big Dig? Second -6.607027326445852 What 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)
What is the length of the Big Dig? The festival -7.276755945589088 What 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)
What is the length of the Big Dig? the house -7.822190979354929 What 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)
What is the length of the Big Dig? decades -8.323189770267268 What 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)
What is the length of the Big Dig? traffic -8.786246605531218 What 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)
What is the length of the Big Dig? construction ?debris ? -9.595227151817152 What 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)
What is the length of the Big Dig? the Big Dig page -9.638818599962521 What 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)
What is the length of the Big Dig? modern America -10.781938062029269 What 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)
What is the length of the Big Dig? full throttle -10.940376024765907 What 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)
What is the length of the Big Dig? Exhibit A -11.210579386188366 What 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)
What is the length of the Big Dig? Massachusetts -11.241385258168773 What 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)
What is the length of the Big Dig? a scandal -11.251264463631301 What 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)
What is the length of the Big Dig? a highway -11.265591388754062 What 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)
What is the length of the Big Dig? Meg -11.307556906037314 What 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)
What is the length of the Big Dig? a less popular choice -11.357296355723928 What 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)
What is the length of the Big Dig? a maze -11.386473130857443 What 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)
What is the length of the Big Dig? a prison -11.4154130923173 What 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)
What is the length of the Big Dig? a decade -11.433279267909148 What 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)
What is the length of the Big Dig? a couple -11.449686216013369 What 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)
What is the length of the Big Dig? a major public works projects -11.466936892421868 What 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)
What is the length of the Big Dig? Boston real estate -11.4794333991866 What 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)
What is the length of the Big Dig? a good first step -11.506489502342271 What 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)
What is the length of the Big Dig? a Mitt Romney big government project -11.528830731033052 What 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)
What is the length of the Big Dig? a nightmare -11.532365784320996 What 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)
What is the length of the Big Dig? less enchanting -11.579731875409108 What 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)
What is the length of the Big Dig? Continue reading -11.590626496558214 What 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)
What is the length of the Big Dig? Channel Four -11.592634023977755 What 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)
What is the length of the Big Dig? Capital Growth -11.611432057437263 What 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)
What is the length of the Big Dig? the MBTA books -11.616366291489808 What 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)
What is the length of the Big Dig? a tight , self-contained stand-alone mystery -11.6622944490146 What 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)
What is the length of the Big Dig? seven years -11.677976902962566 What 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)
What is the length of the Big Dig? a total flop -11.678315372805562 What 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)
What is the length of the Big Dig? a Tip O'Neil/Ted Kennedy project -11.679978387845713 What 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)
What is the length of the Big Dig? high school seniors -11.684120635824206 What 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)
What is the length of the Big Dig? MassDOT officials -11.701249292743272 What 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)
What is the length of the Big Dig? Route 93 -11.729017637497071 What 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)
What is the length of the Big Dig? a few years -11.76839818740586 What 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)
What is the length of the Big Dig? an immense overhaul -11.77796830311142 What 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)
What is the length of the Big Dig? 620 thousand Truckloads -11.791174851929556 What 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)
What is the length of the Big Dig? the Central Artery -11.837186971539717 What 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)
What is the length of the Big Dig? food charity Sustain -11.839133995432599 What 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)
What is the length of the Big Dig? London -11.850089111158864 What 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)
What is the length of the Big Dig? an elevated highway -11.868415931417227 What 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)
What is the length of the Big Dig? cost overruns and delays -11.875572825767568 What 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)
What is the length of the Big Dig? a local legend -11.945960295272966 What 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)
What is the length of the Big Dig? 5.8 billion dollars -11.993008186241626 What 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)
What is the length of the Big Dig? a good idea -12.03477229392382 What 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)
What is the length of the Big Dig? the Queen -12.03776243416528 What 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)
What is the length of the Big Dig? a huge success -12.060712558980821 What 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)
What is the length of the Big Dig? a $ 14.6 billion band-aid -12.0619255064087 What 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)
What is the length of the Big Dig? the Authority -12.06362720791182 What 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)
What is the length of the Big Dig? a long time -12.139427983769504 What 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)
What is the length of the Big Dig? Haymarket -12.204397263521336 What 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)
What is the length of the Big Dig? prehistoric fossils -12.2127612063663 What 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)
What is the length of the Big Dig? short on cash -12.246874983495593 What 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)
What is the length of the Big Dig? great interest -12.253219151186425 What 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)
What is the length of the Big Dig? time and on budget -12.316937955961462 What 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)
What is the length of the Big Dig? individuals and teams -12.405662489976107 What 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)
What is the length of the Big Dig? public transit -12.542339979369565 What 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)
What is the length of the Big Dig? Transformed Boston -12.630962564889293 What 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)
What is the length of the Big Dig? a very visible failure -12.776209912536569 What 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)
What is the length of the Big Dig? an easy commute possible -12.785871500225964 What 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)
What is the length of the Big Dig? the big reasons -12.78864241016118 What 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)
What is the length of the Big Dig? 1998 -12.799946653177377 What 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)
What is the length of the Big Dig? a small rail component -12.809809417396597 What 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)
What is the length of the Big Dig? dollars -12.847489567521318 What 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)
What is the length of the Big Dig? the creation -12.852686670934686 What 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)
What is the length of the Big Dig? disastrous consequences -12.854470028885073 What 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)
What is the length of the Big Dig? dust -12.87913008537841 What 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)
What is the length of the Big Dig? the largest ? -12.88678836553798 What 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)
What is the length of the Big Dig? operating expenses -12.923501857089004 What 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)
What is the length of the Big Dig? infrastructure -12.938850387801173 What 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)
What is the length of the Big Dig? 2007 -12.946723493042027 What 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)
What is the length of the Big Dig? work continuing -13.002918370600842 What 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)
What is the length of the Big Dig? fiscal support -13.040119241894809 What 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)
What is the length of the Big Dig? property values -13.074303685138467 What 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)
What is the length of the Big Dig? 2002 -13.126974621390028 What 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)
What is the length of the Big Dig? a noticeable impact -13.173411382446453 What 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)
What is the length of the Big Dig? a traffic bottleneck -13.233955651083129 What 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)
What is the length of the Big Dig? the region?s -13.275746433113579 What 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)
What is the length of the Big Dig? the most expensive highway project -13.333845513894165 What 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)
What is the length of the Big Dig? time -13.403705148524512 What 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)
What is the length of the Big Dig? the rate -13.414322970933604 What 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)
What is the length of the Big Dig? the ugly raised highways -13.422843649937143 What 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)
What is the length of the Big Dig? cash -13.490469917598183 What 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)
What is the length of the Big Dig? the old dump -13.49192576834642 What 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)
What is the length of the Big Dig? the money -13.762769270210537 What 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)
What is the length of the Big Dig? the automobile -13.782850138788739 What 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)
What is the length of the Big Dig? sight -13.788804247200321 What 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)
What is the length of the Big Dig? the soaring price of prehistoric fossils -13.80591308148285 What 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)
What is the length of the Big Dig? years -13.923594518433443 What 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)
What is the length of the Big Dig? the authority -14.029374445626335 What 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)
What is the length of the Big Dig? the time -14.066938016056106 What 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)
What is the length of the Big Dig? cost -14.334969002432759 What 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)
What is the length of the Big Dig? the detriment of the public -14.527764955049143 What 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)
What is the length of the Big Dig? the public?s mind -14.551997997668943 What 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)
What is the length of the Big Dig? the city -14.662376582412627 What 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)
What is the length of the Big Dig? water -14.6954203060636 What 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)
What is the length of the Big Dig? the landscape -14.927700443815732 What 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)
What is the length of the Big Dig? resources -15.070663295680307 What 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)
What is the length of the Big Dig? complete -15.083323314005288 What 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)
What is the length of the Big Dig? over -15.118199257059416 What 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)
What is the length of the Big Dig? first -15.225613185429522 What 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)
What president created social security? FDR -3.9861794567018394 What 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)
What president created social security? president Roosevelt -4.111634739721078 What 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)
What president created social security? Franklin D. Roosevelt -4.317881845336286 What 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)
What president created social security? The New Deal -4.324066111849287 What 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)
What president created social security? President Roosevelt -4.377982185135166 What 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)
What president created social security? Presidents Roosevelt -4.536625174086862 What 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)
What president created social security? Roosevelt's -4.7179092050005025 What 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)
What president created social security? Roosevelt -4.72680461356069 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Roosevelt, Instance Of, president) (Roosevelt, created, Social Security) -> Roosevelt (2313ms)
What president created social security? president of the Bar -4.813760893227858 What 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)
What president created social security? Presidents Franklin D. Roosevelt -4.843823824713009 What 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)
What president created social security? George W. -4.867125469706881 What 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)
What president created social security? Franklin D Roosevelt -4.871711977896896 What 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)
What president created social security? George W -4.883065164839638 What 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)
What president created social security? President Teddy Roosevelt -4.884411242291949 What 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)
What president created social security? Johnson -4.918200875748099 What 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)
What president created social security? A. Johnson -4.955982539975031 What 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)
What president created social security? Social Security -5.048312548413971 What 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)
What president created social security? U.S. -5.196501905973792 What 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)
What president created social security? Bachelet -5.375388139675719 What 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)
What president created social security? Franklin Roosevelt -5.413030443246553 What 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)
What president created social security? Franklin Delano Roosevelt -5.544853227488437 What 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)
What president created social security? Congress -7.303390057861396 What 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)
What president created social security? President Elect Obama -8.075211660614443 What 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)
What president created social security? law -8.094170842413508 What 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)
What president created social security? President Obama -8.112686246793134 What 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)
What president created social security? President-elect Obama -8.211873392786929 What 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)
What president created social security? Page -8.213635358805057 What 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)
What president created social security? President Obama's -8.355457223558275 What 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)
What president created social security? congress -9.172758120263545 What 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)
What president created social security? President Franklin Delano Roosevelt -11.19960729096413 What 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)
What president created social security? President Franklin Roosevelt -11.359611567800732 What 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)
What president created social security? the New Deal -11.511228190860798 What 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)
What president created social security? the New-Deal -11.552666970422106 What 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)
What president created social security? Economic Security -11.958953534030398 What 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)
What president created social security? civil service -11.969713090064417 What 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)
What president created social security? the Great Depression -12.025432478755167 What 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)
What president created social security? the Rich -12.02965804613519 What 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)
What president created social security? He?s -12.067065031830033 What 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)
What president created social security? a U.S. Congressman -12.158527751977024 What 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)
What president created social security? a switch -12.189416025448281 What 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)
What president created social security? India -12.241385624986052 What 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)
What president created social security? progressives politicians -12.262219667092829 What 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)
What president created social security? Ralphs -12.305082142851209 What 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)
What president created social security? Biomass production -12.31076135151483 What 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)
What president created social security? The Social Security Board -12.312356201224343 What 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)
What president created social security? ?Has Obama -12.317066208579138 What 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)
What president created social security? the U.S. federal government -12.3417898510023 What 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)
What president created social security? E-Verify -12.380893137067627 What 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)
What president created social security? the U.S. government -12.391399463161981 What 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)
What president created social security? The Act -12.400146944009098 What 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)
What president created social security? the United States -12.424226284045744 What 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)
What president created social security? France -12.500514934632534 What 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)
What president created social security? Title V -12.51567897577467 What 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)
What president created social security? The Medicaid program -12.528057743496907 What 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)
What president created social security? Law 100 -12.62175635343947 What 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)
What president created social security? foster care system -12.623365248609781 What 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)
What president created social security? 87 ? -12.647795673244765 What 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)
What president created social security? less than one child -12.662417798546745 What 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)
What president created social security? The Democrats -12.746921828464187 What 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)
What president created social security? Old Friends -12.756623237282593 What 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)
What president created social security? much less work -12.798357811422063 What 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)
What president created social security? 2. Bush -12.922541096280334 What 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)
What president created social security? George -13.064221952528532 What 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)
What president created social security? Generations -13.14668553697372 What 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)
What president created social security? unions -13.295105967381925 What 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)
What president created social security? the Congress -13.43908890909022 What 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)
What president created social security? 1935 -13.516339799639391 What 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)
What president created social security? AFDC -13.576465617520412 What 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)
What president created social security? The system -13.632650689533115 What 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)
What president created social security? The program -13.706401808601246 What 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)
What president created social security? the president -13.777051511809486 What 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)
What president created social security? Rick Perry -13.805111209571763 What 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)
What president created social security? lifespans -13.893688981034348 What 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)
What president created social security? The government -13.904303661085619 What 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)
What president created social security? the Democrats -13.952580442247356 What 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)
What president created social security? Liberals -14.015522086893666 What 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)
What president created social security? The Vice President -14.051443362535926 What 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)
What president created social security? The federal government -14.14497913629685 What 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)
What president created social security? BTW-Franklin Roosevelt -14.19200408668074 What 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)
What president created social security? legislation -14.250251815885155 What 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)
What president created social security? the promise -14.251338906271256 What 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)
What president created social security? thieves -14.274810793935501 What 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)
What president created social security? the politicians -14.27504404177505 What 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)
What president created social security? The charter -14.350143476562096 What 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)
What president created social security? the country -14.42688688762999 What 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)
What president created social security? the law -14.693424660237206 What 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)
What president created social security? 2 generations -14.69446521848096 What 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)
What president created social security? turn -14.770826867503349 What 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)
What president created social security? Gravel -14.778233186200254 What 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)
What president created social security? government -14.790477789233076 What 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)
What president created social security? the federal government -14.864818492140582 What 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)
What president created social security? Neither side -14.985520134173239 What 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)
What president created social security? a divorce lawyer -14.995926487598748 What 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)
What president created social security? Johnson, 46 -15.101380446815284 What 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)
What president created social security? Legislation -15.18726001072913 What 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)
What president created social security? Ralph -15.239944621299733 What 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)
What president created social security? the bill -15.618917072978942 What 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)
What president created social security? the party -15.641803560163066 What 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)
What president created social security? the government -15.77291149862943 What 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)
What president created social security? the commission -15.856216828836512 What 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)
What president created social security? pages -16.05761391392378 What 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)
What president created social security? roosevelt -16.207143131214856 What 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)
What president created social security? a popular consensus -16.423454757945002 What 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)
What president created social security? pensions -16.53619433363729 What 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)
What president created social security? Paul -16.951951907693388 What 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)
What president created social security? help -17.031112695104465 What 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)
What president created social security? poll -17.202586422164167 What 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)
What president created social security? income -17.733511598134417 What 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)
What president created social security? the end -17.734836030703406 What 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)
What president created social security? the changes -17.798153334643732 What 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)
When is Jennifer Lopez's birthday? Miami -4.568889215792058 When is Jennifer Lopez's birthday? -> $x: (Jennifer Lopez, birthday, $x) -> (Jennifer Lopez, celebrated her birthday in, Miami) -> Miami (4222ms)
When is Jennifer Lopez's birthday? 1969-07-24 -6.91556571325239 When 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)
When is Jennifer Lopez's birthday? 1997 -8.440520147515603 When 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)
When is Jennifer Lopez's birthday? Castle Hill -10.535626625036212 When 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)
When is Jennifer Lopez's birthday? St. Augustine -10.535626625036212 When 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)
When is Jennifer Lopez's birthday? Ben Affleck -11.471511043718342 When 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)
When is Jennifer Lopez's birthday? Fans -11.60802416022387 When 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)
When is Jennifer Lopez's birthday? Marc Anthony -11.750848377647513 When 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)
When is Jennifer Lopez's birthday? 60?s glamour -12.116741490348177 When 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)
When is Jennifer Lopez's birthday? 53 -12.251898360685704 When 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)
When is Jennifer Lopez's birthday? joint custody -12.252477095869981 When 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)
When is Jennifer Lopez's birthday? New York -12.393649311985925 When 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)
When is Jennifer Lopez's birthday? Catholicism -12.427058682615662 When 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)
When is Jennifer Lopez's birthday? Ojani Noa -12.437851190860084 When 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)
When is Jennifer Lopez's birthday? Mark Anthony -12.499496819553034 When 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)
When is Jennifer Lopez's birthday? a man -12.64223032164858 When 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)
When is Jennifer Lopez's birthday? song -12.673375824699447 When 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)
When is Jennifer Lopez's birthday? Loud These -12.734046523571271 When 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)
When is Jennifer Lopez's birthday? a new look -12.80050630082741 When 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)
When is Jennifer Lopez's birthday? dirty -12.841918687467016 When 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)
When is Jennifer Lopez's birthday? a backup dancer -12.858133653433471 When 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)
When is Jennifer Lopez's birthday? ?FRO-YO?? Yogurt -12.950974437701396 When 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)
When is Jennifer Lopez's birthday? Mr Barnes -12.973014793113029 When 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)
When is Jennifer Lopez's birthday? Diddy -12.974007250383638 When 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)
When is Jennifer Lopez's birthday? twins -12.990602312130445 When 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)
When is Jennifer Lopez's birthday? twin babies -13.005476441474872 When 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)
When is Jennifer Lopez's birthday? a baby -13.07004173027845 When 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)
When is Jennifer Lopez's birthday? backup dancer -13.119758206334625 When 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)
When is Jennifer Lopez's birthday? twins Max and Emme -13.13386306075085 When 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)
When is Jennifer Lopez's birthday? David Tanny -13.218093781878146 When 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)
When is Jennifer Lopez's birthday? Hahaha -13.727732265573335 When 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)
When is Jennifer Lopez's birthday? Americans -13.808478555191396 When 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)
When is Jennifer Lopez's birthday? Casper Smart -14.127617002194322 When 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)
When is Jennifer Lopez's birthday? the first time -14.225226836126147 When 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)
When is Jennifer Lopez's birthday? finally -14.27246692540238 When 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)
When is Jennifer Lopez's birthday? a born performer -14.273699045818942 When 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)
When is Jennifer Lopez's birthday? the talks -14.418367457636588 When 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)
When is Jennifer Lopez's birthday? twins , a boy and a girl -14.512680609493595 When 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)
When is Jennifer Lopez's birthday? the host -14.567636063727193 When 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)
When is Jennifer Lopez's birthday? the magazine -14.710182632302583 When 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)
When is Jennifer Lopez's birthday? the most blissful tones -14.880597936698035 When 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)
When is Jennifer Lopez's birthday? The snake -16.446215023214478 When 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)
When was Shakespeare born? 1564 2.0445310405874215 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1564) -> 1564 (5091ms)
When was Shakespeare born? 1554 1.9301100195119205 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (5091ms)
When was Shakespeare born? 1529 1.7141150916056378 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (5091ms)
When was Shakespeare born? April 1564 0.26045867969531633 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (5360ms)
When was Shakespeare born? 23 April 0.2589855993550003 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, 23 April) -> 23 April (5360ms)
When was Shakespeare born? April , 1564 0.14231180044095249 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (5397ms)
When was Shakespeare born? late April 1564 0.10298103236002887 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (5397ms)
When was Shakespeare born? April 23 -0.34701304029147373 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 23) -> April 23 (5455ms)
When was Shakespeare born? 23rd April -0.40174643523660736 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (5455ms)
When was Shakespeare born? April 23rd -0.4747614288740203 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (! Shakespeare, was born on, April 23rd) -> April 23rd (5488ms)
When was Shakespeare born? April 23 , 1564 -0.5291692215697932 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 23 , 1564) -> April 23 , 1564 (5488ms)
When was Shakespeare born? 23 April 1564 -0.5851481901260565 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (! Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (5488ms)
When was Shakespeare born? April 26 , 1564 -0.6029484845368387 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (5552ms)
When was Shakespeare born? 26 April 1564 -0.6143267102783079 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (5552ms)
When was Shakespeare born? April and World book day -0.9786492884448148 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (5716ms)
When was Shakespeare born? April -1.118366246710083 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April) -> April (5743ms)
When was Shakespeare born? 1582 -1.4896270130615559 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (Shakespeare, married her in, 1582) -> 1582 (5862ms)
When was Shakespeare born? April 26 -1.619769978027732 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (5903ms)
When was Shakespeare born? Sunday -1.8226346600480374 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (5937ms)
When was Shakespeare born? Stratford-upon-Avon -1.8650566872577283 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (6009ms)
When was Shakespeare born? April 23 , -1.9042089236862942 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (?William Shakespeare, was born, April 23 ,) -> April 23 , (8030ms)
When was Shakespeare born? 26 April -2.123248803588319 When 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)
When was Shakespeare born? September 9 -2.183766468488019 When 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)
When was Shakespeare born? the 23rd too -2.4203341740124924 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (6176ms)
When was Shakespeare born? the 26th -2.4574704771792035 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (6234ms)
When was Shakespeare born? April 23 , 1564 , -2.4770856473658913 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, April 23 , 1564 ,) -> April 23 , 1564 , (8088ms)
When was Shakespeare born? St . Austell -2.4771389480919703 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (6234ms)
When was Shakespeare born? a 23... dead -2.5527652632562896 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (6253ms)
When was Shakespeare born? Stratford-on-Avon -2.5854255135485906 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (6315ms)
When was Shakespeare born? a small town -2.5992435461305883 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, a small town) -> a small town (6315ms)
When was Shakespeare born? Italy -2.8082197169972325 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Italy) -> Italy (6412ms)
When was Shakespeare born? the Warwickshire town -2.8700017049141873 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (6412ms)
When was Shakespeare born? England -2.8767949004287767 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, England) -> England (6412ms)
When was Shakespeare born? Stratford and today -2.8929908675564677 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (6430ms)
When was Shakespeare born? Worcester -3.064823178249652 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (6448ms)
When was Shakespeare born? 1564 ! 2 -3.2327956778267457 When 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)
When was Shakespeare born? St George?s day -3.3294207167304375 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (6466ms)
When was Shakespeare born? 1564 ! 1 hour ago -3.4269249459027304 When 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)
When was Shakespeare born? allegedly on April 23 , 1564 -3.44202512475227 When 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)
When was Shakespeare born? 1564 ! 5 hours ago -3.447326064766682 When 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)
When was Shakespeare born? 1564 ! 3 hours ago -3.447326064766682 When 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)
When was Shakespeare born? Stratford -3.4935538402226998 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford) -> Stratford (6484ms)
When was Shakespeare born? Henley Street -3.7806682033815417 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (6702ms)
When was Shakespeare born? Kingston -3.8037454116362257 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (6702ms)
When was Shakespeare born? 445 years -3.853111285181472 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, 445 years) -> 445 years (8533ms)
When was Shakespeare born? Jackson -3.930905170090165 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (6721ms)
When was Shakespeare born? the town -4.056104419451362 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the town) -> the town (6739ms)
When was Shakespeare born? Teaneck -4.347241703675306 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (6921ms)
When was Shakespeare born? the year -4.505441623124528 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the year) -> the year (6939ms)
When was Shakespeare born? Avon -4.524315891190357 When 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)
When was Shakespeare born? the village -4.540809553489046 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the village) -> the village (6939ms)
When was Shakespeare born? the latter half -4.676468582871869 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (6956ms)
When was Shakespeare born? the depths -4.680329154949357 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (6956ms)
When was Shakespeare born? Stratford upon Avon -4.705365178052908 When 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)
When was Shakespeare born? John Shakespeare -4.887691907027096 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born to, John Shakespeare) -> John Shakespeare (8725ms)
When was Shakespeare born? a time -4.960398713927196 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (Shakespeare, was born at, a time) -> a time (6993ms)
When was Shakespeare born? thirty-five years -5.0512228627723985 When 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)
When was Shakespeare born? movie theaters -5.165426458102679 When 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)
When was Shakespeare born? centuries -5.249245340325274 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, may have been born, centuries) -> centuries (8939ms)
When was Shakespeare born? two years -5.2709228973833255 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born, two years) -> two years (8957ms)
When was Shakespeare born? four hundred years -5.481361948661354 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, four hundred years) -> four hundred years (9039ms)
When was Shakespeare born? Project Gutenberg -5.502562770823962 When 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)
When was Shakespeare born? Latin -5.5196126849047555 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was better educated in, Latin) -> Latin (7164ms)
When was Shakespeare born? the county of Warwick -5.520646607508663 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (7164ms)
When was Shakespeare born? middle class parents -5.552333724657692 When 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)
When was Shakespeare born? a show -5.639337608131637 When 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)
When was Shakespeare born? the English language -5.689792701573589 When 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)
When was Shakespeare born? Temple Grafton church -5.733053794123014 When 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)
When was Shakespeare born? town -5.748292515822607 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (? William Shakespeare, is coming to, town) -> town (9067ms)
When was Shakespeare born? unser Shakespeare -5.835564950757979 When 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)
When was Shakespeare born? Greenwood?s legal arguments -5.939059068939032 When 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)
When was Shakespeare born? a pig -6.031817129421848 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, a pig) -> a pig (9065ms)
When was Shakespeare born? a fight -6.054272938084897 When 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)
When was Shakespeare born? Galileo -6.0855575950081064 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born the same year as, Galileo) -> Galileo (9147ms)
When was Shakespeare born? the same year -6.166528297039118 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (7251ms)
When was Shakespeare born? the start -6.236178212684798 When 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)
When was Shakespeare born? a gang-related shooting -6.236790506573249 When 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)
When was Shakespeare born? Ottawa -6.243980021790751 When 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)
When was Shakespeare born? English literature -6.452435931487816 When 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)
When was Shakespeare born? places -6.453438047921715 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, places) -> places (9283ms)
When was Shakespeare born? The town -6.470663057331868 When 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)
When was Shakespeare born? Thailand -6.524517332303894 When 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)
When was Shakespeare born? What town -6.540021952790168 When 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)
When was Shakespeare born? Tinnin -6.570676912866324 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare, is coming back to, Tinnin) -> Tinnin (9283ms)
When was Shakespeare born? Vancouver -6.636633997071021 When 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)
When was Shakespeare born? every day -6.661008180839634 When 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)
When was Shakespeare born? Hamlet -6.703320899773966 When 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)
When was Shakespeare born? music -6.727394865340568 When 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)
When was Shakespeare born? the room -6.729946926495304 When 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)
When was Shakespeare born? the editors -6.77381614225439 When 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)
When was Shakespeare born? a world -6.8448751353355055 When 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)
When was Shakespeare born? the work -6.8533939196966855 When 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)
When was Shakespeare born? a Taurean sun -6.990336036307624 When 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)
When was Shakespeare born? a stage -7.001424319552297 When 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)
When was Shakespeare born? works -7.052558858373416 When 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)
When was Shakespeare born? film -7.110876482578709 When 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)
When was Shakespeare born? schools -7.139105043145854 When 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)
When was Shakespeare born? Australia -7.437894564052428 When 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)
When was Shakespeare born? the art -7.467012581356823 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was well educated in, the art) -> the art (7326ms)
When was Shakespeare born? the law -7.475462298979375 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was clearly educated in, the law) -> the law (7342ms)
When was Shakespeare born? the day -7.599417655672119 When 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)
When was Shakespeare born? the time -7.887819733292124 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the time) -> the time (9669ms)
When was Shakespeare born? the home -8.512044468790119 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the home) -> the home (9695ms)
When was Shakespeare born? the house -8.512044468790119 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the house) -> the house (9694ms)
When was Shakespeare born? the boonies -8.862371843796582 When 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)
When was Shakespeare born? the outskirts -9.265137232282406 When 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)
What year did Patsy Cline die? 1963 -3.065239147801842 What 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)
What year did Patsy Cline die? an airplane crash -5.761113907110156 What 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)
What year did Patsy Cline die? a plane crash -5.800091084416808 What 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)
What year did Patsy Cline die? age 30 -8.465325993384916 What 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)
What year did Patsy Cline die? 1932 -8.9208146136533 What 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)
What year did Patsy Cline die? 1967 -9.194219030367515 What 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)
What year did Patsy Cline die? the 1950 's -9.924329209561328 What 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)
What year did Patsy Cline die? The crash -10.271730257267025 What 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)
What year did Patsy Cline die? 1962 -10.27819961360871 What 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)
What year did Patsy Cline die? reverb -10.993972394378593 What 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)
What year did Patsy Cline die? Fairfax -11.09361018761405 What 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)
What year did Patsy Cline die? Age 30 -11.134990766844322 What 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)
What year did Patsy Cline die? a field -11.255546320947527 What 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)
What year did Patsy Cline die? the Shenandoah Valley -11.317674892151219 What 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)
What year did Patsy Cline die? a head-on collision -11.327465668797421 What 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)
What year did Patsy Cline die? mind -11.384291370544833 What 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)
What year did Patsy Cline die? a plane accident -11.395581167742396 What 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)
What year did Patsy Cline die? Saturday -11.450538725033164 What 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)
What year did Patsy Cline die? Stages -11.78524981283733 What 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)
What year did Patsy Cline die? part -11.946035943472886 What 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)
What year did Patsy Cline die? Saturdays -11.946760670889036 What 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)
What year did Patsy Cline die? the top 100 women -12.37424906131333 What 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)
What year did Patsy Cline die? the water -12.860746244788512 What 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)
What year did Patsy Cline die? the history -12.96020247867843 What 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)
What year did Patsy Cline die? the living room -13.280834550294136 What 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)
What year did Patsy Cline die? the background -13.389456283288379 What 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)
What year did South Dakota become a state? 1889 -6.732682087243019 What 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)
What year did South Dakota become a state? 2009 -7.440673422472682 What 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)
What year did South Dakota become a state? November 2 , 1889 -7.826184465020908 What 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)
What year did South Dakota become a state? Nov. 2 , 1889 -8.33750639060167 What 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)
What year did South Dakota become a state? The Mount Rushmore State -8.34571913149229 What year did South 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)
What year did South Dakota become a state? November 2 -8.375884960077604 What 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)
What year did South Dakota become a state? public health -8.942752743472528 What 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)
What year did South Dakota become a state? the 49 -9.081296649767268 What 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)
What year did South Dakota become a state? 1912 -9.088378033148121 What year did South Dakota 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)
What year did South Dakota become a state? North Dakota -9.171532595514412 What 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)
What year did South Dakota become a state? 26715 South Dakota -9.174953800231236 What year did South Dakota 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)
What year did South Dakota become a state? usa... -9.314474774630042 What 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)
What year did South Dakota become a state? Us -9.314474774630042 What 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)
What year did South Dakota become a state? the U.S. -9.349040039617043 What 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)
What year did South Dakota become a state? no-fault divorce -9.384464521404983 What 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)
What year did South Dakota become a state? South Dakota Republican primary, 2012 -9.384987359642547 What year did South Dakota 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)
What year did South Dakota become a state? U . S . -9.385945864187857 What 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)
What year did South Dakota become a state? Emergency -9.388592702239741 What 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)
What year did South Dakota become a state? Ohio -9.409309771375607 What 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)
What year did South Dakota become a state? Mount Rushmore -9.422769493701168 What 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)
What year did South Dakota become a state? Americans -9.433862392621085 What 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)
What year did South Dakota become a state? Democrats -9.458737127738404 What 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)
What year did South Dakota become a state? the USA -9.571922479446858 What 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)
What year did South Dakota become a state? United States House of Representatives elections in South Dakota, 2004 -9.59940062831599 What year did South Dakota 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)
What year did South Dakota become a state? the Roe -9.613479767321348 What 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)
What year did South Dakota become a state? the Union -9.617508552938418 What 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)
What year did South Dakota become a state? few urban areas -9.625175515281626 What 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)
What year did South Dakota become a state? the United States -9.631099138025203 What 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)
What year did South Dakota become a state? a small population -9.66830000931917 What 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)
What year did South Dakota become a state? the Midwestern region -9.674682776748016 What 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)
What year did South Dakota become a state? Colorado permission -9.704157567839243 What 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)
What year did South Dakota become a state? the US. -9.723609932174842 What 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)
What year did South Dakota become a state? a Meharry graduate -9.730395014569492 What 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)
What year did South Dakota become a state? an Affiliate -9.741889595890632 What 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)
What year did South Dakota become a state? court -9.821433201574962 What 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)
What year did South Dakota become a state? the PPACA lawsuit -9.862303772648355 What 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)
What year did South Dakota become a state? South Dakota -9.865680093229207 What year did South Dakota 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)
What year did South Dakota become a state? Blue -9.930653811009039 What year did South Dakota 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)
What year did South Dakota become a state? White -9.930653811009039 What year did South Dakota 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)
What year did South Dakota become a state? Jackrabbit -9.930653811009039 What year did South Dakota 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)
What year did South Dakota become a state? Yellow -9.930653811009039 What year did South Dakota 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)
What year did South Dakota become a state? Vermilion -9.930653811009039 What year did South Dakota 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)
What year did South Dakota become a state? Coyotes -9.930653811009039 What year did South Dakota 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)
What year did South Dakota become a state? The Volante -9.985631572207359 What year did South Dakota 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)
What year did South Dakota become a state? SD School For The Deaf -9.985631572207359 What year did South Dakota 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)
What year did South Dakota become a state? an area -9.9879883690214 What 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)
What year did South Dakota become a state? 1977 -10.02793866560498 What year did South Dakota 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)
What year did South Dakota become a state? Public school -10.032755367520203 What year did South Dakota 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)
What year did South Dakota become a state? Public university -10.032755367520203 What year did South Dakota 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)
What year did South Dakota become a state? Spottswood -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? South Shore -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Lucerne -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Badger -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Yankton -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Manchester -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Ramona -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Dupree -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Pukwana -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Ajax -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Whitewood -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Sherman -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Rudolph -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Tigerville -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Kennedyville -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Fairview -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Ladner -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Beardsley -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Littleburg -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Conde -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Cresbard -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Manderson -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Wallace -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Roubaix -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Highmore -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Hudson -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Burke -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Greenway -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Gallup -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Lodgepole -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Kidder -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Redfern -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Fourmile -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Ferney -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Wentworth -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Grenville -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Marlow -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota Park -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Gorman -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Delmont -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Oelrichs -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Rockyford -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Polo -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Canton -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Dakota Dunes -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Stickney -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Columbia -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Meckling -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Dewey -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Norris -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Colome -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Stamford -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Promise -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Yale -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Lakeport -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Parker -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Kyle -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? Cuthbert -10.059954531307163 What year did South Dakota 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)
What year did South Dakota become a state? unemployment -10.065799441378767 What 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)
What year did South Dakota become a state? Gold -10.073595990124668 What year did South Dakota 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)
What year did South Dakota become a state? Sharps Corner -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? West Britton -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Pine Ridge -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Riverside Colony -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Glad Valley -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Lakota Homes -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Union Center -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Forest City -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Saint Onge -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Cloverleaf Colony -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Wolf Creek -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Box Elder -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Lake Andes -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Crow Creek -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Kones Corner -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Madsen Beach -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Wounded Knee -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Buffalo Gap -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Froelich Addition -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Lake Norden -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Black Hawk -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Derian Subdivision -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Williams Subdivision -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Gederos Estates -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Lower Brule -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? White Butte -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Ingberg Tracts -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Johnsons Addition -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Hayward Addition -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Mawl Springs -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Kadoka Junction -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Gann Valley -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Hiawatha Beach -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Kargas Subdivision -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Shady Beach -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Stone Bridge -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Five Points -10.107078326620007 What year did South Dakota 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)
What year did South Dakota become a state? Dark blue -10.109331534903577 What year did South Dakota 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)
What year did South Dakota become a state? Grubby the Miner -10.109331534903577 What year did South Dakota 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)
What year did South Dakota become a state? State school -10.109331534903577 What year did South Dakota 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)
What year did South Dakota become a state? innovation -10.145684171323056 What 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)
What year did South Dakota become a state? 0121 -10.15391357115952 What year did South Dakota 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)
What year did South Dakota become a state? Standing Rock Sioux Reservation births and deaths, 1924-1932 -10.221507701298137 What year did South Dakota 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)
What year did South Dakota become a state? emergency -10.26712010991899 What 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)
What year did South Dakota become a state? 1981 -10.30162495019165 What year did South Dakota 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)
What year did South Dakota become a state? extremes -10.340508529851315 What 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)
What year did South Dakota become a state? The Pasque Flower -10.35089867333076 What 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)
What year did South Dakota become a state? America the beautiful -10.433803307455731 What year did South Dakota 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)
What year did South Dakota become a state? 1-1 -10.43944129815812 What year did South Dakota 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)
What year did South Dakota become a state? The Ring-Necked Pheasant -10.519940148442815 What 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)
What year did South Dakota become a state? Health Insurance -10.524306204030983 What year did South Dakota 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)
What year did South Dakota become a state? Pierre -10.538348614668802 What 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)
What year did South Dakota become a state? Canada -10.540019980547573 What year did South Dakota 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)
What year did South Dakota become a state? private Pierre -10.553547515427697 What 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)
What year did South Dakota become a state? runoffs -10.55494942291526 What 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)
What year did South Dakota become a state? 10-for-30 -10.555271192366032 What year did South Dakota 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)
What year did South Dakota become a state? American Pasqueflower -10.605650577392678 What 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)
What year did South Dakota become a state? The Pasque flower -10.626051696256631 What 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)
What year did South Dakota become a state? SD -10.629201505606837 What year did South Dakota 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)
What year did South Dakota become a state? S Dak -10.684179266805156 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota Park, South Dakota -10.684179266805156 What year did South Dakota 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)
What year did South Dakota become a state? Beijing -10.68509311495506 What year did South Dakota 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)
What year did South Dakota become a state? State Capitol Building -10.731303062118 What year did South Dakota 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)
What year did South Dakota become a state? EZMONEY South Dakota, Inc -10.731303062118 What year did South Dakota 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)
What year did South Dakota become a state? Howard, South Dakota Tornado -10.731303062118 What year did South Dakota 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)
What year did South Dakota become a state? SOYBEAN PROCESSORS LLC -10.731303062118 What year did South Dakota 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)
What year did South Dakota become a state? SDSU -10.731303062118 What year did South Dakota 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)
What year did South Dakota become a state? Mount Rushmore State -10.731303062118 What year did South Dakota 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)
What year did South Dakota become a state? terms -10.731646032878505 What 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)
What year did South Dakota become a state? Presentation College, Aberdeen, South Dakota Campus -10.772143684722465 What year did South Dakota 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)
What year did South Dakota become a state? Alden Township, South Dakota -10.772143684722465 What year did South Dakota 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)
What year did South Dakota become a state? Lamar Advertising of South Dakota Inc -10.772143684722465 What year did South Dakota 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)
What year did South Dakota become a state? First National Bank of South Dakota -10.772143684722465 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota State Capitol, Pierre -10.772143684722465 What year did South Dakota 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)
What year did South Dakota become a state? Omnicare Pharmacy of South Dakota LLC -10.772143684722465 What year did South Dakota 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)
What year did South Dakota become a state? TCI of South Dakota, Inc -10.772143684722465 What year did South Dakota 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)
What year did South Dakota become a state? drivers -10.780747484784563 What 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)
What year did South Dakota become a state? the nation -10.807692306904237 What 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)
What year did South Dakota become a state? University of South Dakota, main campus -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? TCI Cablevision of South Dakota Inc -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? UMB Trust Co of South Dakota -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota State University, main campus -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Presentation College, Eagle Butte, South Dakota Campus -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Saga Communications of South Dakota LLC -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Heart Hospital of South Dakota LLC -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Waste Management of South Dakota Inc -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? GateHouse Media South Dakota Holdings Inc -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? WASTE CONNECTIONS OF SOUTH DAKOTA, INC -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Portrait of America (Television program) -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? American Telecasting of South Dakota, Inc -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota Association of the Deaf Inc -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Spink, South Dakota -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Wells Fargo Financial South Dakota, Inc -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? Lamar Advertising of South Dakota, Inc -10.807879229501374 What year did South Dakota 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)
What year did South Dakota become a state? a step -10.830499241478568 What year did South Dakota 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)
What year did South Dakota become a state? Bowling Green Inn of South Dakota Inc -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? Burlington Coat Factory of South Dakota, LLC -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? Cash America Net of South Dakota LLC -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? Origen Financial of South Dakota, L.L.C. -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? SBS Insurance Agency of South Dakota Inc -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? Family Dollar Stores of South Dakota, Inc -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? University of South Dakota School of Law, Vermillion -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota Amateur Baseball Hall of Fame Inc -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? SDSM&T -10.839410592541586 What year did South Dakota 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)
What year did South Dakota become a state? Washington DC -10.839789621523819 What year did South Dakota 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)
What year did South Dakota become a state? Chapter 13 -10.844840203804944 What year did South Dakota 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)
What year did South Dakota become a state? Colorado and Wyoming. -10.849112550400113 What year did South Dakota 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)
What year did South Dakota become a state? University of South Dakota School of Law, main campus -10.867438470799552 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota School for the Deaf, main campus -10.867438470799552 What year did South Dakota 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)
What year did South Dakota become a state? Russell Bridge -10.867438470799552 What year did South Dakota 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)
What year did South Dakota become a state? University of South Dakota - Springfield, main campus -10.867438470799552 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota School of Mines & Technology Hardrocker football -10.892516046082996 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota School of Mines and Technology, main campus -10.892516046082996 What year did South Dakota 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)
What year did South Dakota become a state? ADVANCE AMERICA, CASH ADVANCE CENTERS OF SOUTH DAKOTA, INC -10.892516046082996 What year did South Dakota 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)
What year did South Dakota become a state? Planned Parenthood -10.914133035382658 What 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)
What year did South Dakota become a state? U Haul Co of South Dakota Inc -10.915085863838096 What year did South Dakota 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)
What year did South Dakota become a state? Motor Carrier Services customer satisfaction assessment -10.935506175140329 What year did South Dakota 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)
What year did South Dakota become a state? New species of Globidens -10.935506175140329 What year did South Dakota 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)
What year did South Dakota become a state? THE SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO., INC. -10.935506175140329 What year did South Dakota 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)
What year did South Dakota become a state? Election Day -10.95730592579691 What year did South Dakota 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)
What year did South Dakota become a state? a timber sale -10.99350019048917 What year did South Dakota 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)
What year did South Dakota become a state? Restatement of the law of trusts, South Dakota annotations. -11.01404583399507 What year did South Dakota 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)
What year did South Dakota become a state? a win -11.030591326360147 What year did South Dakota 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)
What year did South Dakota become a state? April 2007 -11.099128184418877 What year did South Dakota 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)
What year did South Dakota become a state? Sioux Falls -11.126572601423504 What 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)
What year did South Dakota become a state? a total ban -11.13034970789803 What year did South Dakota 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)
What year did South Dakota become a state? an election year -11.151962644126531 What year did South Dakota 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)
What year did South Dakota become a state? Rockies & Plains. -11.15746608059938 What year did South Dakota 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)
What year did South Dakota become a state? Lauck -11.160121593780127 What year did South Dakota 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)
What year did South Dakota become a state? a special day -11.2219407384026 What year did South Dakota 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)
What year did South Dakota become a state? a combined 3 percent decrease -11.23274910651889 What year did South Dakota 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)
What year did South Dakota become a state? a 44 percent rise -11.236541586984066 What year did South Dakota 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)
What year did South Dakota become a state? ethanol production -11.238517322378987 What year did South Dakota 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)
What year did South Dakota become a state? the union -11.245442507590523 What 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)
What year did South Dakota become a state? a state -11.249474829836407 What year did South Dakota 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)
What year did South Dakota become a state? a 44 % rise -11.271417530038196 What year did South Dakota 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)
What year did South Dakota become a state? one step -11.290257737910459 What year did South Dakota 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)
What year did South Dakota become a state? page > -11.302115018367404 What year did South Dakota 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)
What year did South Dakota become a state? Division-I -11.30273624115008 What year did South Dakota 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)
What year did South Dakota become a state? 10,000 -11.307126753859144 What year did South Dakota 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)
What year did South Dakota become a state? 51 percent -11.30826612258824 What year did South Dakota 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)
What year did South Dakota become a state? the South Dakota Department -11.320840662800109 What year did South Dakota 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)
What year did South Dakota become a state? Tobacco free -11.326509854676072 What year did South Dakota 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)
What year did South Dakota become a state? SDCL 31-29-64 -11.327967708344378 What 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)
What year did South Dakota become a state? former Gov. Bill Janklow -11.3308927230735 What year did South Dakota 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)
What year did South Dakota become a state? a record 32 enemy planes -11.335119906686984 What year did South Dakota 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)
What year did South Dakota become a state? Citibank (South Dakota) National Association -11.343912401184985 What year did South Dakota 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)
What year did South Dakota become a state? live-blogging the debate -11.345142869304041 What year did South Dakota 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)
What year did South Dakota become a state? the US Congress -11.346718934093163 What 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)
What year did South Dakota become a state? a $ 95 processing fee -11.34764469926823 What year did South Dakota 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)
What year did South Dakota become a state? State -11.354247912349361 What 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)
What year did South Dakota become a state? leaps and bounds -11.358041534094076 What year did South Dakota 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)
What year did South Dakota become a state? A rural lawyer -11.358576237388002 What 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)
What year did South Dakota become a state? 877-540-8187 -11.371928386703914 What year did South Dakota 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)
What year did South Dakota become a state? MN A -11.37775835537685 What year did South Dakota 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)
What year did South Dakota become a state? the amendment -11.389958987342592 What 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)
What year did South Dakota become a state? 50 percent -11.417842091158924 What year did South Dakota 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)
What year did South Dakota become a state? 260 More -11.421443457592861 What year did South Dakota 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)
What year did South Dakota become a state? just 3.8 percent -11.450328679106763 What year did South Dakota 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)
What year did South Dakota become a state? an additional 1.5 % tax -11.458141583233662 What year did South Dakota 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)
What year did South Dakota become a state? the place -11.464466118073652 What 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)
What year did South Dakota become a state? Roosevelt -11.472829775402687 What year did South Dakota 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)
What year did South Dakota become a state? the high plains -11.473893181365408 What 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)
What year did South Dakota become a state? 24/7 Sobriety -11.473913290491552 What year did South Dakota 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)
What year did South Dakota become a state? Dakota Cash 5 South Dakota -11.474038407650456 What year did South Dakota 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)
What year did South Dakota become a state? Speaker Pelosi -11.489331665390363 What year did South Dakota 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)
What year did South Dakota become a state? 93,000+ acres -11.489526653714016 What year did South Dakota 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)
What year did South Dakota become a state? gusto -11.492911524994167 What year did South Dakota 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)
What year did South Dakota become a state? a 10.6 % average annual growth rate -11.497876828005513 What year did South Dakota 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)
What year did South Dakota become a state? 0.1 % -11.49886061043996 What year did South Dakota 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)
What year did South Dakota become a state? the country -11.500855932523582 What 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)
What year did South Dakota become a state? 12 -11.501746364740558 What year did South Dakota 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)
What year did South Dakota become a state? the Democrats -11.517088891438505 What year did South Dakota 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)
What year did South Dakota become a state? The Movers -11.526527749173503 What 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)
What year did South Dakota become a state? vote -11.531126040212248 What year did South Dakota 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)
What year did South Dakota become a state? hell -11.53688659296396 What year did South Dakota 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)
What year did South Dakota become a state? PaceButler -11.539966033850467 What 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)
What year did South Dakota become a state? 79.9 percent interest -11.558194689001025 What year did South Dakota 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)
What year did South Dakota become a state? Westinghouse -11.558791035223004 What year did South Dakota 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)
What year did South Dakota become a state? US troops -11.576599839965072 What year did South Dakota 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)
What year did South Dakota become a state? a laugh -11.587676545013865 What year did South Dakota 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)
What year did South Dakota become a state? freezing rain -11.588494482501773 What year did South Dakota 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)
What year did South Dakota become a state? a painting -11.590393725046706 What year did South Dakota 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)
What year did South Dakota become a state? ?South Dakota? -11.594541797591603 What year did South Dakota 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)
What year did South Dakota become a state? 600,000 vehicles and motorcyclist -11.597235484922734 What year did South Dakota 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)
What year did South Dakota become a state? LeeAnn -11.6167237309584 What 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)
What year did South Dakota become a state? 37 percent -11.618581438437205 What year did South Dakota 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)
What year did South Dakota become a state? 8 points -11.621163410021532 What year did South Dakota 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)
What year did South Dakota become a state? 61 percent -11.624287424992236 What year did South Dakota 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)
What year did South Dakota become a state? 41.3 percent -11.626577337762013 What year did South Dakota 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)
What year did South Dakota become a state? the Dakota -11.631270424887248 What year did South Dakota 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)
What year did South Dakota become a state? 87 programs -11.634128554404821 What year did South Dakota 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)
What year did South Dakota become a state? Tea -11.636381523830368 What year did South Dakota 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)
What year did South Dakota become a state? 6 % sales tax -11.63643289839939 What year did South Dakota 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)
What year did South Dakota become a state? Utah -11.637275455273391 What year did South Dakota 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)
What year did South Dakota become a state? the pheasant -11.637601345053895 What 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)
What year did South Dakota become a state? the same day -11.644466968304299 What 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)
What year did South Dakota become a state? three recipients -11.645061265646925 What 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)
What year did South Dakota become a state? 500 people -11.647093646085816 What year did South Dakota 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)
What year did South Dakota become a state? Nebraska -11.648760291552605 What year did South Dakota 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)
What year did South Dakota become a state? the lowest voter support -11.653864487354893 What 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)
What year did South Dakota become a state? the 12 weeks -11.657067311578425 What year did South Dakota 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)
What year did South Dakota become a state? The Plant Diagnostic Clinic -11.692440296616994 What 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)
What year did South Dakota become a state? John Thune -11.694634826560582 What year did South Dakota 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)
What year did South Dakota become a state? nerve gas -11.70101160630194 What year did South Dakota 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)
What year did South Dakota become a state? 35.2 percent -11.707624088068966 What year did South Dakota 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)
What year did South Dakota become a state? corn farmers -11.710585812539316 What year did South Dakota 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)
What year did South Dakota become a state? a city -11.719725184772638 What year did South Dakota 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)
What year did South Dakota become a state? Sarah Palin -11.724568128293207 What year did South Dakota 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)
What year did South Dakota become a state? OTA -11.727640653148143 What 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)
What year did South Dakota become a state? No. 1 -11.738463867291593 What year did South Dakota 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)
What year did South Dakota become a state? 292 -11.738882670119276 What year did South Dakota 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)
What year did South Dakota become a state? a close -11.741830108311529 What year did South Dakota 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)
What year did South Dakota become a state? White-winged Crossbills -11.75150441900514 What year did South Dakota 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)
What year did South Dakota become a state? a mountain lion -11.75306950730467 What year did South Dakota 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)
What year did South Dakota become a state? 0 and 455 miles -11.757921415471985 What year did South Dakota 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)
What year did South Dakota become a state? Thursday -11.76156014366569 What year did South Dakota 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)
What year did South Dakota become a state? 10 trophy bull licenses -11.769829615776015 What year did South Dakota 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)
What year did South Dakota become a state? The Fairburn agate -11.789621276512532 What 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)
What year did South Dakota become a state? New York -11.79542250121274 What 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)
What year did South Dakota become a state? 200 colonies -11.79812394952717 What year did South Dakota 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)
What year did South Dakota become a state? Native Americans -11.80587621492964 What year did South Dakota 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)
What year did South Dakota become a state? a town -11.822732487108293 What year did South Dakota 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)
What year did South Dakota become a state? a Golf Country Club Click -11.824232723545354 What year did South Dakota 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)
What year did South Dakota become a state? 200 loans -11.82438857414665 What year did South Dakota 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)
What year did South Dakota become a state? Congress -11.82618616192936 What year did South Dakota 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)
What year did South Dakota become a state? a career -11.841551045093858 What year did South Dakota 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)
What year did South Dakota become a state? Microsoft -11.841695260804403 What year did South Dakota 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)
What year did South Dakota become a state? FedEx -11.843404769889354 What year did South Dakota 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)
What year did South Dakota become a state? Wells Fargo Bank -11.846160282096463 What year did South Dakota 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)
What year did South Dakota become a state? a convention -11.866751185097717 What year did South Dakota 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)
What year did South Dakota become a state? State University -11.868574792510351 What year did South Dakota 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)
What year did South Dakota become a state? a hiding spot -11.877361527315466 What year did South Dakota 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)
What year did South Dakota become a state? energy efficient -11.881592780588235 What year did South Dakota 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)
What year did South Dakota become a state? a stunner -11.882467890730295 What year did South Dakota 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)
What year did South Dakota become a state? personal property -11.887246166905832 What year did South Dakota 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)
What year did South Dakota become a state? the January -11.887919870096507 What year did South Dakota 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)
What year did South Dakota become a state? more than 10 percent -11.887963071033877 What year did South Dakota 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)
What year did South Dakota become a state? Rock Climbing -11.89604512441284 What 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)
What year did South Dakota become a state? Policy -11.903254631305696 What year did South Dakota 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)
What year did South Dakota become a state? ILTF?s Head Start and K-12 curriculum -11.907415435369476 What year did South Dakota 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)
What year did South Dakota become a state? major league baseball -11.915024764317192 What year did South Dakota 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)
What year did South Dakota become a state? a motorcyclist -11.91582365142728 What year did South Dakota 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)
What year did South Dakota become a state? Foss -11.91584811947479 What 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)
What year did South Dakota become a state? a greater growth rate -11.917336342070977 What year did South Dakota 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)
What year did South Dakota become a state? June -11.919429865946833 What year did South Dakota 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)
What year did South Dakota become a state? Medical -11.923498283671446 What year did South Dakota 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)
What year did South Dakota become a state? Iraq -11.926294614976403 What year did South Dakota 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)
What year did South Dakota become a state? a relatively central town -11.936552453956978 What year did South Dakota 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)
What year did South Dakota become a state? a common concern -11.939006205466223 What year did South Dakota 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)
What year did South Dakota become a state? Citibank -11.939128764341476 What year did South Dakota 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)
What year did South Dakota become a state? a man -11.939205065862563 What year did South Dakota 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)
What year did South Dakota become a state? a national convention -11.94627860977363 What year did South Dakota 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)
What year did South Dakota become a state? 12 pages -11.947258625633465 What year did South Dakota 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)
What year did South Dakota become a state? Missouri River -11.957747242340066 What year did South Dakota 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)
What year did South Dakota become a state? Minnesota -11.965814541570353 What year did South Dakota 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)
What year did South Dakota become a state? Richard M. Nixon -11.9690111726803 What year did South Dakota 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)
What year did South Dakota become a state? a good option -11.97125818230683 What year did South Dakota 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)
What year did South Dakota become a state? a cowboy -11.97423109720046 What year did South Dakota 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)
What year did South Dakota become a state? 26 enemy planes -11.976941061696396 What 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)
What year did South Dakota become a state? health care -11.998513568966315 What 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)
What year did South Dakota become a state? a series -12.006946415659392 What year did South Dakota 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)
What year did South Dakota become a state? Meth -12.019945618218102 What year did South Dakota 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)
What year did South Dakota become a state? a CDC grant -12.020837821323033 What year did South Dakota 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)
What year did South Dakota become a state? a Regents -12.02231964161154 What year did South Dakota 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)
What year did South Dakota become a state? a picture -12.026092692367818 What year did South Dakota 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)
What year did South Dakota become a state? the Waldorf -12.027042275971844 What 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)
What year did South Dakota become a state? a pleasurable place -12.042550545771213 What year did South Dakota 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)
What year did South Dakota become a state? the following year -12.04747795618293 What 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)
What year did South Dakota become a state? a patsy -12.05557724744495 What year did South Dakota 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)
What year did South Dakota become a state? Henry -12.058571758377154 What year did South Dakota 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)
What year did South Dakota become a state? United Wireless -12.058808010826752 What year did South Dakota 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)
What year did South Dakota become a state? Moses -12.068041314458196 What year did South Dakota 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)
What year did South Dakota become a state? the Abortion -12.068502138185234 What year did South Dakota 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)
What year did South Dakota become a state? the CIA director -12.070337759538022 What year did South Dakota 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)
What year did South Dakota become a state? a little -12.07542186357355 What year did South Dakota 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)
What year did South Dakota become a state? a ban -12.079792495514946 What year did South Dakota 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)
What year did South Dakota become a state? government enforcement -12.08833894489128 What year did South Dakota 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)
What year did South Dakota become a state? an audience -12.092457868453165 What year did South Dakota 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)
What year did South Dakota become a state? a dry spring -12.101174621492042 What year did South Dakota 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)
What year did South Dakota become a state? trial -12.103638421856251 What year did South Dakota 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)
What year did South Dakota become a state? the Senate -12.115583576905031 What year did South Dakota 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)
What year did South Dakota become a state? pheasant hunting packages -12.117003787200797 What year did South Dakota 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)
What year did South Dakota become a state? a devastating ice storm -12.120702034444552 What year did South Dakota 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)
What year did South Dakota become a state? Italy -12.123559107432282 What 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)
What year did South Dakota become a state? graduate -12.125585878896938 What year did South Dakota 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)
What year did South Dakota become a state? more information -12.129904042188326 What year did South Dakota 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)
What year did South Dakota become a state? a fairly small town -12.135391330039138 What year did South Dakota 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)
What year did South Dakota become a state? a portrait -12.136617415466855 What year did South Dakota 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)
What year did South Dakota become a state? you?ll -12.140816587212528 What year did South Dakota 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)
What year did South Dakota become a state? the Dakota Alliance -12.14408625088511 What year did South Dakota 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)
What year did South Dakota become a state? Lonnie Two Eagle -12.149830254532716 What year did South Dakota 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)
What year did South Dakota become a state? a survey -12.15057865630807 What year did South Dakota 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)
What year did South Dakota become a state? the Mack -12.15132346404054 What year did South Dakota 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)
What year did South Dakota become a state? health care experts -12.152928220300666 What year did South Dakota 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)
What year did South Dakota become a state? America -12.153312662671112 What year did South Dakota 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)
What year did South Dakota become a state? a DVD -12.156055511739286 What year did South Dakota 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)
What year did South Dakota become a state? a bullet -12.158536439322528 What year did South Dakota 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)
What year did South Dakota become a state? a train -12.158536439322528 What year did South Dakota 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)
What year did South Dakota become a state? a health certificate -12.163078993295176 What year did South Dakota 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)
What year did South Dakota become a state? Dennis Daugaard -12.172754796345446 What year did South Dakota 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)
What year did South Dakota become a state? Powerball South Dakota -12.174113941968399 What year did South Dakota 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)
What year did South Dakota become a state? Freeman Academy -12.181912668287161 What year did South Dakota 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)
What year did South Dakota become a state? more cases -12.187961682555292 What year did South Dakota 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)
What year did South Dakota become a state? a customized curriculum -12.188785283268002 What year did South Dakota 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)
What year did South Dakota become a state? a vote -12.192135944182558 What year did South Dakota 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)
What year did South Dakota become a state? lone wolves -12.197301973264835 What 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)
What year did South Dakota become a state? antelope i -12.197530319171447 What year did South Dakota 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)
What year did South Dakota become a state? a number -12.201149597920455 What year did South Dakota 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)
What year did South Dakota become a state? a transferable pass -12.20204805238472 What year did South Dakota 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)
What year did South Dakota become a state? South Dakota guides and directories -12.207231046831101 What year did South Dakota 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)
What year did South Dakota become a state? a new leadership post -12.208062078460541 What year did South Dakota 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)
What year did South Dakota become a state? State v. Greger -12.208215414472011 What 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)
What year did South Dakota become a state? a possible approximate loss -12.208237647603601 What year did South Dakota 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)
What year did South Dakota become a state? TravelSD.com -12.209051504229564 What year did South Dakota 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)
What year did South Dakota become a state? a minister -12.209550609243818 What year did South Dakota 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)
What year did South Dakota become a state? Chief -12.210950792495277 What year did South Dakota 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)
What year did South Dakota become a state? a shootout -12.213100266855385 What year did South Dakota 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)
What year did South Dakota become a state? a good South Dakota flag -12.218766533089596 What year did South Dakota 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)
What year did South Dakota become a state? a DBA -12.21968187615836 What year did South Dakota 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)
What year did South Dakota become a state? a crowd -12.226349005617845 What year did South Dakota 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)
What year did South Dakota become a state? Bob -12.231363171048853 What year did South Dakota 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)
What year did South Dakota become a state? Pass -12.232171582335365 What year did South Dakota 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)
What year did South Dakota become a state? two -12.236007780579584 What year did South Dakota 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)
What year did South Dakota become a state? a temperate grasslands biome -12.237023915962851 What year did South Dakota 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)
What year did South Dakota become a state? men -12.238253773411222 What year did South Dakota 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)
What year did South Dakota become a state? rape -12.238422520210708 What year did South Dakota 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)
What year did South Dakota become a state? Mega Millions South Dakota -12.23908765974823 What year did South Dakota 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)
What year did South Dakota become a state? card services -12.239971846149327 What year did South Dakota 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)
What year did South Dakota become a state? record releases -12.24838654830182 What year did South Dakota 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)
What year did South Dakota become a state? company -12.254258873622977 What year did South Dakota 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)
What year did South Dakota become a state? a DENR report -12.254707907496257 What year did South Dakota 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)
What year did South Dakota become a state? the Living -12.261611386114803 What year did South Dakota 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)
What year did South Dakota become a state? Frist -12.262284641655096 What year did South Dakota 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)
What year did South Dakota become a state? recent years -12.266594687908105 What year did South Dakota 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)
What year did South Dakota become a state? Irregular News -12.268723099038516 What year did South Dakota 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)
What year did South Dakota become a state? New 14 York -12.334831008103613 What 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)
What year did South Dakota become a state? Rhode Island -12.769316649724797 What 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)
What year did South Dakota become a state? Oklahoma -12.892740612572021 What 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)
What year did South Dakota become a state? South -12.977514932738384 What 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)
What year did South Dakota become a state? California -12.989919887251691 What 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)
What year did South Dakota become a state? Pennsylvania -12.991804880538414 What 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)
What year did South Dakota become a state? Tennessee -13.15793156359716 What 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)
What year did South Dakota become a state? Kansas -13.292064437303747 What 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)
What is neuropathy? mentoflong-term complication -4.99602648885058 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, mentoflong-term complication) -> mentoflong-term complication (1293ms)
What is neuropathy? micro-vessel complication -4.99602648885058 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, micro-vessel complication) -> micro-vessel complication (1292ms)
What is neuropathy? diabetes-induced condition -4.99602648885058 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetes-induced condition) -> diabetes-induced condition (1293ms)
What is neuropathy? diabetes-related condition -5.081692812842029 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, diabetes-related condition) -> diabetes-related condition (1293ms)
What is neuropathy? dose-limiting toxicity -5.114594942962709 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, dose-limiting toxicity) -> dose-limiting toxicity (1292ms)
What is neuropathy? extra-articular manifestation -5.1176795171252785 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, extra-articular manifestation) -> extra-articular manifestation (1293ms)
What is neuropathy? extra-articular feature -5.122820474880029 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, extra-articular feature) -> extra-articular feature (1318ms)
What is neuropathy? disease of the peripheral nervous system -5.294042668096578 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, disease of the peripheral nervous system) -> disease of the peripheral nervous system (1318ms)
What is neuropathy? type of heart disease -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, type of heart disease) -> type of heart disease (1318ms)
What is neuropathy? disease of nerve system -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, disease of nerve system) -> disease of nerve system (1318ms)
What is neuropathy? component of foot disease -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, component of foot disease) -> component of foot disease (1318ms)
What is neuropathy? abnormality on physical examination -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, abnormality on physical examination) -> abnormality on physical examination (1346ms)
What is neuropathy? risk of drug toxicity -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, risk of drug toxicity) -> risk of drug toxicity (1318ms)
What is neuropathy? long term complication -5.3851510890059915 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, long term complication) -> long term complication (1346ms)
What is neuropathy? devastating metabolic complication -5.419959360065465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, devastating metabolic complication) -> devastating metabolic complication (1347ms)
What is neuropathy? microvascular diabetic disease -5.419959360065465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, microvascular diabetic disease) -> microvascular diabetic disease (1346ms)
What is neuropathy? organ system complication -5.419959360065465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, organ system complication) -> organ system complication (1346ms)
What is neuropathy? side effect of the chemo -5.430237280649796 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, side effect of the chemo) -> side effect of the chemo (1346ms)
What is neuropathy? serious adverse event -5.447755987025056 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, serious adverse event) -> serious adverse event (1360ms)
What is neuropathy? common diabetic condition -5.460731728621772 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common diabetic condition) -> common diabetic condition (1360ms)
What is neuropathy? rare side effect of prescription medication -5.469852487468907 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, rare side effect of prescription medication) -> rare side effect of prescription medication (1360ms)
What is neuropathy? microvascular complication of diabetes -5.469852487468907 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, microvascular complication of diabetes) -> microvascular complication of diabetes (1360ms)
What is neuropathy? common side effect of zinc-based denture cream use -5.469852487468907 What 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)
What is neuropathy? complication of patient -5.474691035961992 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, complication of patient) -> complication of patient (1360ms)
What is neuropathy? toxic side effect -5.501859390659772 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, toxic side effect) -> toxic side effect (1396ms)
What is neuropathy? degenerative nerve disorder -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative nerve disorder) -> degenerative nerve disorder (1396ms)
What is neuropathy? degenerative nerve condition -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative nerve condition) -> degenerative nerve condition (1396ms)
What is neuropathy? frequently diagnosed complication -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, frequently diagnosed complication) -> frequently diagnosed complication (1396ms)
What is neuropathy? euro degenerative condition -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, euro degenerative condition) -> euro degenerative condition (1396ms)
What is neuropathy? commonly occurring disorder -5.512480294600864 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, commonly occurring disorder) -> commonly occurring disorder (1396ms)
What is neuropathy? frequent and severe complication of diabetes -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, frequent and severe complication of diabetes) -> frequent and severe complication of diabetes (1463ms)
What is neuropathy? common side effect of platin chemotherapy drug -5.51474644290405 What 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)
What is neuropathy? long-term secondary complication -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, long-term secondary complication) -> long-term secondary complication (1411ms)
What is neuropathy? common side effect of cancer -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common side effect of cancer) -> common side effect of cancer (1411ms)
What is neuropathy? non-local nerve cause -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, non-local nerve cause) -> non-local nerve cause (1436ms)
What is neuropathy? common manifestation of toxic injury -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common manifestation of toxic injury) -> common manifestation of toxic injury (1411ms)
What is neuropathy? frequent clinical manifestation of SVSV -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, frequent clinical manifestation of SVSV) -> frequent clinical manifestation of SVSV (1463ms)
What is neuropathy? abnormality of the nervous waverly bedding burlington coat system -5.51474644290405 What 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)
What is neuropathy? medical term describing disorder of the peripheral nervous system -5.51474644290405 What 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)
What is neuropathy? medical term describing disorder of the nerve of the peripheral nervous technique -5.51474644290405 What 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)
What is neuropathy? late-onset diabetic complication -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, late-onset diabetic complication) -> late-onset diabetic complication (1463ms)
What is neuropathy? side effect of tarceva -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, side effect of tarceva) -> side effect of tarceva (1463ms)
What is neuropathy? common and serious complication of the disease -5.51474644290405 What 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)
What is neuropathy? case of impaired mitochondrial function -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, case of impaired mitochondrial function) -> case of impaired mitochondrial function (1436ms)
What is neuropathy? very common symptom of diabetes -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, very common symptom of diabetes) -> very common symptom of diabetes (1411ms)
What is neuropathy? extremely common complication of diabetes -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, extremely common complication of diabetes) -> extremely common complication of diabetes (1411ms)
What is neuropathy? potential side-effect -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, potential side-effect) -> potential side-effect (1436ms)
What is neuropathy? common form of diabetic nerve damage -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common form of diabetic nerve damage) -> common form of diabetic nerve damage (1640ms)
What is neuropathy? slammer of the anxiety disorder -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, slammer of the anxiety disorder) -> slammer of the anxiety disorder (1436ms)
What is neuropathy? serious, sometimes life-threatening complication -5.52023013146178 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, serious, sometimes life-threatening complication) -> serious, sometimes life-threatening complication (1641ms)
What is neuropathy? symptom of HIV infection -5.52502835841355 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, symptom of HIV infection) -> symptom of HIV infection (1641ms)
What is neuropathy? kind of pain -5.527510199581071 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, kind of pain) -> kind of pain (1641ms)
What is neuropathy? painful complication of diabetes -5.52845566399195 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, painful complication of diabetes) -> painful complication of diabetes (1641ms)
What is neuropathy? chebucto site potential long-term effect -5.54216488507985 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chebucto site potential long-term effect) -> chebucto site potential long-term effect (1641ms)
What is neuropathy? health condition -5.560716579825307 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, health condition) -> health condition (1690ms)
What is neuropathy? vascular complication -5.574853760154293 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vascular complication) -> vascular complication (1690ms)
What is neuropathy? chronic disease -5.580408335377513 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chronic disease) -> chronic disease (1690ms)
What is neuropathy? nerve disease -5.615513314471654 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, nerve disease) -> nerve disease (1690ms)
What is neuropathy? systemic disease -5.698188260732807 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, systemic disease) -> systemic disease (1690ms)
What is neuropathy? medical issue -5.701286293902988 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, medical issue) -> medical issue (1690ms)
What is neuropathy? broad term -5.728649700754586 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, broad term) -> broad term (1705ms)
What is neuropathy? clinical sign -5.7625884381922585 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, clinical sign) -> clinical sign (1705ms)
What is neuropathy? underlying cause -5.767411212768982 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, underlying cause) -> underlying cause (1705ms)
What is neuropathy? secondary disease -5.794188738370306 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, secondary disease) -> secondary disease (1705ms)
What is neuropathy? chronic condition -5.795623212858455 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chronic condition) -> chronic condition (1705ms)
What is neuropathy? autoimmune disease -5.797692569257775 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, autoimmune disease) -> autoimmune disease (1705ms)
What is neuropathy? distressing symptom -5.799725896857993 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, distressing symptom) -> distressing symptom (1725ms)
What is neuropathy? hereditary disease -5.804275201944275 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, hereditary disease) -> hereditary disease (1725ms)
What is neuropathy? temporary condition -5.806699253815593 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, temporary condition) -> temporary condition (1725ms)
What is neuropathy? neuroligical disorder -5.827021403922757 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, neuroligical disorder) -> neuroligical disorder (1725ms)
What is neuropathy? common symptom -5.845874948537176 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common symptom) -> common symptom (1725ms)
What is neuropathy? damaging complication -5.871915359357899 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, damaging complication) -> damaging complication (1725ms)
What is neuropathy? central disorder -5.8754916778626 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, central disorder) -> central disorder (1752ms)
What is neuropathy? neuropsychiatric disease -5.878602783830399 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, neuropsychiatric disease) -> neuropsychiatric disease (1751ms)
What is neuropathy? weird disorder -5.882197274867399 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, weird disorder) -> weird disorder (1751ms)
What is neuropathy? categorical variable -5.887705443715245 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, categorical variable) -> categorical variable (1751ms)
What is neuropathy? definite possibility -5.888425921114323 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, definite possibility) -> definite possibility (1752ms)
What is neuropathy? vague symptom -5.888702160765064 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vague symptom) -> vague symptom (1752ms)
What is neuropathy? common illness -5.889772173439801 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common illness) -> common illness (1762ms)
What is neuropathy? debilitating condition -5.891448759227195 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, debilitating condition) -> debilitating condition (1762ms)
What is neuropathy? complex disease -5.891632736773646 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, complex disease) -> complex disease (1762ms)
What is neuropathy? painful condition -5.894288808722465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, painful condition) -> painful condition (1762ms)
What is neuropathy? inflammatory disease -5.897767033549448 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, inflammatory disease) -> inflammatory disease (1762ms)
What is neuropathy? medical complication -5.898999430616499 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, medical complication) -> medical complication (1762ms)
What is neuropathy? degenerative condition -5.900599267982518 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative condition) -> degenerative condition (1779ms)
What is neuropathy? diabetic symptom -5.900704722294219 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetic symptom) -> diabetic symptom (1778ms)
What is neuropathy? skin disease -5.901938940751237 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, skin disease) -> skin disease (1778ms)
What is neuropathy? hepatic complication -5.903552023029761 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, hepatic complication) -> hepatic complication (1779ms)
What is neuropathy? vitamin b12 deficiency symptom -5.907303903684787 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vitamin b12 deficiency symptom) -> vitamin b12 deficiency symptom (1778ms)
What is neuropathy? neurological sign -5.910623747302569 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, neurological sign) -> neurological sign (1779ms)
What is neuropathy? Nature's Innovation -6.132404232032106 What 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)
What is neuropathy? Ionx Holdings -6.151740240788034 What 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)
What is neuropathy? Wise Consumer Products -6.4541846041590665 What 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)
What is neuropathy? Neurological disorder -6.682568405691354 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, include cause of death, neuropathy) -> (Neurological disorder, Includes causes of death, Neuropathy) -> Neurological disorder (1791ms)
What is neuropathy? diabetes -7.335079859457252 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetes) -> diabetes (1791ms)
What is neuropathy? disease -7.48844079368634 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, disease) -> disease (1806ms)
What is neuropathy? nerve damage -7.8652566825694965 What 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)
What is neuropathy? disability -7.933263746176859 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, disability) -> disability (1806ms)
What is neuropathy? factor -7.975256001904018 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, factor) -> factor (1806ms)
What is neuropathy? indication -8.001138173878354 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, indication) -> indication (1806ms)
What is neuropathy? decrease -8.066805336046992 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, decrease) -> decrease (1819ms)
What is neuropathy? inflammation -8.130694446750013 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, inflammation) -> inflammation (1819ms)
What is neuropathy? case -8.140481056952913 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, case) -> case (1819ms)
What is neuropathy? diabetic patients -8.22952724319822 What 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)
What is neuropathy? damaged nerves -8.404518914817324 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: (neuropathy, be a by, $x) -> (Neuropathy, is a disorder caused by, damaged nerves) -> damaged nerves (1819ms)
What is neuropathy? old age -11.078562099831148 What 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)
What is neuropathy? Gold chloride -11.3685486665964 What 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)
What is neuropathy? Auditory neuropathy spectrum disorder -11.393929234488612 What 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)
What is neuropathy? Tricyclic antidepressants -11.447480423098074 What 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)
What is neuropathy? Peripheral Motor Neuropathy -11.468354626681242 What 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)
What is neuropathy? Nerve compression syndrome -11.577803732846874 What 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)
What is neuropathy? Familial amyloid neuropathy -11.577803732846874 What 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)
What is neuropathy? glycyl-tRNA synthetase -11.700021901398499 What 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)
What is neuropathy? Anti-MAG peripheral neuropathy -11.700021901398499 What 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)
What is neuropathy? Hereditary sensory and autonomic neuropathy -11.700021901398499 What 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)
What is neuropathy? Charcot?Marie?Tooth disease -11.700021901398499 What 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)
What is neuropathy? Wartenberg's migratory sensory neuropathy -11.700021901398499 What 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)
What is neuropathy? inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein -11.700021901398499 What 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)
What is neuropathy? Cerebral dysgenesis?neuropathy?ichthyosis?keratoderma syndrome -11.700021901398499 What 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)
What is neuropathy? Dejerine?Sottas disease -11.700021901398499 What 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)
What is neuropathy? Lenalidomide -11.754146175224662 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Lenalidomide, is known as, peripheral neuropathy) -> Lenalidomide (2091ms)
What is neuropathy? Thalidomide -11.754146175224662 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Thalidomide, is known as, peripheral neuropathy) -> Thalidomide (2023ms)
What is neuropathy? high blood sugar levels -11.785096726673721 What 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)
What is neuropathy? Peripheral Neuropathy -11.83376703533993 What 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)
What is neuropathy? Distal axonopathy -11.90323240851269 What 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)
What is neuropathy? Enteric neuropathy -11.90323240851269 What 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)
What is neuropathy? Autonomic neuropathy -11.90323240851269 What 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)
What is neuropathy? Familial dysautonomia -11.90323240851269 What 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)
What is neuropathy? Auditory neuropathy -11.90323240851269 What 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)
What is neuropathy? Diabetic neuropathy -11.90323240851269 What 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)
What is neuropathy? Alcoholic polyneuropathy -11.90323240851269 What 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)
What is neuropathy? Two inherited disorders -11.910573327403878 What 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)
What is neuropathy? a term -11.986790817149197 What 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)
What is neuropathy? peripheral nerves -12.071167055432506 What 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)
What is neuropathy? serine palmitoyltransferase, long chain base subunit 1 -12.092579362179235 What 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)
What is neuropathy? solute carrier family 12 (potassium/chloride transporters), member 6 -12.092579362179235 What 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)
What is neuropathy? gap junction protein, beta 1, 32kDa -12.092579362179235 What 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)
What is neuropathy? CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 -12.092579362179235 What 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)
What is neuropathy? patatin-like phospholipase domain containing 6 -12.092579362179235 What 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)
What is neuropathy? heat shock 22kDa protein 8 -12.092579362179235 What 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)
What is neuropathy? kinesin family member 1B -12.092579362179235 What 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)
What is neuropathy? SET binding factor 2 -12.092579362179235 What 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)
What is neuropathy? lower back pain -12.10851681984057 What 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)
What is neuropathy? Sciatica pain -12.112194699229963 What 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)
What is neuropathy? 16 times -12.212879520902813 What 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)
What is neuropathy? alpha lipoic acid -12.321577446761129 What 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)
What is neuropathy? African Americans -12.343919594815212 What 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)
What is neuropathy? GLA -12.358844759248505 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, GLA) -> GLA (5337ms)
What is neuropathy? nerve cells -12.57143926004416 What 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)
What is neuropathy? older age -12.579451465303613 What 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)
What is neuropathy? Unspecified idiopathic peripheral neuropathy -12.594587886004762 What 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)
What is neuropathy? Chronic inflammatory demyelinating polyneuropathy -12.594587886004762 What 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)
What is neuropathy? a group -12.604624557544959 What 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)
What is neuropathy? DCA -12.618506255520233 What 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)
What is neuropathy? Steven NEUROPATHY -12.63117397058698 What 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)
What is neuropathy? Diabetic Peripheral Neuropathy -12.634703282592223 What 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)
What is neuropathy? a drug -12.635963702292408 What 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)
What is neuropathy? M.D. -12.642082227949363 What 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)
What is neuropathy? Hereditary -12.646797765703592 What 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)
What is neuropathy? past radiation treatment -12.688330070668526 What 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)
What is neuropathy? a problem -12.689964326016389 What 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)
What is neuropathy? certain prescription drugs -12.712660186929867 What 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)
What is neuropathy? alcohol abuse -12.755222061764256 What 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)
What is neuropathy? a condition -12.756189153051098 What 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)
What is neuropathy? herpes zoster infection -12.763620200816181 What 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)
What is neuropathy? there diagnostic features -12.776322451045539 What 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)
What is neuropathy? Idiopathic progressive polyneuropathy -12.778462384363024 What 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)
What is neuropathy? Carotid sinus syndrome -12.778462384363024 What 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)
What is neuropathy? Hereditary sensory neuropathy -12.778462384363024 What 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)
What is neuropathy? Critical illness polyneuropathy -12.778462384363024 What 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)
What is neuropathy? Hereditary peripheral neuropathy -12.778462384363024 What 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)
What is neuropathy? Carpal tunnel syndrome -12.778462384363024 What 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)
What is neuropathy? an awful side-effect -12.783674784388188 What 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)
What is neuropathy? poor glycemic control -12.797543188183333 What 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)
What is neuropathy? graft dysfunction and anemia -12.798357113160376 What 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)
What is neuropathy? Clinical Symposia -12.81523610380984 What 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)
What is neuropathy? Churchill Livingstone -12.81523610380984 What 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)
What is neuropathy? Alzheimer?s disease -12.819508098326118 What 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)
What is neuropathy? the Semmes-Weinstein monofilament -12.83666208545656 What 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)
What is neuropathy? a disease or abnormality -12.841682826539353 What 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)
What is neuropathy? a deterioration or loss -12.841682826539353 What 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)
What is neuropathy? a coincidence -12.842465192519892 What 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)
What is neuropathy? a very broad diagnosis -12.876593936983612 What 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)
What is neuropathy? a very common reason people -12.888863300115295 What 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)
What is neuropathy? Treatment of Nerve Injury and Entrapment Neuropathy -12.899511915557378 What 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)
What is neuropathy? Compression Neuropathies, Including Carpal Tunnel Syndrome -12.899511915557378 What 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)
What is neuropathy? Treatment of Diabetic Neuropathy -12.899511915557378 What 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)
What is neuropathy? Treatment of Diabetic Neuropathy: A New Approach -12.899511915557378 What 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)
What is neuropathy? Neuropathies (Handbook of Clinical Neurology Revised Series) -12.899511915557378 What 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)
What is neuropathy? Guillain-Barr? syndrome -12.900680552914649 What 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)
What is neuropathy? Polyneuropathy in other diseases classified elsewhere -12.900680552914649 What 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)
What is neuropathy? Polyneuropathy in diabetes -12.900680552914649 What 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)
What is neuropathy? Polyneuropathy due to drugs -12.900680552914649 What 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)
What is neuropathy? Unspecified inflammatory and toxic neuropathies -12.900680552914649 What 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)
What is neuropathy? Polyneuropathy in malignant disease -12.900680552914649 What 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)
What is neuropathy? Idiopathic peripheral autonomic neuropathy, unspecified -12.900680552914649 What 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)
What is neuropathy? Polyneuropathy due to other toxic agents -12.900680552914649 What 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)
What is neuropathy? Polyneuropathy in collagen vascular disease -12.900680552914649 What 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)
What is neuropathy? Old mitochondria -12.917555324842201 What 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)
What is neuropathy? the NeuropathyDR logo -12.927375776993491 What 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)
What is neuropathy? uncontrolled blood glucose levels -12.931870998901692 What 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)
What is neuropathy? uremia , atherosclerosis , liver failure -12.94279935571202 What 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)
What is neuropathy? an under-recognized national epidemic -12.952699484246482 What 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)
What is neuropathy? anterior optic type -12.95546555851349 What 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)
What is neuropathy? men -12.958888894458749 What 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)
What is neuropathy? no fun -12.97718379462723 What 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)
What is neuropathy? Early postoperative period -12.993883935271715 What 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)
What is neuropathy? VISUAL IMPROVEMENTS Diplopia -13.045366295796597 What 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)
What is neuropathy? nerve disease or damage -13.04946931861409 What 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)
What is neuropathy? nerve damage or disease -13.062732272737424 What 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)
What is neuropathy? Blood sugar control -13.075637807052415 What 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)
What is neuropathy? nerve compression -13.086488842417626 What 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)
What is neuropathy? Acrodystrophic neuropathy -13.102722422671569 What 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)
What is neuropathy? Dr. Vinik -13.145056155252995 What 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)
What is neuropathy? a minor mystery -13.164240175070038 What 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)
What is neuropathy? B vitamins and magnesium -13.177504438295603 What 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)
What is neuropathy? a systemic disease -13.187484467338022 What 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)
What is neuropathy? gastrointestinal tract -13.19913622572158 What 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)
What is neuropathy? a limiting factor -13.208640689050855 What 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)
What is neuropathy? 2.5 times -13.20941294720127 What 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)
What is neuropathy? two medications -13.247901902941823 What 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)
What is neuropathy? 17p12 -13.25492588891242 What 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)
What is neuropathy? a serious problem -13.273743642302973 What 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)
What is neuropathy? a neurological condition -13.275020080497072 What 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)
What is neuropathy? Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2) -13.292069376338114 What 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)
What is 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 -13.292069376338114 What 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)
What is neuropathy? either side -13.32168099661405 What 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)
What is neuropathy? a functional disturbance -13.330332309805282 What 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)
What is neuropathy? a progressive disease -13.332492934400479 What 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)
What is neuropathy? The symptom -13.369919235970853 What 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)
What is neuropathy? Excessive zinc -13.371480293732061 What 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)
What is neuropathy? Lyme disease -13.3760557229006 What 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)
What is neuropathy? a larger factor -13.388197362799398 What 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)
What is neuropathy? 12 junior high kids -13.399903267009527 What 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)
What is neuropathy? Improved regulation -13.400574495407842 What 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)
What is neuropathy? the nerve endings -13.416538092693282 What 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)
What is neuropathy? a nerve disease -13.442953089372258 What 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)
What is neuropathy? Discomfort -13.446624587073817 What 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)
What is neuropathy? a terrible disease -13.463354208236211 What 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)
What is neuropathy? diabetes and alcoholism -13.472236983719359 What 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)
What is neuropathy? ?Aspartame -13.488040683311812 What 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)
What is neuropathy? Diabetes -13.531941138810932 What 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)
What is neuropathy? MRI -13.569172257065992 What 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)
What is neuropathy? Neuropathies -13.591230266524178 What 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)
What is neuropathy? Saunders -13.591230266524178 What 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)
What is neuropathy? High titers -13.60280717159124 What 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)
What is neuropathy? The nervous system -13.603103847630226 What 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)
What is neuropathy? 2.This formula -13.606706267634957 What 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)
What is neuropathy? cyclohexane -13.608351916532305 What 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)
What is neuropathy? vincristine -13.608937891392333 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (vincristine, is known as, peripheral neuropathy) -> vincristine (2143ms)
What is neuropathy? sildenafil use -13.630241318070544 What 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)
What is neuropathy? cisplatin -13.634640261487327 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (cisplatin, is known as, peripheral neuropathy) -> cisplatin (2143ms)
What is neuropathy? Nerve Damage -13.640711323837598 What 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)
What is neuropathy? the effect vincristine -13.659707449001981 What 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)
What is neuropathy? foot -13.669124005450747 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (foot, is also known as, Neuropathy) -> foot (2197ms)
What is neuropathy? The condition -13.679542570443887 What 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)
What is neuropathy? Vitamin B6 -13.681186872740502 What 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)
What is neuropathy? celiac disease -13.689501307013856 What 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)
What is neuropathy? Intravenous Application -13.691120035530602 What 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)
What is neuropathy? a very long time -13.693081139453787 What 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)
What is neuropathy? damage to the nerves -13.700243681653207 What 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)
What is neuropathy? GBS -13.7315345711541 What 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)
What is neuropathy? Infantile Refsum disease -13.75730222383767 What 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)
What is neuropathy? blood flow -13.769122906250068 What 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)
What is neuropathy? carpal tunnel syndrome -13.793165140183435 What 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)
What is neuropathy? a cause -13.803239309753105 What 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)
What is neuropathy? a result -13.83225395672989 What 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)
What is neuropathy? MMN -13.839561659949634 What 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)
What is neuropathy? the drug -13.863115956634466 What 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)
What is neuropathy? a disease of the nervous system -13.87048352333021 What 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)
What is neuropathy? CHN -13.889673247059262 What 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)
What is neuropathy? DSN -13.889673247059262 What 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)
What is neuropathy? Multifocal Motor Neuropathy -13.901719153778629 What 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)
What is neuropathy? a disease of the peripheral nervous system -13.909467753998108 What 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)
What is neuropathy? lung cancer -13.914962336993785 What 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)
What is neuropathy? Chronic inflammatory demyelinating polyradiculopathy -13.922724154582319 What 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)
What is neuropathy? DPN -13.93023181157937 What 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)
What is neuropathy? domestic short hair -13.93071611677755 What 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)
What is neuropathy? Charcot-Marie-Tooth disease -13.949941306674624 What 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)
What is neuropathy? SFN -13.958842359616979 What 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)
What is neuropathy? the FDA -13.968543641987234 What 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)
What is neuropathy? a cure -13.974539640265839 What 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)
What is neuropathy? mercury poisoning -13.975971989203872 What 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)
What is neuropathy? Diagnostic Imaging Anybody -13.99518530971292 What 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)
What is neuropathy? Neurontin -13.996860418959615 What 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)
What is neuropathy? Washington Title -14.003331323963712 What 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)
What is neuropathy? found in insulin resistance -14.005520195681186 What 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)
What is neuropathy? sensory nerve fibers -14.058477940262339 What 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)
What is neuropathy? 9784431703266 -14.077549128253473 What 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)
What is neuropathy? 9789999981859 -14.077549128253473 What 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)
What is neuropathy? 9781933247458 -14.077549128253473 What 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)
What is neuropathy? 9780444904478 -14.077549128253473 What 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)
What is neuropathy? 9780192641434 -14.077549128253473 What 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)
What is neuropathy? 9780443047749 -14.077549128253473 What 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)
What is neuropathy? anxiety , depression -14.088228617241652 What 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)
What is neuropathy? Congenital Analgesia -14.089882985304655 What 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)
What is neuropathy? Familial Dysautonomia -14.089882985304655 What 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)
What is neuropathy? Autonomic Neuropathy -14.099647054309527 What 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)
What is neuropathy? Diabetic neuropathic pain -14.106598652940583 What 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)
What is neuropathy? complete pain relief -14.108350946674022 What 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)
What is neuropathy? subnormal skin temperatures -14.122105888107745 What 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)
What is neuropathy? routine check-ups -14.123661115733425 What 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)
What is neuropathy? low plasma levels -14.137416057167147 What 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)
What is neuropathy? an issue -14.139996786844069 What 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)
What is neuropathy? a deeper and prickle-like quality -14.143540846549861 What 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)
What is neuropathy? Guillain Barre -14.14454100974467 What 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)
What is neuropathy? Tunnel Syndrome -14.14454100974467 What 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)
What is neuropathy? http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase -14.148441728799034 What 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)
What is neuropathy? http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy -14.148441728799034 What 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)
What is neuropathy? CMT disease -14.15964770893449 What 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)
What is neuropathy? acute inflammatory demyelinating polyneuropathy -14.15964770893449 What 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)
What is neuropathy? chronic inflammatory demyelinating polyradiculoneuropathy -14.15964770893449 What 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)
What is neuropathy? sciatic nerve pain -14.161859240240533 What 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)
What is neuropathy? a few days post surgery -14.1686943785173 What 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)
What is neuropathy? numbness of the hand -14.170979999087669 What 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)
What is neuropathy? chronic inflammatory demyelinating polyneuropathy -14.170979999087669 What 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)
What is neuropathy? http://en.wikipedia.org/wiki/Auditory%20neuropathy -14.187425959466932 What 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)
What is neuropathy? facial nerve palsy -14.191299318643662 What 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)
What is neuropathy? numbness and prickling sensations -14.193512737359068 What 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)
What is neuropathy? btx-a -14.200620597540402 What 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)
What is neuropathy? diabetic neuropathy -14.202225436488378 What 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)
What is neuropathy? either complete or significant resolution -14.205891505081306 What 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)
What is neuropathy? chronic entrapment neuropathy -14.211649345626462 What 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)
What is neuropathy? severe sensory neuropathy -14.211649345626462 What 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)
What is neuropathy? symptoms?yet -14.213849288095766 What 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)
What is neuropathy? low back pain -14.215873954522811 What 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)
What is neuropathy? http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy -14.219912818356848 What 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)
What is neuropathy? acute isolated cranial neuropathy -14.220770104473598 What 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)
What is neuropathy? CMT-I -14.228816821492206 What 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)
What is neuropathy? Obturator neuropathy. -14.228816821492206 What 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)
What is neuropathy? Page Six Carpal tunnel syndrome -14.228816821492206 What 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)
What is neuropathy? LINKAGES Conservative Carpal tunnel syndrome -14.228816821492206 What 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)
What is neuropathy? drugs -14.234490044260681 What 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)
What is neuropathy? MS -14.236193274078802 What 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)
What is neuropathy? progressive peripheral neuropathies -14.241704177463 What 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)
What is neuropathy? chronic inflammatory neuropathies -14.241704177463 What 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)
What is neuropathy? MMA and Hcy testing -14.243911994649114 What 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)
What is neuropathy? nerve Harm -14.24491005201947 What 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)
What is neuropathy? abol- ishedreflexes -14.24531403292594 What 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)
What is neuropathy? multifocal motor neuropathy with conduction block -14.250824936310135 What 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)
What is neuropathy? Pregabalin and gabapentin -14.255380243991096 What 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)
What is neuropathy? ED. -14.262480172583615 What 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)
What is neuropathy? a new member -14.266954327308937 What 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)
What is neuropathy? a multifariousness -14.282857786652215 What 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)
What is neuropathy? large nerve fibers -14.28360050668405 What 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)
What is neuropathy? multiple sclerosis -14.29018816124319 What 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)
What is neuropathy? Pregabalin -14.302761830148096 What 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)
What is neuropathy? a paradox -14.303586589181915 What 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)
What is neuropathy? the Decline list -14.307117703527862 What 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)
What is neuropathy? abnormal fasting glucose metabolism -14.31016224984082 What 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)
What is neuropathy? supportive care -14.310288496551085 What 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)
What is neuropathy? CMT pain -14.312094127870086 What 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)
What is neuropathy? Diabetic polyneuropathy -14.31775045657734 What 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)
What is neuropathy? Nerve Support Formula STILL HAVE QUESTIONS -14.318676588292924 What 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)
What is neuropathy? Doctors Diagnose Diabetic Neuropathy -14.320837212888119 What 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)
What is neuropathy? one of the most common -14.329181800952469 What 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)
What is neuropathy? large fibre loss -14.330463018369707 What 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)
What is neuropathy? an exam -14.333169802622972 What 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)
What is neuropathy? worse average color vision -14.339405338120327 What 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)
What is neuropathy? an average vitamin D level -14.353552531347052 What 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)
What is neuropathy? a less stereotyped presentation -14.358857702455927 What 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)
What is neuropathy? for 10 months -14.368025741809017 What 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)
What is neuropathy? human patients -14.369430470910768 What 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)
What is neuropathy? the Ultima Neuro -14.380970112296252 What 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)
What is neuropathy? a common complication of diabetes -14.38402765844938 What 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)
What is neuropathy? muscle weakness -14.38707958065896 What 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)
What is neuropathy? Meralgia paresthetica -14.387133373171256 What 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)
What is neuropathy? eye examination -14.387462243455436 What 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)
What is neuropathy? a complication of diabetes -14.387501624491481 What 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)
What is neuropathy? a wide variety -14.390429515561182 What 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)
What is neuropathy? Several B vitamins -14.396107876591898 What 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)
What is neuropathy? Opiates -14.415839860104507 What 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)
What is neuropathy? a variable incidence rate -14.420751541067112 What 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)
What is neuropathy? a few different classes -14.421635780170503 What 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)
What is neuropathy? carpal tunnel -14.42181108284357 What 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)
What is neuropathy? Gabapentin -14.422029217614478 What 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)
What is neuropathy? Lumbar rediculopathy -14.432027328606399 What 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)
What is neuropathy? a pathway -14.440815659624134 What 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)
What is neuropathy? less severe -14.442080393496457 What 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)
What is neuropathy? very common -14.442080393496457 What 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)
What is neuropathy? a scale -14.443468218827423 What 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)
What is neuropathy? very painful -14.446684108448306 What 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)
What is neuropathy? a long-term complication of diabetes -14.447060865789659 What 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)
What is neuropathy? one knee -14.4539541047739 What 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)
What is neuropathy? Methylcobalamin -14.45546526994973 What 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)
What is neuropathy? HIV -14.458090677711331 What 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)
What is neuropathy? extremely painful -14.460724410033283 What 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)
What is neuropathy? acupuncture -14.46281002227904 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, acupuncture) -> acupuncture (10080ms)
What is neuropathy? CMT1 -14.466538845723779 What 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)
What is neuropathy? neurodegenerative disease -14.466705038278711 What 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)
What is neuropathy? peripheral neuropathies -14.471922669953196 What 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)
What is neuropathy? a critical endpoint -14.474115633319544 What 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)
What is neuropathy? few symptoms -14.47785544579612 What 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)
What is neuropathy? more common -14.481560051502434 What 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)
What is neuropathy? a monthly basis -14.485922859032396 What 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)
What is neuropathy? burning sensation -14.48737654698521 What 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)
What is neuropathy? muscle pain -14.48737654698521 What 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)
What is neuropathy? numbness -14.488688549107 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, numbness) -> numbness (10109ms)
What is neuropathy? pinched nerve -14.490555344949733 What 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)
What is neuropathy? normal hearing -14.493571598263092 What 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)
What is neuropathy? a very common problem for people -14.494708258828203 What 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)
What is neuropathy? Effexor -14.498070249452388 What 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)
What is neuropathy? marked improvements -14.498648022806037 What 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)
What is neuropathy? CIDP -14.501179879316716 What 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)
What is neuropathy? clinical syndrome -14.511691138199508 What 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)
What is neuropathy? one of the most common complications of diabetes -14.51329137063215 What 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)
What is neuropathy? Nerve damage -15.117331209187315 What 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)
What is neuropathy? Medications -15.148278919701848 What 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)
What is neuropathy? a medical condition -15.424709661429908 What 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)
What is neuropathy? a complication -15.540255832098413 What 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)
What is neuropathy? painful neurological symptoms -15.55034048559268 What 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)
What is neuropathy? a disorder -15.560656950962365 What 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)
What is neuropathy? Polyneuropathy -15.602389574619814 What 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)
What is neuropathy? a painful condition -16.001783404267847 What 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)
What is neuropathy? a debilitating condition -16.0489343969279 What 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)
What is neuropathy? the problems -16.198965338300955 What 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)
What is neuropathy? professional -16.486123598424292 What 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)
What is neuropathy? disorders -18.123838386604145 What 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)
What is the age of our solar system? Sun -3.1090958452282242 What 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)
What is the age of our solar system? Alpha Centauri -3.7779277397768016 What 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)
What is the age of our solar system? Ophiuchus -4.8978581018113205 What 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)
What is the age of our solar system? Titan -5.033961639335066 What 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)
What is the age of our solar system? the lord -5.073701991409548 What 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)
What is the age of our solar system? The sun -5.197365322498584 What 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)
What is the age of our solar system? The globules -6.183847185805465 What 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)
What is the age of our solar system? The stardust grains -6.260244239500462 What 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)
What is the age of our solar system? a golden age -10.166926474749948 What 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)
What is the age of our solar system? Ellen White -10.770473950975555 What 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)
What is the age of our solar system? the Sun -10.81188260855204 What 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)
What is the age of our solar system? the Milky Way -10.812105761247299 What 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)
What is the age of our solar system? a spiral arm -10.916167642334951 What 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)
What is the age of our solar system? the Orion arm -11.06433736326214 What 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)
What is the age of our solar system? The Sun -11.14346786351946 What 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)
What is the age of our solar system? the Milky Way galaxy -11.223681910474237 What 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)
What is the age of our solar system? the Belt -11.247318454535225 What 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)
What is the age of our solar system? the Orion spiral arm -11.24997106644081 What 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)
What is the age of our solar system? a line -11.281175845467859 What 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)
What is the age of our solar system? the Milky Way Galaxy -11.326509237376097 What 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)
What is the age of our solar system? an arm -11.404465639438067 What 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)
What is the age of our solar system? a month -11.416187421483237 What 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)
What is the age of our solar system? such a way -11.424168656590751 What 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)
What is the age of our solar system? a galaxy -11.519211181488071 What 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)
What is the age of our solar system? the Tharsis region -11.54230377697664 What 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)
What is the age of our solar system? one line -11.557691339178595 What 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)
What is the age of our solar system? Capricorn -11.562211995396469 What 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)
What is the age of our solar system? a range -11.562586957222226 What 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)
What is the age of our solar system? a Rotational Dimension -11.620335403669966 What 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)
What is the age of our solar system? such a place -11.622720927456932 What 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)
What is the age of our solar system? an incredibly ancient pattern -11.628605063928163 What 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)
What is the age of our solar system? part dependent -11.662668982241277 What 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)
What is the age of our solar system? one of the spiral arms of the Milky Way -11.66726811075478 What 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)
What is the age of our solar system? whole galaxy -11.719443734433417 What 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)
What is the age of our solar system? close proximity -11.723914886900962 What 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)
What is the age of our solar system? predictable motion -11.727215432758046 What 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)
What is the age of our solar system? an outer orbit -11.74315114359008 What 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)
What is the age of our solar system? such a region -11.814902648564 What 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)
What is the age of our solar system? backward orbits -11.814987245664398 What 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)
What is the age of our solar system? recent years -11.842774644437823 What 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)
What is the age of our solar system? outer regions -11.918313155773394 What 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)
What is the age of our solar system? November -11.947511071915446 What 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)
What is the age of our solar system? April -11.947511071915446 What 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)
What is the age of our solar system? January 2009 -11.98598511779969 What 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)
What is the age of our solar system? massive Jupiter -11.994100238663972 What 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)
What is the age of our solar system? an unusual region -12.06684257848964 What 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)
What is the age of our solar system? a rare form -12.081678536070335 What 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)
What is the age of our solar system? a similar arrangement -12.10757159231481 What 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)
What is the age of our solar system? a stable orbit -12.114645188928174 What 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)
What is the age of our solar system? planets and debris -12.136654320022775 What 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)
What is the age of our solar system? Arcturus -12.258665386160308 What 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)
What is the age of our solar system? the Orion Arm -12.275384927003827 What 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)
What is the age of our solar system? How many dwarf planets -12.280595436174009 What 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)
What is the age of our solar system? ok -12.354674718966503 What 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)
What is the age of our solar system? Earth -12.361521533281099 What 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)
What is the age of our solar system? 20 year -12.42649184206798 What 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)
What is the age of our solar system? Jupiter -12.430618104760159 What 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)
What is the age of our solar system? the universe -12.44000441980695 What 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)
What is the age of our solar system? Mercury and Venus -12.537254549339314 What 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)
What is the age of our solar system? exactly how much water -12.578128817451844 What 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)
What is the age of our solar system? a an unusual region of space -12.61328726246891 What 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)
What is the age of our solar system? the shadows -12.706398369757636 What 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)
What is the age of our solar system? the asteroid belt -12.714555545467414 What 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)
What is the age of our solar system? Portland Oregon -12.796841299783209 What 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)
What is the age of our solar system? Jupiter Jupiter -12.8123784015381 What 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)
What is the age of our solar system? the night sky -12.85690663586773 What 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)
What is the age of our solar system? the ascending Dwapara Yuga -12.862798592848184 What 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)
What is the age of our solar system? the Starcademy -12.896786505278575 What 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)
What is the age of our solar system? 1995 -12.896931828357317 What 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)
What is the age of our solar system? the throes -12.922722570296884 What 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)
What is the age of our solar system? the cores -12.930650701436372 What 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)
What is the age of our solar system? the sun -12.945658831147885 What 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)
What is the age of our solar system? the same arm -12.95633374149289 What 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)
What is the age of our solar system? the part -12.959829221588624 What 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)
What is the age of our solar system? the nearby interstellar material -12.962084319166424 What 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)
What is the age of our solar system? one week -12.985794035605316 What 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)
What is the age of our solar system? the Saggitarius Dwarf Galaxy -13.014049233862046 What 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)
What is the age of our solar system? the Asteroid Belt -13.039996305795384 What 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)
What is the age of our solar system? the past -13.05128118688031 What 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)
What is the age of our solar system? three hours -13.052922820720239 What 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)
What is the age of our solar system? the early universe -13.059838075452515 What 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)
What is the age of our solar system? 1912 -13.073085996068263 What 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)
What is the age of our solar system? 1990 -13.075346356180845 What 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)
What is the age of our solar system? the minerals -13.083616951513289 What 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)
What is the age of our solar system? temperature -13.129764658423786 What 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)
What is the age of our solar system? an orbit -13.16137006279057 What 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)
What is the age of our solar system? such an explosive environment -13.168304723074481 What 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)
What is the age of our solar system? the formation -13.186740394333214 What 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)
What is the age of our solar system? the light -13.201279786650648 What 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)
What is the age of our solar system? fact -13.21949884076408 What 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)
What is the age of our solar system? the direction -13.22033995189554 What 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)
What is the age of our solar system? how many planets -13.222030857625985 What 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)
What is the age of our solar system? Alarius -13.22500104185579 What 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)
What is the age of our solar system? a ?belt ? -13.228652540559006 What 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)
What is the age of our solar system? orbit -13.26213092924041 What 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)
What is the age of our solar system? Planet X -13.29720647344482 What 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)
What is the age of our solar system? years -13.315266024398422 What 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)
What is the age of our solar system? how many dwarf planets -13.384967482931302 What 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)
What is the age of our solar system? countries -13.412060009281543 What 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)
What is the age of our solar system? such an environment -13.540033042871876 What 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)
What is the age of our solar system? Venus -13.553496621198308 What 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)
What is the age of our solar system? Saturn -13.577145018347622 What 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)
What is the age of our solar system? Ganymede -13.577145018347622 What 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)
What is the age of our solar system? Uranus -13.602847388442616 What 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)
What is the age of our solar system? life waves -13.608424066948974 What 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)
What is the age of our solar system? vibration -13.614541277545111 What 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)
What is the age of our solar system? Pluto -13.623248507306567 What 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)
What is the age of our solar system? Vesta -13.623248507306567 What 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)
What is the age of our solar system? Saturn?s moon Titan -13.629601363599498 What 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)
What is the age of our solar system? a 26.000 year cycle -13.637563450213651 What 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)
What is the age of our solar system? line -13.699363084884222 What 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)
What is the age of our solar system? a cyclic manner -13.748784105027138 What 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)
What is the age of our solar system? one of these streams -13.758577444060217 What 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)
What is the age of our solar system? The asteroid -13.811283481706468 What 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)
What is the age of our solar system? alignment -13.838608966651648 What 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)
What is the age of our solar system? the sky -13.839222921242353 What 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)
What is the age of our solar system? space -13.84618219153591 What 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)
What is the age of our solar system? motion -13.921788163230175 What 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)
What is the age of our solar system? nature -13.927719561216229 What 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)
What is the age of our solar system? re-cap...there -13.956307151996942 What 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)
What is the age of our solar system? the Earth -13.960745965604236 What 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)
What is the age of our solar system? a new planet -14.018321836970273 What 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)
What is the age of our solar system? Neptune -14.02380076746575 What 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)
What is the age of our solar system? one of the spiral arms -14.076497510024717 What 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)
What is the age of our solar system? place -14.11055735111296 What 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)
What is the age of our solar system? creation -14.112325723915152 What 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)
What is the age of our solar system? the only known planets -14.123228361388696 What 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)
What is the age of our solar system? Apparently a new planet -14.124056469504355 What 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)
What is the age of our solar system? grey -14.140128123058211 What 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)
What is the age of our solar system? Mars -14.146645200762798 What 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)
What is the age of our solar system? Space -14.161338032930594 What 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)
What is the age of our solar system? the top eight brightest objects -14.224686565390456 What 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)
What is the age of our solar system? Mercury -14.227072123940609 What 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)
What is the age of our solar system? the cold molecular cloud -14.296402483649729 What 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)
What is the age of our solar system? the next -14.311662952436151 What 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)
What is the age of our solar system? the right zone for life -14.341640607453837 What 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)
What is the age of our solar system? Nibiru -14.45184246762694 What 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)
What is the age of our solar system? the supernova -14.514521665702 What 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)
What is the age of our solar system? existence -14.54801201007705 What 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)
What is the age of our solar system? the first way -14.822714998384072 What 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)
What is the age of our solar system? the planet -14.832803309667183 What 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)
What is the age of our solar system? the sun Jupiter -14.859779935947579 What 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)
What is the age of our solar system? 1992 -14.931273217495388 What 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)
What is the age of our solar system? the species -14.976438626566004 What 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)
What is the age of our solar system? the role asteroids -14.981450802242438 What 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)
What is the age of our solar system? the plane -14.988731200051031 What 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)
What is the age of our solar system? the planets -14.997626688280974 What 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)
What is the age of our solar system? origin -15.050546062851225 What 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)
What is the age of our solar system? the earth -15.055572476660817 What 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)
What is the age of our solar system? turn -15.095177287769246 What 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)
What is the age of our solar system? the key role -15.15475360305605 What 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)
What is the age of our solar system? distance -15.161254627962228 What 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)
What is the age of our solar system? the history -15.217090442609768 What 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)
What is the age of our solar system? the tenth planet -15.322025372221002 What 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)
What is the age of our solar system? Comet -15.662428337684233 What 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)
What is the age of our solar system? life -15.793791381175108 What 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)
What is the age of our solar system? miniature -15.813648480834697 What 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)
What is the age of our solar system? position -15.896097037632497 What 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)
What is the age of our solar system? planet -16.019557154551514 What 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)
What is the age of our solar system? the role -16.468819433365326 What 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)
What is the age of our solar system? comet -17.352006446046282 What 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)
When was CNN's first broadcast? 1997 0.3587478370690951 When 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)
When was CNN's first broadcast? 1992 0.3312589564699353 When 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)
When was CNN's first broadcast? 2001 0.3312589564699353 When 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)
When was CNN's first broadcast? 2006-09-04 -1.0184867488484528 When 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)
When was CNN's first broadcast? 1980-06-01 -1.0184867488484528 When 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)
When was CNN's first broadcast? 2007-12-06 -1.0184867488484528 When 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)
When was CNN's first broadcast? 2009-11-16 -1.0184867488484528 When 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)
When was CNN's first broadcast? 2007-01-20 -1.069537527104035 When 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)
When was CNN's first broadcast? 2010-08-14 -1.1078256107957216 When 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)
When was CNN's first broadcast? 2010-11-25 -1.137605231444811 When 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)
When was CNN's first broadcast? 2009-11-26 -1.137605231444811 When 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)
When was CNN's first broadcast? 2003-08 -2.9462503387791354 When 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)
When was CNN's first broadcast? 1989-08 -2.9462503387791354 When 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)
When was CNN's first broadcast? 2005-07 -2.9737392193782948 When 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)
When was CNN's first broadcast? 1985-09 -2.9737392193782948 When 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)
What movies did Judi Dench play in? J. Edgar -6.990919387605524 What 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)
What movies did Judi Dench play in? Notes on a Scandal -7.01730753813475 What 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)
What movies did Judi Dench play in? Look Back in Anger -8.184926768414538 What 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)
What movies did Judi Dench play in? Scenes From My Life -8.184926768414538 What 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)
What movies did Judi Dench play in? Queen Victoria -8.258985059793083 What 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)
What movies did Judi Dench play in? And Furthermore -8.59069582938531 What 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)
What movies did Judi Dench play in? Edgar?s mother -8.61442366518739 What 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)
What movies did Judi Dench play in? Evelyn -8.656126427544216 What 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)
What movies did Judi Dench play in? Daniel Craig -8.667651427044536 What 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)
What movies did Judi Dench play in? a widow -8.803026804406793 What 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)
What movies did Judi Dench play in? 34 locations -8.807310592119487 What 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)
What movies did Judi Dench play in? Hoover?s Mom -8.858237322133679 What 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)
What movies did Judi Dench play in? Sally Bowles -8.878422039649589 What 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)
What movies did Judi Dench play in? practical jokes -8.915946796094058 What 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)
What movies did Judi Dench play in? top movie star -8.939523853973474 What 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)
What movies did Judi Dench play in? Hoover?s mother -8.964074025108612 What 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)
What movies did Judi Dench play in? Jeremy Irons -8.993687130917685 What 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)
What movies did Judi Dench play in? Kenneth Branagh -8.999149821227057 What 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)
What movies did Judi Dench play in? Mrs. Fairfax -9.063496365977215 What 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)
What movies did Judi Dench play in? Laura Henderson -9.128352143557573 What 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)
What movies did Judi Dench play in? Miss Matty Jenkyns -9.14135117192807 What 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)
What movies did Judi Dench play in? James Bond?s boss -9.141556363336633 What 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)
What movies did Judi Dench play in? British novelist Iris Murdoch -9.156277899197491 What 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)
What movies did Judi Dench play in? play or stage shape -9.163418078891358 What 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)
What movies did Judi Dench play in? Lauran Henderson -9.209052718795656 What 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)
What movies did Judi Dench play in? a master -9.231120055134552 What 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)
What movies did Judi Dench play in? Blanchett -9.26087838978129 What 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)
What movies did Judi Dench play in? A-listers -9.268801266143535 What 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)
What movies did Judi Dench play in? Best Actress -9.270588942187747 What 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)
What movies did Judi Dench play in? actress Dame Sybil Thordike -9.28625493392983 What 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)
What movies did Judi Dench play in? actress Dame Sybil Thorndike -9.287139173033221 What 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)
What movies did Judi Dench play in? Mrs. Bennet -9.289127749272927 What 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)
What movies did Judi Dench play in? a role -9.310270466096009 What 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)
What movies did Judi Dench play in? ?Your name -9.336949435878823 What 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)
What movies did Judi Dench play in? Cary Fukunaga -9.33920209000957 What 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)
What movies did Judi Dench play in? Fine Romance -9.344867215971979 What 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)
What movies did Judi Dench play in? star of Notes -9.357322138362322 What 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)
What movies did Judi Dench play in? a thrill -9.359850105112212 What 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)
What movies did Judi Dench play in? an elderly schoolteacher -9.3654562867211 What 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)
What movies did Judi Dench play in? English film actress -9.370817489662254 What 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)
What movies did Judi Dench play in? York -9.371237097844945 What 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)
What movies did Judi Dench play in? star of Return -9.375946318412888 What 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)
What movies did Judi Dench play in? a-list actor -9.381435929855343 What 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)
What movies did Judi Dench play in? top tier actor -9.391221622003101 What 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)
What movies did Judi Dench play in? star of Shakespeare -9.39353230154769 What 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)
What movies did Judi Dench play in? the Rose Theatre -9.39354909297769 What 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)
What movies did Judi Dench play in? actress after the age -9.398786164963038 What 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)
What movies did Judi Dench play in? macular degeneration -9.406930476441158 What 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)
What movies did Judi Dench play in? first class actress -9.420353968909032 What 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)
What movies did Judi Dench play in? properly trained actor -9.420353968909032 What 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)
What movies did Judi Dench play in? big name -9.426269081460916 What 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)
What movies did Judi Dench play in? well-known British actress -9.429447314063244 What 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)
What movies did Judi Dench play in? legendary British actress -9.429474727756169 What 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)
What movies did Judi Dench play in? old-school kind of star -9.429474727756169 What 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)
What movies did Judi Dench play in? stellar, stellar actress -9.429474727756169 What 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)
What movies did Judi Dench play in? big box-office name -9.429474727756169 What 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)
What movies did Judi Dench play in? brilliant, brilliant actor -9.429474727756169 What 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)
What movies did Judi Dench play in? high profile performer -9.432871082909424 What 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)
What movies did Judi Dench play in? Mrs. Brown -9.435442653808831 What 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)
What movies did Judi Dench play in? star of Tomorrow Never -9.44086073193151 What 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)
What movies did Judi Dench play in? polished veteran actor -9.440917799928032 What 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)
What movies did Judi Dench play in? Hoover -9.445675771916042 What 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)
What movies did Judi Dench play in? a successful novelist -9.453745232361378 What 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)
What movies did Judi Dench play in? Remain Silent -9.471070458423773 What 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)
What movies did Judi Dench play in? great british actress -9.475190853260631 What 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)
What movies did Judi Dench play in? Judged Too Old -9.481595151103178 What 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)
What movies did Judi Dench play in? great actress -9.48322505375317 What 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)
What movies did Judi Dench play in? Titania -9.483640797079222 What 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)
What movies did Judi Dench play in? great actress of varied accomplishment -9.484452488954487 What 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)
What movies did Judi Dench play in? real life voice actor -9.484452488954487 What 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)
What movies did Judi Dench play in? england's finest actor and actress -9.48668232883219 What 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)
What movies did Judi Dench play in? popular and famous british actor -9.48668232883219 What 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)
What movies did Judi Dench play in? famous actor -9.495987191814 What 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)
What movies did Judi Dench play in? Contini?s costume designer and confidant -9.496327078091168 What 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)
What movies did Judi Dench play in? a bit -9.499245980292365 What 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)
What movies did Judi Dench play in? legend of the british theater -9.500903554014828 What 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)
What movies did Judi Dench play in? MI6 chief M -9.503875513363846 What 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)
What movies did Judi Dench play in? the U.S. Virgin Islands -9.512546285203964 What 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)
What movies did Judi Dench play in? Graham?s couch tonight -9.516506162329662 What 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)
What movies did Judi Dench play in? the Assistant Director -9.516970515066838 What 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)
What movies did Judi Dench play in? big british theatrical actor -9.525580150992488 What 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)
What movies did Judi Dench play in? well respected and loved British actress -9.527522951436655 What 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)
What movies did Judi Dench play in? as much M -9.528000743650802 What 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)
What movies did Judi Dench play in? Lily or Alice -9.528127030202869 What 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)
What movies did Judi Dench play in? modern day actor in costume -9.531576284267333 What 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)
What movies did Judi Dench play in? engaging, clever and intuitive actress -9.531576284267333 What 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)
What movies did Judi Dench play in? prominent actor in the world -9.531576284267333 What 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)
What movies did Judi Dench play in? set -9.53818381860549 What 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)
What movies did Judi Dench play in? well known British actress -9.539289373306087 What 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)
What movies did Judi Dench play in? Dame Sybil Thorndike -9.540356103410195 What 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)
What movies did Judi Dench play in? a glass -9.556301072561507 What 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)
What movies did Judi Dench play in? famous English movie, theater and tv actress -9.563258496215564 What 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)
What movies did Judi Dench play in? English actress -9.567711517090528 What 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)
What movies did Judi Dench play in? a great looking lady -9.568217025203936 What 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)
What movies did Judi Dench play in? heralded British stage and film actress -9.572416906871798 What 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)
What movies did Judi Dench play in? A nomination -9.577673281037951 What 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)
What movies did Judi Dench play in? good news -9.581303447897646 What 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)
What movies did Judi Dench play in? Oscar winner -9.5826670310046 What 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)
What movies did Judi Dench play in? Become Silent -9.602581186068095 What 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)
What movies did Judi Dench play in? notable actor -9.6030504745918 What 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)
What movies did Judi Dench play in? respected actor -9.618884172143614 What 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)
What movies did Judi Dench play in? Desiree -9.619932458400505 What 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)
What movies did Judi Dench play in? absolute genius -9.627281720479912 What 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)
What movies did Judi Dench play in? top favourites -9.631350055596176 What 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)
What movies did Judi Dench play in? experienced actress -9.636003602438736 What 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)
What movies did Judi Dench play in? much experience -9.64247215680343 What 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)
What movies did Judi Dench play in? a cracking Mrs Fairfax -9.642489631537357 What 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)
What movies did Judi Dench play in? good actress -9.644610513891553 What 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)
What movies did Judi Dench play in? Minnie -9.64988733385437 What 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)
What movies did Judi Dench play in? Tea with Mussolini -9.65616219509032 What 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)
What movies did Judi Dench play in? J Edgar -9.660330359062925 What 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)
What movies did Judi Dench play in? british star -9.662692829201276 What 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)
What movies did Judi Dench play in? fantastic actress -9.663184859437896 What 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)
What movies did Judi Dench play in? name actor -9.668051130503606 What 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)
What movies did Judi Dench play in? Become Silent ? -9.670520219307358 What 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)
What movies did Judi Dench play in? british actor -9.681913553040596 What 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)
What movies did Judi Dench play in? acting legend -9.682514714820275 What 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)
What movies did Judi Dench play in? top actor -9.685386887843764 What 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)
What movies did Judi Dench play in? 77 -9.688446028621538 What 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)
What movies did Judi Dench play in? british name -9.689832372089505 What 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)
What movies did Judi Dench play in? british great -9.691170652463203 What 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)
What movies did Judi Dench play in? great performer -9.69163325487229 What 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)
What movies did Judi Dench play in? brilliant actor -9.692770062059976 What 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)
What movies did Judi Dench play in? Hayden -9.69410264130249 What 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)
What movies did Judi Dench play in? fantastic actor -9.695905116670586 What 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)
What movies did Judi Dench play in? screen legend -9.696854042457822 What 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)
What movies did Judi Dench play in? successful actress -9.696865980774293 What 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)
What movies did Judi Dench play in? mature actress -9.697339802014044 What 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)
What movies did Judi Dench play in? hollywood actor -9.697743015588632 What 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)
What movies did Judi Dench play in? superb actress -9.699554369525176 What 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)
What movies did Judi Dench play in? vision problems -9.70070403343355 What 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)
What movies did Judi Dench play in? famous name -9.701078307438214 What 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)
What movies did Judi Dench play in? experienced performer -9.702303484349084 What 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)
What movies did Judi Dench play in? wonderful actress -9.705791603025201 What 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)
What movies did Judi Dench play in? featured actor -9.706686998823189 What 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)
What movies did Judi Dench play in? landing luminary -9.721669926430186 What 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)
What movies did Judi Dench play in? acclaimed actor -9.721669926430186 What 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)
What movies did Judi Dench play in? thinking actor -9.721669926430186 What 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)
What movies did Judi Dench play in? quality actress -9.721669926430186 What 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)
What movies did Judi Dench play in? a time -9.723611766082636 What 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)
What movies did Judi Dench play in? english star -9.724089200676728 What 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)
What movies did Judi Dench play in? ?Best Actress -9.732343335789805 What 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)
What movies did Judi Dench play in? classical actor -9.735379147518085 What 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)
What movies did Judi Dench play in? a British actor -9.739910305288683 What 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)
What movies did Judi Dench play in? incredible actress -9.741425571420734 What 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)
What movies did Judi Dench play in? female actor -9.742233757449185 What 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)
What movies did Judi Dench play in? classic actor -9.744103197301294 What 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)
What movies did Judi Dench play in? seasoned actor -9.744437024007764 What 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)
What movies did Judi Dench play in? phenomenal actress -9.744701417269521 What 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)
What movies did Judi Dench play in? Mrs Henderson Presents -9.744835792991715 What 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)
What movies did Judi Dench play in? marvellous actress -9.745171448645356 What 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)
What movies did Judi Dench play in? extraordinary actress -9.746477088632233 What 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)
What movies did Judi Dench play in? distinguished performer -9.7476452908957 What 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)
What movies did Judi Dench play in? veteran actress -9.749088368605985 What 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)
What movies did Judi Dench play in? divine actor -9.749088368605985 What 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)
What movies did Judi Dench play in? great British acting -9.752121551879847 What 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)
What movies did Judi Dench play in? The Hollywood star -9.771312632588259 What 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)
What movies did Judi Dench play in? Word -9.792359504199657 What 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)
What movies did Judi Dench play in? Mrs Henderson -9.796081356295598 What 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)
What movies did Judi Dench play in? a great dame -9.818205824332955 What 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)
What movies did Judi Dench play in? a rare villainous role -9.827813532862123 What 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)
What movies did Judi Dench play in? Well the main character -9.855307597306078 What 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)
What movies did Judi Dench play in? the London cold -9.869257925125488 What 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)
What movies did Judi Dench play in? a wonderful addition -9.890097691915535 What 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)
What movies did Judi Dench play in? Lady Catherine De Bourgh -9.895012595284477 What 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)
What movies did Judi Dench play in? M Widescreen Stereo Repeat Graham -9.915349093318879 What 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)
What movies did Judi Dench play in? a wonderful actress -9.921756686336012 What 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)
What movies did Judi Dench play in? a fellow teacher -9.943380255279216 What 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)
What movies did Judi Dench play in? an absolute treat -9.963345092612986 What 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)
What movies did Judi Dench play in? HQ . Rimington -9.96932526144872 What 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)
What movies did Judi Dench play in? the 40 readings -10.010319056828521 What 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)
What movies did Judi Dench play in? Blunt -10.06102040616875 What 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)
What movies did Judi Dench play in? three scenes -10.065016000426366 What 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)
What movies did Judi Dench play in? Aereon -10.070268647216448 What 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)
What movies did Judi Dench play in? a great actress -10.076391573697736 What 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)
What movies did Judi Dench play in? Jean -10.096523526146704 What 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)
What movies did Judi Dench play in? the Giant -10.108062938330786 What 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)
What movies did Judi Dench play in? a different timeline -10.120237452710722 What 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)
What movies did Judi Dench play in? degenerative eye condition -10.135548442796546 What 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)
What movies did Judi Dench play in? Bond -10.199935151933946 What 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)
What movies did Judi Dench play in? Murdoch -10.229220434018286 What 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)
What movies did Judi Dench play in? a star -10.234901875024342 What 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)
What movies did Judi Dench play in? Tura -10.248173784628795 What 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)
What movies did Judi Dench play in? Queen Elizabeth -10.276529849560431 What 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)
What movies did Judi Dench play in? Patron -10.382504398882116 What 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)
What movies did Judi Dench play in? Dance -10.396494072908345 What 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)
What movies did Judi Dench play in? Graham Norton show -10.403260291778082 What 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)
What movies did Judi Dench play in? Skyfall -10.432903656172162 What 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)
What movies did Judi Dench play in? class and elegance -10.435378580102146 What 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)
What movies did Judi Dench play in? a brave performance -10.459010557443449 What 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)
What movies did Judi Dench play in? Hoover 's mother -10.503747840423596 What 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)
What movies did Judi Dench play in? the top -10.708364891687879 What 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)
What movies did Judi Dench play in? the older Murdoch -10.786675969417963 What 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)
What movies did Judi Dench play in? the mature version -10.811433557564731 What 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)
What movies did Judi Dench play in? The movie -10.816127682256223 What 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)
What movies did Judi Dench play in? the Queen -10.82092956071668 What 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)
What movies did Judi Dench play in? back as M -10.90184510376083 What 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)
What movies did Judi Dench play in? the part -10.905471831169844 What 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)
What movies did Judi Dench play in? the character -10.95853150978803 What 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)
What movies did Judi Dench play in? The queen -10.977500788902756 What 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)
What movies did Judi Dench play in? M in a different timeline -11.03627140692916 What 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)
What movies did Judi Dench play in? 1934 -11.130181159803133 What 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)
What movies did Judi Dench play in? the cast? -11.13427224083227 What 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)
What movies did Judi Dench play in? continuity -11.148512062355572 What 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)
What movies did Judi Dench play in? The older teacher -11.19502140522491 What 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)
What movies did Judi Dench play in? the finest actors -11.219739975846998 What 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)
What movies did Judi Dench play in? once again -11.23846655326468 What 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)
What movies did Judi Dench play in? the movie -11.249492380982444 What 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)
What movies did Judi Dench play in? fact -11.257953988957087 What 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)
What movies did Judi Dench play in? friends -11.28582529659152 What 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)
What movies did Judi Dench play in? The host -11.3134040910648 What 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)
What movies did Judi Dench play in? The special feature -11.314713153684206 What 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)
What movies did Judi Dench play in? the biggest casting surprise -11.317728464725596 What 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)
What movies did Judi Dench play in? the stars -11.334034150822308 What 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)
What movies did Judi Dench play in? the last three films -11.33455790929684 What 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)
What movies did Judi Dench play in? the cover photo -11.33636115808506 What 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)
What movies did Judi Dench play in? the biggest scene stealer -11.353096342387818 What 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)
What movies did Judi Dench play in? the guy -11.360392026328935 What 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)
What movies did Judi Dench play in? the first half -11.375684689583943 What 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)
What movies did Judi Dench play in? the best M -11.396059356630989 What 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)
What movies did Judi Dench play in? the supporting players -11.396188761451713 What 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)
What movies did Judi Dench play in? The same -11.416401247332658 What 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)
What movies did Judi Dench play in? The second two -11.430543047892115 What 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)
What movies did Judi Dench play in? the best BBC costume drama I?ve -11.440723074708806 What 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)
What movies did Judi Dench play in? the film?s narrator -11.472229793289621 What 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)
What movies did Judi Dench play in? the leather chair -11.491682104922926 What 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)
What movies did Judi Dench play in? actor -11.494850680709126 What 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)
What movies did Judi Dench play in? the musical alive -11.507597670951846 What 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)
What movies did Judi Dench play in? the impressive roll call -11.525611775049114 What 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)
What movies did Judi Dench play in? The voiceover -11.529113198763866 What 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)
What movies did Judi Dench play in? the seriousness -11.547280431119725 What 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)
What movies did Judi Dench play in? The only problem -11.557175871690625 What 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)
What movies did Judi Dench play in? the script -11.579239529720862 What 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)
What movies did Judi Dench play in? the cast -11.586392821326644 What 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)
What movies did Judi Dench play in? the franchise -11.61798683840934 What 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)
What movies did Judi Dench play in? The only other known version -11.639175610057599 What 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)
What movies did Judi Dench play in? the award ceremony -11.645365020269866 What 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)
What movies did Judi Dench play in? the trip -11.667833413624093 What 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)
What movies did Judi Dench play in? the film -11.675032173911838 What 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)
What movies did Judi Dench play in? regulars -11.776273596160244 What 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)
What movies did Judi Dench play in? roles -11.803230003788176 What 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)
What movies did Judi Dench play in? the end -11.811393658835634 What 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)
What movies did Judi Dench play in? the villain -11.838370288884036 What 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)
What movies did Judi Dench play in? history -11.89102074657293 What 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)
What movies did Judi Dench play in? statements -11.896200701305126 What 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)
What movies did Judi Dench play in? resistance -11.923934622425993 What 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)
What movies did Judi Dench play in? tough -11.941618561257103 What 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)
What movies did Judi Dench play in? guest -11.95753412728602 What 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)
What movies did Judi Dench play in? the picture -11.961214394585436 What 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)
What movies did Judi Dench play in? part -11.996046604164217 What 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)
What movies did Judi Dench play in? board -12.01545941509909 What 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)
What movies did Judi Dench play in? good -12.036029160933094 What 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)
What movies did Judi Dench play in? release -12.05033535815322 What 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)
What movies did Judi Dench play in? screen -12.096154626742084 What 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)
What movies did Judi Dench play in? purists -12.273999299946524 What 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)
What movies did Judi Dench play in? performances -12.331575106853748 What 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)
What movies did Judi Dench play in? delightful -12.632340365687716 What 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)
What movies did Judi Dench play in? the best M ever -12.827679880480723 What 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)
What movies did Judi Dench play in? wonderful -13.18681321507745 What 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)
What movies did Judi Dench play in? excellent -13.22168915813158 What 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)
What movies did Judi Dench play in? great -13.236163982321756 What 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)
What movies did Judi Dench play in? amazing -13.236163982321756 What 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)
What movies did Judi Dench play in? marvellous -13.256565101185709 What 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)
What movies did Judi Dench play in? superb -13.256565101185709 What 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)
What movies did Judi Dench play in? perfect -13.256565101185709 What 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)
What movies did Judi Dench play in? fabulous -13.256565101185709 What 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)
What movies did Judi Dench play in? fantastic -13.256565101185709 What 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)
What movies did Judi Dench play in? date -13.687235969266375 What 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)
What is the oldest sports trophy? The America?s Cup -9.89048081916495 What 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)
What is the oldest sports trophy? The Stanley Cup -10.831733265809206 What 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)
What is the oldest sports trophy? back in Europe -10.975038098004617 What 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)
What is the oldest sports trophy? the cup -11.368185619840165 What 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)
What is the oldest sports trophy? the Americas Cup -11.565504318002912 What 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)
What is the oldest sports trophy? the winning team -11.566732975008797 What 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)
What is the oldest sports trophy? the America 's Cup -11.589895738420934 What 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)
What is the oldest sports trophy? hockey -12.086615872788457 What 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)
Who are professional female boxers? four-time Golden Gloves champ -4.389952791183834 Who 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)
Who are professional female boxers? One participant -8.358570312825087 Who 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)
Who are professional female boxers? the tigress -9.816041690430417 Who 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)
What peace treaty ended WWI? Versailles Treaty -2.4216377369041933 What 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)
What peace treaty ended WWI? Versailles -3.0200229868224975 What peace treaty ended WWI? -> $x: ($x, instance of, peace treaty) ($x, ended, WWI) -> (Versailles, Instance Of, peace treaty) (Versailles, ended, WWI) -> Versailles (1109ms)
What are geckos? exotic pet -5.226783820456167 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, exotic pet) -> exotic pet (2513ms)
What are geckos? land-based animal -5.279134843465684 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, land-based animal) -> land-based animal (2513ms)
What are geckos? small pet -5.330989259992146 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small pet) -> small pet (2513ms)
What are geckos? unusual pet -5.354942108386276 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, unusual pet) -> unusual pet (2513ms)
What are geckos? belly-heating animal -5.3648011674571325 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, belly-heating animal) -> belly-heating animal (2513ms)
What are geckos? cold-blooded animal -5.369130395072335 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, cold-blooded animal) -> cold-blooded animal (2513ms)
What are geckos? independent pet -5.482641371762131 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, independent pet) -> independent pet (2669ms)
What are geckos? young man -5.51670341596394 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, young man) -> young man (2669ms)
What are geckos? type of internet browser -5.582604888726742 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, type of internet browser) -> type of internet browser (2669ms)
What are geckos? symbol of good luck -5.606106410941914 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, symbol of good luck) -> symbol of good luck (2669ms)
What are geckos? housing medium size arboreal reptile -5.6076989291832735 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, housing medium size arboreal reptile) -> housing medium size arboreal reptile (2670ms)
What are geckos? small tree dwelling reptile -5.6859271930891 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small tree dwelling reptile) -> small tree dwelling reptile (2719ms)
What are geckos? companion and exotic animal -5.6859271930891 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, companion and exotic animal) -> companion and exotic animal (2670ms)
What are geckos? innovative theater and music company -5.712188473527705 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, innovative theater and music company) -> innovative theater and music company (2719ms)
What are geckos? interesting small lizard -5.743840083236876 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, interesting small lizard) -> interesting small lizard (2719ms)
What are geckos? quiet and relaxing resort -5.745090603648385 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, quiet and relaxing resort) -> quiet and relaxing resort (2719ms)
What are geckos? fowl and pet -5.752960842084011 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, fowl and pet) -> fowl and pet (2719ms)
What are geckos? family fun center offering entertainment and game -5.752960842084011 What 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)
What are geckos? koi fish reptile -5.752960842084011 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, koi fish reptile) -> koi fish reptile (2719ms)
What are geckos? optimum adhesion animal -5.788734038672018 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, optimum adhesion animal) -> optimum adhesion animal (2743ms)
What are geckos? bearded dragon lizard -5.788734038672018 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, bearded dragon lizard) -> bearded dragon lizard (2743ms)
What are geckos? stepper motor controller -5.788734038672018 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, stepper motor controller) -> stepper motor controller (2743ms)
What are geckos? digital marketing company -5.795739273940905 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko+, Instance Of, digital marketing company) -> digital marketing company (2743ms)
What are geckos? wood-paneled Western-style pub -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, wood-paneled Western-style pub) -> wood-paneled Western-style pub (2761ms)
What are geckos? self adhering, UV resistant textile -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, self adhering, UV resistant textile) -> self adhering, UV resistant textile (2761ms)
What are geckos? safe, family friendly center -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, safe, family friendly center) -> safe, family friendly center (2762ms)
What are geckos? crochet stitch/pattern -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, crochet stitch/pattern) -> crochet stitch/pattern (2761ms)
What are geckos? pad-bearing lizard -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, pad-bearing lizard) -> pad-bearing lizard (2743ms)
What are geckos? Broad-tailed Gecko -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, Broad-tailed Gecko) -> Broad-tailed Gecko (2761ms)
What are geckos? small and agile lizard -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small and agile lizard) -> small and agile lizard (2781ms)
What are geckos? common type of reptile -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, common type of reptile) -> common type of reptile (2762ms)
What are geckos? invertebrate and small vertebrate -5.800508194990915 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, invertebrate and small vertebrate) -> invertebrate and small vertebrate (2781ms)
What are geckos? type of reptile -5.8041821303760965 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, type of reptile) -> type of reptile (2781ms)
What are geckos? cheeky little character -5.805185103732358 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, cheeky little character) -> cheeky little character (2781ms)
What are geckos? symbol of transformation -5.809605558626739 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, symbol of transformation) -> symbol of transformation (2781ms)
What are geckos? smoke free zone -5.819579785200518 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKOS, Instance Of, smoke free zone) -> smoke free zone (2782ms)
What are geckos? small reptile and amphibian -5.821356319734325 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko's, Instance Of, small reptile and amphibian) -> small reptile and amphibian (2796ms)
What are geckos? exotic reptile -5.857031551345124 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, exotic reptile) -> exotic reptile (2797ms)
What are geckos? Movember sponsor -6.001065304633346 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, Movember sponsor) -> Movember sponsor (2796ms)
What are geckos? nocturnal lizard -6.019245802871927 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, nocturnal lizard) -> nocturnal lizard (2797ms)
What are geckos? wild animal -6.020650382710059 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, wild animal) -> wild animal (2797ms)
What are geckos? living animal -6.023042202524807 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko's, Instance Of, living animal) -> living animal (2797ms)
What are geckos? pet reptile -6.043000973422939 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, pet reptile) -> pet reptile (2831ms)
What are geckos? Australian company -6.053779468065857 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, Australian company) -> Australian company (2831ms)
What are geckos? quality brand -6.091675815228763 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, quality brand) -> quality brand (2831ms)
What are geckos? vertebrate pest -6.115687550456705 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, vertebrate pest) -> vertebrate pest (2831ms)
What are geckos? taxonomic group -6.128071355503611 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, taxonomic group) -> taxonomic group (2831ms)
What are geckos? animal product -6.131265236352489 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, animal product) -> animal product (2831ms)
What are geckos? good suggestion -6.1338295744736495 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, good suggestion) -> good suggestion (2849ms)
What are geckos? yang symbol -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, yang symbol) -> yang symbol (2849ms)
What are geckos? healthiest reptile -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, healthiest reptile) -> healthiest reptile (2849ms)
What are geckos? club animal -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, club animal) -> club animal (2869ms)
What are geckos? native reptile -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, native reptile) -> native reptile (2849ms)
What are geckos? trustworthy reptile -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, trustworthy reptile) -> trustworthy reptile (2849ms)
What are geckos? critter pattern -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, critter pattern) -> critter pattern (2849ms)
What are geckos? nasty creature -6.156702394021792 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, nasty creature) -> nasty creature (2869ms)
What are geckos? live creature -6.157351694877768 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, live creature) -> live creature (2869ms)
What are geckos? living creature -6.158940634240056 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, living creature) -> living creature (2869ms)
What are geckos? land animal -6.163249246503173 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, land animal) -> land animal (2869ms)
What are geckos? specialist program -6.166214914911113 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, specialist program) -> specialist program (2869ms)
What are geckos? social animal -6.166325971896797 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, social animal) -> social animal (2890ms)
What are geckos? adrenaline activity -6.16987536943657 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckoing, Instance Of, adrenaline activity) -> adrenaline activity (2890ms)
What are geckos? fine place -6.173368426457353 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, fine place) -> fine place (2890ms)
What are geckos? onomatopoeic word -6.174005711930979 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, onomatopoeic word) -> onomatopoeic word (2890ms)
What are geckos? friendly place -6.179971765469216 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, friendly place) -> friendly place (2890ms)
What are geckos? wildlife species -6.183362774398162 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, wildlife species) -> wildlife species (2890ms)
What are geckos? small reptile -6.185869460501503 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small reptile) -> small reptile (2952ms)
What are geckos? valuable tool -6.186940043126667 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, valuable tool) -> valuable tool (2952ms)
What are geckos? weekly club -6.187925844093683 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, weekly club) -> weekly club (2952ms)
What are geckos? friendly restaurant -6.189296764854203 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, friendly restaurant) -> friendly restaurant (2952ms)
What are geckos? developer tool -6.190786897181464 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, developer tool) -> developer tool (2953ms)
What are geckos? adventure activity -6.1921400992250515 What are geckos? -> $x: (geckos, instance of, $x) -> (geckoing, Instance Of, adventure activity) -> adventure activity (2952ms)
What are geckos? native lizard -6.2020267584033455 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, native lizard) -> native lizard (3056ms)
What are geckos? 5 letter word -6.206683201865486 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, 5 letter word) -> 5 letter word (3056ms)
What are geckos? fairly good pet -6.390704122582999 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, fairly good pet) -> fairly good pet (3056ms)
What are geckos? plant and animal -6.401378006320934 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, plant and animal) -> plant and animal (3057ms)
What are geckos? perfectly harmless pet -6.411267953602 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, perfectly harmless pet) -> perfectly harmless pet (3056ms)
What are geckos? insect and animal -6.552190803636119 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, insect and animal) -> insect and animal (3152ms)
What are geckos? animal and bird -6.558544479234089 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, animal and bird) -> animal and bird (3152ms)
What are geckos? lizard use -7.978013630932881 What 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)
What are geckos? name -8.110016904744288 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, name) -> name (3356ms)
What are geckos? predator -8.137852577020169 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, predator) -> predator (3356ms)
What are geckos? place -8.236771620443953 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckoes, Instance Of, place) -> place (3364ms)
What are geckos? amphibian -8.263026684132953 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, amphibian) -> amphibian (3364ms)
What are geckos? word -8.275607258608503 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, word) -> word (3364ms)
What are geckos? system -8.282009593877394 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, system) -> system (3364ms)
What are geckos? shape -8.32745147540515 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, shape) -> shape (3364ms)
What are geckos? brand -8.333763027989463 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, brand) -> brand (3364ms)
What are geckos? program -8.349208498256019 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, program) -> program (3371ms)
What are geckos? object -8.36916630418202 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, object) -> object (3371ms)
What are geckos? herps -8.395484360531205 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, herps) -> herps (3371ms)
What are geckos? client -8.403647083911464 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, client) -> client (3371ms)
What are geckos? enemy -8.405085084772999 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, enemy) -> enemy (3371ms)
What are geckos? case -8.405309074065126 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, case) -> case (3371ms)
What are geckos? creature -8.406947258676437 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, creature) -> creature (3378ms)
What are geckos? pattern -8.415219813342539 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, pattern) -> pattern (3378ms)
What are geckos? option -8.416294526576173 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, option) -> option (3378ms)
What are geckos? expert -8.426470825981593 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, expert) -> expert (3378ms)
What are geckos? term -8.431409548165028 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, term) -> term (3377ms)
What are geckos? device -8.431837665509029 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, device) -> device (3387ms)
What are geckos? Pets -8.551955602579117 What 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)
What are geckos? What Is Narrative Therapy? -9.726542992207118 What 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)
What are geckos? PNG -9.762810344801014 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, are, PNG) -> PNG (6273ms)
What are geckos? ChatZilla -9.852110599509224 What 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)
What are geckos? SpiderMonkey -9.891313137920468 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (SpiderMonkey, is, Gecko) -> SpiderMonkey (6274ms)
What are geckos? WebKit -10.039238041026316 What 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)
What are geckos? G is for Gecko -10.185999996507357 What 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)
What are geckos? KompoZer -10.207334288833328 What 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)
What are geckos? Amit Lahav -10.314062642314948 What 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)
What are geckos? Trouble Is My Beeswax -10.32213540518891 What 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)
What are geckos? bug -10.339478426707718 What 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)
What are geckos? The poison -10.34391789223317 What are geckos? -> $x: (geckos, instance of, $x) -> $x: ($x, drug, geckos) -> (The poison, drugged, the gecko) -> The poison (3416ms)
What are geckos? Tech Briefcase -10.360925154000606 What 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)
What are geckos? thinking Safari -10.36336559008232 What 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)
What are geckos? a new style -10.372923149189166 What 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)
What are geckos? a shame -10.464389882409888 What 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)
What are geckos? Evan Wells -10.470991677785214 What 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)
What are geckos? Itaewon -10.499032726737195 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Itaewon, is, Gecko) -> Itaewon (6358ms)
What are geckos? freeze-dried crickets -10.518206196294198 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a leopard gecko, eat, freeze-dried crickets) -> freeze-dried crickets (3862ms)
What are geckos? great ? -10.521464588578517 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, great ?) -> great ? (6358ms)
What are geckos? Wendelin Van Draanen -10.526081061221916 What 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)
What are geckos? Nvu -10.53859038572337 What 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)
What are geckos? a homely -10.550092501937193 What 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)
What are geckos? a no-go -10.553260553246226 What 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)
What are geckos? Mozilla -10.55814878976841 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, Mozilla) -> Mozilla (6416ms)
What are geckos? pre-Mozilla foundation -10.584207446200669 What 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)
What are geckos? Supported browsers -10.599575812886112 What 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)
What are geckos? cross-platform -10.608047482551127 What 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)
What are geckos? Firefox -10.613094248142911 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Firefox, is, Gecko) -> Firefox (6435ms)
What are geckos? Webkit -10.618860526833865 What 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)
What are geckos? a cross-platform engine -10.638156246346453 What 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)
What are geckos? a Mozilla project -10.662310489994073 What 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)
What are geckos? the 'other creatures -10.668369881552723 What 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)
What are geckos? carnivorous , nocturnal reptiles -10.673516616006708 What 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)
What are geckos? a world-class rendering engine -10.674465423237354 What 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)
What are geckos? non-citrus fruits -10.677903193419514 What 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)
What are geckos? incomplete and way -10.688897046490162 What 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)
What are geckos? n?t Android -10.703574138715261 What 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)
What are geckos? Roadkill Press -10.714333523826804 What 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)
What are geckos? Gabriela Gecko -10.714333523826804 What 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)
What are geckos? Heinemann Library -10.714333523826804 What 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)
What are geckos? Crave Entertainment -10.714333523826804 What 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)
What are geckos? Microsoft Windows -10.714333523826804 What 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)
What are geckos? Gecko Blaster -10.714333523826804 What 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)
What are geckos? Crystal Dynamics -10.714333523826804 What 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)
What are geckos? Realtime Associates -10.714333523826804 What 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)
What are geckos? Firebase Gecko -10.714333523826804 What 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)
What are geckos? Midway Games -10.714333523826804 What 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)
What are geckos? Eidos Interactive -10.714333523826804 What 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)
What are geckos? Gecko Tails -10.714333523826804 What 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)
What are geckos? Gratuitous Games -10.714333523826804 What 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)
What are geckos? Phoenix Games -10.714333523826804 What 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)
What are geckos? Barking Geckos -10.714333523826804 What 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)
What are geckos? Jeffrey Zwelling -10.714333523826804 What 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)
What are geckos? Albino Gecko -10.714333523826804 What 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)
What are geckos? XPCOM Components -10.721776668593737 What 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)
What are geckos? more Netscape marketing hoopla -10.735475022745149 What 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)
What are geckos? an investment and holding company -10.736677223738823 What 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)
What are geckos? a Chinese traditional medicine -10.739011821051829 What 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)
What are geckos? an Australian based company -10.764653595599695 What 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)
What are geckos? interesting little creatures -10.767868403537426 What 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)
What are geckos? a girl -10.771141948135265 What 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)
What are geckos? Moderate Charts -10.777957514718144 What 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)
What are geckos? a C GTK widget -10.778835903514254 What 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)
What are geckos? Chromium -10.784330761009697 What 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)
What are geckos? Mozilla?s new operating system -10.792063690247458 What 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)
What are geckos? a great rendering engine -10.792063690247458 What 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)
What are geckos? small , harmless lizards -10.79376754762469 What 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)
What are geckos? Leopard and Fat-Tailed Geckos -10.798609335574342 What 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)
What are geckos? Language of the geckos and other stories -10.798609335574342 What 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)
What are geckos? The Possum Always Rings Twice -10.798609335574342 What 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)
What are geckos? Farewell, My Lunchbag (Chet Gecko Mysteries -10.798609335574342 What 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)
What are geckos? Square Enix Europe -10.798609335574342 What 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)
What are geckos? The Gecko: An Owner's Guide to a Happy Healthy Pet -10.798609335574342 What 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)
What are geckos? Return of the dead gecko -10.798609335574342 What 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)
What are geckos? Gex: Enter the Gecko -10.798609335574342 What 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)
What are geckos? Geckos and Moths -10.798609335574342 What 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)
What are geckos? The Ghost Geckos of Madagascar -10.798609335574342 What 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)
What are geckos? Geckos and their Relatives (Dragons Series) -10.798609335574342 What 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)
What are geckos? Go To Sleep, Gecko! -10.798609335574342 What 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)
What are geckos? From gecko feet to sticky tape -10.798609335574342 What 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)
What are geckos? Right from the Gecko (Reigning Cats & Dogs Mysteries) -10.798609335574342 What 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)
What are geckos? Go To Sleep, Gecko!: A Balinese Folktale -10.798609335574342 What 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)
What are geckos? Geckos and their Relatives -10.798609335574342 What 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)
What are geckos? ny the Tokay gecko -10.798609335574342 What 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)
What are geckos? To ny the Tokay gecko -10.798609335574342 What 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)
What are geckos? Murder, my tweet -10.798609335574342 What 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)
What are geckos? Remarks on some geckos from Southwest Asia -10.798609335574342 What 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)
What are geckos? The Gecko and Sticky in-- the villain's lair -10.798609335574342 What 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)
What are geckos? The Guide to Owning a Leopard Gecko -10.798609335574342 What 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)
What are geckos? Geckos: facts & advice on care and breeding -10.798609335574342 What 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)
What are geckos? Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes -10.798609335574342 What 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)
What are geckos? Baby Gecko's colors -10.798609335574342 What 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)
What are geckos? Meet The Gecko -10.798609335574342 What 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)
What are geckos? Geckos: everything about selection, care, nutrition, diseases, breeding, and behavior -10.798609335574342 What 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)
What are geckos? PlayStation -10.798609335574342 What 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)
What are geckos? Dwarf geckos, rattlesnakes, and other reptiles -10.798609335574342 What 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)
What are geckos? Gecko Hide and Seek -10.798609335574342 What 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)
What are geckos? The Gecko's Foot: Bio-inspiration -10.798609335574342 What 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)
What are geckos? Glen A. Schofield -10.798609335574342 What 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)
What are geckos? How the Gecko Lost His Tail -10.798609335574342 What 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)
What are geckos? Breeding and Keeping Geckos -10.798609335574342 What 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)
What are geckos? Geckoes: Biology, Husbandry, and Reproduction -10.798609335574342 What 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)
What are geckos? Big Nap (Chet Gecko Mysteries -10.798609335574342 What 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)
What are geckos? Big Nap (Chet Gecko Mysteries (Paperback)) -10.798609335574342 What 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)
What are geckos? Give My Regrets to Broadway -10.798609335574342 What 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)
What are geckos? Crested Geckos and Relatives -10.798609335574342 What 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)
What are geckos? Chet Gecko-Private Eye -10.798609335574342 What 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)
What are geckos? Mystery of Mr. Nice -10.798609335574342 What 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)
What are geckos? Moki the Gecko's best Christmas ever -10.798609335574342 What 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)
What are geckos? Geckos (Keeping Unusual Pets) -10.798609335574342 What 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)
What are geckos? Meet the Gecko (Shredderman Series) -10.798609335574342 What 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)
What are geckos? Gecko (Caring for Your Pet) -10.798609335574342 What 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)
What are geckos? Right from the Gecko (Wheeler Large Print Book Series) -10.798609335574342 What 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)
What are geckos? Right from the Gecko -10.798609335574342 What 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)
What are geckos? Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)) -10.798609335574342 What 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)
What are geckos? Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide) -10.798609335574342 What 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)
What are geckos? Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides) -10.798609335574342 What 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)
What are geckos? Leopard Geckos For Dummies -10.798609335574342 What 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)
What are geckos? Meet the Gecko (Shredderman (Paperback)) -10.798609335574342 What 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)
What are geckos? Game Boy Color -10.798609335574342 What 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)
What are geckos? Surf gecko to the rescue! -10.798609335574342 What 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)
What are geckos? How to Recycle a Dead Gecko -10.798609335574342 What 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)
What are geckos? Gabriela Gecko: The Story of Belonging -10.798609335574342 What 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)
What are geckos? an entirely new rendering engine -10.81347722560115 What 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)
What are geckos? a feeding -10.82089643577265 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (these geckos, will eat at, a feeding) -> a feeding (3862ms)
What are geckos? a novel instrument concept -10.836273590027531 What 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)
What are geckos? each code engine release -10.861841074672679 What 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)
What are geckos? a bit -10.87093864004476 What 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)
What are geckos? the Leopard Gecko -10.872463388420236 What 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)
What are geckos? a fly today -10.881507940247962 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (my tiny gecko, eat, a fly today) -> a fly today (3863ms)
What are geckos? 3-9 grams -10.907405272666152 What 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)
What are geckos? a cricket -10.914496190064993 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a gecko, eat, a cricket) -> a cricket (3863ms)
What are geckos? DOMContentLoaded event -10.923274014938823 What 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)
What are geckos? Papua New Guinea -10.945638529398916 What 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)
What are geckos? fruit baby food -10.946624620344117 What 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)
What are geckos? Finally the above implementation -10.951145060633921 What 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)
What are geckos? five mosquitoes or termites -10.955680811063997 What 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)
What are geckos? Jan -10.962795504779468 What 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)
What are geckos? the Mozilla redering engine -10.96536649106107 What 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)
What are geckos? the DDT-poisoned bugs -10.970981814637671 What 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)
What are geckos? a powerful Lung tonic -10.986587228198863 What 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)
What are geckos? nature -10.998079796936494 What are geckos? -> $x: (geckos, instance of, $x) -> $x: (geckos, be a by, $x) -> (( Apparently geckos, are a pretty funny lot by, nature) -> nature (3415ms)
What are geckos? SVG images -11.002820756118066 What 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)
What are geckos? a GNOME Web browser -11.004489876574342 What 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)
What are geckos? a very lightweight and fast CMS -11.008026674881023 What 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)
What are geckos? the Mozilla Firefox rendering engine -11.046146469497042 What 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)
What are geckos? Neptune -11.053450051029602 What 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)
What are geckos? TEC Edmonton -11.099178588343454 What 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)
What are geckos? overripe fruit and crickets -11.099869659852613 What 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)
What are geckos? easier cleaning -11.116382968143068 What 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)
What are geckos? a childish brat -11.119232637686665 What 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)
What are geckos? high volumes -11.14491671864266 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Leopard geckos, can eat, high volumes) -> high volumes (3875ms)
What are geckos? sized insects -11.155527113562703 What 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)
What are geckos? a powerful substance -11.159970307287312 What 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)
What are geckos? SeaMonkey 1.0.7 -11.168170449453815 What 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)
What are geckos? a little bigger -11.219211586695206 What 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)
What are geckos? a protected species -11.231590354417444 What 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)
What are geckos? Ian Oeschger -11.317249094650919 What 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)
What are geckos? Artist -11.322960954918788 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Artist, is, Gecko) -> Artist (6662ms)
What are geckos? a 22' Glacier Bay Catamaran -11.345798577882599 What 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)
What are geckos? a great job -11.410422155905524 What 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)
What are geckos? a 25 kHz PWM frequency -11.438703930277779 What 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)
What are geckos? Firefox 2.0 -11.44489328778775 What 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)
What are geckos? small geckos -11.45261753889639 What 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)
What are geckos? scientific study -11.485022384168468 What 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)
What are geckos? The MIT2 chip -11.49880959303526 What 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)
What are geckos? crickets and mealworms -11.55677201806567 What 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)
What are geckos? enough the insects -11.570247890132453 What 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)
What are geckos? Mary Richardson -11.5977632935348 What 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)
What are geckos? a solitary pet -11.604061507455832 What 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)
What are geckos? just cute little lizards -11.623409025402443 What 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)
What are geckos? 10 holes -11.678736692399646 What 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)
What are geckos? a character -11.692218322160414 What 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)
What are geckos? SVG. -11.700674267069253 What 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)
What are geckos? beetles and fishmoths -11.722116983162529 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (lizards and geckos, eat, beetles and fishmoths) -> beetles and fishmoths (4142ms)
What are geckos? a new mobile operating system -11.72706856622126 What 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)
What are geckos? ?Shock Shedding? -11.7425119479913 What 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)
What are geckos? multi-range selections -11.747092087770767 What 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)
What are geckos? one of the most popular lizards -11.769580943347174 What 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)
What are geckos? 10 gallon -11.781795567092317 What 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)
What are geckos? Loungin? Lizard Chair -11.786081386060136 What 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)
What are geckos? Cool ? Beccary February 9th -11.795708620343307 What 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)
What are geckos? insects , baby mice and baby rats -11.821296137490432 What 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)
What are geckos? a new interface -11.839563352417041 What 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)
What are geckos? prime time -11.855617044885237 What 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)
What are geckos? Texas -11.864478371442965 What 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)
What are geckos? the car -11.865540378687676 What 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)
What are geckos? JSCSSP -11.868765898022119 What 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)
What are geckos? a book blog tour beginning -11.868997002194998 What 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)
What are geckos? Viagra -11.894068893737435 What 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)
What are geckos? the core -11.899163133464015 What 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)
What are geckos? XML -11.900380532013653 What 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)
What are geckos? fun -11.93010319844415 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, fun) -> fun (6787ms)
What are geckos? n?t support counters -11.961684315413045 What 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)
What are geckos? small lizards -11.984093002346107 What 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)
What are geckos? so great -11.985546198261464 What 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)
What are geckos? independent travelers -12.003268544949588 What 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)
What are geckos? responseXML -12.008611342523665 What 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)
What are geckos? Ron Fearing?s work -12.016416472190556 What 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)
What are geckos? XPCOM and P/Invoke -12.016931976594 What 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)
What are geckos? a cave -12.023191850875296 What 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)
What are geckos? Google?s Android or Apple?s iOS -12.031143685245686 What 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)
What are geckos? Anti-Tumor Effects -12.035137303472627 What 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)
What are geckos? the Ca -12.052821242303738 What 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)
What are geckos? a new division -12.073157793040433 What 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)
What are geckos? the HTML -12.116910872900249 What 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)
What are geckos? a shower -12.122221992653191 What 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)
What are geckos? a day-night light cycle -12.125325475834966 What 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)
What are geckos? much sophistication and support -12.129746460542744 What 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)
What are geckos? good standards compliance -12.13035185751226 What 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)
What are geckos? Geico -12.13357781189588 What 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)
What are geckos? an adhesive-less tape -12.139408048232141 What 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)
What are geckos? setae--microscopic hairs -12.141176473736628 What 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)
What are geckos? a totally different graphical user interface -12.141732976471978 What 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)
What are geckos? an impression -12.14662434573648 What 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)
What are geckos? one fatal flaw -12.155323614261059 What 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)
What are geckos? a greater risk -12.16213789192184 What 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)
What are geckos? famous for their ability -12.162560443844146 What 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)
What are geckos? unique dry adhesive fibers -12.165934009181102 What 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)
What are geckos? the crowd -12.170146453378717 What 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)
What are geckos? harmless to humans -12.171057593517064 What 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)
What are geckos? a look -12.17527386184882 What 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)
What are geckos? remote administration and management -12.18803893271999 What 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)
What are geckos? the ADD show -12.192524485555026 What 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)
What are geckos? the web -12.195733889044924 What 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)
What are geckos? a variety -12.19737878538771 What 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)
What are geckos? Gecko -12.201661060719328 What 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)
What are geckos? as impenetrable and bloated -12.202166278960085 What 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)
What are geckos? superb grasping abilities -12.20639288935017 What 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)
What are geckos? the WebServer location -12.224355617612861 What 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)
What are geckos? a gas geyser -12.224355617612861 What 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)
What are geckos? a really buggy test implementation -12.23103696243322 What 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)
What are geckos? more de-facto quirks -12.235457947140999 What 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)
What are geckos? Ginseng -12.241828809590327 What 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)
What are geckos? Cretaceogekko -12.245599523816267 What 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)
What are geckos? the week -12.249370048822879 What 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)
What are geckos? new and used books -12.255302563269602 What 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)
What are geckos? a rapid release cycle -12.263752280892154 What 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)
What are geckos? a friend -12.27165139172113 What 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)
What are geckos? Liz-ard Minnelli -12.280362248818234 What 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)
What are geckos? Elephant -12.285659822869402 What 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)
What are geckos? available for adoption -12.297288895961426 What 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)
What are geckos? GEICO -12.298781831208425 What 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)
What are geckos? a year -12.316745530604596 What 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)
What are geckos? a component -12.324671293531583 What 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)
What are geckos? 2 % or lower -12.348936605084909 What 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)
What are geckos? a popular choice in pet shops -12.354840395237158 What 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)
What are geckos? Russian scientists -12.361645049956243 What 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)
What are geckos? a week -12.370681586201322 What 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)
What are geckos? The exception -12.395682784345816 What 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)
What are geckos? 20 A current limit -12.399400430502208 What 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)
What are geckos? an app store -12.404970751535144 What 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)
What are geckos? traditional 3-D games -12.412663384625542 What 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)
What are geckos? sensitive skin -12.426789911187601 What 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)
What are geckos? a 6.7 % market share -12.439189345574503 What 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)
What are geckos? vertical pupils -12.440937104414328 What 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)
What are geckos? leopard geckos -12.444896698049671 What 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)
What are geckos? the bugs -12.515296178030297 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the geckos, eat, the bugs) -> the bugs (4142ms)
What are geckos? a lot -12.709871457589141 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Ring Tailed Gecko, eats, a lot) -> a lot (4142ms)
What are geckos? cockroaches -12.760557660194308 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, eat, cockroaches) -> cockroaches (4157ms)
What are geckos? moths -12.78443095653539 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, eat, moths) -> moths (4157ms)
What are geckos? the flies , mosquitoes and spiders -12.790239555483765 What 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)
What are geckos? fruit -12.86842977138776 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (My geckos, eat, fruit) -> fruit (4159ms)
What are geckos? cats -12.871402669437984 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, were eaten by, cats) -> cats (4157ms)
What are geckos? insects -12.911755484766736 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Leopard Geckos, eat, insects) -> insects (4157ms)
What are geckos? crickets -12.933860408305625 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a leopard gecko, eat dried, crickets) -> crickets (4171ms)
What are geckos? the moths -12.938316083458822 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (any geckos, loved to eat, the moths) -> the moths (4171ms)
What are geckos? mosquitoes -12.940934004918986 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Geckos, eat, mosquitoes) -> mosquitoes (4171ms)
What are geckos? bugs -12.942637809593924 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The house gecko, eats, bugs) -> bugs (4171ms)
What are geckos? the letter -12.993955943730487 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the geckos, eat just, the letter) -> the letter (4171ms)
What are geckos? the skin -13.000701909380396 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Some geckos, eat, the skin) -> the skin (4184ms)
What are geckos? the flies -13.012524121664988 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (gecko lizards, became sick from eating, the flies) -> the flies (4184ms)
What are geckos? the roaches -13.02938844222226 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the gecko, eats, the roaches) -> the roaches (4184ms)
What are geckos? the supplement -13.036462038835623 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the gecko, eats, the supplement) -> the supplement (4184ms)
What was the percentage of turnout for the election? 3,935 voters -15.05950333661968 What 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)
Whom did he marry? Chartered Accountant -9.972841775612254 Whom 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)
Whom did he marry? Member of Parliament -10.316728396187452 Whom 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)
Whom did he marry? talented person -10.414033940380115 Whom 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)
Whom did he marry? aggressive person -10.457466290426146 Whom 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)
Whom did he marry? excellent candidate -10.462854687562421 Whom 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)
Whom did he marry? outstanding rider -10.462964260225597 Whom 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)
Whom did he marry? successful artist -10.463805090317969 Whom 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)
Whom did he marry? great teacher -10.479880661005673 Whom 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)
Whom did he marry? tall slender young man -11.063590810886854 Whom 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)
Whom did he marry? MGMT overexpressor -11.063590810886854 Whom 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)
Whom did he marry? member of First Batist -11.063590810886854 Whom 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)
Whom did he marry? owner of a small shop -11.063590810886854 Whom 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)
Whom did he marry? good man -11.098836229064789 Whom 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)
Whom did he marry? horsecoat. -11.108484766321995 Whom 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)
Whom did he marry? enterprising, public spirited citizen -11.108484766321995 Whom 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)
Whom did he marry? priest of the Buddhist and very hottest music fan -11.108484766321995 Whom 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)
Whom did he marry? sana-rail operator -11.108484766321995 Whom 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)
Whom did he marry? tall rich owner of thorn field -11.108484766321995 Whom 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)
Whom did he marry? respectable old man -11.108484766321995 Whom 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)
Whom did he marry? receiver of Australia Postgraduate Award -11.108484766321995 Whom 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)
Whom did he marry? employee of Asbury Automotive Group -11.108484766321995 Whom 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)
Whom did he marry? cousin of David W. Haas -11.108484766321995 Whom 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)
Whom did he marry? creepy little man -11.120235527429582 Whom 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)
Whom did he marry? miserable man -11.121387562712119 Whom 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)
Whom did he marry? hefty guy -11.122193987409895 Whom 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)
Whom did he marry? wise man -11.132179556888428 Whom 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)
Whom did he marry? great man -11.142191661542864 Whom 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)
Whom did he marry? guy -11.145456367005778 Whom 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)
Whom did he marry? Chemical Engineer having 36 year of experience -11.527310012582484 Whom 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)
Whom did he marry? private company -11.65237466800248 Whom 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)
Whom did he marry? French ambassador -11.671763010813887 Whom 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)
Whom did he marry? rescue -11.811242256058364 Whom 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)
Whom did he marry? correct alternative -11.822810765641416 Whom 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)
Whom did he marry? farmer -11.845620049119656 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. HeIvie, Instance Of, farmer) -> farmer (4692ms)
Whom did he marry? diplomat -11.850674702897054 Whom 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)
Whom did he marry? stowaway -11.862280902203976 Whom 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)
Whom did he marry? regular -11.875698232679838 Whom 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)
Whom did he marry? graduate -11.876859173897437 Whom 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)
Whom did he marry? speaker -11.880146429786063 Whom 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)
Whom did he marry? lecturer -11.891943994242158 Whom 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)
Whom did he marry? expert -11.892883355893519 Whom 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)
Whom did he marry? leader -11.896520674108736 Whom 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)
Whom did he marry? great person -11.990848189271421 Whom 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)
Whom did he marry? famous musician -12.116671681761526 Whom 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)
Whom did he marry? frequent lecturer -12.168164466858808 Whom 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)
Whom did he marry? big girl -12.629782599064821 Whom 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)
Whom did he marry? respected member of FUDZone -12.677511047091992 Whom 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)
Whom did he marry? one man fast break -12.677511047091992 Whom 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)
Whom did he marry? big hit -12.705617687861501 Whom 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)
Whom did he marry? private, non-profit, family-centered residence -12.756356981455038 Whom 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)
Whom did he marry? franchise of Joy Education Organization -12.801250936890181 Whom 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)
Whom did he marry? medical-legal partnership -12.824752459105353 Whom 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)
Whom did he marry? web-based resource -12.847936392685575 Whom 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)
Whom did he marry? liar -13.403529282583031 Whom 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)
Whom did he marry? colonel -13.403553472995135 Whom did he marry? -> whom do [ he ] marry ? -> who be he dad ? -> $x: (he dad, instance of, $x) -> (Dad..he, Instance Of, colonel) -> colonel (4946ms)
Whom did he marry? program -13.597106299784821 Whom 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)
Where was Rachel Carson home? a captivating herd -8.906216874508598 Where 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)
Where was Rachel Carson home? Middle school -9.159217287632666 Where 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)
Where was Rachel Carson home? Lake Washington School District -9.37363055630611 Where 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)
Where was Rachel Carson home? Fairfax County Public Schools -9.45159901764191 Where 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)
Where was Rachel Carson home? San Jose Unified School District -9.45159901764191 Where 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)
Where was Rachel Carson home? Montgomery County Public Schools -9.45159901764191 Where 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)
Where was Rachel Carson home? New York City Public Schools -9.618674291932905 Where 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)
Where was Rachel Carson home? scores -9.71003089900296 Where 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)
Where is the Holland Tunnel? Authorities Concept Scheme -3.768745754164889 Where 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)
Where is the Holland Tunnel? Geographic Names Concept Scheme -3.7923076518213117 Where 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)
Where is the Holland Tunnel? Manhattan -3.957557241095569 Where 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)
Where is the Holland Tunnel? movies -3.993202696334089 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (The Holland Tunnel, has been featured in, movies) -> movies (1682ms)
Where is the Holland Tunnel? the exact change lane -4.915962573778417 Where 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)
Where is the Holland Tunnel? the 1920 's -5.4600095697537725 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (the Holland Tunnel, was built in, the 1920 's) -> the 1920 's (1682ms)
Where is the Holland Tunnel? traffic right -5.478657234671182 Where 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)
Where is the Holland Tunnel? numerous wrecks -5.616495979487972 Where 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)
Where is the Holland Tunnel? left lane -5.9658408650248695 Where 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)
Where is the Holland Tunnel? 1927 -6.06903042769849 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (The Holland Tunnel, was completed in, 1927) -> 1927 (1682ms)
Where is the Holland Tunnel? New York City -6.357554575167733 Where 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)
Where is the Holland Tunnel? Old Town -6.60003776965339 Where 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)
Where is the Holland Tunnel? the right lane -7.3170804083610825 Where 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)
Where is the Holland Tunnel? the river -7.524900740754838 Where 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)
Where is the Holland Tunnel? November 1927 -8.067384135003673 Where 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)
Where is the Holland Tunnel? 1922 -8.674569946968907 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, began in, 1922) -> 1922 (1888ms)
Where is the Holland Tunnel? 1996 -8.696739438635053 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, collapsed in, 1996) -> 1996 (2076ms)
Where is the Holland Tunnel? Hoboken -9.546753022957342 Where 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)
Where is the Holland Tunnel? Holland Tunnel -9.623841099428164 Where 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)
Where is the Holland Tunnel? Items -10.538415566510027 Where 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)
Where is the Holland Tunnel? HARD. -10.578871431626895 Where 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)
Where is the Holland Tunnel? Rory -10.62097504039713 Where 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)
Where is the Holland Tunnel? United States of America -10.642927117335198 Where 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)
Where is the Holland Tunnel? King -10.863747210948986 Where 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)
Where is the Holland Tunnel? Desbrosses St. -10.920893029678243 Where 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)
Where is the Holland Tunnel? Canal Street -10.947874931511704 Where 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)
Where is the Holland Tunnel? a bar -11.158514170538336 Where 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)
Where is the Holland Tunnel? Nude Anna Nicole -11.197652140822322 Where 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)
Where is the Holland Tunnel? anyone?s list -11.210681853332868 Where 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)
Where is the Holland Tunnel? such tunnels -11.227034785748227 Where 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)
Where is the Holland Tunnel? new LED lighting -11.247371336484923 Where 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)
Where is the Holland Tunnel? Two cars -11.269038893637372 Where 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)
Where is the Holland Tunnel? every five years -11.297507217953667 Where 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)
Where is the Holland Tunnel? bike lanes and cyclists -11.348169903767307 Where 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)
Where is the Holland Tunnel? six-axle trucks -11.424896261609973 Where 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)
Where is the Holland Tunnel? a designated National Historic Landmark -11.426600118987205 Where 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)
Where is the Holland Tunnel? Officer Donald Foreman -11.47257839156947 Where 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)
Where is the Holland Tunnel? an HOV restriction -11.49386369683452 Where 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)
Where is the Holland Tunnel? Slated for destruction -11.507126650957852 Where 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)
Where is the Holland Tunnel? Sheraton New York -11.580824967359439 Where 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)
Where is the Holland Tunnel? flooding -11.625760530932274 Where 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)
Where is the Holland Tunnel? a clusterfk -11.626809128594445 Where 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)
Where is the Holland Tunnel? only cars and buses -11.636654612135034 Where 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)
Where is the Holland Tunnel? Muslims -11.709152081438324 Where 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)
Where is the Holland Tunnel? Hudson River -11.947537516939406 Where 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)
Where is the Holland Tunnel? fire -11.998798125159707 Where 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)
Where is the Holland Tunnel? protests -12.001389679605342 Where 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)
Where is the Holland Tunnel? traffic -12.003219109867485 Where 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)
Where is the Holland Tunnel? a bomb -12.147311559012005 Where 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)
Where is the Holland Tunnel? Holland Tunnel fire -12.401294583558045 Where 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)
Where is the Holland Tunnel? 10 minutes -12.450812811071629 Where 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)
Where is the Holland Tunnel? The billboard -12.68812362812344 Where 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)
Where is the Holland Tunnel? 10 minute waits -12.6971522644943 Where 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)
Where is the Holland Tunnel? the Village -12.72839981687053 Where 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)
Where is the Holland Tunnel? The store -12.866304180862793 Where 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)
Where is the Holland Tunnel? the wait -12.889949419435883 Where 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)
Where is the Holland Tunnel? the group -12.891951086553158 Where 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)
Where is the Holland Tunnel? The basic trajectory -13.007845548888325 Where 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)
Where is the Holland Tunnel? still -13.013891453216823 Where 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)
Where is the Holland Tunnel? the verge -13.044097665653938 Where 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)
Where is the Holland Tunnel? the afternoon -13.0632521675472 Where 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)
Where is the Holland Tunnel? the chief engineer -13.07759329373419 Where 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)
Where is the Holland Tunnel? The theatre -13.109399023026558 Where 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)
Where is the Holland Tunnel? the first roadway tunnels -13.124261819757287 Where 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)
Where is the Holland Tunnel? the canine -13.145482556895079 Where 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)
Where is the Holland Tunnel? the first Hudson River vehicular tunnel -13.180785919132342 Where 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)
Where is the Holland Tunnel? Hudson River crossings -13.182739002493665 Where 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)
Where is the Holland Tunnel? the elevated segment -13.240330325359889 Where 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)
Where is the Holland Tunnel? Newport area -13.254711748016073 Where 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)
Where is the Holland Tunnel? street -13.522860177633358 Where 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)
Where is the Holland Tunnel? got rides -13.73172055461241 Where 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)
Where is the Holland Tunnel? President -13.772751161715538 Where 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)
Where is the Holland Tunnel? New York city -13.971450503092125 Where 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)
Where is the Holland Tunnel? president -14.14778477756309 Where 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)
Where is the Holland Tunnel? the left -14.317934802672257 Where 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)
Where is the Holland Tunnel? end -14.751748416659526 Where 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)
Where is the Holland Tunnel? The other lanes -14.793540038436973 Where 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)
Where is the Holland Tunnel? the The Squid -15.142258654344008 Where 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)
Where is the Holland Tunnel? Hudson St.* Turn -15.220016354112266 Where 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)
Where is the Holland Tunnel? The second I -15.295986040650522 Where 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)
Where is the Holland Tunnel? the second light -15.443284636346673 Where 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)
Where is the Holland Tunnel? route -17.32578026582607 Where 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)
Where is the Holland Tunnel? November 13 , 1927 -17.665995147494883 Where 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)
When was Queen Victoria born? 1819 2.6443534116418728 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, 1819) -> 1819 (2192ms)
When was Queen Victoria born? the 24 May 0.11262567577522065 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, the 24 May) -> the 24 May (3949ms)
When was Queen Victoria born? May 24 , 1819 0.07046697815245917 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, May 24 , 1819) -> May 24 , 1819 (4004ms)
When was Queen Victoria born? 1840 -0.10245202055511093 When 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)
When was Queen Victoria born? 24 May 1819 -0.4943031162645055 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, 24 May 1819) -> 24 May 1819 (4070ms)
When was Queen Victoria born? 1857. -0.6248494673610023 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, 1857.) -> 1857. (4071ms)
When was Queen Victoria born? 1870 -1.763500344744151 When 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)
When was Queen Victoria born? the Palace -2.022776551932055 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, the Palace) -> the Palace (4152ms)
When was Queen Victoria born? London -2.163275363635408 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, London) -> London (4152ms)
When was Queen Victoria born? England -2.1802003324421015 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, England) -> England (4183ms)
When was Queen Victoria born? May 24th -2.2970188467090122 When 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)
When was Queen Victoria born? Kensington Palace -2.3359170508130473 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, Kensington Palace) -> Kensington Palace (4183ms)
When was Queen Victoria born? 1837 -2.5626152188199067 When 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)
When was Queen Victoria born? Kensington -2.784023949076143 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, Kensington) -> Kensington (4229ms)
When was Queen Victoria born? May -3.0932167325390694 When 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)
When was Queen Victoria born? 12 October 1888 -3.1139920269375247 When 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)
When was Queen Victoria born? 1901 -4.035159720847911 When 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)
When was Queen Victoria born? Princess Alexandria Victoria -4.772688864365888 When 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)
When was Queen Victoria born? Texas -4.891181014354308 When 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)
When was Queen Victoria born? friends -4.8998110164858755 When 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)
When was Queen Victoria born? Halifax -4.908457829335622 When 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)
When was Queen Victoria born? a white gown -4.914026330327347 When 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)
When was Queen Victoria born? a white wedding gown -4.931556628760145 When 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)
When was Queen Victoria born? white dress -5.155959481773838 When 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)
When was Queen Victoria born? 1837 to 1901 -5.342642420657202 When 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)
When was Queen Victoria born? a love match -5.35633944662052 When 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)
When was Queen Victoria born? Alexandrina Victoria -5.377625812296151 When 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)
When was Queen Victoria born? a white dress -5.4231744882757855 When 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)
When was Queen Victoria born? nearby Claremont -5.597806363879668 When 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)
When was Queen Victoria born? 1837-1901 -5.796260435656624 When 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)
When was Queen Victoria born? a visit -5.896384616724136 When 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)
When was Queen Victoria born? the Isle -5.976419313304466 When 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)
When was Queen Victoria born? the royal residence -6.144746533353982 When 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)
When was Queen Victoria born? the royal home -6.144746533353982 When 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)
When was Queen Victoria born? white -6.421460440287478 When 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)
When was Queen Victoria born? Windsor -6.485492296787633 When 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)
When was Queen Victoria born? Scotland -6.766537908948896 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, vacation in, $x) -> (Queen Victoria, vacationed in, Scotland) -> Scotland (4818ms)
When was Queen Victoria born? the palace -6.8217455452102005 When 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)
When was Queen Victoria born? the white , opulent gown -8.025102668949211 When 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)
When was Queen Victoria born? Balmoral -8.615498142440323 When 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)
What is Jay-Z's real name? Shawn Carter -2.5835082838357453 What 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)
What is Jay-Z's real name? the Carter Music Group -9.870359136714736 What 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)
Why is a ladybug helpful? Super Bowl Sunday -14.01576366547775 Why 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)
Where was Super Bowl XXXIV held? the Ravens -10.545371226794668 Where 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)
How many official languages does Switzerland have? German Language 1.7368667100524577 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, German Language) -> German Language (1078ms)
How many official languages does Switzerland have? Italian Language 1.7368667100524577 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, Italian Language) -> Italian Language (1078ms)
How many official languages does Switzerland have? French Language 1.7368667100524577 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, French Language) -> French Language (1078ms)
How many official languages does Switzerland have? Romansh language 1.6617116571520558 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, Romansh language) -> Romansh language (1078ms)
How many official languages does Switzerland have? English Language 1.1183668965713673 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Pocket Statistical Data on Switzerland 2007, Official Language, English Language) -> English Language (1685ms)
How many official languages does Switzerland have? Urdu Language -0.5525564467175519 How 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)
How many official languages does Switzerland have? Switzerland -0.8518224915068789 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland French, is an official language in, Switzerland) -> Switzerland (2753ms)
How many official languages does Switzerland have? Napoletano-Calabrese Language -1.6051259324652787 How 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)
How many official languages does Switzerland have? Swiss German Language -1.6601036936635978 How 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)
How many official languages does Switzerland have? Serbo-Croatian -1.7480681115809082 How 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)
How many official languages does Switzerland have? Swiss Standard German -1.7838036563598159 How 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)
How many official languages does Switzerland have? Turkish Language -1.8334758192093434 How 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)
How many official languages does Switzerland have? English -1.8526592114182692 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Switzerland, Language, English) -> English (4843ms)
How many official languages does Switzerland have? Swiss Italian -1.8984495369891752 How 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)
How many official languages does Switzerland have? Tamil Language -1.8984495369891752 How 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)
How many official languages does Switzerland have? Sinhala Language -1.8984495369891752 How 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)
How many official languages does Switzerland have? Sicilian Language -1.8984495369891752 How 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)
How many official languages does Switzerland have? Kurdish language -1.9086308721097447 How 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)
How many official languages does Switzerland have? Punjabi language -1.9086308721097447 How 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)
How many official languages does Switzerland have? Swiss French -1.9534272981874943 How 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)
How many official languages does Switzerland have? Swiss-German Sign Language -1.9996980111250207 How 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)
How many official languages does Switzerland have? Swiss-French Sign Language -1.9996980111250207 How 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)
How many official languages does Switzerland have? Swiss-Italian Sign Language -1.9996980111250207 How 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)
How many official languages does Switzerland have? Plautdietsch Language -2.000551093500339 How 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)
How many official languages does Switzerland have? Macedonian Language -2.0413917161048047 How 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)
How many official languages does Switzerland have? Albanian language -2.116546769005206 How 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)
How many official languages does Switzerland have? Does Your Cat Know My Dog? -2.1976179514389695 How 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)
How many official languages does Switzerland have? Languages of Switzerland -2.2262535192279307 How 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)
How many official languages does Switzerland have? Bourgeois Baby -2.278944103378878 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Bourgeois Baby, Region, Switzerland) -> Bourgeois Baby (9756ms)
How many official languages does Switzerland have? Oxygen Sway -2.278944103378878 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Oxygen Sway, Region, Switzerland) -> Oxygen Sway (9678ms)
How many official languages does Switzerland have? Absolute Love -2.278944103378878 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Absolute Love, Region, Switzerland) -> Absolute Love (9756ms)
How many official languages does Switzerland have? G. -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (G., Region, Switzerland) -> G. (9882ms)
How many official languages does Switzerland have? Boogie-Race -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Boogie-Race, Region, Switzerland) -> Boogie-Race (9882ms)
How many official languages does Switzerland have? ZolloZ -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (ZolloZ, Region, Switzerland) -> ZolloZ (9882ms)
How many official languages does Switzerland have? Catalan-Valencian-Balear -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Catalan-Valencian-Balear, Locale, Switzerland) -> Catalan-Valencian-Balear (9882ms)
How many official languages does Switzerland have? Franco-Proven?al -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Franco-Proven?al, Locale, Switzerland) -> Franco-Proven?al (9882ms)
How many official languages does Switzerland have? Star-Portrait -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Star-Portrait, Region, Switzerland) -> Star-Portrait (9882ms)
How many official languages does Switzerland have? Yiddish, Western -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Yiddish, Western, Locale, Switzerland) -> Yiddish, Western (9956ms)
How many official languages does Switzerland have? German, Standard -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (German, Standard, Locale, Switzerland) -> German, Standard (9956ms)
How many official languages does Switzerland have? The Gang -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Gang, Region, Switzerland) -> The Gang (9956ms)
How many official languages does Switzerland have? Teatrodellopera E.P. -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Teatrodellopera E.P., Region, Switzerland) -> Teatrodellopera E.P. (10071ms)
How many official languages does Switzerland have? Amor Fati -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Amor Fati, Region, Switzerland) -> Amor Fati (10070ms)
How many official languages does Switzerland have? Speed Up -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Speed Up, Region, Switzerland) -> Speed Up (9956ms)
How many official languages does Switzerland have? Lem Phago -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Lem Phago, Region, Switzerland) -> Lem Phago (9956ms)
How many official languages does Switzerland have? Missing You -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Missing You, Region, Switzerland) -> Missing You (10070ms)
How many official languages does Switzerland have? After All -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (After All, Region, Switzerland) -> After All (10071ms)
How many official languages does Switzerland have? Romani, Sinte -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Romani, Sinte, Locale, Switzerland) -> Romani, Sinte (9957ms)
How many official languages does Switzerland have? Tai N?a -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Tai N?a, Locale, Switzerland) -> Tai N?a (9956ms)
How many official languages does Switzerland have? Kurdish, Northern -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Kurdish, Northern, Locale, Switzerland) -> Kurdish, Northern (10070ms)
How many official languages does Switzerland have? Iu Mien -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Iu Mien, Locale, Switzerland) -> Iu Mien (10070ms)
How many official languages does Switzerland have? Assyrian Neo-Aramaic -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Assyrian Neo-Aramaic, Locale, Switzerland) -> Assyrian Neo-Aramaic (9956ms)
How many official languages does Switzerland have? Love Man Riding -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Love Man Riding, Region, Switzerland) -> Love Man Riding (10241ms)
How many official languages does Switzerland have? Time Stories (Duos) -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Time Stories (Duos), Region, Switzerland) -> Time Stories (Duos) (10148ms)
How many official languages does Switzerland have? Fall To Pieces -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Fall To Pieces, Region, Switzerland) -> Fall To Pieces (10240ms)
How many official languages does Switzerland have? The Dark Tree -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Dark Tree, Region, Switzerland) -> The Dark Tree (10148ms)
How many official languages does Switzerland have? Sexx Piss Tool -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Sexx Piss Tool, Region, Switzerland) -> Sexx Piss Tool (10414ms)
How many official languages does Switzerland have? Auf Wiedersehen (live) -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Auf Wiedersehen (live), Region, Switzerland) -> Auf Wiedersehen (live) (10148ms)
How many official languages does Switzerland have? Go / Move -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Go / Move, Region, Switzerland) -> Go / Move (10240ms)
How many official languages does Switzerland have? Butterfly Survival Kit -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Butterfly Survival Kit, Region, Switzerland) -> Butterfly Survival Kit (10241ms)
How many official languages does Switzerland have? Touch My Skin -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Touch My Skin, Region, Switzerland) -> Touch My Skin (10148ms)
How many official languages does Switzerland have? Prophecy of Doom -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Prophecy of Doom, Region, Switzerland) -> Prophecy of Doom (10241ms)
How many official languages does Switzerland have? The Multiplication Table -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Multiplication Table, Region, Switzerland) -> The Multiplication Table (10240ms)
How many official languages does Switzerland have? Skin Tight Inches -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Skin Tight Inches, Region, Switzerland) -> Skin Tight Inches (10414ms)
How many official languages does Switzerland have? I d?m Land -2.4675087791398087 How 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)
How many official languages does Switzerland have? Ocean of Illusions -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Ocean of Illusions, Region, Switzerland) -> Ocean of Illusions (10240ms)
How many official languages does Switzerland have? Under Pressure EP -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Under Pressure EP, Region, Switzerland) -> Under Pressure EP (10149ms)
How many official languages does Switzerland have? Dr Hans im Schn?ggeloch -2.4999956380297244 How 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)
How many official languages does Switzerland have? Always on My Mind -2.4999956380297244 How 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)
How many official languages does Switzerland have? First Box Then Walk -2.4999956380297244 How 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)
How many official languages does Switzerland have? H?ch wie der Himu -2.4999956380297244 How 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)
How many official languages does Switzerland have? Atlantis: The Progressive/Trance Compilation -2.4999956380297244 How 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)
How many official languages does Switzerland have? Move your back part -2.4999956380297244 How 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)
How many official languages does Switzerland have? The Peace Of Arrogance -2.4999956380297244 How 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)
How many official languages does Switzerland have? Nur so am Rand -2.4999956380297244 How 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)
How many official languages does Switzerland have? Acque passate + Riei -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Acque passate + Riei, Region, Switzerland) -> Acque passate + Riei (10414ms)
How many official languages does Switzerland have? Agra -2.5164801819020832 How 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)
How many official languages does Switzerland have? Rain -2.5164801819020832 How 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)
How many official languages does Switzerland have? Seon -2.5164801819020832 How 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)
How many official languages does Switzerland have? Brig -2.5164801819020832 How 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)
How many official languages does Switzerland have? Dizy -2.5164801819020832 How 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)
How many official languages does Switzerland have? Croy -2.5164801819020832 How 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)
How many official languages does Switzerland have? Iseo -2.5164801819020832 How 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)
How many official languages does Switzerland have? Ayer -2.5164801819020832 How 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)
How many official languages does Switzerland have? In the Eye of the Circle -2.527484518628884 How 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)
How many official languages does Switzerland have? Ch?med Chinde, mir w?nd singe -2.527484518628884 How 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)
How many official languages does Switzerland have? Gigi vo Arosa / Postbar-Skilift -2.527484518628884 How 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)
How many official languages does Switzerland have? From The Rocking Chair To The Stage -2.5510464162853066 How 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)
How many official languages does Switzerland have? Art of Knowledge (vs. DJ Emergency) -2.5510464162853066 How 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)
How many official languages does Switzerland have? Politics and government -2.5510464162853066 How 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)
How many official languages does Switzerland have? Le temps est venu (Time Has Come) -2.5714667275875396 How 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)
How many official languages does Switzerland have? Full of SID EP / Microcompo Remixes -2.5714667275875396 How 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)
How many official languages does Switzerland have? Die gr?ssten Schweizer Hits: Stadt & Land -2.5714667275875396 How 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)
How many official languages does Switzerland have? Mur -2.5836089670170046 How 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)
How many official languages does Switzerland have? Birmensdorf, Zurich -2.5836089670170046 How 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)
How many official languages does Switzerland have? Nax -2.5836089670170046 How 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)
How many official languages does Switzerland have? Sur -2.5836089670170046 How 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)
How many official languages does Switzerland have? The Organ, Queen of Instruments (organ: Ivan Sokol) -2.589334499976993 How 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)
How many official languages does Switzerland have? If I Should Fall From Grace With God (remix) -2.6051001814970993 How 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)
How many official languages does Switzerland have? Prisoner-of-war camp -2.6051001814970993 How 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)
How many official languages does Switzerland have? Buchberg SH -2.611097847616164 How 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)
How many official languages does Switzerland have? Violin & String Quartet (Pellegrini Quartet, feat. violin: Peter Rundel) -2.6191141206260826 How 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)
How many official languages does Switzerland have? Prisoner of war -2.6191141206260826 How 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)
How many official languages does Switzerland have? Chronology of publications in scrutiny of Scientology -2.6191141206260826 How 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)
How many official languages does Switzerland have? Nimmerland: Alperose & Rockgitarre - Die Volksmusik der anderen Schweiz -2.6191141206260826 How 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)
How many official languages does Switzerland have? World War II -2.6191141206260826 How 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)
How many official languages does Switzerland have? Switzerland during the World Wars -2.6191141206260826 How 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)
How many official languages does Switzerland have? Description and travel -2.6429378171453544 How 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)
How many official languages does Switzerland have? Spiel mir das Lied vom Tod": "Once Upon A Time In The West" -2.6531479727964706 How 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)
How many official languages does Switzerland have? Nationalities and Nationalism -2.6924178022238414 How 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)
How many official languages does Switzerland have? Haubi Songs -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Haubi Songs, Region, Switzerland) -> Haubi Songs (11085ms)
How many official languages does Switzerland have? Madre Tierra -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Madre Tierra, Region, Switzerland) -> Madre Tierra (11085ms)
How many official languages does Switzerland have? Gertrud Stein -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gertrud Stein, Region, Switzerland) -> Gertrud Stein (11085ms)
How many official languages does Switzerland have? Graveyard Swing -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Graveyard Swing, Region, Switzerland) -> Graveyard Swing (11085ms)
How many official languages does Switzerland have? Permanent Hangover -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Permanent Hangover, Region, Switzerland) -> Permanent Hangover (11084ms)
How many official languages does Switzerland have? Regular Pleasures -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Regular Pleasures, Region, Switzerland) -> Regular Pleasures (11085ms)
How many official languages does Switzerland have? Schwiizer Chinderlieder -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Schwiizer Chinderlieder, Region, Switzerland) -> Schwiizer Chinderlieder (11084ms)
How many official languages does Switzerland have? Gravitational Systems -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gravitational Systems, Region, Switzerland) -> Gravitational Systems (11192ms)
How many official languages does Switzerland have? Lightning Arise -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Lightning Arise, Region, Switzerland) -> Lightning Arise (11192ms)
How many official languages does Switzerland have? Mitsing Wienacht -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Mitsing Wienacht, Region, Switzerland) -> Mitsing Wienacht (11085ms)
How many official languages does Switzerland have? Finger 4 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Finger 4, Region, Switzerland) -> Finger 4 (11192ms)
How many official languages does Switzerland have? Polwechsel 2 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Polwechsel 2, Region, Switzerland) -> Polwechsel 2 (11192ms)
How many official languages does Switzerland have? Round 13 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Round 13, Region, Switzerland) -> Round 13 (11192ms)
How many official languages does Switzerland have? Futurescope F-001 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Futurescope F-001, Region, Switzerland) -> Futurescope F-001 (11192ms)
How many official languages does Switzerland have? 8i Bahnhof -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (8i Bahnhof, Region, Switzerland) -> 8i Bahnhof (11192ms)
How many official languages does Switzerland have? EMOS Konzert 2012 -2.779803562065748 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (EMOS Konzert 2012, Region, Switzerland) -> EMOS Konzert 2012 (11435ms)
How many official languages does Switzerland have? Energy 99 Millennium -2.779803562065748 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Energy 99 Millennium, Region, Switzerland) -> Energy 99 Millennium (11435ms)
How many official languages does Switzerland have? 16 Unforgettable Hits -2.779803562065748 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (16 Unforgettable Hits, Region, Switzerland) -> 16 Unforgettable Hits (11435ms)
How many official languages does Switzerland have? Walser German -2.807284233101083 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, main country, Switzerland) -> (Walser German, Main Country, Switzerland) -> Walser German (11581ms)
How many official languages does Switzerland have? Bullshit Detector, Volume 4 -2.812290420955664 How 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)
How many official languages does Switzerland have? Abart Alternative Nation, Volume 2 -2.839779301554824 How 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)
How many official languages does Switzerland have? 3 Suits & A Violin -2.839779301554824 How 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)
How many official languages does Switzerland have? DJ Noise - Finger 1 -2.839779301554824 How 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)
How many official languages does Switzerland have? Chill Out Sofabeat, Volume 3 -2.839779301554824 How 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)
How many official languages does Switzerland have? Highlights of Silent Dreams, Volume 2 -2.863341199211246 How 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)
How many official languages does Switzerland have? Early works to 1800 -2.883761510513479 How 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)
How many official languages does Switzerland have? Willisau (Quartet) 1991 - Studio/Live (disc 4) -2.883761510513479 How 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)
How many official languages does Switzerland have? Betrachtige ?ber nes Sandwitsch (Berner Chansons 20) -2.883761510513479 How 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)
How many official languages does Switzerland have? Louis Hayes - Woody Shaw Quintet - Lausanne 1977 -2.901629282902933 How 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)
How many official languages does Switzerland have? Samuel Prout -2.912437725149979 How 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)
How many official languages does Switzerland have? Holland and Belgium -2.940964414806079 How 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)
How many official languages does Switzerland have? country -2.9823370256700126 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a, country) -> country (11882ms)
How many official languages does Switzerland have? Static -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Static, Region, Switzerland) -> Static (12139ms)
How many official languages does Switzerland have? Crystallized -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Crystallized, Region, Switzerland) -> Crystallized (12248ms)
How many official languages does Switzerland have? Lombard -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Lombard, Locale, Switzerland) -> Lombard (12859ms)
How many official languages does Switzerland have? Zytvertryb -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Zytvertryb, Region, Switzerland) -> Zytvertryb (12050ms)
How many official languages does Switzerland have? Platinum -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Platinum, Region, Switzerland) -> Platinum (12139ms)
How many official languages does Switzerland have? French -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (French, Locale, Switzerland) -> French (12050ms)
How many official languages does Switzerland have? St?rntaler -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (St?rntaler, Region, Switzerland) -> St?rntaler (12138ms)
How many official languages does Switzerland have? Dorfgschichta -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Dorfgschichta, Region, Switzerland) -> Dorfgschichta (12139ms)
How many official languages does Switzerland have? Yeniche -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Yeniche, Locale, Switzerland) -> Yeniche (12248ms)
How many official languages does Switzerland have? Spanish -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Spanish, Locale, Switzerland) -> Spanish (12138ms)
How many official languages does Switzerland have? Slotters -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Slotters, Region, Switzerland) -> Slotters (12050ms)
How many official languages does Switzerland have? Mambogimp -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Mambogimp, Region, Switzerland) -> Mambogimp (12248ms)
How many official languages does Switzerland have? Turkish -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Turkish, Locale, Switzerland) -> Turkish (12341ms)
How many official languages does Switzerland have? Serbian -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Serbian, Locale, Switzerland) -> Serbian (12341ms)
How many official languages does Switzerland have? United -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (United, Region, Switzerland) -> United (12248ms)
How many official languages does Switzerland have? Heartcore -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Heartcore, Region, Switzerland) -> Heartcore (12248ms)
How many official languages does Switzerland have? Evolution -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Evolution, Region, Switzerland) -> Evolution (12050ms)
How many official languages does Switzerland have? Paths -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Paths, Region, Switzerland) -> Paths (12341ms)
How many official languages does Switzerland have? Portuguese -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Portuguese, Locale, Switzerland) -> Portuguese (12341ms)
How many official languages does Switzerland have? Italian -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Italian, Locale, Switzerland) -> Italian (12248ms)
How many official languages does Switzerland have? Wasserleichentr?ume -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Wasserleichentr?ume, Region, Switzerland) -> Wasserleichentr?ume (12341ms)
How many official languages does Switzerland have? Kirmanjki -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Kirmanjki, Locale, Switzerland) -> Kirmanjki (12341ms)
How many official languages does Switzerland have? Gaiascension -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gaiascension, Region, Switzerland) -> Gaiascension (12050ms)
How many official languages does Switzerland have? Tibetan -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Tibetan, Locale, Switzerland) -> Tibetan (12341ms)
How many official languages does Switzerland have? Blockstoff -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Blockstoff, Region, Switzerland) -> Blockstoff (12248ms)
How many official languages does Switzerland have? Metallsp?rhunde -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Metallsp?rhunde, Region, Switzerland) -> Metallsp?rhunde (12050ms)
How many official languages does Switzerland have? Piano -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Piano, Region, Switzerland) -> Piano (12248ms)
How many official languages does Switzerland have? Walser -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Walser, Locale, Switzerland) -> Walser (12139ms)
How many official languages does Switzerland have? Plurabelle -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Plurabelle, Region, Switzerland) -> Plurabelle (12050ms)
How many official languages does Switzerland have? Romansch -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Romansch, Locale, Switzerland) -> Romansch (12138ms)
How many official languages does Switzerland have? R?benblast -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (R?benblast, Region, Switzerland) -> R?benblast (12138ms)
How many official languages does Switzerland have? Schwyzerd?tsch -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Schwyzerd?tsch, Locale, Switzerland) -> Schwyzerd?tsch (12050ms)
How many official languages does Switzerland have? Education -3.0334132752139746 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Education in Switzerland, Subjects, Education) -> Education (13026ms)
How many official languages does Switzerland have? Geology -3.132373245370949 How 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)
How many official languages does Switzerland have? Achievement -3.132373245370949 How 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)
How many official languages does Switzerland have? Iseltwald -3.1884976937590697 How 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)
How many official languages does Switzerland have? Flurlingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Coppet -3.1884976937590697 How 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)
How many official languages does Switzerland have? Biasca -3.1884976937590697 How 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)
How many official languages does Switzerland have? Altishofen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Bettingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Z?rich -3.1884976937590697 How 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)
How many official languages does Switzerland have? Hildisrieden -3.1884976937590697 How 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)
How many official languages does Switzerland have? Thusis -3.1884976937590697 How 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)
How many official languages does Switzerland have? Satigny -3.1884976937590697 How 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)
How many official languages does Switzerland have? Seehof -3.1884976937590697 How 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)
How many official languages does Switzerland have? Lodrino -3.1884976937590697 How 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)
How many official languages does Switzerland have? Salvan -3.1884976937590697 How 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)
How many official languages does Switzerland have? Bardonnex -3.1884976937590697 How 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)
How many official languages does Switzerland have? Arbaz -3.1884976937590697 How 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)
How many official languages does Switzerland have? Langrickenbach -3.1884976937590697 How 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)
How many official languages does Switzerland have? Niederwald -3.1884976937590697 How 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)
How many official languages does Switzerland have? Plagne -3.1884976937590697 How 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)
How many official languages does Switzerland have? Vernay -3.1884976937590697 How 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)
How many official languages does Switzerland have? Bellach -3.1884976937590697 How 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)
How many official languages does Switzerland have? Erlach -3.1884976937590697 How 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)
How many official languages does Switzerland have? Oberthal -3.1884976937590697 How 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)
How many official languages does Switzerland have? Termen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Biberist -3.1884976937590697 How 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)
How many official languages does Switzerland have? Davos -3.1884976937590697 How 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)
How many official languages does Switzerland have? Losone -3.1884976937590697 How 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)
How many official languages does Switzerland have? Nidfurn -3.1884976937590697 How 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)
How many official languages does Switzerland have? Entlebuch -3.1884976937590697 How 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)
How many official languages does Switzerland have? Arolla -3.1884976937590697 How 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)
How many official languages does Switzerland have? Affeltrangen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Oberrieden -3.1884976937590697 How 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)
How many official languages does Switzerland have? Ermatingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? H?chstetten -3.1884976937590697 How 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)
How many official languages does Switzerland have? Chigny -3.1884976937590697 How 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)
How many official languages does Switzerland have? Laufenburg -3.1884976937590697 How 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)
How many official languages does Switzerland have? Finhaut -3.1884976937590697 How 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)
How many official languages does Switzerland have? Eglisau -3.1884976937590697 How 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)
How many official languages does Switzerland have? Oensingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Zofingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Gimmelwald -3.1884976937590697 How 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)
How many official languages does Switzerland have? Egolzwil -3.1884976937590697 How 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)
How many official languages does Switzerland have? Troinex -3.1884976937590697 How 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)
How many official languages does Switzerland have? Bettlach -3.1884976937590697 How 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)
How many official languages does Switzerland have? Siblingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Grellingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Sisikon -3.1884976937590697 How 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)
How many official languages does Switzerland have? Filet -3.1884976937590697 How 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)
How many official languages does Switzerland have? Rifferswil -3.1884976937590697 How 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)
How many official languages does Switzerland have? Dagmersellen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Corcelles -3.1884976937590697 How 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)
How many official languages does Switzerland have? Ausserberg -3.1884976937590697 How 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)
How many official languages does Switzerland have? Littau -3.1884976937590697 How 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)
How many official languages does Switzerland have? Nenzlingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Ziefen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Turtmann -3.1884976937590697 How 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)
How many official languages does Switzerland have? Ennetmoos -3.1884976937590697 How 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)
How many official languages does Switzerland have? Oberglatt -3.1884976937590697 How 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)
How many official languages does Switzerland have? Oftringen -3.1884976937590697 How 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)
How many official languages does Switzerland have? F?tigny -3.1884976937590697 How 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)
How many official languages does Switzerland have? Lenzerheide -3.1884976937590697 How 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)
How many official languages does Switzerland have? Lupsingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Wikon -3.1884976937590697 How 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)
How many official languages does Switzerland have? Brugg -3.1884976937590697 How 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)
How many official languages does Switzerland have? Croglio -3.1884976937590697 How 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)
How many official languages does Switzerland have? Gunzwil -3.1884976937590697 How 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)
How many official languages does Switzerland have? Kirchdorf -3.1884976937590697 How 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)
How many official languages does Switzerland have? F?rstenau -3.1884976937590697 How 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)
How many official languages does Switzerland have? Riederalp -3.1884976937590697 How 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)
How many official languages does Switzerland have? Mattenbach -3.1884976937590697 How 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)
How many official languages does Switzerland have? Ettiswil -3.1884976937590697 How 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)
How many official languages does Switzerland have? Luchsingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Montagnola -3.1884976937590697 How 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)
How many official languages does Switzerland have? Schaffhausen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Knutwil -3.1884976937590697 How 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)
How many official languages does Switzerland have? Bottighofen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Erlen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Muhen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Lommiswil -3.1884976937590697 How 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)
How many official languages does Switzerland have? Hemishofen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Campello -3.1884976937590697 How 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)
How many official languages does Switzerland have? Subingen -3.1884976937590697 How 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)
How many official languages does Switzerland have? Riddes -3.1884976937590697 How 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)
How many official languages does Switzerland have? Nation -3.2835620886663266 How 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)
How many official languages does Switzerland have? country of many different religions, confessions, language and culture -3.3456755811023475 How 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)
How many official languages does Switzerland have? country of three language -3.4236440424381454 How 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)
How many official languages does Switzerland have? official tri-ethnic state -3.4236440424381454 How 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)
How many official languages does Switzerland have? confederation -3.4244979432122458 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, confederation) -> confederation (15201ms)
How many official languages does Switzerland have? republic -3.4244979432122458 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, republic) -> republic (15201ms)
How many official languages does Switzerland have? latitude -3.4272397871846865 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, latitude) -> latitude (15201ms)
How many official languages does Switzerland have? NEW -3.4284888886681775 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a proxy for, NEW) -> NEW (15201ms)
How many official languages does Switzerland have? european nation -3.4593999521232117 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, european nation) -> european nation (15232ms)
How many official languages does Switzerland have? Globalization -3.4622398125608638 How 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)
How many official languages does Switzerland have? STATES -3.5178277506154463 How 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)
How many official languages does Switzerland have? western european country -3.5280872140690365 How 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)
How many official languages does Switzerland have? german -3.5308660079961687 How 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)
How many official languages does Switzerland have? neutral nation -3.5619710657005186 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, neutral nation) -> neutral nation (15292ms)
How many official languages does Switzerland have? donor country -3.644318314941839 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, donor country) -> donor country (15323ms)
How many official languages does Switzerland have? clean financial center -3.6483792795855483 How 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)
How many official languages does Switzerland have? Swiss -3.704089860149346 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, adjectival form, $x) -> (Switzerland, Adjectival form, Swiss) -> Swiss (15471ms)
How many official languages does Switzerland have? German and French -3.7159925689398725 How 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)
How many official languages does Switzerland have? environmentally advanced country -3.760306884015602 How 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)
How many official languages does Switzerland have? small mountaneous country -3.760306884015602 How 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)
How many official languages does Switzerland have? coutries®ions -3.774502118449236 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, coutries®ions) -> coutries®ions (15598ms)
How many official languages does Switzerland have? mountain area -3.7799819372368866 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, mountain area) -> mountain area (15679ms)
How many official languages does Switzerland have? preferred international financial center -3.7877957646147618 How 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)
How many official languages does Switzerland have? european and asian country -3.7877957646147618 How 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)
How many official languages does Switzerland have? pure ophthalmology market -3.801079252571909 How 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)
How many official languages does Switzerland have? hub of Adventure Sports -3.801079252571909 How 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)
How many official languages does Switzerland have? three level confederation -3.801079252571909 How 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)
How many official languages does Switzerland have? importer of Spanish jewellery -3.801079252571909 How 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)
How many official languages does Switzerland have? multicultural nation -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, multicultural nation) -> multicultural nation (15961ms)
How many official languages does Switzerland have? civilized state -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, civilized state) -> civilized state (15848ms)
How many official languages does Switzerland have? TIMSS country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, TIMSS country) -> TIMSS country (15910ms)
How many official languages does Switzerland have? land of railway -3.8134863491171354 How 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)
How many official languages does Switzerland have? insured nation -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, insured nation) -> insured nation (15911ms)
How many official languages does Switzerland have? hands-off country -3.8134863491171354 How 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)
How many official languages does Switzerland have? plebiscitary democracy -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, plebiscitary democracy) -> plebiscitary democracy (15848ms)
How many official languages does Switzerland have? leveraged case -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, leveraged case) -> leveraged case (15961ms)
How many official languages does Switzerland have? land of glitz -3.8134863491171354 How 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)
How many official languages does Switzerland have? established polity -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, established polity) -> established polity (15961ms)
How many official languages does Switzerland have? banking center -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, banking center) -> banking center (15848ms)
How many official languages does Switzerland have? animal-enlightened country -3.8134863491171354 How 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)
How many official languages does Switzerland have? USAID partner -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, USAID partner) -> USAID partner (15910ms)
How many official languages does Switzerland have? federally-organised state -3.8134863491171354 How 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)
How many official languages does Switzerland have? favorable country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, favorable country) -> favorable country (15910ms)
How many official languages does Switzerland have? prosperous country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, prosperous country) -> prosperous country (15911ms)
How many official languages does Switzerland have? nation of exile -3.8134863491171354 How 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)
How many official languages does Switzerland have? land of watch -3.8134863491171354 How 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)
How many official languages does Switzerland have? country of order -3.8134863491171354 How 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)
How many official languages does Switzerland have? market country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, market country) -> market country (15910ms)
How many official languages does Switzerland have? semi-direct democracy -3.8134863491171354 How 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)
How many official languages does Switzerland have? bordering country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, bordering country) -> bordering country (15848ms)
How many official languages does Switzerland have? affluent society -3.817062667621837 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, affluent society) -> affluent society (15961ms)
How many official languages does Switzerland have? debate -3.8174817608450313 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland, became a subject of, debate) -> debate (15961ms)
How many official languages does Switzerland have? market nation -3.8186273068718855 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, market nation) -> market nation (15961ms)
How many official languages does Switzerland have? words -3.818774955973984 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (words, are only used in, Switzerland) -> words (16005ms)
How many official languages does Switzerland have? country pavilion -3.8226258296381186 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country pavilion) -> country pavilion (16005ms)
How many official languages does Switzerland have? modern case -3.8237682646266355 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, modern case) -> modern case (16005ms)
How many official languages does Switzerland have? federated state -3.8237682646266355 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, federated state) -> federated state (16005ms)
How many official languages does Switzerland have? established centre -3.8261410148310198 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, established centre) -> established centre (16005ms)
How many official languages does Switzerland have? land of highly regulated cartel -3.8285681331710686 How 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)
How many official languages does Switzerland have? land-locked country of mostly mountain -3.8285681331710686 How 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)
How many official languages does Switzerland have? traditional powerhouse -3.8335486237603353 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, traditional powerhouse) -> traditional powerhouse (16078ms)
How many official languages does Switzerland have? pure democracy -3.8409047912929353 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, pure democracy) -> pure democracy (16078ms)
How many official languages does Switzerland have? amazing ski country -3.8459732080070514 How 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)
How many official languages does Switzerland have? famous pricey country -3.8459732080070514 How 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)
How many official languages does Switzerland have? flat, marshy country -3.8459732080070514 How 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)
How many official languages does Switzerland have? incredibly multi-lingual country -3.8459732080070514 How 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)
How many official languages does Switzerland have? energy trading center -3.8459732080070514 How 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)
How many official languages does Switzerland have? traditional tourism country -3.8459732080070514 How 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)
How many official languages does Switzerland have? land of pleasant person -3.8459732080070514 How 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)
How many official languages does Switzerland have? magnificent, impressive land -3.8459732080070514 How 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)
How many official languages does Switzerland have? affluent, flourishing country -3.8459732080070514 How 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)
How many official languages does Switzerland have? great suicide destination -3.8459732080070514 How 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)
How many official languages does Switzerland have? west european destination -3.8459732080070514 How 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)
How many official languages does Switzerland have? physically fit country -3.8459732080070514 How 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)
How many official languages does Switzerland have? country of strong unity -3.8459732080070514 How 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)
How many official languages does Switzerland have? great, independant nation -3.8459732080070514 How 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)
How many official languages does Switzerland have? lavishly colorful place -3.8459732080070514 How 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)
How many official languages does Switzerland have? checks -3.86169160792281 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland, may be subject to, checks) -> checks (16416ms)
How many official languages does Switzerland have? west european nation -3.8665370390260514 How 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)
How many official languages does Switzerland have? safe, peaceful, beautiful land of no opportunity -3.872550342129724 How 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)
How many official languages does Switzerland have? member of the Good Humanitarian Donorship group -3.872550342129724 How 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)
How many official languages does Switzerland have? land locked European Country -3.8734620886062108 How 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)
How many official languages does Switzerland have? liberal health public system -3.8734620886062108 How 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)
How many official languages does Switzerland have? much favored retirement destination -3.8734620886062108 How 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)
How many official languages does Switzerland have? country of insane civil action -3.8734620886062108 How 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)
How many official languages does Switzerland have? internationally recognized financial jurisdiction -3.8734620886062108 How 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)
How many official languages does Switzerland have? atypical and strange place -3.8734620886062108 How 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)
How many official languages does Switzerland have? federated country of central Europe -3.8734620886062108 How 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)
How many official languages does Switzerland have? polite, very orderly country -3.8734620886062108 How 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)
How many official languages does Switzerland have? land of full employment and rank -3.8970239862626332 How 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)
How many official languages does Switzerland have? member state of the European Convention -3.8970239862626332 How 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)
How many official languages does Switzerland have? member state of the Lugano Convention -3.8970239862626332 How 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)
How many official languages does Switzerland have? curious case study of a nation -3.8970239862626332 How 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)
How many official languages does Switzerland have? highly civilized and open country -3.8970239862626332 How 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)
How many official languages does Switzerland have? country of hotel and not of restaurant -3.8970239862626332 How 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)
How many official languages does Switzerland have? member of the two expert group -3.8970239862626332 How 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)
How many official languages does Switzerland have? ENglish -3.905546781436519 How 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)
How many official languages does Switzerland have? exporter of capital good and intermediate input -3.9174442975648662 How 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)
How many official languages does Switzerland have? curst , selfish, swinish country of brute -3.9174442975648662 How 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)
How many official languages does Switzerland have? fully functioning modern day direct democracy -3.9174442975648662 How 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)
How many official languages does Switzerland have? currency -3.9295927067692924 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (currency, use in, Lucerne Switzerland) -> currency (16710ms)
How many official languages does Switzerland have? free and independent dnation, accommodating multiple ethnicity -3.93531206995432 How 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)
How many official languages does Switzerland have? land of spectacular mountain landscape and dramatic lake -3.93531206995432 How 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)
How many official languages does Switzerland have? healing -4.016978540906131 How 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)
How many official languages does Switzerland have? multilingual -4.10124935216183 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (Switzerland, is, multilingual) -> multilingual (17246ms)
How many official languages does Switzerland have? Countries -4.104848704968058 How 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)
How many official languages does Switzerland have? cheques -4.109740591924954 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (cheques, are seldom used in, Switzerland) -> cheques (17359ms)
How many official languages does Switzerland have? federalist -4.15652641407991 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (Switzerland, is, federalist) -> federalist (17359ms)
How many official languages does Switzerland have? 5,000 Watt society -4.158267990932991 How 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)
How many official languages does Switzerland have? landlocked alpine country of roughly 7.6 million person -4.1619405288888105 How 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)
How tall is the Washington Monument? the Mall -5.730611333760726 How 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)
How tall is the Washington Monument? 169.294 -7.11631113422292 How 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)
How tall is the Washington Monument? the photograph -7.274147223494016 How 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)
How tall is the Washington Monument? 6 minutes -7.7261112644901235 How 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)
How tall is the Washington Monument? 55 feet -7.7334840999046 How 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)
How tall is the Washington Monument? 209 feet -7.756828609500903 How 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)
How tall is the Washington Monument? 169 meters -7.7701561317514924 How 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)
How tall is the Washington Monument? 555.5 feet -7.877079488416591 How 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)
How tall is the Washington Monument? 47622 -7.877849747824863 How 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)
How tall is the Washington Monument? 685746 -7.877849747824863 How 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)
How tall is the Washington Monument? 555 feet -7.884189608476071 How 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)
How tall is the Washington Monument? 11 -7.961747334661998 How 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)
How tall is the Washington Monument? 14 -7.981469326904039 How 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)
How tall is the Washington Monument? 2287161 -7.997801226803013 How 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)
How tall is the Washington Monument? 79188 -7.997801226803013 How 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)
How tall is the Washington Monument? a 555-foot-tall obelisk -8.004106101503302 How 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)
How tall is the Washington Monument? 4609636 -8.085765644720324 How 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)
How tall is the Washington Monument? two words -8.10506640510351 How 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)
How tall is the Washington Monument? 106218 -8.12150118949923 How 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)
How tall is the Washington Monument? 67233 -8.153032552539443 How 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)
How tall is the Washington Monument? an obelisk 55 feet -8.157375478399869 How 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)
How tall is the Washington Monument? God -8.207700090124991 How 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)
How tall is the Washington Monument? a 555-foot erect penis -8.238920489040698 How 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)
How tall is the Washington Monument? 555.5 feet tall -8.240284556783678 How 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)
How tall is the Washington Monument? a tall white-colored obelisk -8.388717800734288 How 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)
How tall is the Washington Monument? a distance -8.396185670331217 How 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)
How tall is the Washington Monument? 55098 -8.405283456861143 How 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)
How tall is the Washington Monument? 0.0 -8.40907665787029 How 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)
How tall is the Washington Monument? 141.84 -8.40907665787029 How 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)
How tall is the Washington Monument? a terrorist -8.488634255508433 How 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)
How tall is the Washington Monument? Chrisopher Reeve Is Placed Atop The Washington Monument -8.541560333983334 How 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)
How tall is the Washington Monument? 1 -8.556958117943365 How 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)
How tall is the Washington Monument? 2 -8.556958117943365 How 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)
How tall is the Washington Monument? a requirement -8.563299060932563 How 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)
How tall is the Washington Monument? the 1993 -8.61906237688574 How 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)
How tall is the Washington Monument? 555 ft -8.683662755729742 How 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)
How tall is the Washington Monument? obelisk.noun.01 -8.689094789823066 How 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)
How tall is the Washington Monument? memorial.noun.03 -8.689094789823066 How 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)
How tall is the Washington Monument? a pencil -8.711844326301701 How 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)
How tall is the Washington Monument? Next -8.728534533014056 How 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)
How tall is the Washington Monument? a bit -8.79838988889021 How 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)
How tall is the Washington Monument? a metallic sphere -8.813123353373399 How 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)
How tall is the Washington Monument? End the Washington Monument (Blinks) Goodnight -8.833942063992577 How 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)
How tall is the Washington Monument? And the Washington Monument Blinks Goodnight -8.833942063992577 How 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)
How tall is the Washington Monument? the Lincoln Memorial -8.845744335183962 How 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)
How tall is the Washington Monument? a great pity -8.849375470139012 How 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)
How tall is the Washington Monument? a handsome pillar -8.852787052069015 How 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)
How tall is the Washington Monument? a miracle -8.857374496493364 How 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)
How tall is the Washington Monument? the U.S. Capitol -8.902599985400302 How 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)
How tall is the Washington Monument? an obelisk -8.90763036437259 How 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)
How tall is the Washington Monument? a must-see -8.918640767805899 How 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)
How tall is the Washington Monument? 800,000 visitors -8.938800481839273 How 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)
How tall is the Washington Monument? an imposing presence -8.956855382241756 How 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)
How tall is the Washington Monument? thirsty Qui -8.96727165229375 How 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)
How tall is the Washington Monument? interest -9.008647157628632 How 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)
How tall is the Washington Monument? terrorists -9.010351015005863 How 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)
How tall is the Washington Monument? an imaginary dividing point -9.029990426258383 How 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)
How tall is the Washington Monument? four miles -9.031008516802615 How 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)
How tall is the Washington Monument? DC -9.035654739560325 How 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)
How tall is the Washington Monument? a much larger replica -9.049442737891686 How 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)
How tall is the Washington Monument? thirsty Merci beaucoup -9.051856791104877 How 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)
How tall is the Washington Monument? a beautiful national structure -9.065358303920604 How 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)
How tall is the Washington Monument? wheelchair accessible -9.065884459856743 How 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)
How tall is the Washington Monument? a Masonic symbol -9.067315537213535 How 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)
How tall is the Washington Monument? a perfect Egyptian obelisk -9.088774885746018 How 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)
How tall is the Washington Monument? D.C. -9.096664339068118 How 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)
How tall is the Washington Monument? an Egyptian obelisk -9.102683467578053 How 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)
How tall is the Washington Monument? a beautiful and inspiring sight -9.112355055173053 How 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)
How tall is the Washington Monument? 169 meters tall -9.11440210506004 How 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)
How tall is the Washington Monument? a beguiling presence -9.137559410632182 How 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)
How tall is the Washington Monument? an abandoned stump -9.14735013457609 How 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)
How tall is the Washington Monument? 2,700 -9.193514001024631 How 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)
How tall is the Washington Monument? the Mall area -9.207025572526417 How 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)
How tall is the Washington Monument? new cracks -9.2114542174443 How 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)
How tall is the Washington Monument? fireworks -9.214367414458836 How 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)
How tall is the Washington Monument? the D.C. area -9.234733582318814 How 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)
How tall is the Washington Monument? the U.S. -9.244459738135467 How 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)
How tall is the Washington Monument? Ranger Kelly -9.251468766621572 How 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)
How tall is the Washington Monument? a controversial event -9.277501212575865 How 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)
How tall is the Washington Monument? cracks -9.287755834391161 How 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)
How tall is the Washington Monument? half way -9.338060836927287 How 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)
How tall is the Washington Monument? list -9.340132700528665 How 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)
How tall is the Washington Monument? the National Mall -9.359340877815024 How 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)
How tall is the Washington Monument? First stop -9.376697185682684 How 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)
How tall is the Washington Monument? Examples -9.387589110239817 How 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)
How tall is the Washington Monument? two inches -9.3989687269096 How 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)
How tall is the Washington Monument? Pel?e -9.419598205442922 How 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)
How tall is the Washington Monument? reduced hours -9.424846167828377 How 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)
How tall is the Washington Monument? a huge pond -9.42630659322 How 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)
How tall is the Washington Monument? metal detectors -9.435138564182358 How 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)
How tall is the Washington Monument? Next door -9.435640549945944 How 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)
How tall is the Washington Monument? earlier -9.442769392585292 How 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)
How tall is the Washington Monument? next stop -9.45555976646774 How 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)
How tall is the Washington Monument? reference -9.50370929282333 How 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)
How tall is the Washington Monument? Capitol Mall -9.505884423364591 How 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)
How tall is the Washington Monument? prophecy timelines -9.536260341705821 How 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)
How tall is the Washington Monument? the reason -9.547463510652126 How 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)
How tall is the Washington Monument? the plan -9.555623760955653 How 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)
How tall is the Washington Monument? Big Pharma -9.559075213132191 How 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)
How tall is the Washington Monument? Congress -9.560221516620096 How 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)
How tall is the Washington Monument? tall -9.5721756153592 How 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)
How tall is the Washington Monument? thanks -9.572746480019928 How 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)
How tall is the Washington Monument? 10:00 AM -9.576159562222507 How 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)
How tall is the Washington Monument? one positive note -9.590852775594096 How 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)
How tall is the Washington Monument? a crack -9.595129993867557 How 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)
How tall is the Washington Monument? a good days adventure -9.603583558726733 How 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)
How tall is the Washington Monument? the time -9.608826513014577 How 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)
How tall is the Washington Monument? eyeballs -9.626617967489398 How 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)
How tall is the Washington Monument? Washington -9.62749481340659 How 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)
How tall is the Washington Monument? A stone -9.63256327118494 How 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)
How tall is the Washington Monument? Thousands -9.658308168246952 How 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)
How tall is the Washington Monument? 555 feet tall -9.679471014345614 How 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)
How tall is the Washington Monument? an Obelisk -9.689990130262103 How 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)
How tall is the Washington Monument? a dozen Renaissance ladies -9.701729514103532 How 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)
How tall is the Washington Monument? no building -9.70873854258964 How 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)
How tall is the Washington Monument? the words -9.717758781714767 How 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)
How tall is the Washington Monument? the Capitol -9.733521168210203 How 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)
How tall is the Washington Monument? 1884 -9.755866115902503 How 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)
How tall is the Washington Monument? Egyptophilia -9.791728110511588 How 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)
How tall is the Washington Monument? visible -9.801516266983127 How 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)
How tall is the Washington Monument? 1998 -9.806687013773969 How 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)
How tall is the Washington Monument? 1999-2000 -9.8079446197173 How 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)
How tall is the Washington Monument? 10:00 a.m. -9.817869583227997 How 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)
How tall is the Washington Monument? 3022008 -9.823862573727245 How 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)
How tall is the Washington Monument? 10/02 -9.83555352205911 How 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)
How tall is the Washington Monument? Ottoman calligraphy -9.870626835179978 How 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)
How tall is the Washington Monument? 1524882 -9.871509966765789 How 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)
How tall is the Washington Monument? an African obelisk -9.873044444052782 How 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)
How tall is the Washington Monument? 199583 -9.910494197433687 How 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)
How tall is the Washington Monument? 2218847 -9.910494197433687 How 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)
How tall is the Washington Monument? 849268 -9.910494197433687 How 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)
How tall is the Washington Monument? 13 feet -9.925056389058168 How 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)
How tall is the Washington Monument? direct line -9.927013404617822 How 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)
How tall is the Washington Monument? the event -9.929536748764354 How 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)
How tall is the Washington Monument? 172210 -9.942981056323603 How 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)
How tall is the Washington Monument? 967722 -9.942981056323603 How 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)
How tall is the Washington Monument? 4431788 -9.970469936922763 How 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)
How tall is the Washington Monument? 326149 -9.994031834579186 How 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)
How tall is the Washington Monument? 147448 -10.014452145881418 How 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)
How tall is the Washington Monument? Beck -10.019690463519202 How 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)
How tall is the Washington Monument? Hawkins County -10.020156969970298 How 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)
How tall is the Washington Monument? Constitution -10.020938568314797 How 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)
How tall is the Washington Monument? San Jacinto Monument -10.0253965019189 How 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)
How tall is the Washington Monument? WAMO Stones Section 5 -10.03998935321929 How 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)
How tall is the Washington Monument? construction -10.04317057893325 How 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)
How tall is the Washington Monument? 53 -10.067907091650083 How 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)
How tall is the Washington Monument? 67 -10.067907091650083 How 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)
How tall is the Washington Monument? 10 -10.067907091650083 How 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)
How tall is the Washington Monument? In the distance -10.070684254809045 How 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)
How tall is the Washington Monument? 1885 -10.079019956365475 How 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)
How tall is the Washington Monument? 1835 -10.079511890973569 How 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)
How tall is the Washington Monument? free performances -10.079764418544304 How 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)
How tall is the Washington Monument? Baal -10.086320956137609 How 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)
How tall is the Washington Monument? any window -10.091834772497183 How 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)
How tall is the Washington Monument? Washington DC -10.12411484867703 How 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)
How tall is the Washington Monument? 1848 -10.132071825561104 How 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)
How tall is the Washington Monument? a 500ft obelisk -10.13545858819951 How 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)
How tall is the Washington Monument? snow -10.137791477339041 How 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)
How tall is the Washington Monument? July 4 -10.142336418023545 How 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)
How tall is the Washington Monument? 1876 -10.146218966085534 How 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)
How tall is the Washington Monument? historic -10.149154531185715 How 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)
How tall is the Washington Monument? the obelisk -10.164903431561864 How 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)
How tall is the Washington Monument? the horizon -10.164903431561864 How 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)
How tall is the Washington Monument? a metro adventure -10.169152808105753 How 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)
How tall is the Washington Monument? a distinctive simplicity -10.17318154102053 How 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)
How tall is the Washington Monument? the distance -10.176954568320648 How 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)
How tall is the Washington Monument? 2015 -10.190866284954343 How 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)
How tall is the Washington Monument? the middle -10.196799131746955 How 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)
How tall is the Washington Monument? pride -10.207710379184263 How 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)
How tall is the Washington Monument? 2009 -10.209270769882636 How 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)
How tall is the Washington Monument? a category -10.218229883207828 How 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)
How tall is the Washington Monument? point -10.227724260799864 How 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)
How tall is the Washington Monument? the site -10.230468441281332 How 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)
How tall is the Washington Monument? Martin Luther King -10.242215155605418 How 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)
How tall is the Washington Monument? two families -10.254555013721047 How 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)
How tall is the Washington Monument? a pyramid -10.28042231773274 How 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)
How tall is the Washington Monument? 181.0 -10.29011576599284 How 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)
How tall is the Washington Monument? 80.0 -10.29011576599284 How 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)
How tall is the Washington Monument? 96092 -10.300336504112677 How 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)
How tall is the Washington Monument? metal roofs -10.317473221228253 How 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)
How tall is the Washington Monument? aluminum -10.318952325649725 How 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)
How tall is the Washington Monument? Mills -10.319038396426258 How 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)
How tall is the Washington Monument? a visual -10.328069227599812 How 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)
How tall is the Washington Monument? the sights -10.332965576691562 How 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)
How tall is the Washington Monument? 555 feet high -10.348237891090982 How 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)
How tall is the Washington Monument? Memorial obelisk of Vermont marble -10.356174815585302 How 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)
How tall is the Washington Monument? God Almighty -10.36051282689136 How 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)
How tall is the Washington Monument? the left -10.375476855641493 How 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)
How tall is the Washington Monument? the public -10.381596226906012 How 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)
How tall is the Washington Monument? 5 -10.384215008468763 How 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)
How tall is the Washington Monument? use -10.387484975053209 How 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)
How tall is the Washington Monument? Tidal Basin -10.391910360364209 How 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)
How tall is the Washington Monument? right there -10.402154939404248 How 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)
How tall is the Washington Monument? repairs -10.409478792221847 How 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)
How tall is the Washington Monument? the hill -10.409960546902619 How 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)
How tall is the Washington Monument? free to visit -10.41232825065921 How 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)
How tall is the Washington Monument? open -10.414513456576303 How 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)
How tall is the Washington Monument? taller -10.436016568334088 How 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)
How tall is the Washington Monument? the family -10.43648650785158 How 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)
How tall is the Washington Monument? closed -10.440215826671297 How 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)
How tall is the Washington Monument? finalists -10.442982106345976 How 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)
How tall is the Washington Monument? water -10.44539261477768 How 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)
How tall is the Washington Monument? workshop -10.452872442276952 How 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)
How tall is the Washington Monument? renovations -10.455357329286727 How 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)
How tall is the Washington Monument? thirsty -10.460616945535248 How 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)
How tall is the Washington Monument? top of the Washington Monument -10.47654717694583 How 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)
How tall is the Washington Monument? air -10.47654717694583 How 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)
How tall is the Washington Monument? simplicity -10.476578119126815 How 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)
How tall is the Washington Monument? the Tower -10.501067356549935 How 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)
How tall is the Washington Monument? open to visitors -10.50508556230809 How 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)
How tall is the Washington Monument? Behind us -10.51401242122966 How 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)
How tall is the Washington Monument? engineers -10.521922194019927 How 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)
How tall is the Washington Monument? indefinitely -10.544294305408599 How 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)
How tall is the Washington Monument? currently -10.557662929725318 How 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)
How tall is the Washington Monument? 8 -10.598628277142208 How 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)
How tall is the Washington Monument? nine memorials -10.603018180844687 How 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)
How tall is the Washington Monument? still -10.603766418684263 How 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)
How tall is the Washington Monument? daily -10.607327512748881 How 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)
How tall is the Washington Monument? Messenia -10.615291356922038 How 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)
How tall is the Washington Monument? the cornerstone -10.616992409317055 How 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)
How tall is the Washington Monument? every way -10.61974872305977 How 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)
How tall is the Washington Monument? July 4th -10.620978526218792 How 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)
How tall is the Washington Monument? the most prominent structure -10.642704557647743 How 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)
How tall is the Washington Monument? Washington Monument -10.673943799159403 How 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)
How tall is the Washington Monument? fire -10.697798274816332 How 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)
How tall is the Washington Monument? central Washington -10.708550721805022 How 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)
How tall is the Washington Monument? better shape -10.712457490604285 How 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)
How tall is the Washington Monument? the tallest stone structure -10.74785954151065 How 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)
How tall is the Washington Monument? white limestone -10.763456280144661 How 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)
How tall is the Washington Monument? 1848 and 1884 -10.768071566799813 How 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)
How tall is the Washington Monument? DS -10.77493011325124 How 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)
How tall is the Washington Monument? July 4th ,1848 -10.781791340843405 How 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)
How tall is the Washington Monument? pure aluminium -10.822105784022487 How 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)
How tall is the Washington Monument? monument -10.831945249923749 How 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)
How tall is the Washington Monument? the news -10.834048028402485 How 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)
How tall is the Washington Monument? July 4th , 1848 -10.841441056853737 How 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)
How tall is the Washington Monument? the biggest pagan penus sign -10.843591496376554 How 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)
How tall is the Washington Monument? fame -10.844049666669353 How 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)
How tall is the Washington Monument? the OTHER side -10.846862310391135 How 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)
How tall is the Washington Monument? the sky -10.857834663555561 How 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)
How tall is the Washington Monument? line -10.871795625412277 How 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)
How tall is the Washington Monument? Lincoln?s time -10.875381596036354 How 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)
How tall is the Washington Monument? a day -10.877649336826636 How 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)
How tall is the Washington Monument? 8595 -10.87780302703586 How 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)
How tall is the Washington Monument? the tallest masonry structure -10.879669569874732 How 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)
How tall is the Washington Monument? silly -10.900735534169838 How 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)
How tall is the Washington Monument? a success -10.90404259203253 How 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)
How tall is the Washington Monument? display -10.916948962641095 How 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)
How tall is the Washington Monument? the largest religious rally -10.917625491315285 How 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)
How tall is the Washington Monument? events -10.919303712104341 How 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)
How tall is the Washington Monument? charge -10.925493069614312 How 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)
How tall is the Washington Monument? The walk -10.925987664351062 How 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)
How tall is the Washington Monument? WASHINGTON ? -10.938944124634641 How 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)
How tall is the Washington Monument? a local quarry -10.939828311035738 How 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)
How tall is the Washington Monument? a large , tall white-colored obelisk -10.942205480051422 How 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)
How tall is the Washington Monument? July 4 , 1848 -10.95179354309764 How 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)
How tall is the Washington Monument? a Masonic ceremony -10.95712005077614 How 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)
How tall is the Washington Monument? One camera -10.958888423578333 How 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)
How tall is the Washington Monument? February 21 , 1885 -10.964172310819876 How 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)
How tall is the Washington Monument? honor -10.970321291809274 How 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)
How tall is the Washington Monument? dozens -10.970587155795483 How 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)
How tall is the Washington Monument? a wintry day -10.970775203990183 How 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)
How tall is the Washington Monument? The background -10.981230141687222 How 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)
How tall is the Washington Monument? millions -10.983850162621112 How 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)
How tall is the Washington Monument? Barack Obama -10.985378849009994 How 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)
How tall is the Washington Monument? pieces -10.989974952003827 How 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)
How tall is the Washington Monument? the center -10.991705613836656 How 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)
How tall is the Washington Monument? Easby -11.014400093602104 How 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)
How tall is the Washington Monument? the most prominent -11.014581887158306 How 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)
How tall is the Washington Monument? 1888 -11.020330027997714 How 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)
How tall is the Washington Monument? memory -11.069617350275673 How 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)
How tall is the Washington Monument? a clear day -11.071367656871688 How 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)
How tall is the Washington Monument? three weeks -11.07335222904299 How 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)
How tall is the Washington Monument? five blocks -11.107342634576048 How 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)
How tall is the Washington Monument? the largest tower -11.112727842535104 How 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)
How tall is the Washington Monument? The fourth obelisk -11.131513796313218 How 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)
How tall is the Washington Monument? the following words -11.133128961399056 How 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)
How tall is the Washington Monument? the tallest obelisk -11.133228696916442 How 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)
How tall is the Washington Monument? crossroads -11.136244376306692 How 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)
How tall is the Washington Monument? The third obelisk -11.156638102691403 How 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)
How tall is the Washington Monument? the nation -11.167214206541196 How 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)
How tall is the Washington Monument? a quarry -11.170263115484579 How 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)
How tall is the Washington Monument? The site -11.177492068895484 How 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)
How tall is the Washington Monument? the culminating showdown -11.21676534568183 How 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)
How tall is the Washington Monument? America -11.229492021458745 How 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)
How tall is the Washington Monument? the day -11.233072678119498 How 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)
How tall is the Washington Monument? money -11.241353892033786 How 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)
How tall is the Washington Monument? Pendragon -11.273940532633508 How 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)
How tall is the Washington Monument? The obelisk -11.300097697274419 How 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)
How tall is the Washington Monument? Fourth -11.301112068588877 How 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)
How tall is the Washington Monument? The capstone -11.326723393740766 How 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)
How tall is the Washington Monument? The most familiar example -11.352200811941694 How 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)
How tall is the Washington Monument? The museum -11.35226538006895 How 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)
How tall is the Washington Monument? a very good example -11.36728147752814 How 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)
How tall is the Washington Monument? the Property -11.387837368506613 How 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)
How tall is the Washington Monument? close proximity -11.401839821884753 How 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)
How tall is the Washington Monument? the devil -11.419871732896134 How 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)
How tall is the Washington Monument? the background -11.454485809728375 How 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)
How tall is the Washington Monument? Resurrection City -11.467088672655422 How 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)
How tall is the Washington Monument? the first clue -11.470187330721764 How 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)
How tall is the Washington Monument? The main activities -11.48248102619598 How 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)
How tall is the Washington Monument? Marcia -11.50624594875803 How 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)
How tall is the Washington Monument? front -11.51490760161555 How 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)
How tall is the Washington Monument? a solemn walk -11.526916276022074 How 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)
How tall is the Washington Monument? the banks -11.534519578260609 How 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)
How tall is the Washington Monument? the form -11.53979498084837 How 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)
How tall is the Washington Monument? the Smithsonian -11.551025185737942 How 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)
How tall is the Washington Monument? recently -11.560932690781009 How 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)
How tall is the Washington Monument? the divine calendar -11.563218676488138 How 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)
How tall is the Washington Monument? Quincy -11.569198017037746 How 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)
How tall is the Washington Monument? The race staging area -11.58750718678948 How 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)
How tall is the Washington Monument? the late 19th century -11.593514731905618 How 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)
How tall is the Washington Monument? the most famous -11.597766988578815 How 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)
How tall is the Washington Monument? the hotel -11.638675822592068 How 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)
How tall is the Washington Monument? the country -11.675107060615288 How 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)
How tall is the Washington Monument? The Iraq War Memorial -11.689353499587641 How 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)
How tall is the Washington Monument? cracks near its top -11.696145016220457 How 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)
How tall is the Washington Monument? repairs Tuesday -11.76820438158404 How 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)
How tall is the Washington Monument? treasures ..Folks -11.785259491885057 How 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)
How tall is the Washington Monument? the property -11.78585268490178 How 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)
How tall is the Washington Monument? thousands -11.812868753513206 How 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)
How tall is the Washington Monument? the water -11.814328979802516 How 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)
How tall is the Washington Monument? the Space Needle -11.83265420090809 How 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)
How tall is the Washington Monument? the capstone -11.850178181528797 How 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)
How tall is the Washington Monument? the city -11.852249733852936 How 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)
How tall is the Washington Monument? Tomb of the Unknown Soldier -11.860794397763303 How 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)
How tall is the Washington Monument? the tidal basic -11.865227390919598 How 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)
How tall is the Washington Monument? closer -11.915785350151266 How 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)
How tall is the Washington Monument? the monuments -11.923805212855813 How 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)
How tall is the Washington Monument? the crew -11.930908615809171 How 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)
How tall is the Washington Monument? the skyline -11.936615319639015 How 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)
How tall is the Washington Monument? a march -11.955547500440375 How 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)
How tall is the Washington Monument? the holidays -11.999026573717586 How 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)
How tall is the Washington Monument? Capitol Building -12.048785194869836 How 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)
How tall is the Washington Monument? America?s power -12.129923799538307 How 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)
How tall is the Washington Monument? Stephen Wade -12.134451518861287 How 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)
How tall is the Washington Monument? Jefferson Memorial -12.134451518861287 How 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)
How tall is the Washington Monument? Lincoln Memorial -12.136910803915455 How 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)
How tall is the Washington Monument? Washington monument -12.166938377751201 How 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)
How tall is the Washington Monument? FDR Memorial -12.178689138858788 How 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)
How tall is the Washington Monument? National Monument -12.217989156006784 How 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)
How tall is the Washington Monument? White House -12.217989156006784 How 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)
How tall is the Washington Monument? Lincoln memorial -12.217989156006784 How 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)
How tall is the Washington Monument? Arlington National Cemetery -12.217989156006784 How 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)
How tall is the Washington Monument? Vietnam Veterans Memorial -12.217989156006784 How 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)
How tall is the Washington Monument? the victory -12.255171081512366 How 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)
How tall is the Washington Monument? the white house -12.315525401622747 How 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)
How tall is the Washington Monument? the tallest structure in Washington -12.34643629577593 How 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)
How tall is the Washington Monument? the tallest building in the world -12.42116450023978 How 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)
How tall is the Washington Monument? the tallest structure in the world -12.435639324429957 How 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)
How tall is the Washington Monument? the tallest obelisk in the world -12.435639324429957 How 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)
How tall is the Washington Monument? the eye -12.448008321844284 How 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)
How tall is the Washington Monument? The reference -12.450405751421869 How 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)
How tall is the Washington Monument? the world 's tallest structure -12.456040443293908 How 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)
How tall is the Washington Monument? the tallest structure in the city -12.456040443293908 How 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)
How tall is the Washington Monument? the spring -12.482211327826281 How 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)
How tall is the Washington Monument? World War II Memorial -12.524293825540276 How 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)
How tall is the Washington Monument? Vietnam Memorial -12.524293825540276 How 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)
How tall is the Washington Monument? The public -12.553392725927448 How 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)
How tall is the Washington Monument? the highest masonry structure -12.58219551922405 How 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)
How tall is the Washington Monument? Hines -12.583772736293778 How 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)
How tall is the Washington Monument? mind -12.605221691737848 How 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)
How tall is the Washington Monument? the most famous landmarks -12.675619976513806 How 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)
How tall is the Washington Monument? the most familiar example -12.676294106473147 How 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)
How tall is the Washington Monument? the century Aluminum -12.6855104359751 How 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)
How tall is the Washington Monument? the effect -12.764464498400196 How 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)
How tall is the Washington Monument? the first President -12.84674466936624 How 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)
How tall is the Washington Monument? Obelisk -12.84995265200227 How 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)
How tall is the Washington Monument? up -12.860290782919282 How 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)
How tall is the Washington Monument? the greatest feats -12.91469888049632 How 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)
How tall is the Washington Monument? the east face -13.112560356358067 How 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)
How tall is the Washington Monument? the upper left -13.167579458752229 How 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)
How tall is the Washington Monument? inside -13.183171639609366 How 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)
How tall is the Washington Monument? eyeball -13.566902474625003 How 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)
How tall is the Washington Monument? The march -14.167845338845689 How 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)
How tall is the Washington Monument? engineer -14.966488484143843 How 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)
How old is Harriet Miers? 1945-08-10 -10.641133025711875 How 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)
How old is Harriet Miers? 60 -11.299361980947424 How 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)
How old is Harriet Miers? Sarah Palin -13.614484642825442 How 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)
How old is Harriet Miers? Lucy R -13.782878722990231 How 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)
How old is Harriet Miers? White House Counsel -13.791168173831393 How 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)
How old is Harriet Miers? information -13.838285402041963 How 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)
How old is Harriet Miers? Yesterday's -13.912377148038534 How 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)
How old is Harriet Miers? York -14.210142546618606 How 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)
How old is Harriet Miers? faith -14.218520433204507 How 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)
How old is Harriet Miers? sexism -14.240601068141467 How 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)
How old is Harriet Miers? staff -14.325336368778068 How 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)
How old is Harriet Miers? Sonia Sotomayor -14.501647086536291 How 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)
How old is Harriet Miers? Republican -14.688960614600425 How 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)
How old is Harriet Miers? Staff -14.726184607769188 How 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)
How old is Harriet Miers? Faith -14.804817320376554 How 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)
How old is Harriet Miers? Sotomayor -14.994527346753943 How 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)
How old is Harriet Miers? Mitt Romney -15.475656429043873 How 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)
How old is Harriet Miers? Cheney -16.449304223678414 How 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)
When was King Louis XIV born? Spain . Louis -4.600877905818088 When 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)
When was King Louis XIV born? France -4.794228868793698 When 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)
When was King Louis XIV born? Paris -5.4399224966504836 When 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)
When was King Louis XIV born? the site -7.324231948981502 When 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)
When was King Louis XIV born? the land -7.4631762222083715 When 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)
Where is the Salton Sea? Ecotopia 0.7732287545858412 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was featured in, Ecotopia) -> Ecotopia (1960ms)
Where is the Salton Sea? California 0.706025404501667 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is the largest lake in, California) -> California (1960ms)
Where is the Salton Sea? fact -0.6263856408504395 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was in, fact) -> fact (1961ms)
Where is the Salton Sea? management -0.7773475455300225 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is an experiment in, management) -> management (2143ms)
Where is the Salton Sea? an effort -0.7926082116809543 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea Authority, was formed in, an effort) -> an effort (2143ms)
Where is the Salton Sea? serious trouble -0.8916976045064982 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is in, serious trouble) -> serious trouble (2143ms)
Where is the Salton Sea? a former volcanic area -1.0278047984034557 Where 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)
Where is the Salton Sea? Little Birds -1.0378469938804837 Where 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)
Where is the Salton Sea? birds -1.106649763305581 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the environmentally sensitive Salton Sea, is a key in, birds) -> birds (2143ms)
Where is the Salton Sea? a poor state -1.1915801983921654 Where 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)
Where is the Salton Sea? a closed desert basin -1.2304849270633644 Where 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)
Where is the Salton Sea? Authorities Concept Scheme -1.5511633017973026 Where 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)
Where is the Salton Sea? the Imperial Valley -1.552586683373199 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, is in, the Imperial Valley) -> the Imperial Valley (2164ms)
Where is the Salton Sea? Geographic Names Concept Scheme -1.5836501606872182 Where 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)
Where is the Salton Sea? nature -1.626166334955325 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, are often cyclical in, nature) -> nature (2180ms)
Where is the Salton Sea? the Sonoran Desert -1.855568656476812 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, the Sonoran Desert) -> the Sonoran Desert (2180ms)
Where is the Salton Sea? black -1.8695593160869757 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the present day Salton Sea, is shown in, black) -> black (2201ms)
Where is the Salton Sea? SB 153 -2.289379094871987 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, be included in, SB 153) -> SB 153 (2200ms)
Where is the Salton Sea? Holtville -2.3616344557255844 Where 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)
Where is the Salton Sea? San Diego -2.601919663198811 Where 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)
Where is the Salton Sea? the top picks -2.667803860766197 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, is staying in, the top picks) -> the top picks (2200ms)
Where is the Salton Sea? the middle -2.668226939585214 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is out in, the middle) -> the middle (2214ms)
Where is the Salton Sea? the desert -2.690208043949199 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is a large lake in, the desert) -> the desert (2214ms)
Where is the Salton Sea? the dust -2.7530453727114237 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, was left in, the dust) -> the dust (2214ms)
Where is the Salton Sea? the early part -2.8297372966353462 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was formed in, the early part) -> the early part (2214ms)
Where is the Salton Sea? the southeastern corner -2.837695079649806 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, the southeastern corner) -> the southeastern corner (2236ms)
Where is the Salton Sea? St . Louis -3.08999593176063 Where 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)
Where is the Salton Sea? 1905 -3.856700672820333 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, was made in, 1905) -> 1905 (2264ms)
Where is the Salton Sea? May -4.084605340172335 Where 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)
Where is the Salton Sea? 2010 -4.085410039590524 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was ruled invalid in, 2010) -> 2010 (2468ms)
Where is the Salton Sea? detail -4.110835966778081 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, looks in, detail) -> detail (2469ms)
Where is the Salton Sea? part -4.113289968587243 Where 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)
Where is the Salton Sea? 1955 -4.309350656386576 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea State Park, was established in, 1955) -> 1955 (2469ms)
Where is the Salton Sea? the center -4.398396886033003 Where 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)
Where is the Salton Sea? 700 AD -4.987066996158611 Where 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)
Where is the Salton Sea? the hostile desert -5.035976838931454 Where 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)
Where is the Salton Sea? the balance -5.227556944306022 Where 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)
Where is the Salton Sea? salton city 11.09.2009 -5.866794315420267 Where 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)
Where is the Salton Sea? Section 2932 -5.909479559682823 Where 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)
Where is the Salton Sea? 1998 -6.7397415523922275 Where 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)
Where is the Salton Sea? 2012 -6.903293809891528 Where 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)
Where is the Salton Sea? Alabama -9.154224985461228 Where 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)
Where is the Salton Sea? Yucca -9.230728021064191 Where 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)
Where is the Salton Sea? Ken Aguado -9.344458706212784 Where 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)
Where is the Salton Sea? Indio -9.438333565175071 Where 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)
Where is the Salton Sea? Westmorland -9.747799238770526 Where 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)
Where is the Salton Sea? Thomas Newman -9.765034040529715 Where 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)
Where is the Salton Sea? New River -9.782991131040227 Where 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)
Where is the Salton Sea? Los Angeles -9.859050551029052 Where 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)
Where is the Salton Sea? The Salton Sea -10.00607953108343 Where 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)
Where is the Salton Sea? Palm Springs -10.232455164015288 Where 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)
Where is the Salton Sea? Bombay Beach -10.277048768277501 Where 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)
Where is the Salton Sea? Randy -10.27730142218039 Where 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)
Where is the Salton Sea? Bill Bernstein -10.278350348446534 Where 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)
Where is the Salton Sea? sea level -10.288979263390342 Where 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)
Where is the Salton Sea? fresh water -10.292580629824279 Where 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)
Where is the Salton Sea? Imperial County -10.293813327929684 Where 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)
Where is the Salton Sea? Whitewater River -10.298861251434245 Where 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)
Where is the Salton Sea? Alamo River -10.298861251434245 Where 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)
Where is the Salton Sea? Christopher -10.36595978043293 Where 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)
Where is the Salton Sea? the Center -10.373042593667671 Where 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)
Where is the Salton Sea? United States of America -10.51947204168211 Where 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)
Where is the Salton Sea? agriculture -10.623431733350618 Where 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)
Where is the Salton Sea? an eco-disaster -10.650597264815776 Where 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)
Where is the Salton Sea? ?man -10.659503802358588 Where 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)
Where is the Salton Sea? an extreme -10.664161592048755 Where 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)
Where is the Salton Sea? Todd -10.665518207826718 Where 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)
Where is the Salton Sea? DDT -10.786857653237062 Where 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)
Where is the Salton Sea? an inland -10.79655443370429 Where 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)
Where is the Salton Sea? Desert Shores -10.832981071609073 Where 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)
Where is the Salton Sea? Wheat Chex -10.834314980195803 Where 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)
Where is the Salton Sea? vital importance -10.893001768250947 Where 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)
Where is the Salton Sea? an interesting place -10.904431781444831 Where 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)
Where is the Salton Sea? agricultural drain water -10.904431781444831 Where 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)
Where is the Salton Sea? high phosphate water -10.93724683542115 Where 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)
Where is the Salton Sea? a pretty strange place -10.958134542726473 Where 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)
Where is the Salton Sea? five feet -10.961085017074398 Where 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)
Where is the Salton Sea? a barren Californian landscape -10.99353764048112 Where 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)
Where is the Salton Sea? every movie -10.99792345779877 Where 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)
Where is the Salton Sea? a productive fishery -11.001758118547789 Where 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)
Where is the Salton Sea? California?s largest inland body -11.042068789451585 Where 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)
Where is the Salton Sea? a fun historical documentary -11.070427691329996 Where 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)
Where is the Salton Sea? a terminal lake -11.075638473088208 Where 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)
Where is the Salton Sea? a huge saltwater lake -11.081922219948842 Where 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)
Where is the Salton Sea? a good movie -11.082220082391181 Where 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)
Where is the Salton Sea? an ideal distance -11.098135648420099 Where 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)
Where is the Salton Sea? invalid last year -11.135401508327604 Where 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)
Where is the Salton Sea? a named star -11.136677946521704 Where 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)
Where is the Salton Sea? Colorado River water -11.13963368524694 Where 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)
Where is the Salton Sea? I?ll -11.14322973460127 Where 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)
Where is the Salton Sea? a great flick -11.16238423649453 Where 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)
Where is the Salton Sea? a major bird sanctuary -11.176139177928253 Where 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)
Where is the Salton Sea? the Coachella and Imperial valleys -11.178299802523448 Where 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)
Where is the Salton Sea? the Los Angeles basin -11.184489212735715 Where 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)
Where is the Salton Sea? movie -11.2032342095551 Where 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)
Where is the Salton Sea? An obvious issue -11.205064322164805 Where 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)
Where is the Salton Sea? three species -11.214551919289063 Where 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)
Where is the Salton Sea? a unique and curious place -11.214790477981458 Where 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)
Where is the Salton Sea? an absolute resource goldmine -11.23842526833244 Where 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)
Where is the Salton Sea? water -11.29438538971789 Where 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)
Where is the Salton Sea? America -11.305237913488893 Where 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)
Where is the Salton Sea? the Gulf -11.325960828789194 Where 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)
Where is the Salton Sea? Bob -11.32733700250068 Where 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)
Where is the Salton Sea? nutrient rich inflows -11.349387357817916 Where 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)
Where is the Salton Sea? five < -11.370543579530748 Where 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)
Where is the Salton Sea? a barren California landscape and symbol -11.382594663587238 Where 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)
Where is the Salton Sea? Amy Sather Smith -11.386324853290581 Where 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)
Where is the Salton Sea? Sonny Bono Sonny -11.396051061809528 Where 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)
Where is the Salton Sea? No nests -11.407545590428374 Where 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)
Where is the Salton Sea? an enormous , accidentally created salt lake -11.442464394535438 Where 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)
Where is the Salton Sea? New York City -11.448271062433543 Where 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)
Where is the Salton Sea? The Glamis Sand Dunes -11.475572517320165 Where 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)
Where is the Salton Sea? Lake Cahuilla -11.482637867737932 Where 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)
Where is the Salton Sea? a little -11.488261396844273 Where 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)
Where is the Salton Sea? DVD -11.490860570913457 Where 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)
Where is the Salton Sea? a large amount -11.493511638479276 Where 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)
Where is the Salton Sea? a motor home and Jeep -11.515852814467763 Where 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)
Where is the Salton Sea? more than one hundred different species -11.53972616351114 Where 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)
Where is the Salton Sea? A somewhat unique population -11.567784244812698 Where 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)
Where is the Salton Sea? term -11.57022570256436 Where 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)
Where is the Salton Sea? Floods and crop damage -11.580982630808775 Where 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)
Where is the Salton Sea? jobs -11.628726165981963 Where 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)
Where is the Salton Sea? a director -11.643815637997223 Where 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)
Where is the Salton Sea? a shallow -11.70394105110392 Where 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)
Where is the Salton Sea? a volcano -11.802151574607974 Where 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)
Where is the Salton Sea? a toilet -11.81099878057062 Where 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)
Where is the Salton Sea? a saline -11.81187778312692 Where 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)
Where is the Salton Sea? a lake -11.827470849334887 Where 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)
Where is the Salton Sea? decay -11.912972006063951 Where 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)
Where is the Salton Sea? a crossroads -11.982597724006999 Where 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)
Where is the Salton Sea? needs-assessment workshop -12.053894696165703 Where 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)
Where is the Salton Sea? character-driven crime thriller -12.077745002836725 Where 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)
Where is the Salton Sea? the Desert Forum -12.085726409035479 Where 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)
Where is the Salton Sea? fucking masterpiece -12.111087173333067 Where 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)
Where is the Salton Sea? the Colorado River -12.124139150396289 Where 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)
Where is the Salton Sea? Water -12.145284057240973 Where 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)
Where is the Salton Sea? terrific movie -12.147420619212268 Where 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)
Where is the Salton Sea? The band -12.155696770831398 Where 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)
Where is the Salton Sea? the Pacific Institute -12.196643383927517 Where 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)
Where is the Salton Sea? point -12.197132425317362 Where 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)
Where is the Salton Sea? interesting read -12.200168278052631 Where 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)
Where is the Salton Sea? Todgoldberg.com -12.201826552803007 Where 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)
Where is the Salton Sea? stylized movie inwhich -12.208305282263316 Where 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)
Where is the Salton Sea? huge dune field -12.228385044608006 Where 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)
Where is the Salton Sea? complex challenge -12.228552746670111 Where 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)
Where is the Salton Sea? long-term effort -12.235865054985226 Where 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)
Where is the Salton Sea? interesting page -12.238216310091461 Where 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)
Where is the Salton Sea? unique opportunity -12.240032336395807 Where 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)
Where is the Salton Sea? 231 ft -12.267982854693866 Where 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)
Where is the Salton Sea? awareness about issue -12.273279000043148 Where 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)
Where is the Salton Sea? violent, drug glorifying movie -12.273279000043148 Where 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)
Where is the Salton Sea? weather worn area -12.273279000043148 Where 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)
Where is the Salton Sea? 15 miles -12.276634209908678 Where 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)
Where is the Salton Sea? stressful period -12.288387120941886 Where 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)
Where is the Salton Sea? water quality parameter -12.291160591647378 Where 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)
Where is the Salton Sea? 226 feet -12.306952098790026 Where 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)
Where is the Salton Sea? piece of slideshow art -12.328256761241466 Where 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)
Where is the Salton Sea? hilarious tweeker -12.328256761241466 Where 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)
Where is the Salton Sea? 128 feet -12.349001373974902 Where 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)
Where is the Salton Sea? nice stop -12.35746336220998 Where 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)
Where is the Salton Sea? lengthy process -12.358309823167431 Where 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)
Where is the Salton Sea? farm runoff -12.358723127348426 Where 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)
Where is the Salton Sea? tale of survival -12.358959598668985 Where 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)
Where is the Salton Sea? environmental issue -12.37191969025175 Where 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)
Where is the Salton Sea? feisty documentary -12.375380556554312 Where 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)
Where is the Salton Sea? killer documentary -12.375380556554312 Where 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)
Where is the Salton Sea? public outreach tool -12.377202604277429 Where 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)
Where is the Salton Sea? 50,000 parts -12.392789091118933 Where 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)
Where is the Salton Sea? 28 miles -12.39979288305795 Where 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)
Where is the Salton Sea? environmental change -12.403599535165842 Where 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)
Where is the Salton Sea? 30 % saltier -12.409524275421692 Where 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)
Where is the Salton Sea? area of very high apparent Pg velocity -12.416221179158777 Where 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)
Where is the Salton Sea? the east -12.491016292898633 Where 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)
Where is the Salton Sea? 25 percent saltier -12.492703419297925 Where 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)
Where is the Salton Sea? 25 % saltier -12.562555040923568 Where 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)
Where is the Salton Sea? dusty flatlands -12.56666852419879 Where 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)
Where is the Salton Sea? historical records -12.580331661452076 Where 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)
Where is the Salton Sea? 60 km -12.588196762769138 Where 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)
Where is the Salton Sea? State and national stakeholders -12.592310298746654 Where 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)
Where is the Salton Sea? abundant wildlife -12.593979116949878 Where 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)
Where is the Salton Sea? The plant -12.605307127246144 Where 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)
Where is the Salton Sea? Waters -12.608201989331466 Where 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)
Where is the Salton Sea? The location -12.640445744668868 Where 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)
Where is the Salton Sea? California 's largest lake -12.66186628085466 Where 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)
Where is the Salton Sea? accident -12.66302050111867 Where 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)
Where is the Salton Sea? The IID -12.663046106773393 Where 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)
Where is the Salton Sea? 10 generating plants -12.736618156261077 Where 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)
Where is the Salton Sea? The large lake -12.786538283022496 Where 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)
Where is the Salton Sea? The next stop -12.822427548732232 Where 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)
Where is the Salton Sea? the epicenter -12.834483869335813 Where 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)
Where is the Salton Sea? the brink -12.845416711374513 Where 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)
Where is the Salton Sea? 4 Salton Sea Q -12.857579231012723 Where 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)
Where is the Salton Sea? comedy -12.888481275310824 Where 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)
Where is the Salton Sea? the bulk -12.902959317249971 Where 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)
Where is the Salton Sea? The next outing -12.923234810526719 Where 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)
Where is the Salton Sea? fish -12.931002425715144 Where 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)
Where is the Salton Sea? 420 bird species -12.959699403784938 Where 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)
Where is the Salton Sea? the fastest surfaces -12.961902734215528 Where 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)
Where is the Salton Sea? own demented trailer trash -12.978039547740604 Where 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)
Where is the Salton Sea? the meeting -12.978941045337937 Where 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)
Where is the Salton Sea? 3 million birds -12.989762110338287 Where 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)
Where is the Salton Sea? UC Davis researchers -12.9903661274753 Where 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)
Where is the Salton Sea? refuge -13.000769659903744 Where 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)
Where is the Salton Sea? documentary -13.001916324014642 Where 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)
Where is the Salton Sea? the senses -13.002511267561664 Where 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)
Where is the Salton Sea? adult -13.038631183325949 Where 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)
Where is the Salton Sea? The refuge -13.040894187699065 Where 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)
Where is the Salton Sea? The following photos -13.045315172406843 Where 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)
Where is the Salton Sea? The site -13.051112330826106 Where 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)
Where is the Salton Sea? the headwaters -13.059164450488934 Where 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)
Where is the Salton Sea? the data -13.064961608908199 Where 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)
Where is the Salton Sea? the largest inland body -13.083037799532311 Where 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)
Where is the Salton Sea? the valley -13.103866337579397 Where 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)
Where is the Salton Sea? Birds -13.10504167694136 Where 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)
Where is the Salton Sea? pupfish -13.13301027282445 Where 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)
Where is the Salton Sea? project -13.135129983192424 Where 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)
Where is the Salton Sea? The real issue -13.197983507339124 Where 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)
Where is the Salton Sea? April 24 -13.2044351233466 Where 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)
Where is the Salton Sea? The next step -13.232705809994942 Where 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)
Where is the Salton Sea? the nation?s eyes -13.238895220207208 Where 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)
Where is the Salton Sea? the largest geothermal plant -13.258347584542808 Where 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)
Where is the Salton Sea? mistakes -13.33305329953081 Where 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)
Where is the Salton Sea? 35 miles long -13.38993210408374 Where 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)
Where is the Salton Sea? The money -13.41770199982374 Where 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)
Where is the Salton Sea? Portal So Cal -13.461790730986845 Where 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)
Where is the Salton Sea? Bird -13.496805705489205 Where 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)
Where is the Salton Sea? campers and boaters -13.543522979022853 Where 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)
Where is the Salton Sea? help -13.619818779025639 Where 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)
Where is the Salton Sea? Have lunch -13.702678586609741 Where 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)
Where is the Salton Sea? a fish -13.718782073816637 Where 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)
Where is the Salton Sea? 400 species of birds -13.739979640856443 Where 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)
Where is the Salton Sea? the largest lake in California -13.790664302325716 Where 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)
Where is the Salton Sea? location of the ED -13.847098793007957 Where 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)
Where is the Salton Sea? the ocean -13.849860059392954 Where 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)
Where is the Salton Sea? 4 to 6 -13.99388704540829 Where 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)
Where is the Salton Sea? the outside world -14.06690090381855 Where 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)
Where is the Salton Sea? the state -14.144645740331395 Where 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)
Where is the Salton Sea? bird -14.217229254775916 Where 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)
Where is the Salton Sea? Bird's -14.336147077022078 Where 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)
Where is the Salton Sea? the strangest places -14.35713210288725 Where 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)
Where is the Salton Sea? the most productive -14.369552291998602 Where 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)
Where is the Salton Sea? an estimated 400,000 tons -14.422070201519835 Where 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)
Where is the Salton Sea? the approach -14.427660369276778 Where 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)
Where is the Salton Sea? the most polluted bodies -14.474084794890947 Where 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)
Where is the Salton Sea? the only fish living -14.477361198827412 Where 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)
Where is the Salton Sea? 1905 and 1907 -14.974699067232233 Where 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)
What was the final score? Scale Calibration Factor -3.8343365392470083 What 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)
What was the final score? tie -3.8532252147010873 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, tie) -> tie (2844ms)
What was the final score? Permanent Score -3.8796264457055636 What was the final score? -> $x: (the final score, instance of, $x) -> (final score from the last Classification, Instance Of, Permanent Score) -> Permanent Score (2844ms)
What was the final score? continuous problem-solving process -3.919008302017959 What 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)
What was the final score? micro-averaged f-measure -4.018880018651419 What 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)
What was the final score? mixed bag of decision -4.018880018651419 What 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)
What was the final score? performance project -4.0901925257329665 What was the final score? -> $x: (the final score, instance of, $x) -> (The Final Score, Instance Of, performance project) -> performance project (3695ms)
What was the final score? separate and equal factor -4.10684443656873 What 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)
What was the final score? much closer game -4.164990585540714 What 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)
What was the final score? short movie -4.205119023003758 What was the final score? -> $x: (the final score, instance of, $x) -> (The Final Score, Instance Of, short movie) -> short movie (3695ms)
What was the final score? defensive score -4.211203500691976 What was the final score? -> $x: (the final score, instance of, $x) -> (final score for the Warriors, Instance Of, defensive score) -> defensive score (3965ms)
What was the final score? curved score -4.256097456127118 What was the final score? -> $x: (the final score, instance of, $x) -> (score in the Final column, Instance Of, curved score) -> curved score (3966ms)
What was the final score? writing score -4.256097456127118 What was the final score? -> $x: (the final score, instance of, $x) -> (final score from the WKCE, Instance Of, writing score) -> writing score (3965ms)
What was the final score? impressive accomplishment -4.2996787406869785 What was the final score? -> $x: (the final score, instance of, $x) -> (final score on the film, Instance Of, impressive accomplishment) -> impressive accomplishment (3966ms)
What was the final score? policy decision -4.351827512986095 What was the final score? -> $x: (the final score, instance of, $x) -> (final decision about the passing score, Instance Of, policy decision) -> policy decision (3965ms)
What was the final score? combined value -4.425402131511989 What was the final score? -> $x: (the final score, instance of, $x) -> (final score on the TJN index, Instance Of, combined value) -> combined value (4048ms)
What was the final score? first-person -5.236652927567645 What 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)
What was the final score? fixed-odds game -5.5310062181099875 What 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)
What was the final score? awesome pic -5.585600865387341 What 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)
What was the final score? average of the seven above factor -5.6067044003829345 What 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)
What was the final score? encompassing summary of the statistic -5.616788206146111 What 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)
What was the final score? mixed bag -5.652611456316999 What 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)
What was the final score? logarithmic matrix of the mutation probability -5.661682161581253 What 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)
What was the final score? member of the Santa Clarita Valley Chamber -5.706269160411653 What 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)
What was the final score? BBC TV program -5.718495655145917 What 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)
What was the final score? result of hard work -5.800601528250574 What 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)
What was the final score? excellent sport shop -5.810524626004902 What 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)
What was the final score? linear type trait -5.836785906443508 What 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)
What was the final score? FSN studio show -5.88667903384695 What 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)
What was the final score? PG-equivalent score -5.892588758614194 What 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)
What was the final score? live team competition -5.91004513388973 What 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)
What was the final score? resource of exceptionally high quality -5.919165892736866 What 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)
What was the final score? real strong indicator -5.922452230434956 What 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)
What was the final score? annual appraisal datum -5.9323951593514135 What 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)
What was the final score? economically important trait -5.954120529419768 What 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)
What was the final score? average of the 7 above factor -5.954367905728529 What 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)
What was the final score? long standing favorite -5.957252560228865 What 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)
What was the final score? view only utility program -5.964059848172008 What 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)
What was the final score? fixed-odds betting game -5.972700651320093 What 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)
What was the final score? fair an balanced score set -5.991548728771168 What 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)
What was the final score? sum of the 13 item -5.999261861163671 What 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)
What was the final score? leading online retailer of name brand footwear -6.015110626427591 What 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)
What was the final score? flagship BBC sport production -6.018896732523608 What 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)
What was the final score? great provider of sporting good -6.044591879847168 What 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)
What was the final score? fast paced football result based game -6.053398710119277 What 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)
What was the final score? studio show -6.0964044262381645 What 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)
What was the final score? user datum -6.1777238842440045 What 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)
What was the final score? new record -6.215531020073801 What 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)
What was the final score? vital information -6.2229613310288805 What 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)
What was the final score? private company -6.237061382513261 What 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)
What was the final score? metric variable -6.2438479503007995 What 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)
What was the final score? sober alternative -6.249757675068043 What 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)
What was the final score? interactive drama -6.250561124076366 What 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)
What was the final score? numerical value -6.2576714526816675 What 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)
What was the final score? continuous variable -6.260407347616073 What 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)
What was the final score? fair movie -6.267074585528853 What 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)
What was the final score? flagship program -6.272520154208612 What 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)
What was the final score? instant game -6.277176117243842 What 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)
What was the final score? excellent service -6.280095190059397 What 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)
What was the final score? 4-0 victory -6.285146219394931 What 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)
What was the final score? multimedia resource -6.28655610887799 What 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)
What was the final score? flagship production -6.290885337106043 What 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)
What was the final score? incredible score -6.299836331405887 What 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)
What was the final score? world supplier of quality athletic footwear and apparel -6.321415295961083 What 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)
What was the final score? 14-year-old Thoroughbred gelding -6.32413045006283 What 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)
What was the final score? 0-0 draw -6.326273881432931 What 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)
What was the final score? school record -6.329869567773942 What 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)
What was the final score? betting game -6.34048001084267 What 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)
What was the final score? complex business -6.343311514758634 What 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)
What was the final score? great game -6.345285773231045 What 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)
What was the final score? hard PG-13 equivalent score -6.356617308952746 What 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)
What was the final score? sporting good retailer -6.356947429567912 What 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)
What was the final score? documentary following a group of 17-year old Thai student -6.3602898469085645 What 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)
What was the final score? 9 and 8 victory -6.384106189551905 What 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)
What was the final score? point -6.387188296423206 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the match, Instance Of, point) -> point (4591ms)
What was the final score? 54-hole MWC Championship record -6.407668087208327 What 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)
What was the final score? rush -6.41836317614371 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, rush) -> rush (4591ms)
What was the final score? goal -6.4355917638995255 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, goal) -> goal (4591ms)
What was the final score? shocker -6.499929028522336 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the Elmira-Manhattanville game, Instance Of, shocker) -> shocker (4591ms)
What was the final score? indicia -6.501350756992753 What was the final score? -> $x: (the final score, instance of, $x) -> (final scores of the Sugar Bowl, Instance Of, indicia) -> indicia (4591ms)
What was the final score? safety -6.506389699749561 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the first half, Instance Of, safety) -> safety (4724ms)
What was the final score? event -6.528596777520223 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the first half, Instance Of, event) -> event (4724ms)
What was the final score? 2007 Thai documentary film -6.574699237175839 What 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)
What was the final score? pretty fun movie -6.700307988266417 What 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)
What was the final score? online outlet -6.726039206697024 What 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)
What was the final score? Boxing Day -7.015174986451649 What 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)
What was the final score? 25 games -7.431908458226507 What 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)
What was the final score? 20 pounds -7.642864924971922 What 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)
What was the final score? 42-31 -7.7350459090345165 What 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)
What was the final score? Paul Mitchell -8.025396775766117 What 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)
What was the final score? in joy -8.047012234131657 What 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)
What was the final score? 14-1 -8.081632530832128 What 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)
What was the final score? 21-19 -8.081632530832128 What 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)
What was the final score? 12-9 -8.113463662889965 What 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)
What was the final score? 7-4 -8.113463662889965 What 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)
What was the final score? 6-2 -8.116508473886256 What 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)
What was the final score? Unfortunately this -8.117440441260356 What 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)
What was the final score? February 14 -8.20418083424006 What 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)
What was the final score? 1-0 -8.23977873564124 What 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)
What was the final score? 34 -8.242491943093953 What 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)
What was the final score? 19-17 -8.267314046665682 What 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)
What was the final score? playoff basketball -8.282981517141465 What 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)
What was the final score? 6-1 -8.284998038199088 What 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)
What was the final score? 7-0 -8.284998038199088 What 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)
What was the final score? 4-2 -8.28951875842425 What 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)
What was the final score? 13 -8.295608380416837 What 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)
What was the final score? 6-3 -8.324394701478381 What 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)
What was the final score? LF 6 -8.324623987105582 What 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)
What was the final score? total weight -8.334429264477247 What 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)
What was the final score? draw -8.334526989655831 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, draw) -> draw (4743ms)
What was the final score? 1-1 -8.340120483003364 What 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)
What was the final score? any games -8.357816335390414 What 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)
What was the final score? The ?line ? -8.35920384376751 What 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)
What was the final score? 19-23 -8.35927064453251 What 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)
What was the final score? function -8.374357852797807 What 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)
What was the final score? An anti-climactic draw -8.37511940979643 What 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)
What was the final score? victory -8.376368015778807 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, victory) -> victory (4743ms)
What was the final score? 2-0 -8.37846782654011 What 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)
What was the final score? 5-1 -8.38805691289176 What 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)
What was the final score? 6-4 -8.391101776590347 What 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)
What was the final score? factor -8.392102721185037 What 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)
What was the final score? 3-3 -8.395397544921446 What 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)
What was the final score? 3-0 -8.395397544921446 What 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)
What was the final score? label -8.409391975692921 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, label) -> label (4743ms)
What was the final score? trait -8.420099819446502 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, trait) -> trait (4760ms)
What was the final score? 86-54 -8.421099915016438 What 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)
What was the final score? wrong ? 89 -8.426121363135408 What 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)
What was the final score? documentary -8.428919462786174 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, documentary) -> documentary (4760ms)
What was the final score? one episode -8.44404029026294 What 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)
What was the final score? senior Jack Reeder -8.445165103587827 What 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)
What was the final score? repeat -8.450217713230202 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, repeat) -> repeat (4760ms)
What was the final score? illusion -8.455148853234409 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, illusion) -> illusion (4760ms)
What was the final score? statistic -8.461043726705656 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, statistic) -> statistic (4760ms)
What was the final score? 75 Diggs4-3 -8.48289540829137 What 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)
What was the final score? contender -8.49330215669181 What 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)
What was the final score? category -8.502864951651958 What 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)
What was the final score? Yeah -8.522360778688974 What 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)
What was the final score? average -8.526457107016327 What 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)
What was the final score? combination -8.570978922881489 What 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)
What was the final score? Soraya Nakasuwan -8.57730062451661 What 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)
What was the final score? The Bulldogs ? biggest lead -8.585260598632118 What 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)
What was the final score? S?o Paulo -8.589532526510595 What 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)
What was the final score? 3-2 -8.595063287815922 What 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)
What was the final score? Miami -8.610684836631819 What 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)
What was the final score? Friday night -8.67088969542705 What 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)
What was the final score? The 2 -1 -8.67122953603051 What 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)
What was the final score? 1 field -8.69428845064484 What 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)
What was the final score? 21 to 7 -8.741150909628203 What 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)
What was the final score? 17 to 5 -8.764502870624067 What 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)
What was the final score? the Giants -8.773175689440937 What 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)
What was the final score? Vasco 3 ? 0 Mesquita -8.921468003305234 What 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)
What was the final score? Eddie Stobart drivers -9.176920786019332 What 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)
What was the final score? 4-0 -9.454050976022833 What 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)
What was the final score? El Salvador -9.634318036717259 What 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)
What was the final score? the end -9.635370354934743 What 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)
What was the final score? the present score -9.651285920963662 What 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)
What was the final score? the uninsured rate -9.76594349893029 What 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)
What was the final score? The only down side -9.800755554892735 What 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)
What was the final score? the footbal game -9.851835902961529 What 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)
What was the final score? the visible score -9.860613304249828 What 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)
What was the final score? the last set -9.861306929152477 What 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)
What was the final score? the CHL -9.87570993723833 What 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)
What was the final score? the second half -9.906656144959351 What 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)
What was the final score? the main header -9.943792500828357 What 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)
What was the final score? The only numbers -9.958759259626628 What 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)
What was the final score? the reason -9.973157184360424 What 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)
What was the final score? the game -9.980859785046885 What 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)
What was the final score? the most -9.994377921498218 What 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)
What was the final score? the outcome -10.009017049333035 What 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)
What was the final score? the IIMs -10.029654763067006 What 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)
What was the final score? The only question -10.08084313217406 What 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)
What was the final score? The real success -10.094106086297392 What 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)
What was the final score? the only important number -10.095944263773932 What 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)
What was the final score? The end result -10.112674264231895 What 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)
What was the final score? a 4-2 lead -10.133753121602766 What 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)
What was the final score? The third element -10.154301304078436 What 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)
What was the final score? The Award committee -10.221133437319823 What 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)
What was the final score? the USSR -10.231187276802222 What 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)
What was the final score? video ? -10.325095567776625 What 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)
What was the final score? question -10.325441706004623 What 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)
What was the final score? different -10.335624681741535 What 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)
What was the final score? sports -10.34705469493542 What 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)
What was the final score? 50 points -10.392599048533265 What 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)
What was the final score? out -10.418617817308741 What 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)
What was the final score? doubt -10.424536468612068 What 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)
What was the final score? lol -10.429292727653745 What 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)
What was the final score? Asia -10.456254150562195 What 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)
What was the final score? the 3 points -10.463183187763475 What 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)
What was the final score? Four variables -10.464857621343898 What 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)
What was the final score? Cliff Martinez -10.467765432823082 What 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)
What was the final score? Projo.com -10.503773943989193 What 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)
What was the final score? Five points -10.535896608892584 What 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)
What was the final score? Ten points -10.545139522410587 What 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)
What was the final score? important -10.628131261606228 What 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)
What was the final score? ?Sounds Orchestral -10.639645705907368 What 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)
What was the final score? a factor -10.688676698436762 What 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)
What was the final score? Killian Canavan -10.69055437749272 What 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)
What was the final score? walk-off wins -10.691844946206949 What 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)
What was the final score? Hard-rep -10.713820796176513 What 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)
What was the final score? two percentage points -10.750460679506757 What 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)
What was the final score? no chance -10.788563527920317 What 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)
What was the final score? two -10.799160358203894 What 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)
What was the final score? a pitch -10.82523539517437 What 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)
What was the final score? Last years contest info -10.834886860839964 What 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)
What was the final score? No account -10.84634637398875 What 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)
What was the final score? Scholarships -10.86776722830685 What 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)
What was the final score? Composite scores -10.868792670595857 What 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)
What was the final score? each contestant -10.883047783981931 What 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)
What was the final score? one more roll -10.89836449054693 What 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)
What was the final score? Final Score -10.907085803584101 What 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)
What was the final score? Google -10.913516432656065 What 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)
What was the final score? a Matador -10.916997236608688 What 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)
What was the final score? Veterans preference credit -10.92266912221387 What 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)
What was the final score? Don?t -10.945286253280235 What 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)
What was the final score? Bonus points -10.948266379212464 What 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)
What was the final score? Don?t -10.956845402728632 What 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)
What was the final score? a single-trait animal model -10.9595235570733 What 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)
What was the final score? seven seniority points -10.965284763537703 What 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)
What was the final score? Fu and Han -10.965826928790584 What 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)
What was the final score? each game -10.967891284536964 What 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)
What was the final score? Veterans Points -10.97179385762704 What 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)
What was the final score? Two factors -10.985150545444439 What 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)
What was the final score? Multi-player -10.988617231036525 What 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)
What was the final score? a candidate -10.992579535045556 What 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)
What was the final score? Noebels ? -11.007185408971027 What 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)
What was the final score? a three-point lead -11.010316096296789 What 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)
What was the final score? Tie-breaker -11.023681981879097 What 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)
What was the final score? Final places -11.028633854487417 What 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)
What was the final score? Veterans ? preference credit -11.05167575178094 What 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)
What was the final score? the Eagles -11.052651393598095 What 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)
What was the final score? A point spread -11.06485707056848 What 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)
What was the final score? a ten-yard score -11.070162241677355 What 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)
What was the final score? Employees -11.073556226644047 What 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)
What was the final score? a specific settling table -11.073935292433633 What 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)
What was the final score? DeSaverio?s goal -11.079004263795206 What 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)
What was the final score? e-mail results -11.084869597234452 What 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)
What was the final score? the Individual Finals -11.085583306791717 What 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)
What was the final score? ? Don?t -11.088228432395866 What 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)
What was the final score? a game -11.092501725349399 What 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)
What was the final score? given point values -11.101066650352111 What 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)
What was the final score? the scores -11.116433606370991 What 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)
What was the final score? too many Steeler losses -11.124269981596422 What 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)
What was the final score? use -11.126686341052409 What 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)
What was the final score? Patrick?s goal -11.131857272594495 What 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)
What was the final score? Webster?s games -11.147772838623412 What 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)
What was the final score? each match -11.157109598677199 What 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)
What was the final score? the Denver game -11.157162264349985 What 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)
What was the final score? the ICP -11.157498994440065 What 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)
What was the final score? One winner -11.167494070665356 What 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)
What was the final score? The Panthers biggest lead -11.176826142398985 What 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)
What was the final score? Comments -11.179824938845309 What 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)
What was the final score? 5-2...which -11.207633332311255 What 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)
What was the final score? Veterans ? preference points -11.208097112126449 What 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)
What was the final score? more points -11.21632947138776 What 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)
What was the final score? the 9th my heart -11.229634446170797 What 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)
What was the final score? two points -11.234700891213372 What 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)
What was the final score? each test -11.235753411701728 What 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)
What was the final score? one letter grade -11.237511884728299 What 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)
What was the final score? each team?s answers -11.239928244184284 What 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)
What was the final score? the Haskins Center -11.26248742133697 What 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)
What was the final score? Three points -11.263701161196547 What 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)
What was the final score? up to 30 credits -11.277017123490463 What 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)
What was the final score? L Bets -11.282797137643003 What 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)
What was the final score? count -11.286257497861916 What 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)
What was the final score? a difficult angle -11.331025062685564 What 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)
What was the final score? 0.1 -11.3424588236368 What 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)
What was the final score? A general impression mark -11.35560213904879 What 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)
What was the final score? Power ratings -11.356479567820262 What 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)
What was the final score? a specific question -11.35802806891426 What 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)
What was the final score? a bonus point -11.369437804046374 What 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)
What was the final score? the 3 attempts -11.376296939891521 What 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)
What was the final score? Total goals -11.377936673167403 What 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)
What was the final score? a Miami TD drive -11.37986773988517 What 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)
What was the final score? midterm scores -11.380697257934633 What 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)
What was the final score? the only question -11.386308468736551 What 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)
What was the final score? bonus points -11.402509054559474 What 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)
What was the final score? No accurate historical record -11.406329080004582 What 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)
What was the final score? each round -11.408999285348594 What 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)
What was the final score? Twelve metrics -11.411992997947692 What 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)
What was the final score? Sales results -11.423721554353007 What 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)
What was the final score? sock style -11.432636381942373 What 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)
What was the final score? each member -11.436665114857147 What 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)
What was the final score? one point -11.436928783561243 What 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)
What was the final score? Nine -11.446501579228292 What 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)
What was the final score? each infraction -11.454912989803605 What 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)
What was the final score? 128 companies -11.466703320779429 What 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)
What was the final score? a snap header -11.475027848052923 What 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)
What was the final score? each squad -11.490993422246875 What 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)
What was the final score? T-Square and 20 points -11.504513242782178 What 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)
What was the final score? Winners -11.528312874779745 What 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)
What was the final score? each table -11.534811070233946 What 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)
What was the final score? Any first-place ties -11.5364475036579 What 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)
What was the final score? non-performing -11.552674331509234 What 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)
What was the final score? 70-59 -11.583656012783125 What 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)
What was the final score? disclosing much -11.59051555133516 What 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)
What was the final score? a winning square -11.59092231038809 What 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)
What was the final score? Points -11.609659025024234 What 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)
What was the final score? 13-9 -11.610380728723838 What 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)
What was the final score? Tim Ferguson -11.627713913684115 What 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)
What was the final score? a team plays -11.712705362358667 What 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)
What was the final score? the ?goals -11.727359289465268 What 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)
What was the final score? a settling table -11.742768068912016 What 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)
What was the final score? One very resourceful group -11.761437829689978 What 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)
What was the final score? a critics job -11.774588887784372 What 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)
What was the final score? The goal -11.822802552552345 What 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)
What was the final score? matter -11.864378744400964 What 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)
What was the final score? game -11.878282979344085 What 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)
What was the final score? Payouts -11.895623037172264 What 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)
What was the final score? Games -11.909342811215856 What 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)
What was the final score? THE GOAL -11.916677339122888 What 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)
What was the final score? the Junior -11.932776048482388 What 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)
What was the final score? JOhn -11.93335150043543 What 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)
What was the final score? NEW -12.014235114571294 What 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)
What was the final score? Padilla -12.022170755480408 What 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)
What was the final score? Acid levels -12.034685145472807 What 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)
What was the final score? the ?short-form ? GN -12.035123200867272 What 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)
What was the final score? Extra Time -12.046868475289031 What 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)
What was the final score? NBA -12.053219345239192 What 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)
What was the final score? the three centers -12.108579694588283 What 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)
What was the final score? service corps of retired executives -12.1770029421098 What 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)
What was the final score? The following distribution -12.23937640029676 What 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)
What was the final score? the Mavericks -12.245652861910745 What 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)
What was the final score? attention -12.272269487397082 What 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)
What was the final score? the clock -12.287444210742162 What 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)
What was the final score? the pitcher ? -12.298471680266852 What 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)
What was the final score? the Canon S3 -12.43765508008519 What 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)
What was the final score? the other two sections -12.470840126919601 What 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)
What was the final score? The points -12.496087586501952 What 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)
What was the final score? The Lakers -12.498054361946007 What 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)
What was the final score? the Chamber -12.532197513153939 What 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)
What was the final score? Criterion scores -12.539252306976879 What 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)
What was the final score? an end -12.593117306917298 What 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)
What was the final score? perception action -12.593731099861827 What 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)
What was the final score? sports game -12.593731099861827 What 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)
What was the final score? professional organization -12.593731099861827 What 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)
What was the final score? political blog -12.593731099861827 What 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)
What was the final score? Kuyt???s goals -12.594393745111397 What 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)
What was the final score? Money -12.599821184777138 What 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)
What was the final score? The final total -12.617246981157098 What 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)
What was the final score? the emotions -12.629906484615358 What 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)
What was the final score? a touchdown -12.639856578290217 What 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)
What was the final score? Style The IXUS 980 -12.648730107846081 What 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)
What was the final score? the evaluation process -12.664109440140463 What 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)
What was the final score? Balfour and Fuentes -12.672521111641785 What 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)
What was the final score? Entrepreneurship -12.679036163865852 What 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)
What was the final score? the playing session -12.722466480444966 What 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)
What was the final score? the winner -12.780062372484362 What 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)
What was the final score? The winner -12.810464352707024 What 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)
What was the final score? the day -12.825917659632934 What 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)
What was the final score? The over/under -12.832991203544001 What 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)
What was the final score? The game -12.870631930506766 What 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)
What was the final score? the winners -12.899264761354312 What 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)
What was the final score? The score sheet -12.913791567001766 What 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)
What was the final score? The opposition scorer -12.927600360614118 What 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)
What was the final score? the purpose -12.969419509799607 What 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)
What was the final score? possession -13.092786133648673 What 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)
What was the final score? losers -13.153185685660606 What 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)
What was the final score? Results -13.270502532492763 What 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)
What was the final score? winners -13.317238388886555 What 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)
What was the final score? links -13.318791063377075 What 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)
What was the final score? detail -13.535252514547675 What 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)
What was the final score? the employer -14.287360838725856 What 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)
What was the final score? life -14.63831958966398 What 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)
What year did Alaska become a state? 1959 -7.519324686293866 What 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)
What year did Alaska become a state? 1867 -7.641072018341523 What 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)
What year did Alaska become a state? 1922 -7.645920422232434 What 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)
What year did Alaska become a state? 1958 -7.701197484150514 What 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)
What year did Alaska become a state? 1960 -7.909348324551002 What 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)
What year did Alaska become a state? 1912 -7.962892128354724 What 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)
What year did Alaska become a state? 1969 -8.19051378292985 What 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)
What year did Alaska become a state? 1970 -8.270250669770135 What 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)
What year did Alaska become a state? 1990 -8.276440027280106 What 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)
What year did Alaska become a state? January 1959 -8.564566682190229 What 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)
What year did Alaska become a state? 1977 -8.589146618705174 What 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)
What year did Alaska become a state? January 3 , 1959 -8.700585373987025 What 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)
What year did Alaska become a state? 1912 and finally -8.827801193112133 What 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)
What year did Alaska become a state? The Last Frontier -9.197094942472212 What 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)
What year did Alaska become a state? the 1950?s -9.34824868034976 What 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)
What year did Alaska become a state? less than 20 years -9.56260947502064 What 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)
What year did Alaska become a state? President Eisenhower -9.572526137038961 What 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)
What year did Alaska become a state? MIND -9.760368429387782 What 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)
What year did Alaska become a state? 2100 -9.761502298317875 What 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)
What year did Alaska become a state? act -9.920239640478673 What 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)
What year did Alaska become a state? 1995 -9.946984907239608 What 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)
What year did Alaska become a state? May 17 , 1884 , 23 Stat -9.969995148723251 What 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)
What year did Alaska become a state? April 1 , 2002 -10.050381337452057 What 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)
What year did Alaska become a state? 2008 -10.130066197186785 What 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)
What year did Alaska become a state? 1959.? -10.144729378248092 What 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)
What year did Alaska become a state? marine debris -10.181311480332049 What 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)
What year did Alaska become a state? January 3rd -10.200630407496133 What 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)
What year did Alaska become a state? untamed wilderness -10.276073520353545 What 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)
What year did Alaska become a state? America -10.35017398904961 What 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)
What year did Alaska become a state? a border -10.379480528447457 What 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)
What year did Alaska become a state? bar same-sex marriage -10.448393469424063 What 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)
What year did Alaska become a state? a small Inuit community -10.46400343569894 What 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)
What year did Alaska become a state? one entity -10.478967437443316 What 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)
What year did Alaska become a state? the United States -10.509692295772304 What 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)
What year did Alaska become a state? a big Problem -10.513229094078984 What 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)
What year did Alaska become a state? Russia -10.526455567746188 What 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)
What year did Alaska become a state? the U.S. -10.5291813774702 What 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)
What year did Alaska become a state? a free , public education -10.590805204404004 What 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)
What year did Alaska become a state? Canada -10.603966563243498 What 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)
What year did Alaska become a state? Forget-me-nots -10.643834211564895 What 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)
What year did Alaska become a state? Juneau -10.692710200103436 What 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)
What year did Alaska become a state? Charles Chebry -10.707221475272966 What 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)
What year did Alaska become a state? Alaska?s contract -10.71781696541655 What 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)
What year did Alaska become a state? such categories -10.76690069724453 What 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)
What year did Alaska become a state? the Union -10.803219480792633 What 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)
What year did Alaska become a state? January 3 -10.80896324137359 What 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)
What year did Alaska become a state? May 1998 -10.818729056433463 What 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)
What year did Alaska become a state? the USA -10.882214615142999 What 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)
What year did Alaska become a state? such legislation -10.88721619698977 What 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)
What year did Alaska become a state? an expanded faith -10.899587090955801 What 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)
What year did Alaska become a state? 10-15 years -10.923505455765806 What 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)
What year did Alaska become a state? the United States area-wise -10.945573237294273 What 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)
What year did Alaska become a state? area -10.991252385255914 What 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)
What year did Alaska become a state? 3rd -10.997389911632311 What 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)
What year did Alaska become a state? salmon -11.07071490600299 What 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)
What year did Alaska become a state? juneau -11.137880471234123 What 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)
What year did Alaska become a state? the King Salmon -11.186549621421943 What 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)
What year did Alaska become a state? 4,000 years -11.207035117236115 What 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)
What year did Alaska become a state? discount prescription cards -11.215756022316663 What 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)
What year did Alaska become a state? 1788 -11.217500488670012 What 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)
What year did Alaska become a state? a run -11.222536825424122 What 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)
What year did Alaska become a state? Margi Clifford -11.232234249480406 What 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)
What year did Alaska become a state? superlatives -11.242547716676434 What 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)
What year did Alaska become a state? crisis -11.251817006057347 What 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)
What year did Alaska become a state? new hydropower development -11.256744901665183 What 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)
What year did Alaska become a state? Workplace Alaska -11.280423549663281 What 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)
What year did Alaska become a state? THE USA -11.281182519687698 What 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)
What year did Alaska become a state? Democrat -11.31857732340706 What 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)
What year did Alaska become a state? Alpine Forget-Me-Not -11.319095560196626 What 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)
What year did Alaska become a state? the United States district court -11.319095560196626 What 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)
What year did Alaska become a state? 2012 -11.323089550549083 What 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)
What year did Alaska become a state? Myosotis alpestris -11.345613659020735 What 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)
What year did Alaska become a state? The Willow Ptarmigan -11.38528516713891 What 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)
What year did Alaska become a state? earth -11.400911515526365 What 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)
What year did Alaska become a state? 2nd Day Air -11.404350771037207 What 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)
What year did Alaska become a state? fostering -11.408098026105641 What 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)
What year did Alaska become a state? INTRODUCTION Juneau -11.431388656097855 What 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)
What year did Alaska become a state? view -11.437435602953588 What 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)
What year did Alaska become a state? 23-4-1 -11.439966858617662 What 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)
What year did Alaska become a state? 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. -11.453750964527034 What 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)
What year did Alaska become a state? 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. -11.457154349744073 What 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)
What year did Alaska become a state? Obama -11.467301262167334 What 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)
What year did Alaska become a state? Governor -11.468810880429443 What 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)
What year did Alaska become a state? Health Insurance -11.478060614659695 What 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)
What year did Alaska become a state? Classic Rock -11.483430353895825 What 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)
What year did Alaska become a state? Palin -11.526756014572507 What 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)
What year did Alaska become a state? an ANCC -11.541119784035867 What 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)
What year did Alaska become a state? January -11.549507892114907 What 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)
What year did Alaska become a state? Sarah Palin -11.555393430764028 What 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)
What year did Alaska become a state? terms -11.563017732185257 What 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)
What year did Alaska become a state? 137,500 mobile subscribers -11.56704312422848 What 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)
What year did Alaska become a state? Exercise Alaska Shield / Northern Edge 07 -11.569022537944551 What 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)
What year did Alaska become a state? 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. -11.57627283234043 What 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)
What year did Alaska become a state? now -11.588838224864608 What 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)
What year did Alaska become a state? GOP -11.592221388411328 What 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)
What year did Alaska become a state? HB 226 -11.593928611312473 What 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)
What year did Alaska become a state? Japan -11.62008878615082 What 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)
What year did Alaska become a state? Federal law -11.635722986134358 What 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)
What year did Alaska become a state? Stan -11.642199982160133 What 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)
What year did Alaska become a state? abortions -11.64277195870645 What 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)
What year did Alaska become a state? 1857 -11.644916257285152 What 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)
What year did Alaska become a state? Cotabato -11.647891132591585 What 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)
What year did Alaska become a state? South America -11.65586384947549 What 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)
What year did Alaska become a state? a hitch -11.664163943352818 What 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)
What year did Alaska become a state? Anchorage -11.67264866803606 What 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)
What year did Alaska become a state? Census 2000 data -11.677843536509592 What 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)
What year did Alaska become a state? The BBAP -11.679336285326842 What 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)
What year did Alaska become a state? BP -11.700949673426445 What 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)
What year did Alaska become a state? a big frozen caribou cock -11.706330239045208 What 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)
What year did Alaska become a state? more than 14 years -11.717554210531581 What 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)
What year did Alaska become a state? Dawson City -11.719590681718419 What 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)
What year did Alaska become a state? Exxon -11.7338043733839 What 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)
What year did Alaska become a state? Kotzebue -11.737046160980512 What 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)
What year did Alaska become a state? a remarkable transformation -11.738720822758612 What 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)
What year did Alaska become a state? a low -11.75310115838035 What 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)
What year did Alaska become a state? daylight saving time -11.771529904943932 What 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)
What year did Alaska become a state? 50 years -11.773098035099961 What 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)
What year did Alaska become a state? a 2004 study -12.117764142813765 What 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)
What year did Alaska become a state? the fight -12.18771710132933 What 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)
What year did Alaska become a state? February -12.221162459829138 What 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)
What year did Alaska become a state? account -12.240449937699356 What 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)
What year did Alaska become a state? the November 3 , 1998 -12.416061165114497 What 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)
What year did Alaska become a state? the discussion -12.422029554353031 What 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)
What year did Alaska become a state? the union -12.427238029658703 What 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)
What year did Alaska become a state? the country -12.427238029658703 What 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)
What year did Alaska become a state? the use -12.506388539837937 What 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)
What year did Alaska become a state? the battle -12.609415050009394 What 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)
What year did Alaska become a state? Self-Government -12.7897162720032 What 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)
What year did Alaska become a state? DUI -12.8306200513099 What 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)
What year did Alaska become a state? Summer -12.990853380084914 What 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)
What year did Alaska become a state? Alaska -13.031363552565155 What 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)
What year did Alaska become a state? audio recordings -13.053253798050013 What 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)
What year did Alaska become a state? Fall -13.072591782122407 What 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)
What year did Alaska become a state? the Master -13.19030448209801 What 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)
What year did Alaska become a state? quick as 1 -13.213160467425187 What 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)
What year did Alaska become a state? environmental law -13.283815927067458 What 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)
What year did Alaska become a state? commercial fishing -13.303495982224476 What 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)
What year did Alaska become a state? resource management -13.326294530666013 What 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)
What year did Alaska become a state? Gig Harbor -13.349499431189933 What 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)
What year did Alaska become a state? Utah -13.350369452469184 What 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)
What year did Alaska become a state? the South -13.396283156924195 What 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)
What year did Alaska become a state? a synonym -13.489914264649055 What 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)
What year did Alaska become a state? a town -13.558493788444714 What 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)
What year did Alaska become a state? a close -13.595832572684364 What 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)
What year did Alaska become a state? plus-minus -13.622752154494346 What 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)
What year did Alaska become a state? Ventura -13.644763215089075 What 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)
What year did Alaska become a state? sexual assaults -13.671367909287136 What 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)
What year did Alaska become a state? stimulus funding -13.684566295283215 What 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)
What year did Alaska become a state? a much-needed U.S. energy plan -13.718966069450444 What 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)
What year did Alaska become a state? modern times -13.75729621812982 What 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)
What year did Alaska become a state? broadband subscriptions -13.774968762092726 What 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)
What year did Alaska become a state? two -13.80014935893372 What 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)
What year did Alaska become a state? any -13.80644765339242 What 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)
What year did Alaska become a state? Real Time -13.815413403997102 What 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)
What year did Alaska become a state? top -13.83521180975143 What 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)
What year did Alaska become a state? wind-diesel applications -13.838195024884719 What 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)
What year did Alaska become a state? an end -13.855327230969973 What 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)
What year did Alaska become a state? certain aberrations -13.880630567917688 What 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)
What year did Alaska become a state? the PBA playoffs -13.889562281843691 What 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)
What year did Alaska become a state? rape -13.942910398346292 What 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)
What year did Alaska become a state? high gas prices -13.946309553818857 What 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)
What year did Alaska become a state? oil , timber and fish -13.957521049235739 What 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)
What year did Alaska become a state? reported forcible rapes -13.9610733393228 What 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)
What year did Alaska become a state? April?s jobless statistics -13.962777196700031 What 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)
What year did Alaska become a state? deep boreholes -13.971683734242845 What 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)
What year did Alaska become a state? quantity -13.977458657734674 What 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)
What year did Alaska become a state? Glenn -13.980133451865397 What 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)
What year did Alaska become a state? light -14.007546593373508 What 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)
What year did Alaska become a state? dog bite-related fatalities -14.024735603438472 What 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)
What year did Alaska become a state? capita consumption -14.04860895248185 What 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)
What year did Alaska become a state? Town -14.06746984822113 What 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)
What year did Alaska become a state? pork -14.082678209724836 What 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)
What year did Alaska become a state? April?s jobless statistics -14.35661742669028 What 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)
What year did Alaska become a state? cases -14.401462485081682 What 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)
What year did Alaska become a state? connectivity -14.479599520685236 What 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)
What year did Alaska become a state? town -14.498421334571947 What 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)
What year did Alaska become a state? favor -14.504500410208362 What 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)
What year did Alaska become a state? music -14.516065163150422 What 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)
What year did Alaska become a state? the 49th state -14.545652823263977 What 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)
What year did Alaska become a state? Denali -14.547743900434654 What 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)
What year did Alaska become a state? partnering -14.593576705348188 What 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)
What year did Alaska become a state? rates -14.605319927056735 What 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)
What year did Alaska become a state? jeopardy -14.607897979828126 What 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)
What year did Alaska become a state? McKinley -14.622308284481694 What 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)
What year did Alaska become a state? incidents -14.667684750710023 What 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)
What year did Alaska become a state? Adak -14.683862332904692 What 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)
What year did Alaska become a state? Nome -14.683862332904692 What 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)
What year did Alaska become a state? shots -14.70690294522283 What 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)
What year did Alaska become a state? the top 30 oil spills -14.724592123772334 What 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)
What year did Alaska become a state? Mr. McKinley -14.729381398454606 What 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)
What year did Alaska become a state? place -14.746791972495162 What 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)
What year did Alaska become a state? Will McKinley -14.751155387842712 What 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)
What year did Alaska become a state? Flower -14.919781285432181 What 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)
What is the full name of conductor Seiji? Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa) -10.237771543175526 What 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)
What is the full name of conductor Seiji? The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.383962408180148 What 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)
What is the full name of conductor Seiji? The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) -10.40091207368793 What 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)
What is the full name of conductor Seiji? The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) -10.416449267070064 What 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)
What is the full name of conductor Seiji? Igor Stravinsky -10.437579143141619 What 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)
What is the full name of conductor Seiji? When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) -10.443938147669224 What 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)
What is the full name of conductor Seiji? Stravinksy: The Rite of Spring / Petroucka / Fireworks -10.443938147669224 What 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)
What is the full name of conductor Seiji? Bolero / Rapsodie espagnole / Ma m?re l'oye / Pavane (London Symphony Orchestra feat. conductor: Claudio Abbado) -10.456155427935517 What 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)
What is the full name of conductor Seiji? Petrouchka - Firebird Suite (Orchestre National De Lille, Casadesus, cond.) -10.497142432699855 What 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)
What is the full name of conductor Seiji? Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa) -10.521553810537439 What 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)
What is the full name of conductor Seiji? Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.521553810537439 What 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)
What is the full name of conductor Seiji? Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What 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)
What is the full name of conductor Seiji? Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What 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)
What is the full name of conductor Seiji? Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa) -10.535567749666422 What 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)
What is the full name of conductor Seiji? Carmen (Orchestre National de France feat. conductor: Seiji Ozawa) -10.535567749666422 What 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)
What is the full name of conductor Seiji? Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What 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)
What is the full name of conductor Seiji? Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What 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)
What is the full name of conductor Seiji? Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What 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)
What is the full name of conductor Seiji? Capriccio Italien -10.546135483898205 What 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)
What is the full name of conductor Seiji? National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa) -10.548106537308144 What 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)
What is the full name of conductor Seiji? Romeo & Juliet -10.548106537308144 What 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)
What is the full name of conductor Seiji? Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa) -10.559391446185694 What 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)
What is the full name of conductor Seiji? Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) -10.56960160183681 What 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)
What is the full name of conductor Seiji? Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa) -10.578883561519643 What 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)
What is the full name of conductor Seiji? Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman) -10.578883561519643 What 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)
What is the full name of conductor Seiji? Poulenc: Gloria, Stabat Mater -10.578883561519643 What 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)
What is the full name of conductor Seiji? Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa) -10.587358394273535 What 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)
What is the full name of conductor Seiji? Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.587358394273535 What 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)
What is the full name of conductor Seiji? Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova) -10.587358394273535 What 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)
What is the full name of conductor Seiji? Panorama: Colours of the Orchestra -10.593666185991992 What 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)
What is the full name of conductor Seiji? Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa) -10.595126990964602 What 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)
What is the full name of conductor Seiji? Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) -10.60887143126418 What 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)
What is the full name of conductor Seiji? Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) -10.60887143126418 What 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)
What is the full name of conductor Seiji? Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen -10.60887143126418 What 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)
What is the full name of conductor Seiji? Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ) -10.614980071397328 What 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)
What is the full name of conductor Seiji? Symphonie Espagnole / Zigeunerweisen / M?ditation -10.614980071397328 What 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)
What is the full name of conductor Seiji? Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra) -10.625933495084348 What 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)
What is the full name of conductor Seiji? El sombrero de tres picos - El amor brujo -10.625933495084348 What 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)
What is the full name of conductor Seiji? Agnus Dei -10.628141285095015 What 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)
What is the full name of conductor Seiji? An American in Paris -10.639693255328574 What 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)
What is the full name of conductor Seiji? Pavane pour une infante d?funte -10.639693255328574 What 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)
What is the full name of conductor Seiji? Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) -10.639796421938236 What 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)
What is the full name of conductor Seiji? Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) -10.639796421938236 What 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)
What is the full name of conductor Seiji? West Side Story -10.648168088082466 What 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)
What is the full name of conductor Seiji? Pyotr Ilyich Tchaikovsky -10.705060141152247 What 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)
What is the full name of conductor Seiji? Kazakhstan: Anthem of the Republic of Kazakhstan -10.718415724129269 What 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)
What is the full name of conductor Seiji? Wolfgang Amadeus Mozart -10.733648576975373 What 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)
What is the full name of conductor Seiji? Modest Petrovich Mussorgsky -10.7425824631701 What 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)
What is the full name of conductor Seiji? Uzbekistan: National Anthem of the Republic of Uzbekistan -10.765770236541517 What 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)
What is the full name of conductor Seiji? The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.776519868960886 What 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)
What is the full name of conductor Seiji? The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.776519868960886 What 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)
What is the full name of conductor Seiji? Life Music -10.78064037301913 What 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)
What is the full name of conductor Seiji? Jean Sibelius -10.78064037301913 What 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)
What is the full name of conductor Seiji? B?la Bart?k -10.78064037301913 What 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)
What is the full name of conductor Seiji? Maurice Ravel -10.785745253868006 What 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)
What is the full name of conductor Seiji? The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1) -10.8090067278508 What 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)
What is the full name of conductor Seiji? Symphonie espagnole -10.812081938378373 What 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)
What is the full name of conductor Seiji? The Queen of Spades, disc 2 (Boston Symphony, Osawa) -10.83649560844996 What 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)
What is the full name of conductor Seiji? Gustav Mahler -10.837535898475117 What 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)
What is the full name of conductor Seiji? Anton?n Dvo??k -10.837535898475117 What 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)
What is the full name of conductor Seiji? The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29) -10.848712888716253 What 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)
What is the full name of conductor Seiji? Gabriel Faur? -10.859048935465765 What 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)
What is the full name of conductor Seiji? Sergei Prokofiev -10.859048935465765 What 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)
What is the full name of conductor Seiji? Benjamin Britten -10.859048935465765 What 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)
What is the full name of conductor Seiji? Roger Sessions -10.870829884293975 What 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)
What is the full name of conductor Seiji? Hector Berlioz -10.870829884293975 What 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)
What is the full name of conductor Seiji? Boston Symphony Orchestra -10.876590756091002 What 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)
What is the full name of conductor Seiji? Alborada del gracioso -10.882559853257264 What 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)
What is the full name of conductor Seiji? Une barque sur l'oc?an -10.893844762134814 What 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)
What is the full name of conductor Seiji? The Great Composers, Volume 54: The Magic Flute (highlights) / Cos? Fan Tutti (highlights) -10.898345589798069 What 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)
What is the full name of conductor Seiji? Russian Easter Overture -10.906995602995467 What 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)
What is the full name of conductor Seiji? 1812" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa) -10.914111271318175 What 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)
What is the full name of conductor Seiji? Pictures at an Exhibition (Orch.:M. Ravel) / The young Person's Guide to the Orchestra, Op.34 (Seiji Ozawa conducting the Chicago Symphony) -10.921318440013081 What 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)
What is the full name of conductor Seiji? Republic of Korea: ??? [Aegukga] -10.921811710222654 What 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)
What is the full name of conductor Seiji? Austria: Land der Berge, Land am Strame -10.92958030691372 What 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)
What is the full name of conductor Seiji? United Kingdom: God Save the Queen -10.92958030691372 What 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)
What is the full name of conductor Seiji? Ludwig van Beethoven -10.936727415869504 What 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)
What is the full name of conductor Seiji? Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa) -10.940663998088882 What 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)
What is the full name of conductor Seiji? Pavane pour une infante d?funte (feat. cor anglais: Charles Kavaloski) -10.943324747213302 What 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)
What is the full name of conductor Seiji? Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.95194890696643 What 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)
What is the full name of conductor Seiji? Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) -10.95194890696643 What 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)
What is the full name of conductor Seiji? The Four Seasons -10.95221655712712 What 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)
What is the full name of conductor Seiji? The Nutcracker / Sleeping Beauty -10.959985153818186 What 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)
What is the full name of conductor Seiji? Liechtenstein: Oben am jungen Rhein -10.959985153818186 What 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)
What is the full name of conductor Seiji? Former Yugoslav Republic of Macedonia: ????? ??? ?????????? [Denes nad Makedonija] -10.96038681103347 What 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)
What is the full name of conductor Seiji? Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 3) -10.962159062617546 What 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)
What is the full name of conductor Seiji? Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa) -10.962159062617546 What 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)
What is the full name of conductor Seiji? Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.962159062617546 What 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)
What is the full name of conductor Seiji? Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.962159062617546 What 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)
What is the full name of conductor Seiji? Great Works for the Cello (feat. cello: Mstislav Rostropovich) -10.969926889728617 What 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)
What is the full name of conductor Seiji? Angels of Ecstasy -10.969926889728617 What 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)
What is the full name of conductor Seiji? Les Contes d'Hoffmann (disc 1) -10.97144102230038 What 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)
What is the full name of conductor Seiji? Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.97144102230038 What 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)
What is the full name of conductor Seiji? Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1) -10.97144102230038 What 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)
What is the full name of conductor Seiji? Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.979915855054271 What 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)
What is the full name of conductor Seiji? Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) -10.979915855054271 What 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)
What is the full name of conductor Seiji? Piano Concerto No. 5 "Emperor" -10.987684451745338 What 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)
What is the full name of conductor Seiji? Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) -10.987684451745338 What 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)
What is the full name of conductor Seiji? Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) -10.987684451745338 What 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)
What is the full name of conductor Seiji? Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) -10.987684451745338 What 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)
What is the full name of conductor Seiji? Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman) -10.987684451745338 What 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)
What is the full name of conductor Seiji? Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman) -10.994831560701119 What 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)
What is the full name of conductor Seiji? Scheherazade: The Young Prince and the Young Princess -10.995408942032762 What 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)
What is the full name of conductor Seiji? Scheherazade: The Sea and Sindbad's Ship -11.012963244731171 What 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)
What is the full name of conductor Seiji? Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich) -11.01320984087313 What 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)
What is the full name of conductor Seiji? Piano Concerto No. 3 in C minor / "Choral" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) -11.018490955865087 What 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)
What is the full name of conductor Seiji? Piano Concertos no. 2 & no. 3 -11.023419996524245 What 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)
What is the full name of conductor Seiji? Jacques Offenbach -11.023982219060722 What 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)
What is the full name of conductor Seiji? Dmitri Shostakovich -11.023982219060722 What 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)
What is the full name of conductor Seiji? George Gershwin -11.023982219060722 What 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)
What is the full name of conductor Seiji? Violin Concertos -11.023982219060722 What 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)
What is the full name of conductor Seiji? Philippe Entremont -11.023982219060722 What 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)
What is the full name of conductor Seiji? Andr? Watts -11.023982219060722 What 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)
What is the full name of conductor Seiji? Vladimir Spivakov -11.023982219060722 What 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)
What is the full name of conductor Seiji? Rudolf Serkin -11.023982219060722 What 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)
What is the full name of conductor Seiji? Franz Liszt -11.023982219060722 What 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)
What is the full name of conductor Seiji? Seiji Ozawa -11.023982219060722 What 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)
What is the full name of conductor Seiji? Ottorino Respighi -11.023982219060722 What 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)
What is the full name of conductor Seiji? Olivier Messiaen -11.023982219060722 What 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)
What is the full name of conductor Seiji? Sergei Rachmaninoff -11.023982219060722 What 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)
What is the full name of conductor Seiji? Stabat Mater -11.023982219060722 What 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)
What is the full name of conductor Seiji? Richard Strauss -11.023982219060722 What 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)
What is the full name of conductor Seiji? Alexander Glazunov -11.023982219060722 What 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)
What is the full name of conductor Seiji? Emmanuel Chabrier -11.023982219060722 What 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)
What is the full name of conductor Seiji? Arthur Honegger -11.023982219060722 What 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)
What is the full name of conductor Seiji? Andrzej Panufnik -11.023982219060722 What 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)
What is the full name of conductor Seiji? Leonard Bernstein -11.023982219060722 What 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)
What is the full name of conductor Seiji? Arnold Schoenberg -11.023982219060722 What 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)
What is the full name of conductor Seiji? Francis Poulenc -11.023982219060722 What 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)
What is the full name of conductor Seiji? Viktoria Mullova -11.023982219060722 What 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)
What is the full name of conductor Seiji? Georges Bizet -11.023982219060722 What 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)
What is the full name of conductor Seiji? Piano Concertos. nos. 2 & 3 -11.028031034560234 What 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)
What is the full name of conductor Seiji? Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini -11.028031034560234 What 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)
What is the full name of conductor Seiji? Violin Concertos Nos. 1 & 2 / Violin Sonata No. 2 (feat. violin: David Oistrakh) -11.028031034560234 What 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)
What is the full name of conductor Seiji? 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) -11.043840307826478 What 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)
What is the full name of conductor Seiji? 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) -11.047243693043518 What 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)
What is the full name of conductor Seiji? Symphonies: 250th Anniversary Edition (Royal Concertgebouw Orchestra, Amsterdam Baroque Orchestra, Scottish Chamber Orchestra) (disc 7: Symphonies Nos. 38, 39) -11.050463111492068 What 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)
What is the full name of conductor Seiji? Orchestre National de France -11.057181781264296 What 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)
What is the full name of conductor Seiji? Australia: Advance Australia Fair -11.108258030808258 What 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)
What is the full name of conductor Seiji? Entr'acte -11.108258030808258 What 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)
What is the full name of conductor Seiji? Yugoslavia: Hej Sloveni -11.108258030808258 What 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)
What is the full name of conductor Seiji? III. Cour d'amours: In trutina -11.108258030808258 What 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)
What is the full name of conductor Seiji? Swan Lake: Introduction. Moderato assai - Allegro non troppo - Tempo I -11.108258030808258 What 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)
What is the full name of conductor Seiji? Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? III. Cour d'Amours: Si puer cum puellula -11.108258030808258 What 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)
What is the full name of conductor Seiji? Norway: Ja, vi elsker dette landet -11.108258030808258 What 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)
What is the full name of conductor Seiji? Rapsodie Espagnole: III. Habanera. Assez lent et d?un rythme las -11.108258030808258 What 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)
What is the full name of conductor Seiji? II. In Taberna: In taberna quando sumus -11.108258030808258 What 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)
What is the full name of conductor Seiji? Panorama: ? la fran?aise -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story: Symphonic Dances - Mambo -11.108258030808258 What 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)
What is the full name of conductor Seiji? Quaerens me -11.108258030808258 What 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)
What is the full name of conductor Seiji? Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? III. Cour d'amours: Veni, veni, venias -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story: Symphonic Dances - Rumble -11.108258030808258 What 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)
What is the full name of conductor Seiji? III. Cour d'Amours: In Trutina -11.108258030808258 What 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)
What is the full name of conductor Seiji? Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Pavane Pour Une Infante Defunte -11.108258030808258 What 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)
What is the full name of conductor Seiji? An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Felix Mendelssohn-Bartholdy -11.108258030808258 What 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)
What is the full name of conductor Seiji? II. In Taberna: Ego Sum Abbas -11.108258030808258 What 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)
What is the full name of conductor Seiji? Denmark: Kong Kristian -11.108258030808258 What 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)
What is the full name of conductor Seiji? Uf Dem Anger: Reie; Swaz Hie Gat Umbe; Chume, Chum, Geselle Min -11.108258030808258 What 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)
What is the full name of conductor Seiji? Panorama: Viva espa?a -11.108258030808258 What 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)
What is the full name of conductor Seiji? III. Cour d'amours: Dies, nox et omnia -11.108258030808258 What 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)
What is the full name of conductor Seiji? Gloria: V. Domine Deus, Agnus Dei -11.108258030808258 What 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)
What is the full name of conductor Seiji? Rapsodie Espagnole: IV. Feria. Assez anim? -11.108258030808258 What 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)
What is the full name of conductor Seiji? Poland: Mazurek D?browskiego -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Pablo de Sarasate -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story: Symphonic Dances- Finale -11.108258030808258 What 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)
What is the full name of conductor Seiji? Portugal: A Portuguesa -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Andorra: El Gran Carlemany -11.108258030808258 What 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)
What is the full name of conductor Seiji? Gloria: III. Domine Deus -11.108258030808258 What 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)
What is the full name of conductor Seiji? Monaco: Hymne Mon?gasque -11.108258030808258 What 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)
What is the full name of conductor Seiji? Carl Orff -11.108258030808258 What 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)
What is the full name of conductor Seiji? Armenia: ??? ???????? [Mer Hayrenik] -11.108258030808258 What 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)
What is the full name of conductor Seiji? Manuel de Falla -11.108258030808258 What 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)
What is the full name of conductor Seiji? Nikolai Rimsky-Korsakov -11.108258030808258 What 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)
What is the full name of conductor Seiji? Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Uf Dem Anger: Tanz -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story" Symphonic Dances: "Somewhere" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Moldova: Limba Noastr? -11.108258030808258 What 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)
What is the full name of conductor Seiji? Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? West Side Story" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What 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)
What is the full name of conductor Seiji? Netherlands: Wilhelmus van Nassouwe -11.108258030808258 What 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)
What is the full name of conductor Seiji? Johann Sebastian Bach -11.108258030808258 What 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)
What is the full name of conductor Seiji? III. Cour d'amours: Stetit puella -11.108258030808258 What 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)
What is the full name of conductor Seiji? Music from America -11.108258030808258 What 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)
What is ETA in Spain? non-islamic terror group -10.509915444112002 What 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)
What is ETA in Spain? terrorist group -10.703449575238603 What 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)
What is ETA in Spain? terrorist organization -10.789115899230051 What 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)
What is ETA in Spain? 24 hours -11.186939719723522 What 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)
What is ETA in Spain? a public meeting -11.428606041826022 What 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)
What is ETA in Spain? terrorist -12.972553333971451 What 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)
What is ETA in Spain? group -13.149594614844341 What 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)
What is ETA in Spain? health and safety issues -13.18812810885992 What 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)
What is ETA in Spain? 1981 -13.322480901001867 What 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)
What is ETA in Spain? the documentary film -14.14630056203763 What 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)
What is ETA in Spain? the club -14.218103904543668 What 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)
What is ETA in Spain? the communication -14.678841075945094 What 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)
What is leukemia? Hibakusha -7.171076249543963 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, include cause of death, leukemia) -> (Hibakusha, Includes causes of death, Leukemia) -> Hibakusha (6810ms)
What is leukemia? Cancer -7.171076249543963 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, include cause of death, leukemia) -> (Cancer, Includes causes of death, Chronic myelogenous leukemia) -> Cancer (6844ms)
What is leukemia? childhood Cancer -7.736389498645245 What 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)
What is leukemia? Leukemia -7.789974869897292 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Acute Myeloid Leukemia, is the type of, Leukemia) -> Leukemia (6739ms)
What is leukemia? childhood cancer -8.274113060584316 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Leukemia, is the type of, childhood cancer) -> childhood cancer (6739ms)
What is leukemia? blood cancer -8.350651757540396 What 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)
What is leukemia? malignant disease -8.534636818037361 What 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)
What is leukemia? a pigment -8.584412136079962 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (a pigment, is a potential drug for treating, leukemia) -> a pigment (6026ms)
What is leukemia? The French researchers -9.08222961344675 What 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)
What is leukemia? cancer treatment -9.120962098350146 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (cancer treatment, uses drugs to kill, leukemia cells) -> cancer treatment (6026ms)
What is leukemia? cancer -9.905718758776164 What 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)
What is leukemia? leukemia -9.980104518717337 What 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)
What is leukemia? the formation -10.14759847163785 What 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)
What is leukemia? the appearance -10.162550349268969 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be a by, $x) -> (Leukemia, is a disease characterized by, the appearance) -> the appearance (6026ms)
What is leukemia? prevention -10.68898197283437 What 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)
What is leukemia? the behavior -11.039158543166455 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (the behavior, develop new drugs against, leukemia stem cells) -> the behavior (6026ms)
What is leukemia? growth hormones -11.355922819310866 What 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)
What is leukemia? CLL -11.398256818337847 What 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)
What is leukemia? blood cells -11.4657219116857 What 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)
What is leukemia? Several chronic leukemia viruses -11.580689589012787 What 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)
What is leukemia? Lif receptor -11.61397968483757 What 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)
What is leukemia? Acute myeloid leukemia -11.62127629191528 What 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)
What is leukemia? Chronic myelogenous leukemia -11.62127629191528 What 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)
What is leukemia? Acute lymphoblastic leukemia -11.62127629191528 What 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)
What is leukemia? Acute promyelocytic leukemia -11.62127629191528 What 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)
What is leukemia? Juvenile myelomonocytic leukemia -11.62127629191528 What 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)
What is leukemia? Promyelocytic Leukemia -11.659218648719365 What 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)
What is leukemia? Chronic Leukemia -11.659218648719365 What 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)
What is leukemia? so little -11.703995305231599 What 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)
What is leukemia? B-cell chronic lymphocytic leukemia -11.743494460466904 What 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)
What is leukemia? T-cell prolymphocytic leukemia -11.743494460466904 What 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)
What is leukemia? Leukemia & Lymphoma Society of Canada -11.743494460466904 What 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)
What is leukemia? leukemia inhibitory factor receptor alpha -11.743494460466904 What 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)
What is leukemia? membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase) -11.743494460466904 What 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)
What is leukemia? Acute myeloblastic leukemia without maturation -11.743494460466904 What 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)
What is leukemia? Refractory anemia with excess of blasts -11.743494460466904 What 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)
What is leukemia? The Leukemia and Lymphoma Society -11.743494460466904 What 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)
What is leukemia? Benzene-induced Leukemia Benzene -11.76757943658355 What 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)
What is leukemia? Blood most cancers -11.774946103673559 What 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)
What is leukemia? Benzene -11.835545254996493 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Benzene, is known to cause, leukemia) -> Benzene (7161ms)
What is leukemia? PCP -11.874821876619572 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (PCP, were, leukemia) -> PCP (11245ms)
What is leukemia? Radioactive thorium -11.945176714253071 What 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)
What is leukemia? Childhood leukemia -11.946704967581095 What 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)
What is leukemia? Lymphoid leukemia -11.946704967581095 What 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)
What is leukemia? Col . Qadhafi -11.953241202067888 What 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)
What is leukemia? Chronic Lymphocytic Leukemia -11.969419868837514 What 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)
What is leukemia? Acute Myelogenous Leukemia -11.969419868837514 What 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)
What is leukemia? Abl -12.051411279146217 What 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)
What is leukemia? high concentrations -12.053128305907267 What 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)
What is leukemia? acute lymphoblastic leukemia -12.057632880692479 What 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)
What is leukemia? cytotoxic drugs -12.103428310851395 What 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)
What is leukemia? Stem cell transplant -12.11932067994822 What 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)
What is leukemia? ARHGEF12 -12.13605192124764 What 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)
What is leukemia? Rpn8 -12.13605192124764 What 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)
What is leukemia? myeloid cell leukemia sequence 1 (BCL2-related) -12.13605192124764 What 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)
What is leukemia? MKL/myocardin-like 2 -12.13605192124764 What 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)
What is leukemia? ribosomal protein L34 -12.13605192124764 What 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)
What is leukemia? B-cell CLL/lymphoma 3 -12.13605192124764 What 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)
What is leukemia? megakaryoblastic leukemia (translocation) 1 -12.13605192124764 What 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)
What is leukemia? CD7 molecule -12.13605192124764 What 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)
What is leukemia? zinc finger and BTB domain containing 16 -12.13605192124764 What 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)
What is leukemia? interested Rosenberg -12.145407704906278 What 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)
What is leukemia? 2. What -12.174771963499087 What 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)
What is leukemia? hepatitis B -12.211762106602071 What 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)
What is leukemia? 75 years -12.213442645945547 What 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)
What is leukemia? acute myeloid leukemia -12.268956171073897 What 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)
What is leukemia? Naif -12.39396283954749 What 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)
What is leukemia? bone cancer -12.423922555993464 What 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)
What is leukemia? Lymphoma -12.435212811433704 What 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)
What is leukemia? non-disease physiological condition -12.500011994017301 What 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)
What is leukemia? 30 % -12.554791050808898 What 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)
What is leukemia? More About -12.564492415537538 What 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)
What is leukemia? Acute Lymphocytic Leukemia -12.593644604335509 What 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)
What is leukemia? Chronic Myelogenous Leukemia -12.61404572319946 What 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)
What is leukemia? Gale Leukemia -12.614898909788863 What 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)
What is leukemia? Chicago -12.66150808397305 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Chicago, is, leukemia) -> Chicago (11270ms)
What is leukemia? an inspiration -12.693709119706913 What 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)
What is leukemia? Viagra -12.699528626243154 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Viagra, are, leukemia) -> Viagra (11291ms)
What is leukemia? Smoking -12.702352852239098 What 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)
What is leukemia? discussion/written assessment -12.717112084193566 What 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)
What is leukemia? a poor prognostic sign -12.799904212823886 What 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)
What is leukemia? Unspecified monocytic leukemia -12.821467036383638 What 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)
What is leukemia? Unspecified lymphoid leukemia -12.821467036383638 What 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)
What is leukemia? Unspecified myeloid leukemia -12.821467036383638 What 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)
What is leukemia? Acute monocytic leukemia -12.821467036383638 What 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)
What is leukemia? Chronic monocytic leukemia -12.821467036383638 What 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)
What is leukemia? Others general types -12.843280324707369 What 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)
What is leukemia? Leukemia Sourcebook -12.858240755830453 What 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)
What is leukemia? Martin Dunitz -12.858240755830453 What 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)
What is leukemia? Human Leukemias -12.858240755830453 What 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)
What is leukemia? Leukemia Treatment -12.858240755830453 What 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)
What is leukemia? Acute Leukemia -12.859409393187724 What 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)
What is leukemia? 70 -12.85961422468964 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, 70) -> 70 (11291ms)
What is leukemia? Key evidence-based links -12.87973130560443 What 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)
What is leukemia? Normal and leukemic hematopoiesis -12.891761075173328 What 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)
What is leukemia? Chronic Leukemia in Remission -12.8926089553913 What 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)
What is leukemia? Acute Leukemia in Remission -12.8926089553913 What 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)
What is leukemia? the U-M Exploratory Center -12.90816857581034 What 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)
What is leukemia? a lot -12.930454858105332 What 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)
What is leukemia? Paddington DC ? Love -12.931093170325365 What 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)
What is leukemia? Cancer and leukemia: an alternative view -12.942516567577991 What 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)
What is leukemia? Chronic leukemia: approach to diagnosis -12.942516567577991 What 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)
What is leukemia? Leukemia diagnosis: a guide to the FAB classification -12.942516567577991 What 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)
What is leukemia? Biological Response Modifiers-Leukemias and Lymphomas -12.942516567577991 What 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)
What is leukemia? I'm Still Me, Coping with Leukemia -12.942516567577991 What 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)
What is leukemia? Leukemia (Understanding Illness (Mankato, Minn.).) -12.942516567577991 What 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)
What is leukemia? Monocytes, monocytosis, and monocytic leukemia -12.942516567577991 What 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)
What is leukemia? Human T-Cell Leukemia Lymphoma Virus -12.942516567577991 What 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)
What is leukemia? Cancer and leukemia -12.942516567577991 What 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)
What is leukemia? Cell-virus interactions during retroviral infection -12.942516567577991 What 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)
What is 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,) -12.942516567577991 What 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)
What is leukemia? Roentgenology of the Lymphomas and Leukemias -12.942516567577991 What 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)
What is leukemia? Leukemia, cytology and cytochemistry -12.942516567577991 What 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)
What is leukemia? Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology) -12.942516567577991 What 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)
What is leukemia? Vaccine Intervention Against Virus-Induced Tumors -12.942516567577991 What 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)
What is leukemia? Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia -12.942516567577991 What 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)
What is leukemia? Acute leukemia: difficult, controversial, automated analysis -12.942516567577991 What 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)
What is leukemia? Acute leukemia: approach to diagnosis -12.942516567577991 What 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)
What is leukemia? Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings) -12.942516567577991 What 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)
What is leukemia? Leukemia (Health Alert -12.942516567577991 What 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)
What is leukemia? Leukemia (Understanding Illness -12.942516567577991 What 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)
What is leukemia? Protein microarray technology for profiling signaling patwhays [sic] -12.942516567577991 What 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)
What is leukemia? Leukemia (Life Sciences Research Reports) -12.942516567577991 What 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)
What is leukemia? Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series) -12.942516567577991 What 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)
What is leukemia? A geneticist studies leukemia -12.942516567577991 What 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)
What is leukemia? Human T-cell Leukemia Vir -12.942516567577991 What 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)
What is leukemia? Coping With Leukemia -12.942516567577991 What 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)
What is leukemia? Aspects of Leukemia Treatment With Special Reference to Drug Development -12.942516567577991 What 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)
What is leukemia? Leukemia (Health Alert (Benchmark Books).) -12.942516567577991 What 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)
What is leukemia? Structure and function of the Moloney murine leukemia virus integration complex -12.942516567577991 What 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)
What is leukemia? Coping With Leukemia (Coping) -12.942516567577991 What 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)
What is leukemia? The David arcane -12.942516567577991 What 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)
What is leukemia? No safe place -12.942516567577991 What 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)
What is leukemia? Childhood leukemia: a guide for families, friends & caregivers -12.942516567577991 What 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)
What is leukemia? Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology) -12.942516567577991 What 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)
What is leukemia? Recent Advances in Leukemia and Lymphoma -12.942516567577991 What 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)
What is leukemia? Epidemiology of Leukemia and Lymphoma -12.942516567577991 What 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)
What is leukemia? Molecular characterization of RadLV (Radiation Leukemia Virus) -12.942516567577991 What 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)
What is leukemia? Causes & Treatment Search -12.971830839926014 What 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)
What is leukemia? increased lymphocytes -12.987957257555209 What 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)
What is leukemia? such radiation -12.99945183887635 What 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)
What is leukemia? underlying disease -12.99945183887635 What 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)
What is leukemia? Leukemias -13.00828634345732 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Leukemias, is, leukemia) -> Leukemias (11355ms)
What is leukemia? ACUTE LEUKEMIA TREATMENT INFORMATION -13.011476765841259 What 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)
What is leukemia? Malaysia | Beacon Hospital -13.019969737103477 What 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)
What is leukemia? 527 -13.025412089828924 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (527, were, leukemias) -> 527 (14316ms)
What is leukemia? blood tumor -13.064982211311602 What 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)
What is leukemia? Dr. Mauro?s clinical focus -13.070860981703909 What 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)
What is leukemia? solvent exposure -13.104735958993766 What 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)
What is leukemia? pediatric cancer -13.104735958993766 What 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)
What is leukemia? 400 % -13.113533974244437 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, 400 %) -> 400 % (14316ms)
What is leukemia? childhood cancers -13.143615206805674 What 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)
What is leukemia? pesticide exposure -13.176100823795899 What 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)
What is leukemia? 99 % sure -13.194414793617808 What 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)
What is leukemia? 0 to 14 years -13.26398198521737 What 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)
What is leukemia? a cancer originating -13.345926814475838 What 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)
What is leukemia? PCI -13.346739176714237 What 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)
What is leukemia? non-users -13.34723063206954 What 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)
What is leukemia? Seattle WA 98105 -13.348757164703915 What 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)
What is leukemia? basophils -13.56067885719027 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (basophils, is known as, myelogenous leukemia) -> basophils (7185ms)
What is leukemia? benzene -13.690618988669804 What 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)
What is leukemia? the human system -13.740301377367652 What 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)
What is leukemia? The virus XMRV -13.740380879364352 What 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)
What is leukemia? aging -13.87645643448544 What 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)
What is leukemia? question -14.24700784824979 What 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)
What is leukemia? soon their organization -14.254130788038083 What 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)
What is leukemia? handphones -14.482112992048933 What 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)
What is leukemia? physical challenge -14.73728989426538 What 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)
What is leukemia? Goodman -14.78821935830655 What 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)
What is leukemia? blood cancer cells -14.969588309163091 What 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)
What is leukemia? a cancer -14.979904774532777 What 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)
What is leukemia? a virus -14.979904774532777 What 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)
What is leukemia? a type of leukemia -14.985354932798394 What 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)
What is leukemia? a disease -14.993203355407445 What 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)
What is leukemia? a chemical -15.60412951003077 What 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)
What is leukemia? an aircraft fuel -15.991842960750104 What 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)
What is leukemia? pesticides -16.011475160385963 What 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)
What is leukemia? the oncologists -16.193654568358255 What 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)
What is leukemia? the society -16.36872574197406 What 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)
What is leukemia? the form of leukemia -16.819357121780516 What 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)
What is leukemia? the blood cancer -17.436935992490344 What 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)
What is leukemia? viruses -17.543086210174557 What 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)
Who has employed Steffen? passengers -3.600630506005919 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have be describe, Steffen) -> (passengers, has been described by, Lincoln Steffens) -> passengers (6880ms)
Who has employed Steffen? L?ngslens bog -3.6192973369248898 Who 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)
Who has employed Steffen? the South Carolina Highway Patrol -4.532962331992384 Who 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)
Who has employed Steffen? Schwarz -4.870179921537016 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have train, Steffen) -> (Schwarz, has trained with, Steffen Peters) -> Schwarz (7011ms)
Who has employed Steffen? Worldchanging.com -5.73382448094244 Who 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)
Who has employed Steffen? The vocals -6.312079710849428 Who 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)
Who has employed Steffen? The camp -7.581973863151289 Who 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)
What is titanium? well-known character -5.097394480115493 What is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, well-known character) -> well-known character (5718ms)
What is titanium? transition metal catalyst -5.20945027454837 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, transition metal catalyst) -> transition metal catalyst (5718ms)
What is titanium? refractory metal -5.2140524768575265 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, refractory metal) -> refractory metal (5718ms)
What is titanium? metallic material -5.219417097662503 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, metallic material) -> metallic material (5719ms)
What is titanium? type of transition metal -5.299496534111638 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, type of transition metal) -> type of transition metal (5718ms)
What is titanium? aid -5.331130249810624 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, aid) -> aid (5718ms)
What is titanium? premium quality raw material -5.3365446519403905 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, premium quality raw material) -> premium quality raw material (5736ms)
What is titanium? suitable material -5.338798284115955 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, suitable material) -> suitable material (5737ms)
What is titanium? inorganic material -5.395189638147544 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, inorganic material) -> inorganic material (5737ms)
What is titanium? shape memory alloy -5.409972322242238 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, shape memory alloy) -> shape memory alloy (5736ms)
What is titanium? extremely strong yet lightweight metal -5.4290801189126014 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, extremely strong yet lightweight metal) -> extremely strong yet lightweight metal (5736ms)
What is titanium? extraordinary denture prosthesis material -5.469852487468907 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, extraordinary denture prosthesis material) -> extraordinary denture prosthesis material (5737ms)
What is titanium? hard refractory-like material -5.469852487468907 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, hard refractory-like material) -> hard refractory-like material (5866ms)
What is titanium? transition element -5.470896516216498 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, transition element) -> transition element (5867ms)
What is titanium? common material -5.488945092338408 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, common material) -> common material (5866ms)
What is titanium? lovely frame material -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lovely frame material) -> lovely frame material (5896ms)
What is titanium? weakly magnetic metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, weakly magnetic metal) -> weakly magnetic metal (5895ms)
What is titanium? superb heating substance -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, superb heating substance) -> superb heating substance (5895ms)
What is titanium? substantially biocompatible material -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, substantially biocompatible material) -> substantially biocompatible material (5895ms)
What is titanium? single such steel -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, single such steel) -> single such steel (5895ms)
What is titanium? wonderful lightweight metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, wonderful lightweight metal) -> wonderful lightweight metal (5867ms)
What is titanium? unworkable precious metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, unworkable precious metal) -> unworkable precious metal (5896ms)
What is titanium? incredibly tough metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, incredibly tough metal) -> incredibly tough metal (5867ms)
What is titanium? special engineering material -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, special engineering material) -> special engineering material (5866ms)
What is titanium? essential trace element -5.5095426043239675 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, essential trace element) -> essential trace element (5915ms)
What is titanium? lustrous, hard, silvery, gray, light metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lustrous, hard, silvery, gray, light metal) -> lustrous, hard, silvery, gray, light metal (6884ms)
What is titanium? strong and anti-corrosive metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong and anti-corrosive metal) -> strong and anti-corrosive metal (6842ms)
What is titanium? non-toxic silvery white metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, non-toxic silvery white metal) -> non-toxic silvery white metal (5915ms)
What is titanium? important inorganic functional material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, important inorganic functional material) -> important inorganic functional material (6885ms)
What is titanium? solid, white, lustrous metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, solid, white, lustrous metal) -> solid, white, lustrous metal (6870ms)
What is titanium? object-oriented, explicitly parallel programming language -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, object-oriented, explicitly parallel programming language) -> object-oriented, explicitly parallel programming language (5960ms)
What is titanium? light, extremely durable metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, extremely durable metal) -> light, extremely durable metal (5960ms)
What is titanium? strong, corrosion-resistant, lustrous metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, corrosion-resistant, lustrous metal) -> strong, corrosion-resistant, lustrous metal (6884ms)
What is titanium? light and solid material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light and solid material) -> light and solid material (5960ms)
What is titanium? light weight, noncorrosive, high strength-to-weight metal -5.51474644290405 What 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)
What is titanium? silver-gray light metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, silver-gray light metal) -> silver-gray light metal (5960ms)
What is titanium? member of the family of reactive metal -5.51474644290405 What 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)
What is titanium? pretty high tech material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, pretty high tech material) -> pretty high tech material (5915ms)
What is titanium? light, durable metal alloy -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, durable metal alloy) -> light, durable metal alloy (5960ms)
What is titanium? tough and light metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, tough and light metal) -> tough and light metal (6884ms)
What is titanium? strong, low-density, highly corrosion-resistant, white metallic element -5.51474644290405 What 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)
What is titanium? strong, light, corrosion resistant metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, light, corrosion resistant metal) -> strong, light, corrosion resistant metal (6842ms)
What is titanium? light, indestructible, still relatively expensive material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, indestructible, still relatively expensive material) -> light, indestructible, still relatively expensive material (6842ms)
What is titanium? newsletter publishing Covered Call position -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, newsletter publishing Covered Call position) -> newsletter publishing Covered Call position (5918ms)
What is titanium? strong dark black block -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong dark black block) -> strong dark black block (6870ms)
What is titanium? strong, hard, and lightweight material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, hard, and lightweight material) -> strong, hard, and lightweight material (6870ms)
What is titanium? light, strong and lustrous transition metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, strong and lustrous transition metal) -> light, strong and lustrous transition metal (6870ms)
What is titanium? ultra light yet very strong metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, ultra light yet very strong metal) -> ultra light yet very strong metal (6842ms)
What is titanium? modern and unique medium -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, modern and unique medium) -> modern and unique medium (6870ms)
What is titanium? strong, yet light, metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, yet light, metal) -> strong, yet light, metal (5915ms)
What is titanium? strong, lightweight, silver-grey, metallic element -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, lightweight, silver-grey, metallic element) -> strong, lightweight, silver-grey, metallic element (6842ms)
What is titanium? High-Valence Metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, High-Valence Metal) -> High-Valence Metal (5960ms)
What is titanium? lustrous silver-white or gray metallic element -5.51474644290405 What 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)
What is titanium? heat conductive material -5.5152033590131575 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, heat conductive material) -> heat conductive material (6884ms)
What is titanium? reflective material -5.607510558748322 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, reflective material) -> reflective material (6927ms)
What is titanium? metal complex -5.611975178360192 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, metal complex) -> metal complex (6927ms)
What is titanium? hard surface -5.6391457115964485 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, hard surface) -> hard surface (6927ms)
What is titanium? porous material -5.658257758564387 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, porous material) -> porous material (6927ms)
What is titanium? matrix material -5.66114496066539 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, matrix material) -> matrix material (6927ms)
What is titanium? inorganic substance -5.661632910858649 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, inorganic substance) -> inorganic substance (6927ms)
What is titanium? amorphous material -5.663282727247879 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, amorphous material) -> amorphous material (6946ms)
What is titanium? innovative technology -5.673948755405252 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, innovative technology) -> innovative technology (6947ms)
What is titanium? support material -5.701536638900646 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, support material) -> support material (6946ms)
What is titanium? inorganic substrate -5.702460128257235 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, inorganic substrate) -> inorganic substrate (6946ms)
What is titanium? inorganic pigment -5.708494252838867 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, inorganic pigment) -> inorganic pigment (6946ms)
What is titanium? nickel alloy -5.74445221983684 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, nickel alloy) -> nickel alloy (6946ms)
What is titanium? liquid product -5.770456614177416 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, liquid product) -> liquid product (7066ms)
What is titanium? deformable material -5.773568852385445 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, deformable material) -> deformable material (7066ms)
What is titanium? alkaline metal -5.792991274974484 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, alkaline metal) -> alkaline metal (7066ms)
What is titanium? interesting material -5.794264635543142 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, interesting material) -> interesting material (7066ms)
What is titanium? wide range -5.7944315023197825 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, wide range) -> wide range (7066ms)
What is titanium? oxide ceramic -5.79812093729233 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, oxide ceramic) -> oxide ceramic (7066ms)
What is titanium? polymeric material -5.813419569943383 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, polymeric material) -> polymeric material (7252ms)
What is titanium? tiny particle -5.834345508373161 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, tiny particle) -> tiny particle (7251ms)
What is titanium? Zinc oxide -5.865713243341847 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Zinc oxide, Active moiety of drug, Titanium/Zinc oxide) -> Zinc oxide (7252ms)
What is titanium? preferential material -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, preferential material) -> preferential material (7252ms)
What is titanium? noteworthy metal -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, noteworthy metal) -> noteworthy metal (7279ms)
What is titanium? prohibitive material -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, prohibitive material) -> prohibitive material (7279ms)
What is titanium? superlative metal -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, superlative metal) -> superlative metal (7279ms)
What is titanium? materialfor jewelry -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, materialfor jewelry) -> materialfor jewelry (7279ms)
What is titanium? microalloying addition -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, microalloying addition) -> microalloying addition (7252ms)
What is titanium? unmoving metal -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, unmoving metal) -> unmoving metal (7251ms)
What is titanium? coating composition -5.883863059787776 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, coating composition) -> coating composition (7279ms)
What is titanium? structural material -5.884436900586124 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, structural material) -> structural material (7279ms)
What is titanium? promotional product -5.897470975557943 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, promotional product) -> promotional product (7300ms)
What is titanium? local band -5.900037870488977 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, local band) -> local band (7300ms)
What is titanium? resin material -5.900571094045924 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, resin material) -> resin material (7300ms)
What is titanium? Copper Absorption Inhibitor -6.2476906238599055 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Copper Absorption Inhibitor, Drugs, Octinoxate/Octisalate/Zinc cation/Titanium) -> Copper Absorption Inhibitor (7463ms)
What is titanium? Adenosine Receptor Agonist -6.2476906238599055 What 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)
What is titanium? Methylating Agent -6.395082086829625 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Methylating Agent, Drugs, Octinoxate/Titanium dioxide/Zinc oxide/Betaine/Talc) -> Methylating Agent (7463ms)
What is titanium? Contrast Agent for Ultrasound Imaging -6.479357898577162 What 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)
What is titanium? Transition metal -6.682568405691354 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, chemical series, $x) -> (Titanium, Chemical series, Transition metal) -> Transition metal (7826ms)
What is titanium? Titanium dioxide -6.682568405691354 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Titanium dioxide, Active moiety of drug, Titanium dioxide/Octocrylene) -> Titanium dioxide (7838ms)
What is titanium? Topical medication -6.682568405691354 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Topical medication, Drug formulations, Titanium dioxide 0.0005 cream) -> Topical medication (7839ms)
What is titanium? Lockheed A-12 -6.871915359357899 What 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)
What is titanium? Zinc -7.116351696461146 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Zinc, Active moiety of drug, Titanium dioxide/Zinc) -> Zinc (7851ms)
What is titanium? Oral -7.116351696461146 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Oral, Drug formulations, Titanium 30 pellet) -> Oral (7851ms)
What is titanium? Bbcream -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Bbcream, Canonical drug, Octinoxate/Titanium dioxide) -> Bbcream (7863ms)
What is titanium? Aloevella -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Aloevella, Canonical drug, Titanium dioxide/Zinc oxide) -> Aloevella (7875ms)
What is titanium? Cutaneous -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Cutaneous, Drug formulations, Titanium dioxide 0.0773 cream) -> Cutaneous (7912ms)
What is titanium? Loccitane -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Loccitane, Canonical drug, Titanium dioxide) -> Loccitane (7863ms)
What is titanium? Octinoxate -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octinoxate, Active moiety of drug, Octinoxate/Octisalate/Titanium) -> Octinoxate (7900ms)
What is titanium? Octisalate -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octisalate, Active moiety of drug, Octisalate/Titanium dioxide) -> Octisalate (7912ms)
What is titanium? Octocrylene -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octocrylene, Active moiety of drug, Octocrylene/Octinoxate/Titanium) -> Octocrylene (7887ms)
What is titanium? Oxybenzone -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Oxybenzone, Active moiety of drug, Titanium/Octinoxate/Oxybenzone) -> Oxybenzone (7887ms)
What is titanium? d-block -7.233827070412259 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, element, titanium) -> (d-block, Elements, Titanium) -> d-block (7912ms)
What is titanium? 2011 Ford Flex -7.275782561109084 What 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)
What is titanium? 2012 Ford Focus Sedan -7.275782561109084 What 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)
What is titanium? 2012 Ford Flex -7.275782561109084 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2012 Ford Flex Titanium, Model Year, 2012 Ford Flex) -> 2012 Ford Flex (7934ms)
What is titanium? 2012 Ford Focus 5-Door -7.275782561109084 What 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)
What is titanium? 2010 Nissan Armada -7.275782561109084 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2010 Nissan Armada Titanium, Model Year, 2010 Nissan Armada) -> 2010 Nissan Armada (7934ms)
What is titanium? 905R -7.4961400948558925 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (Titleist PRO TITANIUM 905R, Model, 905R) -> 905R (7934ms)
What is titanium? 905S -7.4961400948558925 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (Titleist PRO TITANIUM 905S, Model, 905S) -> 905S (7934ms)
What is titanium? steel -7.633036137478976 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, steel) -> steel (7934ms)
What is titanium? type -7.648983057112732 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, type) -> type (7945ms)
What is titanium? stabilizer -7.6580053564371955 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, stabilizer) -> stabilizer (7946ms)
What is titanium? character -7.708684624946219 What is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, character) -> character (7946ms)
What is titanium? filler -7.740257556997938 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, filler) -> filler (7946ms)
What is titanium? item -7.791098438762236 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, item) -> item (7946ms)
What is titanium? agent -7.808253318087274 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, agent) -> agent (7946ms)
What is titanium? apps -7.8320818292225365 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, apps) -> apps (7956ms)
What is titanium? watch -7.851167942210578 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, watch) -> watch (7956ms)
What is titanium? fiber -7.946001247268135 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, fiber) -> fiber (7956ms)
What is titanium? heteroatoms -7.995296296682728 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, heteroatoms) -> heteroatoms (7956ms)
What is titanium? promoter -8.035181583187537 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, promoter) -> promoter (7956ms)
What is titanium? bead -8.129381432952881 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, bead) -> bead (7956ms)
What is titanium? plastic -8.134936790018987 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, plastic) -> plastic (7971ms)
What is titanium? jewelry -9.783348008235956 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be the type of, $x) -> (titanium, are the only types of, jewelry) -> jewelry (7971ms)
What is titanium? addition -9.808414430285955 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be a by, $x) -> (titanium, is improved a hundredfold by, addition) -> addition (7971ms)
What is titanium? metals -10.028022593559172 What 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)
What is titanium? options -10.073827719023244 What 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)
What is titanium? portfolio -10.520696114288217 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be a by, $x) -> (titanium sculpture, is a member by, portfolio) -> portfolio (7971ms)
What is titanium? The mud -10.916167234301616 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, element, titanium) -> (The mud, also contains other elements such as, titanium) -> The mud (7981ms)
What is titanium? More people -11.140485502835217 What 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)
What is titanium? Anthony Ian Berkeley -11.478087503134542 What 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)
What is titanium? Titanium Expos? -11.66633996573943 What 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)
What is titanium? Titanium (edit) -11.750615777486969 What 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)
What is titanium? Titania A -11.750615777486969 What 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)
What is titanium? Lady (Hear Me Tonight) (Choo-Choo' Titanium dub) -11.750615777486969 What 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)
What is titanium? RMI Titanium Co -11.750615777486969 What 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)
What is titanium? Tioxide Europe Titanium Pigmentleri Ticaret Ltd. Sirketi -11.750615777486969 What 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)
What is titanium? Gloucester Titanium Co Inc -11.750615777486969 What 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)
What is titanium? Bewitched: Titania's book of love spells -11.750615777486969 What 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)
What is titanium? Titanium Hearth Technologies, Inc -11.750615777486969 What 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)
What is titanium? HAVA Titanium HD WIFI -11.750615777486969 What 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)
What is titanium? The Sinking of Titania -11.750615777486969 What 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)
What is titanium? International Titanium Inc. -11.750615777486969 What 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)
What is titanium? Isotopes of titanium -11.750615777486969 What 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)
What is titanium? Titanium (extended version) -11.750615777486969 What 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)
What is titanium? Predict your future with Titania's oraqle -11.750615777486969 What 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)
What is titanium? Titanium dioxide B -11.750615777486969 What 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)
What is titanium? Fairchild Titanium Technologies, Inc -11.750615777486969 What 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)
What is titanium? Titania & MacBeth -11.750615777486969 What 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)
What is titanium? Titanium (commercially pure) -11.750615777486969 What 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)
What is titanium? Nickel titanium -11.95382628460116 What 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)
What is titanium? Solvothermal synthesis -11.95382628460116 What 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)
What is titanium? Titanium Alloy 6-4 -12.143173238267705 What 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)
What is titanium? Mystic topaz -12.20161326611917 What 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)
What is titanium? Titanium -12.44233412845377 What 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)
What is titanium? Hagler -12.637854174831329 What 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)
What is titanium? Classic Ballet Series -12.71755691157635 What 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)
What is titanium? Materials Properties Handbook -12.71755691157635 What 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)
What is titanium? Silver Label Collection -12.71755691157635 What 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)
What is titanium? water-resistant -12.77906345213434 What 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)
What is titanium? Electrochemical dialysate regeneration -12.827006017741983 What 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)
What is titanium? Queen Titania -12.864948374546069 What 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)
What is titanium? White Magic -12.864948374546069 What 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)
What is titanium? Mentor Books -12.864948374546069 What 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)
What is titanium? Hocus Pocus -12.864948374546069 What 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)
What is titanium? SECRETOS PELIGROSOS -12.902161070642386 What 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)
What is titanium? Titanium: its occurrence, chemistry, and technology -12.949224186293607 What 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)
What is titanium? Surface reactions on stoichiometric and defective titanium dioxide : from single crystals to nanoparticles -12.949224186293607 What 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)
What is titanium? Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations -12.949224186293607 What 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)
What is titanium? Pipes of Peace -12.949224186293607 What 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)
What is titanium? Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts -12.949224186293607 What 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)
What is titanium? Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs -12.949224186293607 What 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)
What is titanium? 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 -12.949224186293607 What 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)
What is titanium? Geology of titanium and titaniferous deposits of Canada -12.949224186293607 What 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)
What is titanium? Geology of Nimba County, Liberia -12.949224186293607 What 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)
What is titanium? Titanium: Physico-Chemical Properties of Its Compounds and Alloys (Atomic Energy Review) -12.949224186293607 What 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)
What is titanium? Bibliography of titanium deposits of the world -12.949224186293607 What 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)
What is titanium? Report on the physical properties of titanium and titanium alloys -12.949224186293607 What 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)
What is titanium? Titania: the biography of Isak Dinesen. -12.949224186293607 What 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)
What is titanium? Polymerization of Dienes Induced Titanium-Containing Catalytic Sys -12.949224186293607 What 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)
What is titanium? A review of the low-temperature creep behaviour of titanium -12.949224186293607 What 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)
What is titanium? Amor En Directo/ Popped -12.949224186293607 What 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)
What is titanium? Homolyses of titanium-oxygen bonds : a novel strategy for generating Ti(III) complexes -12.949224186293607 What 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)
What is titanium? Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II) -12.949224186293607 What 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)
What is titanium? A sourcebook of titanium alloy superconductivity -12.949224186293607 What 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)
What is titanium? Titanium: a technical guide -12.949224186293607 What 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)
What is titanium? Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon -12.949224186293607 What 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)
What is titanium? Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea) -12.949224186293607 What 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)
What is titanium? corrosion-resistant -13.403288187632333 What 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)
What is titanium? corrosion-proof -13.403288187632333 What 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)
What is titanium? kind of alittle lighter -13.492470843919794 What 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)
What is titanium? Hulk smash -13.570968130227476 What 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)
What is titanium? Zirconium -13.606275603699993 What is titanium? -> what be [ titanium ] ? -> what exactly be titanium ? -> $x: ($x, exactly be, titanium) -> (Zirconium, is exactly like, titanium) -> Zirconium (11222ms)
What is titanium? lighter than steel -13.637139228526994 What 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)
What is titanium? as strong as steel -13.64625998737413 What 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)
What is titanium? resistant to corrosion -13.673379785006059 What 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)
What is titanium? quite a little lighter -13.687319633848253 What 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)
What is titanium? strong as steel -13.701537049292211 What 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)
What is titanium? a long way -13.706537408295336 What 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)
What is titanium? very light weight -13.706891114635251 What 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)
What is titanium? stronger than gold -13.727292233499204 What 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)
What is titanium? strong , lightweight , hypoallergenic -13.728556394181354 What 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)
What is titanium? much lighter than steel -13.778113216675585 What 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)
What is titanium? as durable as stainless steel -13.78332687739678 What 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)
What is titanium? Queen of the fairies -13.786851573379419 What 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)
What is titanium? a platform -13.795588131176476 What 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)
What is titanium? three times stronger than steel -13.802796514919635 What 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)
What is titanium? a very hardy material -13.812989159729714 What 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)
What is titanium? more flexible than steel -13.812989159729714 What 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)
What is titanium? one of the strongest metals -13.817271339109812 What 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)
What is titanium? about as good as it gets -13.831569310030464 What 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)
What is titanium? stronger and lighter than steel -13.837672457973763 What 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)
What is titanium? Nickel free -13.846260299653203 What 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)
What is titanium? substantially more electropositive than iron -13.854724643008481 What 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)
What is titanium? sort of a bit lighter -13.863287237558911 What 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)
What is titanium? one of the best metals -13.872548401027892 What 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)
What is titanium? much more elastic than steel -13.872548401027892 What 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)
What is titanium? kinds of the new metal -13.872548401027892 What 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)
What is titanium? DivX -13.877678009272472 What 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)
What is titanium? likewise asleep -13.886211945271516 What 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)
What is titanium? extremely lightweight -13.886646467876714 What 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)
What is titanium? fairly expensive -13.886646467876714 What 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)
What is titanium? completely neutral to the human body -13.899794675202482 What 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)
What is titanium? either way -13.900209235897506 What 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)
What is titanium? only half the weight of steel -13.902372036047025 What 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)
What is titanium? very ductile -13.907047586740667 What 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)
What is titanium? incredibly light -13.907047586740667 What 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)
What is titanium? the casing -13.91105727351965 What 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)
What is titanium? lighter and stronger than stainless steel -13.920195794066435 What 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)
What is titanium? one of the most durable metals -13.920195794066435 What 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)
What is titanium? graphics cards -13.955832638314455 What 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)
What is titanium? Texas -14.041713170660827 What 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)
What is titanium? Virtual TI doesnt -14.073624185933722 What 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)
What is titanium? so strong -14.076280272110797 What 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)
What is titanium? non-toxic -14.084603610208962 What 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)
What is titanium? wedding rings -14.256098095091463 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> (titanium platinum, mens, wedding rings) -> wedding rings (8088ms)
What is titanium? a reflective fiber -14.474353890497135 What 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)
What is titanium? wedding band -14.880322830589456 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> (the titanium, mens, wedding band) -> wedding band (8088ms)
What is titanium? Eva Longoria -15.59581189893962 What 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)
What is titanium? anodization -16.798440022184227 What 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)
What is titanium? the presence of a new element -17.452351016952395 What 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)
How many state jobs did Steffen hold? researcher -1.7842299956702994 How 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)
What actor first portrayed James Bond? Daniel Craig -2.2254713954242904 What 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)
What actor first portrayed James Bond? Craig -2.556944707708981 What 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)
What actor first portrayed James Bond? Sean Connery -5.217859050974644 What 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)
What actor first portrayed James Bond? Ms Moore -5.342140277248111 What 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)
What actor first portrayed James Bond? George Lazenby -5.886394766322417 What 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)
What actor first portrayed James Bond? Brosnan -6.797662570532222 What 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)
What actor first portrayed James Bond? Pierce Brosnan -8.165148859930206 What 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)
What actor first portrayed James Bond? AMC -9.171950480529517 What 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)
What actor first portrayed James Bond? Orlando Bloom -9.262012820287385 What 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)
What actor first portrayed James Bond? actors -10.41170893092742 What 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)
What is an eclipse? detailed description of the different part -4.68575736657953 What 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)
What is an eclipse? poetic prose poem memoir -4.70708942435825 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light From An Eclipse, Instance Of, poetic prose poem memoir) -> poetic prose poem memoir (8838ms)
What is an eclipse? deeply affecting experience -4.721530563167535 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Nat. Moon triggered by an eclipse, Instance Of, deeply affecting experience) -> deeply affecting experience (8838ms)
What is an eclipse? DPS strategy -4.730651322014672 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (refreshing on the last spell of an eclipse, Instance Of, DPS strategy) -> DPS strategy (8838ms)
What is an eclipse? memoir covering the year of her dad's Alzheimer's disease -4.784705087226465 What 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)
What is an eclipse? layered call -4.917650977616581 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (An Eclipsing, Instance Of, layered call) -> layered call (9631ms)
What is an eclipse? photometric observation -4.917650977616581 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (observation of an eclipse, Instance Of, photometric observation) -> photometric observation (8838ms)
What is an eclipse? auspicious time -4.9465325778793385 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time during an eclipse, Instance Of, auspicious time) -> auspicious time (9631ms)
What is an eclipse? interference engine -4.980721243919374 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (engine in an eclipse, Instance Of, interference engine) -> interference engine (9631ms)
What is an eclipse? ideal time -5.007771723648073 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time near an eclipse, Instance Of, ideal time) -> ideal time (9631ms)
What is an eclipse? open-source standard -6.347555972873462 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open-source standard) -> open-source standard (9631ms)
What is an eclipse? mixed bag -6.445438623878456 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, mixed bag) -> mixed bag (9631ms)
What is an eclipse? non-handed and modular series -6.510129566546065 What 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)
What is an eclipse? incredibly powerful platform -6.5668623746015555 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, incredibly powerful platform) -> incredibly powerful platform (9801ms)
What is an eclipse? intuitive PPM solution -6.570618729254677 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intuitive PPM solution) -> intuitive PPM solution (9801ms)
What is an eclipse? open-source software development project -6.598037171430477 What 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)
What is an eclipse? open source Java integrated development environment -6.6124897969756695 What 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)
What is an eclipse? modern development environment -6.615147101968271 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, modern development environment) -> modern development environment (9801ms)
What is an eclipse? Integrated Development Environment, or IDE -6.632423183686063 What 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)
What is an eclipse? open source development framework -6.649489090698349 What 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)
What is an eclipse? Java based platform -6.654972778643229 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Java based platform) -> Java based platform (9819ms)
What is an eclipse? denture base material -6.685467226615205 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse?, Instance Of, denture base material) -> denture base material (9819ms)
What is an eclipse? bet -6.687970993957839 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, bet) -> bet (9820ms)
What is an eclipse? free open source Integrated Development Environment -6.694587985462341 What 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)
What is an eclipse? collection of short fictional story -6.694587985462341 What 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)
What is an eclipse? free blogger template -6.719081522664327 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, free blogger template) -> free blogger template (9838ms)
What is an eclipse? gem -6.726098978129288 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, gem) -> gem (9838ms)
What is an eclipse? open development environment -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open development environment) -> open development environment (9837ms)
What is an eclipse? source code environment -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, source code environment) -> source code environment (9856ms)
What is an eclipse? case mutual event -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, case mutual event) -> case mutual event (9838ms)
What is an eclipse? software engineering environment -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, software engineering environment) -> software engineering environment (9838ms)
What is an eclipse? four letter word -6.738384328860972 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, four letter word) -> four letter word (9856ms)
What is an eclipse? excellent free IDE -6.739481940897483 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, excellent free IDE) -> excellent free IDE (9856ms)
What is an eclipse? premium series name -6.753862704265519 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, premium series name) -> premium series name (9856ms)
What is an eclipse? collection of place -6.753997586683159 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, collection of place) -> collection of place (9856ms)
What is an eclipse? IDE or Integrated Development Environment -6.755933005957823 What 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)
What is an eclipse? popular open source platform -6.75846393885546 What 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)
What is an eclipse? OSGi application -6.760045771916483 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, OSGi application) -> OSGi application (9876ms)
What is an eclipse? pro -6.760514705065259 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, pro) -> pro (9875ms)
What is an eclipse? higher-end brand -6.7607091206715735 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, higher-end brand) -> higher-end brand (9876ms)
What is an eclipse? open source application -6.763263312171027 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source application) -> open source application (9875ms)
What is an eclipse? Java-based development environment -6.766900383073283 What 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)
What is an eclipse? intelligent code editor -6.771488844088347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intelligent code editor) -> intelligent code editor (9898ms)
What is an eclipse? complete software development environment -6.772384071018163 What 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)
What is an eclipse? open source software -6.774572802949596 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source software) -> open source software (9899ms)
What is an eclipse? Japanese pop group -6.776355017376476 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Japanese pop group) -> Japanese pop group (9899ms)
What is an eclipse? oil -6.777972899495585 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, oil) -> oil (9899ms)
What is an eclipse? full-featured development tool -6.780609602935483 What 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)
What is an eclipse? low cost laser-based alternative -6.794318825249083 What 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)
What is an eclipse? comprehensive IDE -6.799303996553774 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, comprehensive IDE) -> comprehensive IDE (9913ms)
What is an eclipse? young, dynamic and rapidly growing company -6.801173433954483 What 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)
What is an eclipse? Complex UIs -6.8204742794600515 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Complex UIs) -> Complex UIs (9914ms)
What is an eclipse? development tool -6.828813770508529 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, development tool) -> development tool (9914ms)
What is an eclipse? great place -6.8659630667268665 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, great place) -> great place (9914ms)
What is an eclipse? good brand -6.966943379776335 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good brand) -> good brand (9934ms)
What is an eclipse? pro tool -6.981215538584396 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, pro tool) -> pro tool (9935ms)
What is an eclipse? solution ecosystem -7.010984533359883 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, solution ecosystem) -> solution ecosystem (9935ms)
What is an eclipse? luxury vessel -7.015709830601856 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, luxury vessel) -> luxury vessel (9935ms)
What is an eclipse? affordable aircraft -7.025850914959278 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, affordable aircraft) -> affordable aircraft (9934ms)
What is an eclipse? awesome movie -7.034635024682586 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, awesome movie) -> awesome movie (9935ms)
What is an eclipse? great line -7.040472290261207 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, great line) -> great line (9956ms)
What is an eclipse? online magazine -7.058373844838783 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, online magazine) -> online magazine (9956ms)
What is an eclipse? purpose solution -7.072320732935189 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, purpose solution) -> purpose solution (9956ms)
What is an eclipse? difficult film -7.073714890513336 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, difficult film) -> difficult film (9956ms)
What is an eclipse? typical model -7.076128849972145 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, typical model) -> typical model (9956ms)
What is an eclipse? success story -7.076538954431252 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, success story) -> success story (9956ms)
What is an eclipse? global phenomenon -7.076649961163242 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, global phenomenon) -> global phenomenon (9973ms)
What is an eclipse? wireless platform -7.07917534409199 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, wireless platform) -> wireless platform (9974ms)
What is an eclipse? good read -7.089090684646612 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good read) -> good read (9973ms)
What is an eclipse? admire company -7.096650857351332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, admire company) -> admire company (9973ms)
What is an eclipse? knowledge -7.108625709298817 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (prediction of an eclipse, Instance Of, knowledge) -> knowledge (9973ms)
What is an eclipse? celestial pattern -7.110360078439232 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, celestial pattern) -> celestial pattern (9973ms)
What is an eclipse? realtime system -7.113101922411672 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, realtime system) -> realtime system (9991ms)
What is an eclipse? good suggestion -7.120350673287121 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good suggestion) -> good suggestion (9991ms)
What is an eclipse? biggest brand -7.122681022856833 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, biggest brand) -> biggest brand (9991ms)
What is an eclipse? intelligent editor -7.124069299527132 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intelligent editor) -> intelligent editor (9991ms)
What is an eclipse? cyclic pattern -7.124069299527132 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, cyclic pattern) -> cyclic pattern (9990ms)
What is an eclipse? integrated environment -7.129552987472012 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, integrated environment) -> integrated environment (9991ms)
What is an eclipse? amazing product -7.130334358864995 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, amazing product) -> amazing product (10049ms)
What is an eclipse? time -7.130509043683604 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time of an eclipse, Instance Of, time) -> time (10050ms)
What is an eclipse? private company -7.130636658120101 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, private company) -> private company (10050ms)
What is an eclipse? complete system -7.1325264592980036 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, complete system) -> complete system (10050ms)
What is an eclipse? nice place -7.134101633131779 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, nice place) -> nice place (10049ms)
What is an eclipse? software application -7.135461468662918 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, software application) -> software application (10128ms)
What is an eclipse? billing system -7.137778519389332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, billing system) -> billing system (10128ms)
What is an eclipse? trio band -7.137778519389332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, trio band) -> trio band (10128ms)
What is an eclipse? cruise ship -7.137778519389332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, cruise ship) -> cruise ship (10128ms)
What is an eclipse? good place -7.138342351122761 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good place) -> good place (10128ms)
What is an eclipse? factor -7.139832663132815 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (mention of an eclipse, Instance Of, factor) -> factor (10128ms)
What is an eclipse? private club -7.140010254052466 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, private club) -> private club (10144ms)
What is an eclipse? registered charity -7.148198620299144 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, registered charity) -> registered charity (10144ms)
What is an eclipse? memoir -7.1514848211951385 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light from an Eclipse, Instance Of, memoir) -> memoir (10144ms)
What is an eclipse? application framework -7.152584478311348 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, application framework) -> application framework (10144ms)
What is an eclipse? circumstance -7.17685756065902 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (testing an Eclipse-based application, Instance Of, circumstance) -> circumstance (10144ms)
What is an eclipse? brainer -7.243897573823071 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Custom II for an Eclipse, Instance Of, brainer) -> brainer (10165ms)
What is an eclipse? Japanese made car -7.310076614374316 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Japanese made car) -> Japanese made car (10164ms)
What is an eclipse? area -7.373425639796428 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (creating a JAVA project in an Eclipse workspace, Instance Of, area) -> area (10164ms)
What is an eclipse? book -7.382397561562472 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (The Short Second Life of Bree Tanner: An Eclipse Novella, Instance Of, book) -> book (10164ms)
What is an eclipse? Organisations -7.485960981810836 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Organisations) -> Organisations (10165ms)
What is an eclipse? short day variety -7.513439501055011 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, short day variety) -> short day variety (10179ms)
What is an eclipse? high end brand -7.5256222735549985 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, high end brand) -> high end brand (10179ms)
What is an eclipse? Mitsubishi Eclipse -7.619817584823058 What 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)
What is an eclipse? PITA -7.667230076815279 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, PITA) -> PITA (10179ms)
What is an eclipse? Eclipse 500 -8.096650857351332 What 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)
What is an eclipse? 1995 Mitsubishi Eclipse Convertible -8.500518059102518 What 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)
What is an eclipse? 2002 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 2002 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 2008 Mitsubishi Eclipse Coupe -8.500518059102518 What 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)
What is an eclipse? 1994 Mitsubishi Eclipse -8.500518059102518 What 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)
What is an eclipse? 2006 Mitsubishi Eclipse Coupe -8.500518059102518 What 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)
What is an eclipse? 2009 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 1989 Mitsubishi Eclipse -8.500518059102518 What 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)
What is an eclipse? 2005 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 1993 Mitsubishi Eclipse -8.500518059102518 What 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)
What is an eclipse? 2007 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 2010 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 1992 Mitsubishi Eclipse -8.500518059102518 What 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)
What is an eclipse? 2011 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 2009 Mitsubishi Eclipse Coupe -8.500518059102518 What 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)
What is an eclipse? 2005 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 1999 Mitsubishi Eclipse Convertible -8.500518059102518 What 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)
What is an eclipse? 1998 Mitsubishi Eclipse Convertible -8.500518059102518 What 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)
What is an eclipse? 1995 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 2012 Mitsubishi Eclipse Coupe -8.500518059102518 What 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)
What is an eclipse? 2000 Mitsubishi Eclipse Convertible -8.500518059102518 What 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)
What is an eclipse? 1991 Mitsubishi Eclipse -8.500518059102518 What 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)
What is an eclipse? 2008 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 1990 Mitsubishi Eclipse -8.500518059102518 What 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)
What is an eclipse? 1997 Mitsubishi Eclipse Convertible -8.500518059102518 What 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)
What is an eclipse? 2003 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 1997 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 2001 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 2000 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 1998 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 2004 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 2007 Mitsubishi Eclipse Coupe -8.500518059102518 What 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)
What is an eclipse? 2004 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 2012 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 1999 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 2011 Mitsubishi Eclipse Coupe -8.500518059102518 What 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)
What is an eclipse? 2001 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 1996 Mitsubishi Eclipse Convertible -8.500518059102518 What 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)
What is an eclipse? 2003 Mitsubishi Eclipse Spyder -8.500518059102518 What 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)
What is an eclipse? 1996 Mitsubishi Eclipse Hatchback -8.500518059102518 What 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)
What is an eclipse? 2010 Mitsubishi Eclipse Coupe -8.500518059102518 What 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)
What is an eclipse? IBM -8.57231479111083 What 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)
What is an eclipse? Eclipse IDE -8.784160672250573 What 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)
What is an eclipse? event -8.967551762006671 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, event) -> event (10179ms)
What is an eclipse? Joel Harris -9.049592344733682 What 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)
What is an eclipse? extension -9.160289202027375 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, extension) -> extension (10179ms)
What is an eclipse? story -9.198739630479643 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipsed, Instance Of, story) -> story (10179ms)
What is an eclipse? work -9.213722161537802 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, work) -> work (10194ms)
What is an eclipse? moment -9.230629194828174 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, moment) -> moment (10194ms)
What is an eclipse? host -9.25901958943625 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, host) -> host (10194ms)
What is an eclipse? world -9.26205619215836 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, world) -> world (10194ms)
What is an eclipse? portal -9.273501059033201 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, portal) -> portal (10194ms)
What is an eclipse? band -9.276986287509086 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, band) -> band (10194ms)
What is an eclipse? S.Meyer -9.292475958841662 What 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)
What is an eclipse? technology -9.29553956385304 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, technology) -> technology (10213ms)
What is an eclipse? shooter -9.298914714809245 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, shooter) -> shooter (10213ms)
What is an eclipse? abstraction -9.341988680026748 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, abstraction) -> abstraction (10213ms)
What is an eclipse? fact -9.349282579555918 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, fact) -> fact (10213ms)
What is an eclipse? lady -9.349819364996609 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, lady) -> lady (10213ms)
What is an eclipse? board -9.35113786747764 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, board) -> board (10213ms)
What is an eclipse? Rio de Janeiro -9.750930162507398 What 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)
What is an eclipse? Earth orbit -9.80102322497383 What 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)
What is an eclipse? use -9.908102055595904 What 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)
What is an eclipse? the Great Depression -9.959883119421256 What 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)
What is an eclipse? safety standards -10.019920283920966 What 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)
What is an eclipse? more concrete evidence -10.205053248144408 What 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)
What is an eclipse? 625 -10.221752882807339 What 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)
What is an eclipse? Postgres Plus Advanced Server -10.241534474522316 What 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)
What is an eclipse? social networks -10.246861277888964 What 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)
What is an eclipse? the ITRF -10.300174488961188 What 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)
What is an eclipse? a mission -10.315703751841172 What 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)
What is an eclipse? a couch -10.361617456296182 What 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)
What is an eclipse? Venus -10.388069223293947 What 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)
What is an eclipse? Epsilon Aurigae -10.395256990880284 What 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)
What is an eclipse? a spacecraft -10.405007737802414 What 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)
What is an eclipse? a man form -10.426679346216398 What 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)
What is an eclipse? Sydney -10.434676552651606 What 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)
What is an eclipse? Breed?s Hill -10.439058113938634 What 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)
What is an eclipse? a pedestal -10.45379767898596 What 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)
What is an eclipse? Armenia -10.456311528813092 What 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)
What is an eclipse? an east/west axis -10.463025951550451 What 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)
What is an eclipse? the Pacific Ocean -10.476201903406782 What 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)
What is an eclipse? the Kinder Valley -10.480781944810253 What 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)
What is an eclipse? an Exd cable gland entry -10.540378437052519 What 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)
What is an eclipse? good confluence -10.555725272561107 What 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)
What is an eclipse? AGI website -10.56520054062425 What 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)
What is an eclipse? one class period -10.593652393575901 What 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)
What is an eclipse? coronagraph images -10.66182895825007 What 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)
What is an eclipse? chapter 14 -10.717587946334966 What 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)
What is an eclipse? 2-5 days -10.752102733188318 What 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)
What is an eclipse? a credit classification -10.759753221139492 What 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)
What is an eclipse? DJ Eclipse -10.778581183001197 What 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)
What is an eclipse? a constant state -10.858643019675545 What 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)
What is an eclipse? false -10.907668734038673 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (ArgoEclipse, Model Versioning, false) -> false (12422ms)
What is an eclipse? a dark night -10.97519963378635 What 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)
What is an eclipse? June 2009 -11.301374573672797 What 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)
What is an eclipse? June 6 , 2008 -11.354487038415552 What 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)
What is an eclipse? Hallowed Be Thy Name -11.366501182129307 What 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)
What is an eclipse? Raul Geisler -11.396238972129254 What 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)
What is an eclipse? Tonal Eclipse Music -11.492189355201125 What 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)
What is an eclipse? right now -11.568980220091149 What 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)
What is an eclipse? the far side -11.575939134800828 What 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)
What is an eclipse? Louisville Colonels -11.639580818170844 What 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)
What is an eclipse? Steve Johnson -11.639580818170844 What 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)
What is an eclipse? Incomplete Eclipse -11.639580818170844 What 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)
What is an eclipse? Total Eclipse -11.639580818170844 What 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)
What is an eclipse? Chicco Secci -11.639580818170844 What 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)
What is an eclipse? Keith Bailey -11.639580818170844 What 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)
What is an eclipse? the future -11.656930040398512 What 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)
What is an eclipse? The Eclipse: A Memoir of Suicide -11.723856629918382 What 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)
What is an eclipse? Together in Eclipse Bay -11.723856629918382 What 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)
What is an eclipse? Requiem for a Gringo -11.723856629918382 What 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)
What is an eclipse? Almay 'Eclipse' TV Spot -11.723856629918382 What 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)
What is an eclipse? Crucifixion darkness and eclipse -11.723856629918382 What 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)
What is an eclipse? Eclipse vs. Force Mass Motion -11.723856629918382 What 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)
What is an eclipse? Soil & Eclipse -11.723856629918382 What 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)
What is an eclipse? Eclipse: A Novel of Lewis and Clark -11.723856629918382 What 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)
What is an eclipse? BCI Eclipse Company, LLC -11.723856629918382 What 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)
What is an eclipse? Eclipse (K?lte Container remix) -11.723856629918382 What 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)
What is an eclipse? Pok hoh ka fe -11.723856629918382 What 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)
What is an eclipse? Muv-Luv Alternative -11.723856629918382 What 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)
What is an eclipse? ?????? -11.723856629918382 What 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)
What is an eclipse? Tanzania: political reform in eclipse : crises and cleavage in political parties -11.723856629918382 What 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)
What is an eclipse? CARDIOGENESIS CORP /CA -11.723856629918382 What 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)
What is an eclipse? The Blue Eclipse -11.723856629918382 What 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)
What is an eclipse? White Line Highway -11.723856629918382 What 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)
What is an eclipse? Eclipse di Luna - Park Place -11.723856629918382 What 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)
What is an eclipse? Luner Eclipse (Inst.) -11.723856629918382 What 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)
What is an eclipse? Matt Gall -11.723856629918382 What 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)
What is an eclipse? 2200 -11.788070958605081 What 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)
What is an eclipse? 1997 -11.795802123640874 What 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)
What is an eclipse? movie -11.848470528403208 What 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)
What is an eclipse? 2003 -11.893404910461854 What 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)
What is an eclipse? 1952 -11.905331191572134 What 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)
What is an eclipse? Total eclipse -11.927067137032573 What 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)
What is an eclipse? the hills -11.936382196254097 What 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)
What is an eclipse? the roots -11.952297762283015 What 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)
What is an eclipse? the kitchen -11.95760293339189 What 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)
What is an eclipse? May 20th , 2012 -11.973526350278231 What 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)
What is an eclipse? 1999 -11.990174692127166 What 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)
What is an eclipse? truth -12.020660324148421 What 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)
What is an eclipse? the material world -12.04470411771431 What 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)
What is an eclipse? the same orbit -12.05466346862827 What 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)
What is an eclipse? uranium ores -12.059695919843104 What 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)
What is an eclipse? the second column -12.08796511104596 What 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)
What is an eclipse? the next packing -12.092283563236204 What 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)
What is an eclipse? the research stage -12.114947991132958 What 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)
What is an eclipse? Zonin' (feat. 427) -12.116414090699118 What 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)
What is an eclipse? Eclipse (1988) -12.116414090699118 What 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)
What is an eclipse? The Eclipse, Part 1 -12.116414090699118 What 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)
What is an eclipse? C/1948 V1 -12.116414090699118 What 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)
What is an eclipse? Eclipse 400 -12.116414090699118 What 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)
What is an eclipse? 427 -12.116414090699118 What 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)
What is an eclipse? The Eclipse, Part 2 -12.116414090699118 What 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)
What is an eclipse? Untitled (Cr?me Eclipse 01) -12.116414090699118 What 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)
What is an eclipse? the last lines -12.133390899988488 What 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)
What is an eclipse? the form -12.133453703305523 What 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)
What is an eclipse? the virgin light -12.182509851908893 What 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)
What is an eclipse? furnishings -12.197141872522902 What 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)
What is an eclipse? the right place -12.24846182417198 What 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)
What is an eclipse? Vox Terrae -12.249577169867305 What 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)
What is an eclipse? The Eclipse -12.249577169867305 What 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)
What is an eclipse? the ground -12.262667282785072 What 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)
What is an eclipse? the target plane -12.287793820106241 What 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)
What is an eclipse? heaven -12.292893478520247 What 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)
What is an eclipse? the exclamation point -12.30505049167429 What 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)
What is an eclipse? the spirit -12.314839450807977 What 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)
What is an eclipse? the pulse -12.347643235111779 What 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)
What is an eclipse? the cards -12.360817723390245 What 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)
What is an eclipse? the midst -12.379187291228325 What 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)
What is an eclipse? the famous Lumbini Core Garden -12.383380114650695 What 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)
What is an eclipse? William -12.3860137719049 What 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)
What is an eclipse? the context -12.41101842328616 What 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)
What is an eclipse? the iConEMI Receiver -12.412465683729707 What 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)
What is an eclipse? Genesis -12.415574980885182 What 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)
What is an eclipse? Altitude -12.415574980885182 What 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)
What is an eclipse? Eclipse -12.415574980885182 What 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)
What is an eclipse? Venomous -12.415574980885182 What 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)
What is an eclipse? the base -12.416845402928832 What 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)
What is an eclipse? the night sky -12.434645648490031 What 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)
What is an eclipse? the laws -12.435775958730634 What 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)
What is an eclipse? an intelligent usage -12.450907072472825 What 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)
What is an eclipse? the planet -12.461119818133866 What 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)
What is an eclipse? the bank -12.477760665788256 What 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)
What is an eclipse? the principle -12.479985858510709 What 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)
What is an eclipse? a word -12.500373858364993 What 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)
What is an eclipse? the Vietnam war -12.504317924561706 What 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)
What is an eclipse? the interior -12.521702203080892 What 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)
What is an eclipse? the minds -12.52612318778867 What 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)
What is an eclipse? the surface -12.542922940218684 What 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)
What is an eclipse? the production -12.583557925381726 What 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)
What is an eclipse? shape -12.591539760534525 What 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)
What is an eclipse? the paint -12.602591486889642 What 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)
What is an eclipse? dispute -12.62412986261678 What 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)
What is an eclipse? Energy -12.635517407532344 What 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)
What is an eclipse? the tower -12.646801386669715 What 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)
What is an eclipse? clay -12.64724424163574 What 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)
What is an eclipse? place -12.649012614437932 What 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)
What is an eclipse? Zhang Heng -12.653079541264606 What 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)
What is an eclipse? Hamilton Dean -12.653079541264606 What 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)
What is an eclipse? terms -12.657591458332103 What 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)
What is an eclipse? Predict -12.660274942976818 What 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)
What is an eclipse? the boards -12.689400380145797 What 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)
What is an eclipse? love -12.694106700619102 What 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)
What is an eclipse? mitochondria -12.694990939722492 What 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)
What is an eclipse? view -12.704081119056282 What 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)
What is an eclipse? modality -12.806399849222625 What 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)
What is an eclipse? process -12.811506462937372 What 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)
What is an eclipse? The hybrid eclipse -12.868555486901002 What 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)
What is an eclipse? site -12.87448304534378 What 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)
What is an eclipse? creepy-crawlies -12.907619519505975 What 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)
What is an eclipse? findings -12.922458552517245 What 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)
What is an eclipse? the Moon -12.950107930886478 What 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)
What is an eclipse? Integration -12.996251169854386 What 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)
What is an eclipse? a 700 year voyage -13.147248193815612 What 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)
What is an eclipse? eclipse -13.150039494533168 What 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)
What is an eclipse? the Wasatch Mountains east -13.216610162582281 What 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)
What is an eclipse? An annular eclipse -13.229616702657312 What 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)
What is an eclipse? solar energy -13.237981781152328 What 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)
What is an eclipse? average approximately -13.242441565530665 What 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)
What is an eclipse? molecular oxygen -13.287889051131984 What 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)
What is an eclipse? CO2 -13.324097266435007 What 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)
What is an eclipse? The district -13.368487731622757 What 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)
What is an eclipse? an internet forum -13.429359607464772 What 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)
What is an eclipse? danger of being hit by an asteroid -13.469141616528734 What 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)
What is an eclipse? an interglacial period -13.477124975761622 What 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)
What is an eclipse? a spirited holiday finale -13.485977487653876 What 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)
What is an eclipse? the Art Bell -13.546102900760573 What 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)
What is an eclipse? The eclipse of Darwinism -13.557858818900504 What 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)
What is an eclipse? Java?s success -13.571419283553276 What 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)
What is an eclipse? popular video sites -13.571465885876858 What 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)
What is an eclipse? a cross -13.589861929264455 What 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)
What is an eclipse? Nantucket -13.638354051673852 What 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)
What is an eclipse? a blind -13.675080667383526 What 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)
What is an eclipse? four legs -13.694601138738587 What 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)
What is an eclipse? a system -13.72118415634247 What 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)
What is an eclipse? one another -13.7574494410583 What 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)
What is an eclipse? a period of warming -13.766331567594204 What 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)
What is an eclipse? Road/Race -13.781267228828774 What 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)
What is an eclipse? less than $ 2 -13.784353157845333 What 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)
What is an eclipse? a dozen or -13.822596057134245 What 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)
What is an eclipse? a different part of its orbit -13.839995027732506 What 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)
What is an eclipse? a wide variety -13.846396889097479 What 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)
What is an eclipse? a collision course with another planet -13.891470782097642 What 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)
What is an eclipse? Aug. 27 , 2003 -13.89903249737366 What 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)
What is an eclipse? Oct. 20 -13.935882585961341 What 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)
What is an eclipse? the rocks -13.953620811110433 What 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)
What is an eclipse? April 10 , 837 a.d. -13.99329378995964 What 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)
What is an eclipse? a developer -14.007082019234613 What 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)
What is an eclipse? sure nobody -14.028769437120635 What 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)
What is an eclipse? HURRY UP! -14.048633411167328 What 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)
What is an eclipse? prime health -14.069961974656954 What 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)
What is an eclipse? Monday -14.081125982096237 What 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)
What is an eclipse? an elliptical orbit around the sun -14.09336635202673 What 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)
What is an eclipse? now -14.10072432124378 What 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)
What is an eclipse? Mars -14.12611583205154 What 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)
What is an eclipse? the word theory -14.131396895831385 What 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)
What is an eclipse? danger of being destroyed -14.138350188799327 What 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)
What is an eclipse? a Universe -14.213897682830503 What 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)
What is an eclipse? top of water -14.22625041134313 What 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)
What is an eclipse? a soul 's use -14.248826229886715 What 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)
What is an eclipse? a race track -14.249550402383443 What 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)
What is an eclipse? account of the Titans -14.249929130811537 What 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)
What is an eclipse? a budget -14.25721732802608 What 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)
What is an eclipse? Hell -14.265020383164273 What 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)
What is an eclipse? an axis -14.26580843081534 What 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)
What is an eclipse? Even supposing Thales -14.282453876880641 What 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)
What is an eclipse? a period -14.289914165872847 What 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)
What is an eclipse? Peace -14.305069447400514 What 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)
What is an eclipse? a mess -14.32500777297651 What 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)
What is an eclipse? The term -14.334405044027513 What 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)
What is an eclipse? the New Deal electoral coalition -14.3359510201031 What 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)
What is an eclipse? danger of destruction -14.380655513611039 What 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)
What is an eclipse? the Photon Belt -14.387350858038056 What 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)
What is an eclipse? approximate energy balance -14.38745627615214 What 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)
What is an eclipse? The word ?replicate? -14.397604996337883 What 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)
What is an eclipse? The term ?emulation? -14.401141741942268 What 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)
What is an eclipse? The White paper -14.401446225148222 What 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)
What is an eclipse? the Slow Zone -14.40775197690201 What 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)
What is an eclipse? dire crisis for survival -14.44422442803782 What 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)
What is an eclipse? an orbit around the Sun -14.459507657554322 What 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)
What is an eclipse? layers -14.459779895353106 What 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)
What is an eclipse? theory -14.475402960448873 What 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)
What is an eclipse? The term theory -14.477118205652921 What 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)
What is an eclipse? a constant state of change -14.483208658705719 What 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)
What is an eclipse? big trouble -14.571780863121944 What 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)
What is an eclipse? the word -14.644319414297833 What 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)
What is an eclipse? mortal danger -14.673785591290994 What 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)
What is an eclipse? the Alpha quadrant -14.674442965592267 What 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)
What is an eclipse? deep crisis -14.682420184992258 What 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)
What is an eclipse? total chaos -14.682420184992258 What 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)
What is an eclipse? full view -14.694186710154947 What 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)
What is an eclipse? the Saros -14.76406585313671 What 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)
What is an eclipse? a counter-clockwise direction -14.769741402350407 What 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)
What is an eclipse? an imaginary axis -14.785486192241159 What 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)
What is an eclipse? and of itself -14.785802948648787 What 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)
What is an eclipse? a cooling trend -14.810741930541155 What 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)
What is an eclipse? quality -14.821472166779099 What 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)
What is an eclipse? a pure , Aboriginal state -14.823317865101869 What 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)
What is an eclipse? a warming cycle -14.840508131799766 What 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)
What is an eclipse? a great flame of radiant power -14.86128444022202 What 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)
What is an eclipse? consensus -14.868852093932144 What 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)
What is an eclipse? a transitional period -14.873775137881436 What 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)
What is an eclipse? Bapsi Sidhwa 's critically acclaimed novel -14.874153866309532 What 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)
What is an eclipse? the floor -14.883983818565074 What 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)
What is an eclipse? Day One -14.88422590728744 What 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)
What is an eclipse? the sunward side -14.916501914389888 What 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)
What is an eclipse? a 3rd dimension of time and space -14.93574185897553 What 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)
What is an eclipse? English -14.963334919187258 What 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)
What is an eclipse? a property -14.973565524858923 What 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)
What is an eclipse? Danger -14.998210862241386 What 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)
What is an eclipse? tonus -15.049228438656822 What 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)
What is an eclipse? the beginning ' -15.05206771875227 What 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)
What is an eclipse? the edge -15.062720238013643 What 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)
What is an eclipse? the outside -15.072092994410148 What 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)
What is an eclipse? 03/09/06-07 -15.093554775144932 What 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)
What is an eclipse? an event -15.109331687191908 What 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)
What is an eclipse? the part -15.134112049398013 What 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)
What is an eclipse? Sector 2814 -15.144617398135752 What 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)
What is an eclipse? pretty bad shape -15.147033072941634 What 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)
What is an eclipse? a day -15.147403391506561 What 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)
What is an eclipse? the precipice -15.165058995054752 What 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)
What is an eclipse? the strategy and science -15.170550224865764 What 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)
What is an eclipse? several places -15.19534393878443 What 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)
What is an eclipse? recent decades -15.207644063294971 What 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)
What is an eclipse? the testscript plugin -15.24533052837027 What 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)
What is an eclipse? 6 days or 8 days -15.265608426165446 What 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)
What is an eclipse? the '40s -15.265608426165446 What 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)
What is an eclipse? Sector 001 -15.26671132709027 What 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)
What is an eclipse? a different axis -15.35024906826687 What 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)
What is an eclipse? a large animal -15.35024906826687 What 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)
What is an eclipse? the northern slope -15.381808947119927 What 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)
What is an eclipse? groundwater -15.423419362592561 What 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)
What is an eclipse? course -15.4592103108734 What 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)
What is an eclipse? The organizers -15.500641898983135 What 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)
What is an eclipse? the risk -15.504800255984765 What 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)
What is an eclipse? supply -15.506654806153701 What 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)
What is an eclipse? food -15.520681131568264 What 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)
What is an eclipse? a technique -15.584491679482248 What 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)
What is an eclipse? the wastes -15.60383039776266 What 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)
What is an eclipse? stage -15.616765910269848 What 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)
What is an eclipse? the sidelines -15.617912970159836 What 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)
What is an eclipse? August 12th -15.624723579629194 What 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)
What is an eclipse? the guitar -15.637174772996985 What 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)
What is an eclipse? The assistants -15.643052921341342 What 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)
What is an eclipse? the ocean -15.652461282250512 What 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)
What is an eclipse? the verge of extinction -15.65400188152195 What 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)
What is an eclipse? the brink of extinction -15.65400188152195 What 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)
What is an eclipse? the cooperation -15.654229655052704 What 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)
What is an eclipse? the past -15.678038435968826 What 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)
What is an eclipse? March 25-28 -15.680650569819363 What 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)
What is an eclipse? eclipses -15.682476790053354 What 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)
What is an eclipse? Wanna -15.683519768934593 What 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)
What is an eclipse? the region -15.691365958219414 What 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)
What is an eclipse? the form of a sphere -15.69298611218985 What 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)
What is an eclipse? the verge of another Ice Age -15.717282665540324 What 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)
What is an eclipse? The change -15.771261583271489 What 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)
What is an eclipse? The nodal axis -15.804338005631216 What 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)
What is an eclipse? the hat -15.926025881655685 What 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)
What is an eclipse? peace -16.013058066975233 What 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)
What is an eclipse? land -16.061791291317277 What 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)
What is an eclipse? warmth -16.072337065407773 What 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)
What is an eclipse? flesh -16.074170059039517 What 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)
What is an eclipse? anthropology -16.110700541850512 What 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)
What is an eclipse? need -16.16946400383087 What 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)
What is an eclipse? target -16.17259055538228 What 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)
What is an eclipse? the gaseous state -16.208003405437815 What 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)
What is an eclipse? the brink of destruction -16.222949555101863 What 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)
What is an eclipse? the brink of disaster -16.243350673965814 What 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)
What is an eclipse? the same place in the sky -16.244959610938274 What 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)
What is an eclipse? the verge of destruction -16.25782549815599 What 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)
What is an eclipse? the verge of disaster -16.278226617019943 What 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)
What is an eclipse? the process of creation -16.278226617019943 What 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)
What is an eclipse? history -16.282389264133705 What 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)
What is an eclipse? 1910 -16.282901728811478 What 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)
What is an eclipse? the middle of empty space -16.317210847687843 What 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)
What is an eclipse? 2012 -16.3413576955994 What 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)
What is an eclipse? the outer fringes of the Photon Belt -16.360872648480488 What 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)
What is an eclipse? the throes of a mass extinction event -16.37718658717692 What 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)
What is an eclipse? the center of the habitable zone around the sun -16.37718658717692 What 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)
What is an eclipse? the border between Shabaali and Sebth space -16.38836152907965 What 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)
What is an eclipse? the north -16.440658995158195 What 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)
What is an eclipse? the hands of the wise -16.67378614828516 What 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)
What is an eclipse? the sky -16.67378614828516 What 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)
What is an eclipse? average -16.680074923213866 What 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)
What is an eclipse? the flanks of Volcano Tungurahua -16.685891496501593 What 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)
What is an eclipse? the grip of terror -16.68665203550288 What 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)
What is an eclipse? the first place -16.68665203550288 What 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)
What is an eclipse? water -16.720498653623615 What 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)
What is an eclipse? currently -16.73133090543767 What 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)
What is an eclipse? chaos -16.75401723121069 What 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)
What is an eclipse? travail -16.758812796274736 What 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)
What is an eclipse? track -16.764114047505775 What 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)
What is an eclipse? flowers -16.782073342897853 What 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)
What is an eclipse? excess -16.79681529088027 What 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)
What is an eclipse? disarray -16.80491628523368 What 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)
What is an eclipse? upheaval -16.80491628523368 What 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)
What is an eclipse? vibration -16.805601013313215 What 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)
What is an eclipse? jeopardy -16.806525222206137 What 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)
What is an eclipse? danger -16.806525222206137 What 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)
What is an eclipse? peril -16.806525222206137 What 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)
What is an eclipse? sunlight -16.81225531046856 What 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)
What is an eclipse? question -16.819391109423858 What 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)
What is an eclipse? orbit -16.828176831856798 What 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)
What is an eclipse? abundance -16.83979222828781 What 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)
What is an eclipse? the moment -16.974517467162176 What 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)
What is an eclipse? the direction -16.978045095269547 What 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)
What is an eclipse? the background -17.004499012181416 What 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)
What is an eclipse? the phenomenon -17.068815628176655 What 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)
How many moons does Neptune have? the top... -2.9246802856931984 How many moons does Neptune have? -> $x: (Neptune, moons, $x) -> (neptunes transformation pen, has a moon on, the top...) -> the top... (5459ms)
How many moons does Neptune have? The Heroes of Olympus -9.882223288407038 How 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)
How many moons does Neptune have? Doctor Who BBC Past Doctors -9.959838951275254 How 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)
How many moons does Neptune have? Chaos Chronicles -10.148058012331774 How 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)
How many moons does Neptune have? Fools in April / Neptune's Spatula -10.212089855596952 How 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)
How many moons does Neptune have? 2012 -10.926201708046284 How 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)
How many moons does Neptune have? period -11.414151152609518 How 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)
How many moons does Neptune have? mental health -11.99647066309127 How 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)
How many moons does Neptune have? Jacksonville Beach -12.001804767728661 How 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)
How many moons does Neptune have? Dover -12.261579472373562 How 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)
How many moons does Neptune have? a Grand Cross -12.267378353057161 How 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)
How many moons does Neptune have? period 2 -12.271022364315552 How 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)
How many moons does Neptune have? a pedestrianised city centre -12.276112873413837 How 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)
How many moons does Neptune have? the GRAND CROSS. -12.342527432250185 How 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)
How many moons does Neptune have? ring -12.36563646388565 How 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)
How many moons does Neptune have? the Earthtone 3 team -12.383102354408159 How 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)
How many moons does Neptune have? the Flying Schedule -12.383287033216467 How 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)
How many moons does Neptune have? the Jacksonville Beaches community -12.410037893357199 How 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)
How many moons does Neptune have? a two part series -12.422889713278487 How 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)
How many moons does Neptune have? the Malta-based Force K -12.427557581245964 How 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)
How many moons does Neptune have? a 9 person Sailor Moon group -12.4502680849398 How 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)
How many moons does Neptune have? Period -12.517492133001745 How 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)
How many moons does Neptune have? trine -12.723215404756028 How 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)
How many moons does Neptune have? Mars -12.851907255178407 How 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)
How many moons does Neptune have? sextile -12.877959933778074 How 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)
How many moons does Neptune have? Love -12.989570044283678 How 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)
How many moons does Neptune have? Pisces -13.008099808913634 How 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)
How many moons does Neptune have? earlier -13.150782884569047 How 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)
How many moons does Neptune have? Aquarius -13.249123723821778 How 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)
How many moons does Neptune have? the picture -13.908979105538062 How 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)
How many moons does Neptune have? the week -13.932782426083842 How 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)
How many moons does Neptune have? the synastry picture forces -14.030848683638323 How 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)
How many moons does Neptune have? the city -14.115652951642687 How 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)
How many Oscars has she won? Pinoco -17.899069876473146 How 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)
What is relative humidity? HMP35C -6.938717901607358 What is relative humidity? -> $x: (relative humidity, instance of, $x) -> $x: (relative humidity, modelling, $x) -> (Air temperature/relative humidity (HMP35), Model, HMP35C) -> HMP35C (8345ms)
What is relative humidity? RH -10.456634536791501 What 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)
What is relative humidity? 24 percent -10.572144835294658 What 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)
What is relative humidity? a lower one -10.677180577937474 What 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)
What is relative humidity? 70 percent -10.788805981358168 What 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)
What is relative humidity? 15 percent -10.81350286855322 What 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)
What is relative humidity? Humidity -10.829600661438723 What 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)
What is relative humidity? lowest is -10.906584303572656 What 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)
What is relative humidity? Live Album -10.97668535705385 What 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)
What is relative humidity? TV Episode -10.983252303423788 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, TV Episode) -> TV Episode (13613ms)
What is relative humidity? the Wind Chill -11.086563255458094 What 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)
What is relative humidity? high year-round -11.168260270498392 What 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)
What is relative humidity? Book Edition -11.172083555204953 What 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)
What is relative humidity? air -11.217710773260082 What 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)
What is relative humidity? SO2 -11.248900938134767 What 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)
What is relative humidity? ?humidity ? -11.251222994874446 What 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)
What is relative humidity? human hair -11.287830167437033 What 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)
What is relative humidity? EP -11.295182255995842 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity EP, Release type, EP) -> EP (13613ms)
What is relative humidity? Paper vs. relative humidity -11.309352334433878 What 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)
What is relative humidity? climate shape ecosystems -11.333512583555793 What 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)
What is relative humidity? explaining humidity -11.348636221279971 What 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)
What is relative humidity? absolute humidity -11.348636221279971 What 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)
What is relative humidity? zero percent -11.354714482619253 What 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)
What is relative humidity? water vapor -11.376840776184311 What 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)
What is relative humidity? 55 -11.402592890839067 What 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)
What is relative humidity? 30-60 percent -11.450659779113803 What 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)
What is relative humidity? dashed lines -11.477617973440525 What 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)
What is relative humidity? sulfur dioxide and nitrogen oxides -11.486246234922378 What 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)
What is relative humidity? Antiques -11.490588974417424 What 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)
What is relative humidity? 75-80 % -11.501059036403847 What 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)
What is relative humidity? 45-55 % -11.514714242320183 What 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)
What is relative humidity? one key consideration -11.521241314325415 What 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)
What is relative humidity? Tables of temperature, relative humidity and precipitation for the world -11.539080836583997 What 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)
What is relative humidity? 20 % -11.542185037919664 What 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)
What is relative humidity? ice -11.545750639851656 What 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)
What is relative humidity? Transmission Efficiency -11.547177447631425 What 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)
What is relative humidity? 40-60 % -11.560817731279128 What 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)
What is relative humidity? 40 % -11.57218709622359 What 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)
What is relative humidity? H.M.S.O. -11.593134601795791 What 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)
What is relative humidity? Disease cause -11.59570508577155 What 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)
What is relative humidity? 90 % -11.596613028124484 What 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)
What is relative humidity? Problem fire behavior -11.607898048241054 What 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)
What is relative humidity? 20-25 % -11.6093233993903 What 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)
What is relative humidity? 68-72 percent -11.61298541407366 What 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)
What is relative humidity? Condensation -11.615832299098793 What 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)
What is relative humidity? 2.0. 5 -11.638501919542552 What 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)
What is relative humidity? 42 % -11.646329789307986 What 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)
What is relative humidity? 55 % -11.653658515547052 What 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)
What is relative humidity? 61 % -11.655426888349245 What 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)
What is relative humidity? The DampGuard -11.669275191552643 What 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)
What is relative humidity? Instruments -11.672977469336452 What 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)
What is relative humidity? 35 % -11.674487053594136 What 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)
What is relative humidity? an important factor -11.676657689519734 What 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)
What is relative humidity? 69 % -11.696099989822638 What 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)
What is relative humidity? 82 % -11.709362996648267 What 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)
What is relative humidity? A hygrometer -11.711685161025473 What 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)
What is relative humidity? the MODEL -11.757034376832348 What 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)
What is relative humidity? moisture content -11.763646759733188 What 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)
What is relative humidity? a different story -11.771200613499532 What 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)
What is relative humidity? 12 h -11.787172401288368 What 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)
What is relative humidity? a good idea -11.798610708147297 What 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)
What is relative humidity? A calculator -11.804655858542425 What 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)
What is relative humidity? Efficacy -11.811533400665258 What 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)
What is relative humidity? A low cost hygrometer -11.81280617622744 What 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)
What is relative humidity? Ontology Instance -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Ontology Instance) -> Ontology Instance (13740ms)
What is relative humidity? Canonical Version -11.844251938593434 What 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)
What is relative humidity? Musical Album -11.844251938593434 What 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)
What is relative humidity? Musical Release -11.844251938593434 What 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)
What is relative humidity? Musical Recording -11.844251938593434 What 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)
What is relative humidity? Musical Artist -11.844251938593434 What 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)
What is relative humidity? Flagged Content -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Flagged Content) -> Flagged Content (13761ms)
What is relative humidity? Disease development -11.844454490437062 What 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)
What is relative humidity? Cloud fraction -11.870915883258768 What 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)
What is relative humidity? PH Tester -11.89059385231118 What 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)
What is relative humidity? an air parcel -11.919478831562078 What 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)
What is relative humidity? water absorption -11.92659429525246 What 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)
What is relative humidity? Multi-Part Musical Release -11.92852775034097 What 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)
What is relative humidity? a convective environment -11.949456253975804 What 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)
What is relative humidity? a small CO2 warming -11.953727246824844 What 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)
What is relative humidity? cloud fraction -11.968285625096115 What 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)
What is relative humidity? Water requirement -11.989264347403097 What 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)
What is relative humidity? Album -11.996021365809778 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Righteousness & Humidity, Release type, Album) -> Album (13970ms)
What is relative humidity? a dimensionless parameter -12.001976215514256 What 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)
What is relative humidity? Image -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Image) -> Image (14184ms)
What is relative humidity? Content -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Content) -> Content (13970ms)
What is relative humidity? Property -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Property) -> Property (13970ms)
What is relative humidity? Dimension -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative humidity, Type, Dimension) -> Dimension (13970ms)
What is relative humidity? Curing times -12.009600898139793 What 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)
What is relative humidity? Developmental time -12.049548869907783 What 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)
What is relative humidity? Book -12.089047617839523 What 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)
What is relative humidity? Cataloged instance -12.131738257455162 What 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)
What is relative humidity? Release track -12.131738257455162 What 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)
What is relative humidity? Environmental variable -12.131738257455162 What 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)
What is relative humidity? The annual high temperature -12.161912664676823 What 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)
What is relative humidity? dependent on temperature -12.196801451239242 What 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)
What is relative humidity? dependent upon temperature -12.208081811256058 What 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)
What is relative humidity? 50 percent -12.22333258988224 What 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)
What is relative humidity? Heat stress -12.254711502882964 What 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)
What is relative humidity? 30 percent -12.256505158730606 What 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)
What is relative humidity? Finishes -12.258937937874482 What 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)
What is relative humidity? temperature-dependent parameter -12.271290090024758 What 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)
What is relative humidity? 80 percent -12.27140179861025 What 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)
What is relative humidity? 17 percent -12.311816957569643 What 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)
What is relative humidity? Gay Porn -12.315612755813426 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Gay Porn) -> Gay Porn (14276ms)
What is relative humidity? Observation Type -12.321717490003584 What 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)
What is relative humidity? 20 percent -12.373691045831611 What 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)
What is relative humidity? environmental factor -12.38569542864541 What 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)
What is relative humidity? one percent -12.38578864513587 What 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)
What is relative humidity? Answer -12.386898389886397 What 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)
What is relative humidity? low -12.397768635116392 What 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)
What is relative humidity? 0.5 % -12.419258336747525 What 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)
What is relative humidity? heavy dew -12.476117211517892 What 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)
What is relative humidity? SHT -12.479263213646693 What 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)
What is relative humidity? Temp Tracker -12.482561056936861 What 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)
What is relative humidity? a measure of the amount of moisture -12.509584300112436 What 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)
What is relative humidity? VPD -12.520390875684694 What 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)
What is relative humidity? conidiophores and conidia -12.534741505429068 What 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)
What is relative humidity? function of both moisture -12.53674120433291 What 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)
What is relative humidity? the 8912 -12.543448610475245 What 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)
What is relative humidity? Film -12.565521548224954 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Film) -> Film (14298ms)
What is relative humidity? a measure of the amount of water vapor -12.574558017892269 What 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)
What is relative humidity? HMSO -12.585837994718082 What 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)
What is relative humidity? Humidity Sensor -12.605402622476205 What 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)
What is relative humidity? ambient environmental condition -12.617606737795226 What 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)
What is relative humidity? y-axis -12.63125871025609 What 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)
What is relative humidity? tap -12.638705283003713 What 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)
What is relative humidity? climatic parameter -12.648102724313796 What 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)
What is relative humidity? climatic datum -12.694068562397995 What 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)
What is relative humidity? 5 % -12.695670507839628 What 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)
What is relative humidity? common atmospheric datum -12.70209798572188 What 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)
What is relative humidity? hourly weather datum -12.70209798572188 What 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)
What is relative humidity? R. H. -12.70434372008678 What 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)
What is relative humidity? natural environmental factor -12.70727127682564 What 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)
What is relative humidity? external factor -12.70783706618799 What 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)
What is relative humidity? a lower wet-bulb temperature -12.708745703390122 What 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)
What is relative humidity? function of the amount of water -12.72394169479831 What 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)
What is relative humidity? soft-touch hold -12.734843779735126 What 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)
What is relative humidity? variable in the model -12.737308184470379 What 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)
What is relative humidity? factor of well-being -12.749237675521922 What 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)
What is relative humidity? physical factor -12.75003996760296 What 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)
What is relative humidity? Wet Bulb Depression -12.750202975236915 What 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)
What is relative humidity? Tramex Ltd. s CRH -12.750543724731054 What 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)
What is relative humidity? Tramex Hygrohood -12.751593487480825 What 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)
What is relative humidity? Rapid RH -12.751991113125323 What 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)
What is relative humidity? hot -12.751991113125323 What 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)
What is relative humidity? fog -12.752346406607016 What 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)
What is relative humidity? 9780114000349 -12.75540613297178 What 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)
What is relative humidity? 9780114001704 -12.75540613297178 What 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)
What is relative humidity? type of datum -12.760223831584678 What 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)
What is relative humidity? 9780114003401 -12.771171814491886 What 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)
What is relative humidity? a hot day -12.783332873516757 What 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)
What is relative humidity? nominal ambient condition -12.787764309713328 What 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)
What is relative humidity? local meteorological condition -12.787764309713328 What 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)
What is relative humidity? secondary climatic datum -12.787764309713328 What 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)
What is relative humidity? BPSH-xx -12.790365337559921 What 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)
What is relative humidity? strong function of temperature -12.791405121761272 What 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)
What is relative humidity? outdoor weather condition -12.792334049973821 What 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)
What is relative humidity? ProofReader? -12.796885068560464 What 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)
What is relative humidity? sensitive function of temperature -12.796885068560464 What 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)
What is relative humidity? DippyBird -12.796885068560464 What 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)
What is relative humidity? degrees of separation -12.796885068560464 What 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)
What is relative humidity? key parameter -12.802936497947677 What 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)
What is relative humidity? critical forecast information -12.804215374773669 What 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)
What is relative humidity? measurement of the degree -12.806024549081448 What 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)
What is relative humidity? standard meteorological parameter -12.808328140732328 What 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)
What is relative humidity? meteorological element -12.819398813644732 What 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)
What is relative humidity? ChipCap -12.823462202683137 What 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)
What is relative humidity? RH BluePeg -12.823462202683137 What 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)
What is relative humidity? fundamental storage requirement -12.828891971751329 What 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)
What is relative humidity? day -12.830687220592734 What 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)
What is relative humidity? A DECENT HANDLE -12.834347467794661 What 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)
What is relative humidity? key component of environmental comfort -12.835869299228364 What 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)
What is relative humidity? function of temperature and moisture -12.835869299228364 What 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)
What is relative humidity? environmental and analytical factor -12.835869299228364 What 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)
What is relative humidity? second operational parameter of interest -12.835869299228364 What 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)
What is relative humidity? Phys-Chem sensor -12.835869299228364 What 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)
What is relative humidity? Thez LCL -12.835869299228364 What 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)
What is relative humidity? spatially uniform weather variable -12.835869299228364 What 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)
What is relative humidity? LPN-H -12.850951083282297 What 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)
What is relative humidity? function of both moisture content and temperature -12.850951083282297 What 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)
What is relative humidity? optimum condition -12.855204293400652 What 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)
What is relative humidity? Creative Work -12.857750661687195 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Creative Work) -> Creative Work (16255ms)
What is relative humidity? Written Work -12.857750661687195 What 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)
What is relative humidity? Computrac Vapor Pro -12.86835615811828 What 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)
What is relative humidity? MOISTURE ABSORPTION Tested -12.86835615811828 What 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)
What is relative humidity? HygroClip from Rotronic -12.86835615811828 What 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)
What is relative humidity? Rapid RH? -12.86835615811828 What 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)
What is relative humidity? Rapid RH ? -12.86835615811828 What 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)
What is relative humidity? extensive drying craquelure -12.87305290903098 What 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)
What is relative humidity? meteorological information -12.873374083457007 What 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)
What is relative humidity? Temperature-Humidity Index -12.89584503871744 What 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)
What is relative humidity? R APID RH? -12.89584503871744 What 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)
What is relative humidity? expression of the percentage of this maximum value -12.89584503871744 What 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)
What is relative humidity? house plants -12.90361936633297 What 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)
What is relative humidity? 15 % -12.90873267106834 What 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)
What is relative humidity? DG obtained from Eq. -12.909483820156279 What 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)
What is relative humidity? weather factor -12.911989107062983 What 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)
What is relative humidity? temperature -12.912993666438183 What 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)
What is relative humidity? key component -12.915173840764345 What 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)
What is relative humidity? deserts -12.91613821295186 What 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)
What is relative humidity? function of refrigerant temperature and PPM of dissolved water -12.91940693637386 What 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)
What is relative humidity? TMI Termo Online -12.91940693637386 What 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)
What is relative humidity? indicator of the comfort level of a building's environment -12.91940693637386 What 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)
What is relative humidity? observational datum -12.921548971909 What 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)
What is relative humidity? 45 % -12.93175133366552 What 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)
What is relative humidity? basic parameter -12.934674174292192 What 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)
What is relative humidity? THE LOW SIDE -12.940392424635704 What 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)
What is relative humidity? ecological factor -12.947133375718895 What 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)
What is relative humidity? ronmental condition -12.955159672306628 What 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)
What is relative humidity? generally high -12.959140664592569 What 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)
What is relative humidity? the maximum -12.962137075001028 What 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)
What is relative humidity? crucial factor -12.96529955994275 What 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)
What is relative humidity? the air -12.965945774587645 What 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)
What is relative humidity? processing parameter -12.967868550820516 What 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)
What is relative humidity? day i -12.974968967752297 What 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)
What is relative humidity? weather sensor -12.97834011750682 What 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)
What is relative humidity? operating characteristic -12.979970698489153 What 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)
What is relative humidity? thermodynamic parameter -12.981988645591064 What 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)
What is relative humidity? input datum -12.985376479113455 What 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)
What is relative humidity? boundary condition -12.987165651559938 What 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)
What is relative humidity? a scale -12.987666264215576 What 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)
What is relative humidity? physical property -12.990583147594347 What 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)
What is relative humidity? near 100 -12.991708341852897 What 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)
What is relative humidity? an F -13.00045317039737 What 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)
What is relative humidity? outdoor condition -13.003024995233964 What 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)
What is relative humidity? operating parameter -13.00371990216157 What 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)
What is relative humidity? variable factor -13.008898479630101 What 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)
What is relative humidity? influence factor -13.009830993410029 What 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)
What is relative humidity? agro-meteorological datum -13.025004867392814 What 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)
What is relative humidity? datum parameter -13.031980125529103 What 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)
What is relative humidity? Pianos -13.035529329849583 What 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)
What is relative humidity? influencing parameter -13.03553752198605 What 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)
What is relative humidity? Txrh2 -13.044429624369418 What 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)
What is relative humidity? environmental clue -13.055992550081378 What 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)
What is relative humidity? key variable -13.066287017275831 What 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)
What is relative humidity? building condition -13.067305265195213 What 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)
What is relative humidity? routine item -13.068451871853146 What 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)
What is relative humidity? physical control -13.072460287242812 What 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)
What is relative humidity? OMEGA's RHCN-3 -13.074016173911488 What 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)
What is relative humidity? Omega's new UWRH-2-NEMA -13.075128345370924 What 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)
What is relative humidity? 100 % -13.077344534489242 What 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)
What is relative humidity? 25 % -13.079198240631968 What 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)
What is relative humidity? 87 % -13.080832431615178 What 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)
What is relative humidity? The climate -13.085186465321556 What 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)
What is relative humidity? NMF -13.091220302782157 What 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)
What is relative humidity? newspapers -13.092439244016036 What 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)
What is relative humidity? FAL-19 -13.096901180867516 What 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)
What is relative humidity? Humidity sensor 316 -13.096901180867516 What 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)
What is relative humidity? meterological factor -13.10640659197577 What 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)
What is relative humidity? interior environment -13.108255026243606 What 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)
What is relative humidity? each flight -13.110642887760333 What 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)
What is relative humidity? ronmental factor -13.111140711455072 What 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)
What is relative humidity? 90 percent -13.111642530771176 What 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)
What is relative humidity? sense parameter -13.113884348932807 What 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)
What is relative humidity? environmental quantity -13.113884348932807 What 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)
What is relative humidity? dew point values -13.114278777283008 What 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)
What is relative humidity? datum input -13.115807200494128 What 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)
What is relative humidity? process datum -13.117989084106094 What 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)
What is relative humidity? record parameter -13.118744891077451 What 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)
What is relative humidity? site parameter -13.11890107097716 What 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)
What is relative humidity? environmental measure -13.119891071191837 What 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)
What is relative humidity? determining parameter -13.12011581306367 What 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)
What is relative humidity? field parameter -13.121029761054483 What 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)
What is relative humidity? essential information -13.122168675220202 What 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)
What is relative humidity? greater capacity -13.122274827777263 What 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)
What is relative humidity? thermodynamic concept -13.123341511854775 What 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)
What is relative humidity? serious aspect -13.124685553017738 What 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)
What is relative humidity? air temperature -13.12590943056729 What 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)
What is relative humidity? the disease -13.126832409345905 What 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)
What is relative humidity? surface variable -13.12697042299477 What 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)
What is relative humidity? independent variable -13.12704308738427 What 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)
What is relative humidity? far -13.12958328107604 What 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)
What is relative humidity? weather element -13.129908114190942 What 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)
What is relative humidity? determining factor -13.134917122906181 What 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)
What is relative humidity? altitude -13.135764904692719 What 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)
What is relative humidity? Water vapor -13.137207728558256 What 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)
What is relative humidity? 95 -13.137326821367456 What 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)
What is relative humidity? humidity -13.140185889400495 What 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)
What is relative humidity? HS-70-D Humidity Sensor -13.141795136302658 What 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)
What is relative humidity? deposition parameter -13.141976462707776 What 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)
What is relative humidity? the unit -13.147211424957467 What 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)
What is relative humidity? meteorologic observation -13.154053985014313 What 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)
What is relative humidity? the most common -13.15541479424726 What 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)
What is relative humidity? The wines -13.15562889613433 What 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)
What is relative humidity? no delay -13.163162306060087 What 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)
What is relative humidity? dry air -13.166254200669337 What 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)
What is relative humidity? 65 percent -13.16869086392983 What 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)
What is relative humidity? humidity probe -13.17556270242287 What 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)
What is relative humidity? nasal congestion -13.177104616492196 What 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)
What is relative humidity? 40% -13.182922798340659 What 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)
What is relative humidity? crawl space -13.193038215682213 What 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)
What is relative humidity? drywall cracking -13.193038215682213 What 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)
What is relative humidity? 70 % -13.19405338919055 What 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)
What is relative humidity? Beijing and Shanghai -13.195575657276343 What 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)
What is relative humidity? flu -13.20361942035025 What 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)
What is relative humidity? The key -13.203797468816878 What 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)
What is relative humidity? air temperatures -13.2106545423451 What 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)
What is relative humidity? 85 % -13.214454508054503 What 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)
What is relative humidity? ANYWHERE THERE -13.217337040394913 What 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)
What is relative humidity? wooden mini blinds -13.2177294750494 What 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)
What is relative humidity? about 30 % -13.21901942272958 What 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)
What is relative humidity? around 70 % -13.222928668154134 What 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)
What is relative humidity? wall void -13.22552507457213 What 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)
What is relative humidity? swimming pool -13.22552507457213 What 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)
What is relative humidity? window frame -13.22552507457213 What 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)
What is relative humidity? commercial property -13.22552507457213 What 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)
What is relative humidity? Abel's art -13.225711605907353 What 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)
What is relative humidity? OMEGA's RHCN-3A -13.2284267600091 What 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)
What is relative humidity? a concern -13.240075935726567 What 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)
What is relative humidity? Model PS01 -13.243508544063033 What 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)
What is relative humidity? SHT11 -13.243508544063033 What 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)
What is relative humidity? PH20 -13.244877825069441 What 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)
What is relative humidity? Opinions -13.245707781032696 What 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)
What is relative humidity? 4 % outdoors -13.246536530425084 What 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)
What is relative humidity? a significant effect -13.25089876952261 What 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)
What is relative humidity? the ration -13.256870145029962 What 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)
What is relative humidity? the percentage -13.260471458761605 What 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)
What is relative humidity? C1/M System -13.260913618899016 What 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)
What is relative humidity? Omega Engineering's UWRH-2-NEMA -13.260913618899016 What 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)
What is relative humidity? Model 1200A -13.267070441719456 What 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)
What is relative humidity? Model TGX-3580 -13.267070441719456 What 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)
What is relative humidity? Sensirion's SHT11 -13.267070441719456 What 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)
What is relative humidity? the Master Joining Method -13.276872629586762 What 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)
What is relative humidity? twenty percent -13.278838471707987 What 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)
What is relative humidity? Midnight -13.279307285892726 What 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)
What is relative humidity? Model HD 797 T -13.288402499498176 What 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)
What is relative humidity? General Eastern C-1 -13.288402499498176 What 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)
What is relative humidity? Relative Humidity Shown in Fig. 3 -13.288402499498176 What 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)
What is relative humidity? Hytherograph LB-520 -13.288402499498176 What 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)
What was the nickname for the French team? Les Bleus -9.246222301521225 What 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)
What was the nickname for the French team? coach-class -10.673983187898555 What 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)
What was the nickname for the French team? Becks ?one -11.488809519510387 What 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)
What was the nickname for the French team? ambitions -11.510981343998244 What 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)
What was the nickname for the French team? Canada -11.59575672542523 What 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)
What was the nickname for the French team? France -11.60381358061635 What 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)
What was the nickname for the French team? GP racing -11.607828878831635 What 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)
What was the nickname for the French team? an ultimate tour -11.7703754644434 What 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)
What was the nickname for the French team? a chance -11.839586295803745 What 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)
What was the nickname for the French team? Juan-Miguel Mercado -11.867196032733384 What 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)
What was the nickname for the French team? Harrison and Peon -11.867738135101245 What 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)
What was the nickname for the French team? a large carton -11.948949836362992 What 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)
What was the nickname for the French team? the Ravenhill curse -11.965939559478674 What 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)
What was the nickname for the French team? Walter George Windham -12.055894948955336 What 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)
What was the nickname for the French team? Rochet -12.075780123383101 What 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)
What was the nickname for the French team? Rocket French -12.199839776638193 What 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)
What was the nickname for the French team? a structure -12.225442773097932 What 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)
What was the nickname for the French team? the British Team Manager -12.275950903419773 What 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)
What was the nickname for the French team? a technical team -12.335933545267826 What 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)
What was the nickname for the French team? an issue -12.481581771882626 What 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)
What was the nickname for the French team? Kovalainen -12.508134839551728 What 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)
What was the nickname for the French team? the ?37 Million -12.603419725527038 What 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)
What was the nickname for the French team? a run -12.668828433961977 What 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)
What was the nickname for the French team? boat speeds -12.69807283676204 What 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)
What was the nickname for the French team? a drop goal -12.708981704828716 What 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)
What was the nickname for the French team? a warm-up match -12.75878240902809 What 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)
What was the nickname for the French team? Bertrand Pac? -12.881237377205817 What 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)
What was the nickname for the French team? First -13.23972090033555 What 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)
What was the nickname for the French team? the fields -13.29935567290867 What 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)
What was the nickname for the French team? the site -13.760276613647585 What 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)
What was the nickname for the French team? race -13.813059011954781 What 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)
What was the nickname for the French team? action -13.947129400431447 What 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)
What was the nickname for the French team? strike -13.989471291109716 What 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)
What was the nickname for the French team? the first bicycle -14.054552545937021 What 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)
What was the nickname for the French team? the spino-ponto-amygdaloid pathway -14.190821675319233 What 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)
What was the nickname for the French team? the wrong mustache -14.280125661280476 What 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)
What was the nickname for the French team? favor -14.31012948423948 What 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)
What was the nickname for the French team? the chase -14.337164845962159 What 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)
What was the nickname for the French team? the computation -14.364182741519214 What 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)
What was the nickname for the French team? the regatta -14.434049647738885 What 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)
What was the nickname for the French team? the remaining 5 stages -14.595300984684172 What 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)
What was the nickname for the French team? the lead -14.676904617538309 What 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)
What is the oldest university in the US? William and Mary 2.2656175608956834 What 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)
What is the oldest university in the US? Chapel Hill 1.5624912081147113 What 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)
What is the oldest university in the US? Rensselaer 1.445029360796314 What 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)
What is the oldest university in the US? Santo Domingo -7.42656721448788 What 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)
What is the oldest university in the US? Charles V -7.724392953056543 What 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)
What is the oldest university in the US? Rutgers -8.102707644570353 What 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)
What is the oldest university in the US? Heriot-Watt University -8.267656676610034 What 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)
What is the oldest university in the US? Pennsylvania -8.320647096482876 What 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)
What is the oldest university in the US? Harvard -8.47121586427991 What 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)
What is the oldest university in the US? UPenn -8.599100222070858 What 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)
What is the oldest university in the US? Oxford University -8.705020953381483 What 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)
What is the oldest university in the US? Ohio -8.722135896111894 What 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)
What is the oldest university in the US? Glasgow -8.842596326138276 What 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)
What is the oldest university in the US? Cambridge -8.862997445002229 What 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)
What is the oldest university in the US? Harvard Harvard -8.980981237019057 What 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)
What is the oldest university in the US? Universit? Laval -9.00828877125409 What 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)
What is the oldest university in the US? Pacific -9.073398866835962 What 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)
What is the oldest university in the US? UNB -9.30671394528272 What 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)
What is the oldest university in the US? Aberdeen -9.36891191124186 What 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)
What is the oldest university in the US? Bologna -9.403270279582973 What 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)
What is the oldest university in the US? Cairo -9.412112248998529 What 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)
What is the oldest university in the US? Padua -9.420457798577619 What 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)
What is the oldest university in the US? Poitiers -9.479445480846383 What 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)
What is the oldest university in the US? Vienna -9.539134237651378 What 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)
What is the oldest university in the US? Manitoba -9.549508297429382 What 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)
What is the oldest university in the US? Oxford -9.569340381441044 What 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)
What is the oldest university in the US? New Brunswick -9.598832758614952 What 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)
What is the oldest university in the US? Oxf -9.660755785411448 What 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)
What is the oldest university in the US? Queens -10.176455629257598 What 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)
What is the oldest university in the US? the University -10.232941548123835 What 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)
What is the oldest university in the US? the Karouine -10.485303487895502 What 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)
What is the oldest university in the US? Colleges/Universities -10.623056593070999 What 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)
What is the oldest university in the US? 1088 -11.059083693961595 What 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)
What is the oldest university in the US? A Modest Proposal -11.513209484733515 What 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)
What is the oldest university in the US? Goldman Sachs -11.57588219717297 What 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)
What is the oldest university in the US? David Pryor -11.6201566650803 What 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)
What is the oldest university in the US? law -11.753947547716784 What 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)
What is the oldest university in the US? Boston College -11.761578166076307 What 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)
What is the oldest university in the US? J.D. -11.79992582029905 What 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)
What is the oldest university in the US? ?? ? ? Patel -11.872379938772806 What 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)
What is the oldest university in the US? Yash Gupta -11.98063843567275 What 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)
What is the oldest university in the US? University Village -11.995183620066868 What 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)
What is the oldest university in the US? Washington State -12.049229411086582 What 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)
What is the oldest university in the US? Law -12.05390658338164 What 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)
What is the oldest university in the US? TM -12.065098017283356 What 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)
What is the oldest university in the US? Lecture Capture -12.088327531154444 What 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)
What is the oldest university in the US? two elements?the type -12.08968757484705 What 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)
What is the oldest university in the US? ?Canada -12.09600230645222 What 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)
What is the oldest university in the US? Cambridge Assessment -12.097212914155726 What 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)
What is the oldest university in the US? myUFL myUFL -12.106934094589425 What 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)
What is the oldest university in the US? a very big campus -12.155304296454746 What 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)
What is the oldest university in the US? Josiah -12.162287553730685 What 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)
What is the oldest university in the US? Testudo -12.167354166147165 What 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)
What is the oldest university in the US? Bihar Nalanda -12.169224607843775 What 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)
What is the oldest university in the US? The Condon Committee -12.202926587145944 What 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)
What is the oldest university in the US? Hogeschool -12.214554972042603 What 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)
What is the oldest university in the US? Bruce Benson -12.22044348340766 What 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)
What is the oldest university in the US? Japan and America -12.228678316019582 What 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)
What is the oldest university in the US? Institution -12.230569610248182 What 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)
What is the oldest university in the US? cd ethics -12.236878535442404 What 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)
What is the oldest university in the US? Student Management System ISIS -12.256972649770738 What 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)
What is the oldest university in the US? Maine -12.292200073038064 What 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)
What is the oldest university in the US? University -12.29511606076495 What 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)
What is the oldest university in the US? Monash and Rusden -12.313625832698008 What 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)
What is the oldest university in the US? Feng Chia -12.314273819351802 What 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)
What is the oldest university in the US? Mike Singletary -12.325426061621673 What 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)
What is the oldest university in the US? Jackdaw -12.337557535040535 What 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)
What is the oldest university in the US? New Testament -12.342395997620518 What 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)
What is the oldest university in the US? ? Michael Tick -12.350449186549547 What 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)
What is the oldest university in the US? Dr. Fox -12.360252091934068 What 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)
What is the oldest university in the US? 1882 -12.364640202237634 What 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)
What is the oldest university in the US? The PythAcademia -12.394087849243697 What 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)
What is the oldest university in the US? Mr. James Michel -12.39674046114928 What 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)
What is the oldest university in the US? OP -12.458305395271413 What 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)
What is the oldest university in the US? Derr Professor -12.492450371322628 What 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)
What is the oldest university in the US? Joseph F. Volker -12.493003307836862 What 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)
What is the oldest university in the US? Elaine Pagels -12.499016021555006 What 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)
What is the oldest university in the US? Hiram Bingham -12.524432791506513 What 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)
What is the oldest university in the US? 11:05 -12.527140314114911 What 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)
What is the oldest university in the US? Timothy Leary -12.54047357391211 What 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)
What is the oldest university in the US? Social Justice -12.56565847583742 What 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)
What is the oldest university in the US? a not -12.5797842760581 What 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)
What is the oldest university in the US? a library -12.581703391080223 What 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)
What is the oldest university in the US? Julie Beischel -12.58636281829628 What 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)
What is the oldest university in the US? NMSU, -12.59600703813065 What 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)
What is the oldest university in the US? a best buy -12.652324847772675 What 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)
What is the oldest university in the US? the Heritage Walk -12.659015766826133 What 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)
What is the oldest university in the US? Utah 9 ? -12.678773198830982 What 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)
What is the oldest university in the US? such pages -12.68936292708636 What 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)
What is the oldest university in the US? Sophi -12.717306295311737 What 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)
What is the oldest university in the US? the CASE Professor -12.756642622680767 What 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)
What is the oldest university in the US? Simpkins -12.781642178263448 What 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)
What is the oldest university in the US? a footbridge -12.797387017919998 What 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)
What is the oldest university in the US? a fellowship -12.843490506878943 What 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)
What is the oldest university in the US? offensive assistant Kyle Flood -12.87275746773779 What 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)
What is the oldest university in the US? Nick Gonzales -12.882451734697312 What 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)
What is the oldest university in the US? Syracuse -12.941445719801834 What 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)
What is the oldest university in the US? John Cornwell -12.949650797119666 What 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)
What is the oldest university in the US? John Richards -13.001818427211905 What 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)
What is the oldest university in the US? Osten -13.005992170318603 What 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)
What is the oldest university in the US? Revels -13.025425604775801 What 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)
What is the oldest university in the US? Website Comment -13.03459600559879 What 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)
What is the oldest university in the US? the Optometry Building -13.037588163304582 What 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)
What is the oldest university in the US? Susan Fiske -13.048868362499897 What 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)
What is the oldest university in the US? Wallace Fowlie -13.048868362499897 What 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)
What is the oldest university in the US? Carrol Quigley -13.048868362499897 What 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)
What is the oldest university in the US? Marty Tucker -13.066964786644697 What 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)
What is the oldest university in the US? Edgar Odell Lovett -13.078088039081454 What 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)
What is the oldest university in the US? Eugene Higgens Professor -13.088306182208495 What 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)
What is the oldest university in the US? Kiffin -13.08845881211608 What 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)
What is the oldest university in the US? Richard Andrew Cloward -13.093119366006981 What 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)
What is the oldest university in the US? a central contemporary reality -13.121043099388414 What 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)
What is the oldest university in the US? Old Main Hall -13.148827307568915 What 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)
What is the oldest university in the US? Robert Schoch -13.172591524297307 What 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)
What is the oldest university in the US? Steven Taylor -13.172591524297307 What 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)
What is the oldest university in the US? Jeffrey Scott White -13.182502085217326 What 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)
What is the oldest university in the US? Andrew Abela -13.192992643161258 What 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)
What is the oldest university in the US? a new library building -13.216044508251535 What 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)
What is the oldest university in the US? SIMON -13.217474418618805 What 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)
What is the oldest university in the US? a public plaza -13.217722194870635 What 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)
What is the oldest university in the US? a chief information officer -13.21787750188328 What 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)
What is the oldest university in the US? Dr. -13.218439608112293 What 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)
What is the oldest university in the US? a lecture theatre -13.231994551771745 What 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)
What is the oldest university in the US? Ensor -13.258950064945001 What 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)
What is the oldest university in the US? Laura O'Donnell -13.277268454908794 What 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)
What is the oldest university in the US? Ward Shepard director -13.28057679364646 What 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)
What is the oldest university in the US? Overall experience Selection process Note -13.291201300986053 What 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)
What is the oldest university in the US? a Military Friendly School -13.303881441817936 What 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)
What is the oldest university in the US? David Morrison vice president -13.313370845354493 What 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)
What is the oldest university in the US? new president Excerpt -13.34335481865874 What 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)
What is the oldest university in the US? statistics Prof. Ed Rothman chairman -13.362574464856486 What 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)
What is the oldest university in the US? Michelson -13.382703005246414 What 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)
What is the oldest university in the US? ?Eden Institute ? -13.401711858963244 What 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)
What is the oldest university in the US? David Filo and Jerry Yang -13.41297372214653 What 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)
What is the oldest university in the US? CSIS -13.584201138206046 What 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)
What is the oldest university in the US? Sally Peck -13.616204473899796 What 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)
What is the oldest university in the US? a recital hall -13.686154849398488 What 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)
What is the oldest university in the US? Strauss -13.709837315410722 What 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)
What is the oldest university in the US? Gao Zhan -13.716521090473488 What 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)
What is the oldest university in the US? Dan Goldstein -13.739955787517438 What 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)
What is the oldest university in the US? 1979 -13.773960121684862 What 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)
What is the oldest university in the US? the Shrine -13.86084298782462 What 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)
What is the oldest university in the US? Mumbai -13.893423173484672 What 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)
What is the oldest university in the US? Southeast University -13.918202064589082 What 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)
What is the oldest university in the US? Japan -13.958396891264504 What 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)
What is the oldest university in the US? Rhett -13.960824251785462 What 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)
What is the oldest university in the US? a week -14.002863812098433 What 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)
What is the oldest university in the US? common -14.026930642091688 What 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)
What is the oldest university in the US? the other hand -14.05125049180782 What 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)
What is the oldest university in the US? a chair -14.070478195540423 What 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)
What is the oldest university in the US? the movie -14.113616706592769 What 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)
What is the oldest university in the US? Visva-Bharati -14.115652775096695 What 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)
What is the oldest university in the US? Steve Sumarah -14.126671749426244 What 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)
What is the oldest university in the US? the publisher -14.161363404679523 What 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)
What is the oldest university in the US? the username -14.223510619206404 What 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)
What is the oldest university in the US? a hall -14.226892163023628 What 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)
What is the oldest university in the US? Robert Jahn -14.230300094468845 What 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)
What is the oldest university in the US? a new president -14.285613749415084 What 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)
What is the oldest university in the US? the lab -14.289971531011705 What 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)
What is the oldest university in the US? a new residence hall -14.340591159414743 What 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)
What is the oldest university in the US? the area?s -14.366020319569877 What 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)
What is the oldest university in the US? the field -14.452463280197282 What 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)
What is the oldest university in the US? the changing exhibition -14.504640819025939 What 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)
What is the oldest university in the US? the sole lecture room -14.510075546875608 What 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)
What is the oldest university in the US? the second floor -14.558576874622664 What 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)
What is the oldest university in the US? the best book -14.590343438553244 What 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)
What is the oldest university in the US? the law school -14.648700478857748 What 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)
What is the oldest university in the US? important -14.685117733505589 What 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)
What is the oldest university in the US? the new , state-of-the-art library -14.685603487709376 What 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)
What is the oldest university in the US? a residence hall -14.75326651023827 What 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)
What is the oldest university in the US? the avenue -14.753322219884506 What 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)
What is the oldest university in the US? placenames -14.75818616343497 What 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)
What is the oldest university in the US? the challenge -14.776741829205756 What 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)
What is the oldest university in the US? the atrium -14.797825496878545 What 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)
What is the oldest university in the US? English statesman -14.890538492960703 What 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)
What is the oldest university in the US? government -14.892347983127786 What 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)
What is the oldest university in the US? the library -14.948531334140585 What 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)
What is the oldest university in the US? starts -14.991739857499645 What 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)
What is the oldest university in the US? the Center -15.183108375993974 What 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)
What is the oldest university in the US? the building -15.567746801712154 What 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)
What is the oldest university in the US? school -16.067476368474292 What 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)
What is the oldest university in the US? above -16.540606146463414 What 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)
What is the oldest university in the US? fellowship -17.172976476932188 What 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)
How many sonnets did Shakespeare write? Sonnet V -2.1510606462830006 How 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)
How many sonnets did Shakespeare write? Seven Ages of Man -2.2249957032345105 How 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)
How many sonnets did Shakespeare write? Sonnet 43 -2.300652216691462 How 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)
How many sonnets did Shakespeare write? Sonnet 71 -2.345546172126604 How 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)
How many sonnets did Shakespeare write? Sonnet 116 -2.345546172126604 How 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)
How many sonnets did Shakespeare write? Sonnet 153 -2.345546172126604 How 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)
How many sonnets did Shakespeare write? Romeo and Juliet -3.776011475706631 How 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)
How many sonnets did Shakespeare write? love -4.887778687145947 How 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)
How many sonnets did Shakespeare write? Sonnet 73 -5.161779547628202 How 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)
How many sonnets did Shakespeare write? Romeo -6.0994794019631655 How 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)
How many sonnets did Shakespeare write? Sonnet 127 -6.737245176874088 How 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)
How many sonnets did Shakespeare write? Sonnet 130 -6.7694803718419365 How 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)
How did Eva Peron die? cancer -8.668329329389154 How 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)
How did Eva Peron die? July 26 , 1952 -9.569781272665228 How 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)
How did Eva Peron die? Cancer -10.573733880031279 How 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)
How did Eva Peron die? Argentina -10.823037103055556 How 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)
What was Thailand's original name? Central Plains -4.732550164173659 What 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)
What was Thailand's original name? Street Children in Thailand -4.765749726377235 What 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)
What was Thailand's original name? Ministry of Interior of Thailand -4.816825975921197 What 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)
What was Thailand's original name? Vishay (Thailand) Limited -4.816825975921197 What 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)
What was Thailand's original name? Denmark-Thailand relations -4.816825975921197 What 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)
What was Thailand's original name? Safeskin Latex (Thailand) Limited, Thailand -4.816825975921197 What 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)
What was Thailand's original name? Firearms proliferation in thailand -4.816825975921197 What 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)
What was Thailand's original name? Makok, Lamphun -4.816825975921197 What 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)
What was Thailand's original name? Vantico (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? CEREAL PARTNERS (THAILAND) LIMITED -4.816825975921197 What 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)
What was Thailand's original name? Guidant (Thailand) Ltd (Thailand) -4.816825975921197 What 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)
What was Thailand's original name? Hewitt Associates (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Safeskin Medical & Scientific (Thailand) Ltd Thailand -4.816825975921197 What 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)
What was Thailand's original name? Hussmann (Thailand) Company -4.816825975921197 What 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)
What was Thailand's original name? Transitions Optical (Thailand) Ltd. - Thailand -4.816825975921197 What 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)
What was Thailand's original name? Tyco Healthcare (Thailand) Limited -4.816825975921197 What 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)
What was Thailand's original name? MVCI (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Procter & Gamble Holding (Thailand) -4.816825975921197 What 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)
What was Thailand's original name? Thermadyne (Thailand) Co Ltd -4.816825975921197 What 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)
What was Thailand's original name? Passport's Thailand. -4.816825975921197 What 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)
What was Thailand's original name? Crown Prince of Siam -4.816825975921197 What 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)
What was Thailand's original name? Dantean (Thailand) Company -4.816825975921197 What 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)
What was Thailand's original name? Wilsonart (Thailand) Co Ltd -4.816825975921197 What 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)
What was Thailand's original name? Pakistan-Thailand relations -4.816825975921197 What 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)
What was Thailand's original name? Morgan Stanley (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Nuptiality patterns in Thailand. -4.816825975921197 What 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)
What was Thailand's original name? FEI Systems (Thailand) Company, (Thailand) -4.816825975921197 What 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)
What was Thailand's original name? People's Republic of China?Thailand relations -4.816825975921197 What 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)
What was Thailand's original name? BearingPoint (Thailand) Ltd. (Thailand) -4.816825975921197 What 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)
What was Thailand's original name? Wella Trading (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Assumption University, Thailand, main campus -4.816825975921197 What 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)
What was Thailand's original name? Reader's Digest (Thailand) Limited -4.816825975921197 What 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)
What was Thailand's original name? Tellabs (Thailand) Co Ltd -4.816825975921197 What 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)
What was Thailand's original name? Thai?lande vue du ciel. -4.816825975921197 What 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)
What was Thailand's original name? Survivor (Television program) -4.816825975921197 What 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)
What was Thailand's original name? Fintube (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? China ? Thailand relations -4.816825975921197 What 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)
What was Thailand's original name? Richardson Electronics (Thailand) Limited -4.816825975921197 What 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)
What was Thailand's original name? Lionbridge (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Huntsman (Thailand) Limited -4.816825975921197 What 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)
What was Thailand's original name? Safeskin Corporation (Thailand) Limited, Thailand -4.816825975921197 What 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)
What was Thailand's original name? Kimberly Clark Manufacturing (Thailand) Ltd Thailand -4.816825975921197 What 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)
What was Thailand's original name? Gillette (Thailand) -4.816825975921197 What 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)
What was Thailand's original name? PPG Coatings (Thailand) Co., Ltd. - Thailand -4.816825975921197 What 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)
What was Thailand's original name? Diebold (Thailand) Company -4.816825975921197 What 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)
What was Thailand's original name? Dentsply (Thailand) Ltd. (Thailand) -4.816825975921197 What 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)
What was Thailand's original name? Denmark ? Thailand relations -4.816825975921197 What 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)
What was Thailand's original name? Mengrai, Phaya Mengrai -4.816825975921197 What 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)
What was Thailand's original name? People's Republic of China ? Thailand relations -4.816825975921197 What 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)
What was Thailand's original name? Kellogg (Thailand) - Thailand -4.816825975921197 What 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)
What was Thailand's original name? Renaissance Holdings (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Afternoons in Thailand -4.816825975921197 What 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)
What was Thailand's original name? KLA-Tencor (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Ryder Thailand VI LLC -4.816825975921197 What 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)
What was Thailand's original name? Kimball Electronics (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Ryder Thailand V, LLC -4.816825975921197 What 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)
What was Thailand's original name? Makok, Pa Sang -4.816825975921197 What 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)
What was Thailand's original name? Mettler-Toledo (Thailand) Ltd -4.816825975921197 What 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)
What was Thailand's original name? Lear Seating (Thailand) Corp. Ltd. (Thailand) -4.816825975921197 What 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)
How big is a keg? 232.986 -11.989723417906681 How 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)
How big is a keg? 139.813 -12.10884190050304 How 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)
How big is a keg? 15.5 -12.393550930107365 How 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)
How big is a keg? 7pm We?ll -12.440158579990406 How 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)
How big is a keg? 6pm -12.457842518821517 How 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)
How big is a keg? big -12.467310011706875 How 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)
How big is a keg? Mi6 -12.553836804743261 How 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)
How big is a keg? a 6 pack -12.573672413029428 How 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)
How big is a keg? 987602 -12.599903556832846 How 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)
How big is a keg? 07 Kegging -12.610172739713274 How 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)
How big is a keg? Thrasher Skate Rock, Volume 3: Wild Riders of Boards -12.65800519438218 How 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)
How big is a keg? LepreCon32 -12.700048134030125 How 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)
How big is a keg? a match -12.998845066975303 How 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)
How big is a keg? 182.0 -13.033669890208527 How 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)
How big is a keg? 74.0 -13.093645629697601 How 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)
How big is a keg? Horatio Sanz -13.094395515279158 How 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)
How big is a keg? 1068.6288 -13.117207527354024 How 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)
How big is a keg? Them Boners Be Poppin' -13.190152636880383 How 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)
How big is a keg? A firkin -13.24904817258497 How 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)
How big is a keg? A kegerator -13.295151661543915 How 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)
How big is a keg? Tap A Keg -13.36883036077492 How 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)
How big is a keg? a cask -13.374773177927253 How 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)
How big is a keg? one end -13.411159831019098 How 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)
How big is a keg? Keg Kept a Flowin' -13.4283896020731 How 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)
How big is a keg? Bend -13.428787063847807 How 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)
How big is a keg? employees -13.441250435098125 How 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)
How big is a keg? We?ll -13.449680117319852 How 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)
How big is a keg? DC Brau -13.468819703609963 How 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)
How big is a keg? The Keg Kept a Flowin' -13.476036995111642 How 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)
How big is a keg? a fan -13.505712282086812 How 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)
How big is a keg? Twelve artists -13.512602184206903 How 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)
How big is a keg? Face Plant -13.515021225779542 How 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)
How big is a keg? a referee shirt -13.520559967221361 How 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)
How big is a keg? The Pub -13.53316754403031 How 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)
How big is a keg? Tales From The Backside -13.547508084669458 How 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)
How big is a keg? Building A Better Boy (KegZ Grimey ReMix) -13.547508084669458 How 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)
How big is a keg? A Keg of Beer and an Accordion -13.547508084669458 How 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)
How big is a keg? Oskar Blues -13.548655743578388 How 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)
How big is a keg? AleSmith -13.555802681209201 How 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)
How big is a keg? Boneless Ones -13.574996965268618 How 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)
How big is a keg? Re-Building A Better Boy -13.574996965268618 How 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)
How big is a keg? The Boneless Ones -13.574996965268618 How 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)
How big is a keg? Machine Boy -13.598558862925039 How 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)
How big is a keg? Calamity Drenching -13.598558862925039 How 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)
How big is a keg? Amy and Jared -13.604235008302924 How 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)
How big is a keg? PM Re -13.604494213946474 How 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)
How big is a keg? An unused gift -13.614029755562383 How 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)
How big is a keg? McCarthy Trenching -13.618979174227272 How 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)
How big is a keg? 5549 -13.6263551295423 How 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)
How big is a keg? There?s -13.64169508524044 How 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)
How big is a keg? Cambridge Brewing Co. -13.641988462454407 How 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)
How big is a keg? Live Oak -13.669040611760948 How 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)
How big is a keg? The Niger Delta -13.673327607201855 How 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)
How big is a keg? board -13.693289972351726 How 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)
How big is a keg? LAKS -13.698283752742752 How 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)
How big is a keg? much beer -13.709727718080407 How 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)
How big is a keg? New Belgium Brewing -13.76970518977646 How 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)
How big is a keg? Firestone Walker -13.76970518977646 How 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)
How big is a keg? Crow Peak Brewery -13.793737595515534 How 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)
How big is a keg? Al Oliver?s house -13.83306969066757 How 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)
How big is a keg? A second boy -13.851871010997085 How 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)
How big is a keg? Africa ?s giant -13.856942987008651 How 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)
How big is a keg? Biker Bob -13.862420757667707 How 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)
How big is a keg? The Steeler?s super bowl run -13.875019177632765 How 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)
How big is a keg? the cooler -13.893077323330832 How 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)
How big is a keg? How many beers -13.969033854710613 How 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)
How big is a keg? How much beer -13.969033854710613 How 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)
How big is a keg? vegetables , fish or fruits -14.102023202232822 How 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)
How big is a keg? the press -14.125865075539904 How 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)
How big is a keg? Cloverleaf -14.227366477201912 How 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)
How big is a keg? Ommegang -14.296969888909322 How 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)
How big is a keg? Alcoholiday -14.34867554180189 How 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)
How big is a keg? Gossip -14.35645937823545 How 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)
How big is a keg? the drum -14.375663090174111 How 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)
How big is a keg? Donthen -14.400669225313228 How 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)
How big is a keg? Okubena -14.405909880997141 How 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)
How big is a keg? Anson -14.590523568638622 How 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)
How big is a keg? How many cases -14.613659709072559 How 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)
How big is a keg? the basement -14.614624423351655 How 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)
How big is a keg? the middle -14.635025542215606 How 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)
How big is a keg? Queen Selyse's uncle -14.667931114987626 How 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)
How big is a keg? the state -14.687829201493003 How 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)
How big is a keg? the boat -14.735575899579757 How 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)
How big is a keg? SHIFTY -14.74496088676018 How 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)
How big is a keg? the team -14.755912450316453 How 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)
How big is a keg? Cathy Jordan -14.777447745650097 How 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)
How big is a keg? KEGSET.RTM. -14.789854842195323 How 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)
How big is a keg? object of the invention -14.804936626249257 How 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)
How big is a keg? the business -14.817806288927638 How 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)
How big is a keg? Flashpoint Germany -14.82234170108524 How 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)
How big is a keg? Picture shown -14.82234170108524 How 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)
How big is a keg? KeyKeg -14.8498305816844 How 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)
How big is a keg? Marc Levin's Slam -14.8498305816844 How 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)
How big is a keg? Queen Selyse s uncle -14.8498305816844 How 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)
How big is a keg? The Last King of Scotland -14.866786607597366 How 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)
How big is a keg? the statue -14.918867505615747 How 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)
How big is a keg? the country -14.95370960835086 How 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)
How big is a keg? a room -15.172846382495841 How 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)
How big is a keg? sixtel -15.222899958363076 How 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)
How big is a keg? Guinness -15.262912194667573 How 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)
How big is a keg? a good time -15.347175768161634 How 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)
How big is a keg? a UF student -15.368967913655034 How 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)
How big is a keg? The report -15.371545550424477 How 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)
How big is a keg? The prize -15.371545550424477 How 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)
How big is a keg? front -15.387791288027069 How 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)
How big is a keg? The reward -15.39194666928843 How 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)
How big is a keg? the far -15.403193040691336 How 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)
How big is a keg? Beer -15.434373339853341 How 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)
How big is a keg? the nimbly engineered sound system -15.517089845021943 How 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)
How big is a keg? the lighted fire crackers -15.540631438601668 How 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)
How big is a keg? the beer -15.550433702087302 How 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)
How big is a keg? ActiveGS -15.55294562481365 How 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)
How big is a keg? Thorekssson -15.623509158217672 How 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)
How big is a keg? The worker -15.63426207262232 How 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)
How big is a keg? The beer -15.64365529782428 How 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)
How big is a keg? Slocum -15.650998038816832 How 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)
How big is a keg? Mam -15.652433337830521 How 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)
How big is a keg? such a title -15.686911944464628 How 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)
How big is a keg? the Daily Pint -15.712849205758024 How 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)
How big is a keg? Brouwer?s -15.740715688118977 How 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)
How big is a keg? bathtub -15.751165500416663 How 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)
How big is a keg? Katalyst Kombucha?s accounts -15.759654906036689 How 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)
How big is a keg? the first time draft beer -15.773568840791567 How 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)
How big is a keg? the delivery guy -15.776776931772593 How 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)
How big is a keg? The Raleigh Times -15.778223083971191 How 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)
How big is a keg? Tadcaster -15.780637405912485 How 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)
How big is a keg? minds and bodies -15.785380999061026 How 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)
How big is a keg? McCabe pub -15.786265185462122 How 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)
How big is a keg? Clark Williams -15.803949124293233 How 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)
How big is a keg? The individual batches -15.808875099246753 How 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)
How big is a keg? Love Stout -15.825413638823182 How 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)
How big is a keg? Beinen? -15.842789284837178 How 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)
How big is a keg? The barrel -15.862479452082123 How 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)
How big is a keg? quarters others -15.863265004094321 How 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)
How big is a keg? the punch bowl -15.868105226635578 How 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)
How big is a keg? Special arrangements -15.884391390489705 How 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)
How big is a keg? Blueberry Wheat -15.88769972922737 How 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)
How big is a keg? Ta Henket -15.990415574181966 How 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)
How big is a keg? cross country -15.999048919021387 How 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)
How big is a keg? Wine -16.001517903710106 How 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)
How big is a keg? Col . Eiland -16.007215326611984 How 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)
How big is a keg? beer and wine and beer -16.008834794544153 How 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)
How big is a keg? similar tastes -16.027109062274484 How 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)
How big is a keg? the brewery employee -16.02761353261474 How 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)
How big is a keg? Sierra Nevada Brewing -16.057629570473765 How 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)
How big is a keg? July 14 , 2010 Wet Area Scales -16.060387617917073 How 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)
How big is a keg? bottling -16.065921042858733 How 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)
How big is a keg? Shasta Brewing Company -16.067276224293717 How 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)
How big is a keg? ?Steinen mit Beinen? -16.074985878341426 How 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)
How big is a keg? ATLANTA ? Workers -16.079799062139912 How 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)
How big is a keg? Wachusett Ales -16.105440836687777 How 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)
How big is a keg? the black ditch -16.16914976949777 How 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)
How big is a keg? smoke powder -16.195703609443306 How 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)
How big is a keg? Special restrictions -16.200049993757894 How 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)
How big is a keg? the original recipe -16.23723301832122 How 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)
How big is a keg? No average analysis -16.238804996109177 How 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)
How big is a keg? draft -16.256907729801163 How 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)
How big is a keg? the vast majority -16.26906409767676 How 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)
How big is a keg? only about 12 percent of the nation 's beer -16.564193236635596 How 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)
How big is a keg? Fernando -16.60833536513977 How 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)
How big is a keg? the list -16.719132115290066 How 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)
How big is a keg? Mestan -16.80759790239153 How 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)
How big is a keg? the profession -17.014544071943853 How 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)
How big is a keg? the primary -17.07103343439795 How 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)
How big is a keg? the employee -17.07267664352576 How 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)
How big is a keg? the camp -17.1425282651514 How 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)
How big is a keg? the line-up -17.517809838950225 How 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)
How big is a keg? The basement -17.686482892714995 How 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)
How big is a keg? the beers -17.891588659807372 How 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)
How big is a keg? The bar -17.923447904941987 How 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)
How big is a keg? The wine -17.938494218439253 How 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)
How big is a keg? The entrance -17.94466864207978 How 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)
How big is a keg? The college campus -17.944748196778775 How 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)
How big is a keg? The finished beer -17.949104613359296 How 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)
How big is a keg? The same -17.953446096070373 How 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)
How big is a keg? The mines -17.954082153504718 How 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)
How big is a keg? The ships deck -17.98365287274768 How 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)
How tall is the tallest pyramid? 138 feet -9.250768106541834 How 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)
How tall is the tallest pyramid? 138-feet high -9.420381943632439 How 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)
How tall is the tallest pyramid? Coba -10.3380505483472 How 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)
How tall is the tallest pyramid? Nohoch Mul -10.486381008010964 How 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)
How tall is the tallest pyramid? a magnificent Mayan treasure -10.489679526353271 How 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)
How tall is the tallest pyramid? Temple V -10.539325628964997 How 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)
How tall is the tallest pyramid? The Nohoch Mul Pyramid -10.549414215351245 How 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)
How tall is the tallest pyramid? 101.1 -10.567205772960673 How 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)
How tall is the tallest pyramid? 104.0 -10.567205772960673 How 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)
How tall is the tallest pyramid? 62.0 -10.594694653559833 How 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)
How tall is the tallest pyramid? 146.6 -10.618256551216255 How 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)
How tall is the tallest pyramid? the winner -11.028209044240166 How 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)
How tall is the tallest pyramid? the structures -11.55310685732822 How 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)
How tall is the tallest pyramid? Ek? Balam -12.113301952889103 How 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)
How tall is the tallest pyramid? the sun -12.321224703279844 How 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)
How tall is the tallest pyramid? memorial -12.653665770333095 How 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)
How tall is the tallest pyramid? hotel -12.770741422367953 How 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)
Where is Santa Lucia? Italy 0.2648519289182305 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Italy) -> Italy (4185ms)
Where is Santa Lucia? California 0.1895511470112372 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Preserve, is located in, California) -> California (4185ms)
Where is Santa Lucia? Scandinavia 0.16228498883365405 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Scandinavia) -> Scandinavia (4185ms)
Where is Santa Lucia? Sweden 0.14813784830922394 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Sweden) -> Sweden (4185ms)
Where is Santa Lucia? Minori -0.07809768535110839 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (map Hotel Santa Lucia, is located in, Minori) -> Minori (4185ms)
Where is Santa Lucia? Naples -0.08611998379052832 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Grand Hotel Santa Lucia, is located in, Naples) -> Naples (4546ms)
Where is Santa Lucia? Venice -0.17469884004637026 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, was the main train station in, Venice) -> Venice (4546ms)
Where is Santa Lucia? Monterey County -0.5199143707682016 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Highlands, is in, Monterey County) -> Monterey County (4546ms)
Where is Santa Lucia? Cuenca -0.6452671247289108 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia hotel, is a gem in, Cuenca) -> Cuenca (4547ms)
Where is Santa Lucia? Costa Rica -0.8435321034603352 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (SANTA LUCIA ApartHotel, is a modern lodging way in, Costa Rica) -> Costa Rica (4565ms)
Where is Santa Lucia? Tesistan Jalisco -1.0508411413498373 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Distillery, is located in, Tesistan Jalisco) -> Tesistan Jalisco (4565ms)
Where is Santa Lucia? need -1.3640455621035097 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is in, need) -> need (4565ms)
Where is Santa Lucia? Authorities Concept Scheme -1.4715315599046548 Where 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)
Where is Santa Lucia? Geographic Names Concept Scheme -1.5040184187945707 Where 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)
Where is Santa Lucia? camera trapping -1.5052394139426175 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, was to assist in, camera trapping) -> camera trapping (4565ms)
Where is Santa Lucia? First Italian War of Independence -1.5550691970501527 Where 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)
Where is Santa Lucia? Sweden as well as -1.668816006237282 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is observed in, Sweden as well as) -> Sweden as well as (4596ms)
Where is Santa Lucia? a lot -1.743024044443448 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Day, is celebrated in, a lot) -> a lot (4597ms)
Where is Santa Lucia? poor shape -1.7901451964221164 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Cerro Santa Lucia, had been in very, poor shape) -> poor shape (4596ms)
Where is Santa Lucia? southern Sonora State -1.805474385789982 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is located in, southern Sonora State) -> southern Sonora State (4597ms)
Where is Santa Lucia? a quiet residential area -1.841393624643198 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is situated in, a quiet residential area) -> a quiet residential area (4610ms)
Where is Santa Lucia? the Cannaregio district -1.8578011252802096 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia Railway Station, is in, the Cannaregio district) -> the Cannaregio district (4610ms)
Where is Santa Lucia? DOWNTOWN ZACATECAS -1.8824939933796523 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (THE CASA SANTA LUCIA HOTEL, IS LOCATED IN, DOWNTOWN ZACATECAS) -> DOWNTOWN ZACATECAS (4630ms)
Where is Santa Lucia? a very strategic position -1.898311896281068 Where 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)
Where is Santa Lucia? Norway and Sweden -1.925755085929078 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia holiday, is celebrated in, Norway and Sweden) -> Norway and Sweden (4630ms)
Where is Santa Lucia? San Gimignano -2.2776079465811936 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Molino Santa Lucia, located in, San Gimignano) -> San Gimignano (4630ms)
Where is Santa Lucia? the Amalfitan Coast -2.4526085759252556 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Hotel, is in, the Amalfitan Coast) -> the Amalfitan Coast (4645ms)
Where is Santa Lucia? front -2.4709406655442026 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Church, is located right in, front) -> front (4645ms)
Where is Santa Lucia? layers -2.574391792029876 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia mountain range, were rich in, layers) -> layers (4645ms)
Where is Santa Lucia? September -2.888175900921572 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, now takes place in, September) -> September (4661ms)
Where is Santa Lucia? the historical district -3.381683077200326 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Plaza Santa Lucia, is in, the historical district) -> the historical district (4662ms)
Where is Santa Lucia? the historic center -3.473798679060554 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Venice Santa Lucia station, is in, the historic center) -> the historic center (4679ms)
Where is Santa Lucia? the heart -3.4821837820403703 Where 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)
Where is Santa Lucia? the historic centre -3.5186691404187727 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is located in, the historic centre) -> the historic centre (4679ms)
Where is Santa Lucia? the centre -3.5408386847872126 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Hotel, is located in, the centre) -> the centre (4679ms)
Where is Santa Lucia? the city center -3.664785418705277 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Hill, is located in, the city center) -> the city center (4696ms)
Where is Santa Lucia? a thick blanket -3.764243775575193 Where 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)
Where is Santa Lucia? several acres -3.821542446867551 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, stands in, several acres) -> several acres (4714ms)
Where is Santa Lucia? St . Vincent -4.011625197059667 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, succeeded in capturing, St . Vincent) -> St . Vincent (4715ms)
Where is Santa Lucia? a 7000 sm garden area -4.330790930557962 Where 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)
Where is Santa Lucia? 1937 -4.692762438814378 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia mountain range, was set aside in, 1937) -> 1937 (4733ms)
Where is Santa Lucia? 1875 -4.820583334179895 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Cerro Santa Lucia, was established in, 1875) -> 1875 (4734ms)
Where is Santa Lucia? 1991 -4.845901334956954 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia Highlands, was approved in, 1991) -> 1991 (4755ms)
Where is Santa Lucia? 35 minutes -5.216830530971006 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia station, arrive in, 35 minutes) -> 35 minutes (4755ms)
Where is Santa Lucia? the lodge -5.508668490936813 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, would sit in, the lodge) -> the lodge (5645ms)
Where is Santa Lucia? the city -5.736642628878226 Where 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)
Where is Santa Lucia? Santa Lucia -7.226960565964921 Where 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)
Where is Santa Lucia? Kingdom of Lombardy?Venetia -7.847483508218462 Where 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)
Where is Santa Lucia? Arizona -8.863262910073706 Where 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)
Where is Santa Lucia? Germany -8.863262910073706 Where 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)
Where is Santa Lucia? Calabria -8.939839077457078 Where 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)
Where is Santa Lucia? Veneto -8.939839077457078 Where 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)
Where is Santa Lucia? Lazio -8.939839077457078 Where 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)
Where is Santa Lucia? Sicily -8.999398318755258 Where 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)
Where is Santa Lucia? Campania -8.999398318755258 Where 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)
Where is Santa Lucia? Abruzzo -9.047045711793801 Where 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)
Where is Santa Lucia? London -9.118516801351616 Where 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)
Where is Santa Lucia? Geology -9.146005681950776 Where 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)
Where is Santa Lucia? Stanford -9.146005681950776 Where 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)
Where is Santa Lucia? Corsica -9.47587224914069 Where 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)
Where is Santa Lucia? Lucia Vineyards -9.66977546607252 Where 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)
Where is Santa Lucia? Mario Zanin -9.66977546607252 Where 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)
Where is Santa Lucia? Siduri Wines -9.66977546607252 Where 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)
Where is Santa Lucia? Rosanna Munerotto -9.66977546607252 Where 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)
Where is Santa Lucia? Tudor Wines -9.66977546607252 Where 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)
Where is Santa Lucia? Mendelson Vineyards -9.69726434667168 Where 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)
Where is Santa Lucia? Lucienne Vineyards -9.720826244328101 Where 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)
Where is Santa Lucia? Pelerin Wines -9.720826244328101 Where 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)
Where is Santa Lucia? Paraiso Vineyards -9.720826244328101 Where 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)
Where is Santa Lucia? Cubans -9.732391224394737 Where 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)
Where is Santa Lucia? Pessagno Winery -9.741246555630335 Where 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)
Where is Santa Lucia? Tantara Winery -9.741246555630335 Where 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)
Where is Santa Lucia? Morgan Winery -9.741246555630335 Where 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)
Where is Santa Lucia? Testarossa Vineyards -9.741246555630335 Where 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)
Where is Santa Lucia? United Kingdom -9.8014327363106 Where 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)
Where is Santa Lucia? Betania -9.893772024704075 Where 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)
Where is Santa Lucia? Ilocos Sur -10.004414050094802 Where 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)
Where is Santa Lucia? Pima County -10.004414050094802 Where 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)
Where is Santa Lucia? Battle of Santa Lucia -10.004414050094802 Where 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)
Where is Santa Lucia? Province of Belluno -10.111620684431525 Where 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)
Where is Santa Lucia? Province of Catanzaro -10.111620684431525 Where 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)
Where is Santa Lucia? Province of Frosinone -10.111620684431525 Where 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)
Where is Santa Lucia? Siracusa -10.12296539130873 Where 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)
Where is Santa Lucia? Province of Messina -10.150604915099423 Where 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)
Where is Santa Lucia? Province of Avellino -10.150604915099423 Where 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)
Where is Santa Lucia? Province of Treviso -10.150604915099423 Where 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)
Where is Santa Lucia? Hotel -10.175133021400967 Where 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)
Where is Santa Lucia? United States of America -10.179479130254217 Where 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)
Where is Santa Lucia? Province of L'Aquila -10.18309177398934 Where 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)
Where is Santa Lucia? Roar Wines -10.18309177398934 Where 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)
Where is Santa Lucia? San Antonio -10.19078149077559 Where 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)
Where is Santa Lucia? Central European Time -10.2105806545885 Where 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)
Where is Santa Lucia? Romeo Callejo, Sr. -10.2105806545885 Where 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)
Where is Santa Lucia? Catania -10.229953316101085 Where 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)
Where is Santa Lucia? Geology, Stratigraphic -10.23414255224492 Where 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)
Where is Santa Lucia? La Rochelle Winery -10.23414255224492 Where 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)
Where is Santa Lucia? A.P.VIN Wines -10.23414255224492 Where 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)
Where is Santa Lucia? West Germany -10.250976232743657 Where 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)
Where is Santa Lucia? Mayro-Murdick Wines -10.254562863547154 Where 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)
Where is Santa Lucia? Sonnet Wine Cellars -10.254562863547154 Where 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)
Where is Santa Lucia? Hayman & Hill -10.254562863547154 Where 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)
Where is Santa Lucia? Silver Mountain Vineyards -10.272430635936608 Where 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)
Where is Santa Lucia? Patz & Hall -10.272430635936608 Where 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)
Where is Santa Lucia? Miner Family Vineyards -10.272430635936608 Where 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)
Where is Santa Lucia? Rhys Vineyards -10.272430635936608 Where 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)
Where is Santa Lucia? Huntington Wine Cellars -10.272430635936608 Where 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)
Where is Santa Lucia? Manzoni Estate Vineyard -10.272430635936608 Where 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)
Where is Santa Lucia? San Antonio Winery -10.288196317456714 Where 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)
Where is Santa Lucia? Peter Michael Winery -10.314749044227419 Where 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)
Where is Santa Lucia? Calabrians -10.47921360079574 Where 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)
Where is Santa Lucia? Highlights -10.526381962399661 Where 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)
Where is Santa Lucia? Haute-Corse -10.540447221778413 Where 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)
Where is Santa Lucia? Saint Lucy -10.620936530312589 Where 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)
Where is Santa Lucia? December -10.631292869445167 Where 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)
Where is Santa Lucia? Tomorrow -10.664773600066718 Where 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)
Where is Santa Lucia? Galbani -10.81414092660855 Where 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)
Where is Santa Lucia? Answers -10.845972058666387 Where 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)
Where is Santa Lucia? Syracusa -10.926369454382524 Where 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)
Where is Santa Lucia? Cannaregio -10.971756582866375 Where 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)
Where is Santa Lucia? mozzarella cheese -11.00697788182965 Where 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)
Where is Santa Lucia? Brad -11.059545037177747 Where 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)
Where is Santa Lucia? Trains -11.094714038138 Where 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)
Where is Santa Lucia? Sardinia -11.097531195939721 Where 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)
Where is Santa Lucia? Paso Robles -11.177367388115146 Where 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)
Where is Santa Lucia? a Monterey County example -11.193158845620124 Where 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)
Where is Santa Lucia? Big Sur -11.216470674180472 Where 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)
Where is Santa Lucia? mountain range -11.2475974565782 Where 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)
Where is Santa Lucia? scuba diving -11.305735106740988 Where 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)
Where is Santa Lucia? Candon City -11.361939914546845 Where 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)
Where is Santa Lucia? Largo Febo -11.373633053262113 Where 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)
Where is Santa Lucia? Will -11.406965351364157 Where 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)
Where is Santa Lucia? enemy territory -11.412413531242153 Where 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)
Where is Santa Lucia? Mountain -11.4192458283172 Where 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)
Where is Santa Lucia? ping pong -11.42232402367561 Where 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)
Where is Santa Lucia? military conflict -11.462010725251645 Where 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)
Where is Santa Lucia? Christmas Day -11.510709930214446 Where 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)
Where is Santa Lucia? Christmas Market -11.516905392074008 Where 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)
Where is Santa Lucia? twinkle lights -11.51744329872838 Where 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)
Where is Santa Lucia? a young woman -11.560652893990733 Where 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)
Where is Santa Lucia? St Lucia Day -11.575498136226429 Where 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)
Where is Santa Lucia? nice firm white sand -11.644011247131866 Where 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)
Where is Santa Lucia? One option -11.651477042835936 Where 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)
Where is Santa Lucia? Hotel Principe -11.688946924256474 Where 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)
Where is Santa Lucia? Cape Vidal -11.722148335437716 Where 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)
Where is Santa Lucia? rent -11.785256272789622 Where 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)
Where is Santa Lucia? Venice train station -11.794717084393906 Where 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)
Where is Santa Lucia? palazzo murat -11.796341468023623 Where 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)
Where is Santa Lucia? off -11.808739061243951 Where 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)
Where is Santa Lucia? long time -11.813468904119384 Where 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)
Where is Santa Lucia? a Boutique hotel -11.84448041790338 Where 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)
Where is Santa Lucia? an italian saint -11.846248790705573 Where 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)
Where is Santa Lucia? a certified organic farm -11.846884767188437 Where 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)
Where is Santa Lucia? eyes -11.874311996130338 Where 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)
Where is Santa Lucia? the Royal palace -11.882248073119092 Where 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)
Where is Santa Lucia? beach -11.904368507437137 Where 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)
Where is Santa Lucia? bank -11.904368507437137 Where 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)
Where is Santa Lucia? island -11.904368507437137 Where 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)
Where is Santa Lucia? song -11.904368507437137 Where 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)
Where is Santa Lucia? harvest time -11.923809985427443 Where 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)
Where is Santa Lucia? Executive Chef Mattos -11.93894110057265 Where 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)
Where is Santa Lucia? De La Salle -11.950331461148032 Where 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)
Where is Santa Lucia? an atmosphere -11.95917791579196 Where 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)
Where is Santa Lucia? the East coast -11.96701048242974 Where 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)
Where is Santa Lucia? beautiful beaches -11.990020739920716 Where 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)
Where is Santa Lucia? the Italians -11.990810437753375 Where 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)
Where is Santa Lucia? enormous potential -12.002956010378304 Where 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)
Where is Santa Lucia? hotels and resorts -12.014683786796752 Where 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)
Where is Santa Lucia? Further drilling -12.017470387969208 Where 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)
Where is Santa Lucia? a beloved local saint -12.021632167033436 Where 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)
Where is Santa Lucia? a rig -12.027062554518988 Where 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)
Where is Santa Lucia? romance -12.873655562278444 Where 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)
Where is Santa Lucia? 100 metres -13.108762851385048 Where 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)
What hockey team did Wayne Gretzky play for? Edmonton Oilers -3.577837195458171 What 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)
How many crew members were aboard? the California Zephyr -13.1455388743187 How 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)
How many crew members were aboard? a few equipment cases -15.936315306847751 How 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)
How many crew members were aboard? scientist -16.35300846364582 How 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)
How many crew members were aboard? Dad -16.82636841099995 How 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)
How many crew members were aboard? president -17.159023937221146 How 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)
How many crew members were aboard? Artist -17.285021380710905 How 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)
How many crew members were aboard? Smith -18.027375626591915 How 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)
How many crew members were aboard? Dr. Mitchell -18.88593498323065 How 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)
How many crew members were aboard? Dr Mitchell -18.923921870461474 How 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)
How many seats are in the Lebanese Parliament? Lebanon -2.9602109433011012 How 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)
How many seats are in the Lebanese Parliament? review -10.439178077514304 How 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)
How many seats are in the Lebanese Parliament? changes -10.605718582781062 How 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)
How many seats are in the Lebanese Parliament? a different nature -10.704324600754992 How 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)
How many seats are in the Lebanese Parliament? Farid al-Khazen -10.728681362932255 How 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)
How many seats are in the Lebanese Parliament? Mr. Frem -10.737523332347811 How 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)
How many seats are in the Lebanese Parliament? a government -10.882680820027748 How 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)
How many seats are in the Lebanese Parliament? Hezbollah -10.899867610565567 How 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)
How many seats are in the Lebanese Parliament? deputy prime minister -10.959228734141092 How 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)
How many seats are in the Lebanese Parliament? lawmakers -11.482413820473413 How 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)
How many seats are in the Lebanese Parliament? Mohammed Raad -11.563196525839476 How 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)
How many seats are in the Lebanese Parliament? Ali Ahmad Bazzi -11.576999059831433 How 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)
How many seats are in the Lebanese Parliament? Ali el Mekdad -11.625633292654015 How 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)
How many seats are in the Lebanese Parliament? Saadeddine Rafik Hariri -11.667883015497367 How 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)
How many seats are in the Lebanese Parliament? Khalil El-Hibri -11.667883015497367 How 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)
How many seats are in the Lebanese Parliament? Ali Bazzi -11.671936348328042 How 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)
How many seats are in the Lebanese Parliament? Misbah al-Ahdab -11.671936348328042 How 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)
How many seats are in the Lebanese Parliament? Ali Fayyad -11.712776970932508 How 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)
How many seats are in the Lebanese Parliament? Ali Haj Hassan -11.748512515711415 How 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)
How many seats are in the Lebanese Parliament? JUSTICIABeirutConsult -11.748512515711415 How 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)
How many seats are in the Lebanese Parliament? Mr. Moukheiber -11.748512515711415 How 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)
How many seats are in the Lebanese Parliament? Wakim Al-Bitar -11.780043878751629 How 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)
How many seats are in the Lebanese Parliament? Israelis stealing gas Ali Bazzi -11.780043878751629 How 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)
How many seats are in the Lebanese Parliament? Mounir Abou Fadel -11.790473137358921 How 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)
How many seats are in the Lebanese Parliament? Hezbollah MP -11.808071757009595 How 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)
How many seats are in the Lebanese Parliament? Nayla Moawad -11.853332348421885 How 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)
How many seats are in the Lebanese Parliament? Bahia Hariri -11.87959362886049 How 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)
How many seats are in the Lebanese Parliament? Habid Sadek -11.87959362886049 How 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)
How many seats are in the Lebanese Parliament? Nadim Gemayel -11.920365997416797 How 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)
How many seats are in the Lebanese Parliament? Michel Pharaon -11.96525995285194 How 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)
How many seats are in the Lebanese Parliament? Fares -11.983091809021783 How 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)
How many seats are in the Lebanese Parliament? Jawad Boulos -12.006100575456404 How 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)
How many seats are in the Lebanese Parliament? Walid Jumblatt -12.006100575456404 How 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)
How many seats are in the Lebanese Parliament? Hizbullah -12.116350109950204 How 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)
How many seats are in the Lebanese Parliament? Zahra -12.231931119634964 How 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)
How many seats are in the Lebanese Parliament? the Hezbollah -12.299262711000797 How 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)
How many seats are in the Lebanese Parliament? effect -12.470344552277954 How 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)
How many seats are in the Lebanese Parliament? 2000 Hezbollah -12.4808717018456 How 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)
How many seats are in the Lebanese Parliament? no -12.603501721466987 How 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)
How many seats are in the Lebanese Parliament? Syria -12.613865720128599 How 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)
How many seats are in the Lebanese Parliament? the phone -12.675197543267174 How 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)
How many seats are in the Lebanese Parliament? a step -12.76254210400219 How 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)
How many seats are in the Lebanese Parliament? the spokesman -12.781736341802077 How 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)
How many seats are in the Lebanese Parliament? the first time -12.863916616092485 How 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)
How many seats are in the Lebanese Parliament? only 19 women -12.95032677639978 How 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)
How many seats are in the Lebanese Parliament? Syria 's bidding -13.597114576471423 How 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)
How many seats are in the Lebanese Parliament? a group -13.891284702991392 How 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)
How many seats are in the Lebanese Parliament? the Constitution -14.032652073982039 How 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)
How many seats are in the Lebanese Parliament? Lahoud -14.856442441356645 How 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)
How many seats are in the Lebanese Parliament? the constitution -15.868064966437311 How 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)
What is his primary career? an actor -9.980221217810103 What 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)
What is his primary career? Birding -9.99382554131585 What 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)
What is his primary career? World War II -10.059188551257957 What 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)
What is his primary career? sports journalist -10.392062491526001 What 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)
What is his primary career? Science -10.46943082978286 What 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)
What is his primary career? a real estate broker -10.501268516526784 What 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)
What is his primary career? HP -10.518404871719929 What 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)
What is his primary career? Transportation -10.588871756661591 What 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)
What is his primary career? religious leadership and teaching -10.592440610807605 What 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)
What is his primary career? a Software Development Engineer -10.606488068516944 What 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)
What is his primary career? martial arts -10.641188533215406 What 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)
What is his primary career? a vet -10.745073174432077 What 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)
What is his primary career? Engineering -10.9441700138942 What 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)
What is his primary career? here Elizabeth Juge -10.958867234372546 What 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)
What is his primary career? a conductor and arranger -10.988238341897649 What 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)
What is his primary career? first year students -11.062466891391995 What 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)
What is his primary career? an antiquarian and art dealer -11.069092557534045 What 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)
What is his primary career? an ultrasound tech -11.190389209532029 What 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)
What is his primary career? older workers -11.191791554465992 What 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)
What is his primary career? 1917-1991 -11.318550319998653 What 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)
What is his primary career? several people -11.320457188236468 What 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)
What is his primary career? an essential part -11.332162929174189 What 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)
What is his primary career? Networking -11.459513182718672 What 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)
What is his primary career? a theater writer -11.550126858660423 What 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)
What is his primary career? Education -11.65206973777146 What 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)
What is his primary career? Workers -11.779678486372884 What 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)
What is his primary career? stormwater -12.145638250824447 What 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)
What is his primary career? the broadcast world -12.270724254992137 What 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)
What is his primary career? adolescents -12.44377705658424 What 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)
What is his primary career? the league -12.533841664632416 What 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)
What is his primary career? astrology -12.556916498620073 What 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)
What is his primary career? writing -12.612769401419838 What 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)
What is his primary career? breastfeeding -12.668509049911181 What 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)
What is his primary career? industry -12.67441503011279 What 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)
What is his primary career? the parent -12.70070250337789 What 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)
What is his primary career? the obvious approach -12.710639034006789 What 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)
What is his primary career? television -12.765735651496753 What 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)
What is his primary career? the orders -12.963970281362137 What 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)
What is his primary career? The next step -12.964039830598999 What 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)
What is his primary career? the video game industry -13.001240701892966 What 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)
What is his primary career? the manufacture -13.041128641996156 What 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)
What is his primary career? the career -13.089824094611263 What 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)
What is his primary career? the industry -13.125051629031644 What 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)
What is his primary career? Home -13.146244596535372 What 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)
What is his primary career? strangers -13.211287846945005 What 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)
What is his primary career? composition -13.384655163183577 What 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)
What is his primary career? music -13.425964241139834 What 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)
What is his primary career? institutions -13.520469329384262 What 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)
What nationality is Sean Connery? Scotland 0.08204981749777451 What nationality is Sean Connery? -> $x: (Sean Connery, nationality, $x) -> (Sean Connery, Country of nationality, Scotland) -> Scotland (2641ms)
What nationality is Sean Connery? Irish people in Great Britain -11.085131930112297 What 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)
What nationality is Sean Connery? Scottish people -11.16922395463013 What 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)
What nationality is Sean Connery? Fountainbridge -11.753534944722126 What 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)
What nationality is Sean Connery? FAther -14.027092048262912 What 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)
What nationality is Sean Connery? Love -14.180026642526826 What 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)
What nationality is Sean Connery? Luca -14.271417066150194 What 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)
What nationality is Sean Connery? Wilson -14.370070525226199 What 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)
What nationality is Sean Connery? Moore -14.481735730599242 What 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)
What nationality is Sean Connery? Homage -14.614682986868164 What 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)
What nationality is Sean Connery? Father -14.735213715142724 What 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)
What nationality is Sean Connery? the first two Bond films -14.844734083034869 What 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)
What nationality is Sean Connery? James Bond -14.883087859456303 What 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)
What nationality is Sean Connery? love -16.311266449082076 What 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)
What songs did Al Jolson Sing? Sonny Boy -1.5546721928117473 What 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)
What songs did Al Jolson Sing? The songs -6.005837690525552 What 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)
What songs did Al Jolson Sing? The song -6.119458464435347 What 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)
What songs did Al Jolson Sing? Al Jolson -6.858152435328419 What 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)
What songs did Al Jolson Sing? Oh Susannah -7.270485644315813 What 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)
What songs did Al Jolson Sing? Avalon / Anniversary Song -7.288611145206008 What 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)
What songs did Al Jolson Sing? The Whiffenpoof Song -7.288611145206008 What 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)
What songs did Al Jolson Sing? The Anniversary Song -7.288611145206008 What 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)
What songs did Al Jolson Sing? When Day Is Done -7.405563837209704 What 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)
What songs did Al Jolson Sing? Pop music -7.492628120846478 What 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)
What songs did Al Jolson Sing? Brunswick Records -7.537867084728273 What 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)
What songs did Al Jolson Sing? Decca Records -7.537867084728273 What 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)
What songs did Al Jolson Sing? American Legends -7.537867084728273 What 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)
What songs did Al Jolson Sing? Little Pal -7.554688489992573 What 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)
What songs did Al Jolson Sing? Rum-Tum-Tiddle -7.62214289647581 What 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)
What songs did Al Jolson Sing? The Great Al Jolson -7.62214289647581 What 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)
What songs did Al Jolson Sing? Al Jolson: Duets -7.62214289647581 What 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)
What songs did Al Jolson Sing? Philco Commercial -7.633161870805359 What 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)
What songs did Al Jolson Sing? Alabamy Bound -7.633161870805359 What 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)
What songs did Al Jolson Sing? Easter Parade -7.633161870805359 What 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)
What songs did Al Jolson Sing? Never Again / Feeling the Way I Do -7.656176748646198 What 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)
What songs did Al Jolson Sing? Embraceable You -7.705131704854441 What 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)
What songs did Al Jolson Sing? Is It True What They Say About Dixie? -7.771040999721258 What 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)
What songs did Al Jolson Sing? The Al Jolson discography -7.836885295391868 What 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)
What songs did Al Jolson Sing? The Best of Al Jolson -7.836885295391868 What 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)
What songs did Al Jolson Sing? ?Mammy ? -8.08390678195529 What 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)
What songs did Al Jolson Sing? ?Sonny Boy -8.9419519304643 What 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)
What songs did Al Jolson Sing? two hours -8.966077391212991 What 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)
What songs did Al Jolson Sing? the campaign -9.216335709237011 What 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)
What songs did Al Jolson Sing? more soldiers -9.363235544943484 What 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)
What songs did Al Jolson Sing? a few songs -9.726905306860905 What 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)
What songs did Al Jolson Sing? the October -9.74059022414547 What 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)
What songs did Al Jolson Sing? Avalon -10.091336255457875 What 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)
What songs did Al Jolson Sing? Mammy -10.105788697660936 What 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)
What songs did Al Jolson Sing? the song -10.328220008066793 What 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)
What songs did Al Jolson Sing? the most popular tongue twister -10.750700164165483 What 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)
When did the Johnstown flood occur? May 31 , 1889 0.10153422626018704 When 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)
When did the Johnstown flood occur? Pennsylvania -2.13705262737098 When 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)
When did the Johnstown flood occur? Philipsburg -3.3380102972814196 When 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)
When did the Johnstown flood occur? Harrison -3.535216162957227 When 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)
When did the Johnstown flood occur? 1935 -6.682599869118622 When 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)
When did the Johnstown flood occur? excellent vehicle -9.591618309069343 When 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)
When did the Johnstown flood occur? good read -9.602398976553403 When 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)
When did the Johnstown flood occur? book -9.617040520098463 When 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)
When did the Johnstown flood occur? oft-exploited event -9.682017885826678 When 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)
When did the Johnstown flood occur? big, unruly, defiantly unfashionable play -9.99389173116987 When 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)
How many members does it have? school -8.841111375652641 How 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)
How many members does it have? business -8.85766783386197 How 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)
How many members does it have? higher education -9.156779329254114 How 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)
How many members does it have? Georgia Tech -9.174162548442512 How 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)
How many members does it have? exchange -9.178200301202619 How 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)
How many members does it have? davidinchi -9.236470568761064 How 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)
How many members does it have? residence -9.240293046725624 How 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)
How many members does it have? CU -9.280338599609761 How 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)
How many members does it have? Florida State University -9.319322008827767 How 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)
How many members does it have? education -9.347509431086996 How 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)
How many members does it have? grades -9.427315621582828 How 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)
How many members does it have? respect -9.449649004690734 How 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)
How many members does it have? grade 12 -9.456630776330561 How 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)
How many members does it have? registration -9.54514234816195 How 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)
How many members does it have? Harvard University -9.561383171928806 How 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)
How many members does it have? Johnny Smith -9.61433530560705 How 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)
How many members does it have? Australia -9.652911758401633 How 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)
How many members does it have? full-time education , unemployed or -9.668249791144008 How 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)
How many members does it have? the Department -9.67808350142413 How 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)
How many members does it have? a process -9.682504486131908 How 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)
How many members does it have? UF?s Turlington Plaza -9.68328117077183 How 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)
How many members does it have? a community college -9.715423754216621 How 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)
How many members does it have? Arkansas Tech -9.746960538873008 How 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)
How many members does it have? Gamma Sigma Delta -9.747254833572162 How 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)
How many members does it have? daily activities -9.75159708503084 How 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)
How many members does it have? practical career advice -9.7557208361758 How 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)
How many members does it have? ancient Hindu geography -9.76366238691147 How 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)
How many members does it have? a range -9.767448082932502 How 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)
How many members does it have? the UNC School -9.773702061272022 How 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)
How many members does it have? a variety -9.783506950337777 How 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)
How many members does it have? one or more teams -9.798538329965599 How 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)
How many members does it have? fourth or fifth grade -9.819715209840314 How 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)
How many members does it have? the University -9.824074595803085 How 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)
How many members does it have? the Honors Program -9.832710622542065 How 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)
How many members does it have? the Peabody Conservatory -9.835962670816919 How 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)
How many members does it have? core classes -9.851511465912125 How 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)
How many members does it have? the SOE -9.854242811066811 How 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)
How many members does it have? academic support -9.855126997467908 How 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)
How many members does it have? small groups -9.861237621728778 How 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)
How many members does it have? different places -9.876696367837438 How 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)
How many members does it have? Washington-Monroe School -9.87708861963044 How 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)
How many members does it have? career plans -9.885189704021256 How 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)
How many members does it have? ADDA -9.886223616742269 How 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)
How many members does it have? the Wellness Center -9.887420663396712 How 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)
How many members does it have? a qualified institution -9.891951849247665 How 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)
How many members does it have? E.W. Scripps School -9.90063428500807 How 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)
How many members does it have? the Gates Chili schools -9.903757881955759 How 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)
How many members does it have? the Paris Conservatoire -9.908670801271631 How 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)
How many members does it have? field trips -9.926012531814564 How 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)
How many members does it have? the Sorbonne University -9.93608094862169 How 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)
How many members does it have? the Yale School -9.94443098342915 How 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)
How many members does it have? the Prague Music Conservatory -9.94670752311823 How 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)
How many members does it have? an exploration -9.987756644105833 How 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)
How many members does it have? a two hour skills clinic -9.992685848402791 How 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)
How many members does it have? the Sam M. Walton College -10.003444519313334 How 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)
How many members does it have? wide range subjects -10.018392138375617 How 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)
How many members does it have? July 1 , 2012 -10.037708989448184 How 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)
How many members does it have? the AC View and Pacer staffs -10.058200245886194 How 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)
How many members does it have? scientist -10.078332195693076 How 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)
How many members does it have? arachnid -10.078332195693076 How 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)
How many members does it have? profession -10.078332195693076 How 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)
How many members does it have? professors -10.224939558888593 How 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)
How many members does it have? professionals -10.224939558888593 How 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)
How many members does it have? performers -10.224939558888593 How 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)
How many members does it have? tools -10.224939558888593 How 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)
How many members does it have? staff -10.224939558888593 How 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)
How many members does it have? experts -10.224939558888593 How 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)
How many members does it have? educators -10.224939558888593 How 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)
How many members does it have? nurses -10.224939558888593 How 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)
How many members does it have? physicians -10.224939558888593 How 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)
How many members does it have? customers -10.225061399175488 How 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)
How many members does it have? Central Campus -10.261777610614047 How 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)
How many members does it have? Latino culture -10.278425896890028 How 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)
How many members does it have? ansamcw's types -10.436436546624632 How 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)
How many members does it have? The University -10.449049558750552 How 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)
How many members does it have? U.S. politician -10.500660362171969 How 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)
How many members does it have? event outcome -10.500660362171969 How 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)
How many members does it have? programming language -10.500660362171969 How 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)
How many members does it have? job position -10.500660362171969 How 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)
How many members does it have? Hare Krishnas -10.504459623243207 How 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)
How many members does it have? President Bill -10.51188986858402 How 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)
How many members does it have? Tumblr -10.525396980415408 How 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)
How many members does it have? NEW -10.539644592839867 How 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)
How many members does it have? Merida -10.560670937413704 How 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)
How many members does it have? each semester -10.593599825552895 How 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)
How many members does it have? Bill -10.594341528562131 How 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)
How many members does it have? INVESTORS -10.599620332328943 How 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)
How many members does it have? LEADERS -10.599620332328943 How 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)
How many members does it have? PHYSICIAN -10.599620332328943 How 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)
How many members does it have? SPECIALISTS -10.599620332328943 How 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)
How many members does it have? FACULTY -10.599620332328943 How 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)
How many members does it have? uk -10.6436025412876 How 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)
How many members does it have? OBAMA -10.6436025412876 How 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)
How many members does it have? CHina -10.6436025412876 How 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)
How many members does it have? HILLARY -10.6436025412876 How 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)
How many members does it have? ? Germany -10.661470313677052 How 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)
How many members does it have? russia -10.661470313677052 How 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)
How many members does it have? saudia arabia -10.661470313677052 How 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)
How many members does it have? PResident -10.661470313677052 How 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)
How many members does it have? BARACK -10.661470313677052 How 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)
How many members does it have? frequently -10.756821085952716 How 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)
How many members does it have? researchers -10.834530585307412 How 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)
How many members does it have? GreenSingles -10.908445843657766 How 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)
How many members does it have? Tom Stiner -10.911199281261169 How 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)
How many members does it have? beliefs -10.921117391235814 How 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)
How many members does it have? visas -10.922001630339205 How 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)
How many members does it have? minor atlantis member -10.931416638492951 How 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)
How many members does it have? non-lawyer affiliate member -10.931416638492951 How 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)
How many members does it have? disability -10.943286935604254 How 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)
How many members does it have? tenure -10.94552754536762 How 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)
How many members does it have? boarding -10.956450584679377 How 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)
How many members does it have? residency -10.957414325779467 How 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)
How many members does it have? bioethics -10.98120812012385 How 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)
How many members does it have? students -10.988281716737212 How 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)
How many members does it have? Music -11.041325273366697 How 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)
How many members does it have? Event -11.041325273366697 How 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)
How many members does it have? Ella Fitzgerald -11.064082456673388 How 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)
How many members does it have? University -11.088814228546745 How 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)
How many members does it have? satisfied -11.111371855072543 How 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)
How many members does it have? obese -11.128377563794983 How 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)
How many members does it have? the top -11.133793100225189 How 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)
How many members does it have? Hartselle High School -11.16812597679175 How 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)
How old was the dam? 11 % -11.125820732242051 How 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)
How old was the dam? Vyre Unify 4 -11.987528185666719 How 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)
How old was the dam? The COE -12.416326755343437 How 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)
How old was the dam? The Great Pyramid -12.4595215005566 How 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)
How old was the dam? old -12.845831367077828 How 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)
How old was the dam? the sensor -13.225038793778781 How 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)
How old was the dam? Old -13.243687257935207 How 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)
How old was the dam? 43 to 84 years -13.296317716897097 How 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)
How old was the dam? 2,000 troops -13.56341492847444 How 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)
How old was the dam? Hoover Dam 5,218 people -13.569085747639342 How 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)
How old was the dam? Percifield , 40 -13.678883803537778 How 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)
How old was the dam? stream -13.824346592815374 How 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)
How old was the dam? The Smurfs -13.828086354919904 How 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)
How old was the dam? video games -13.843524037702274 How 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)
How old was the dam? water -13.901823221975317 How 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)
How old was the dam? 180 -13.948089615428493 How 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)
How old was the dam? a contractor -13.951374592523347 How 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)
How old was the dam? Data -13.97093414468487 How 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)
How old was the dam? fog lights -13.975113993136267 How 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)
How old was the dam? desktop publishing -13.995666696925221 How 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)
How old was the dam? Fall Line -14.032985502496551 How 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)
How old was the dam? Grays Harbor County -14.035899398029324 How 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)
How old was the dam? fish -14.04249751549395 How 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)
How old was the dam? the upstream water--BVW etc -14.14663468625327 How 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)
How old was the dam? The water surface -14.151268951518205 How 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)
How old was the dam? signature -14.159303790427693 How 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)
How old was the dam? managing water -14.236939330866527 How 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)
How old was the dam? the Mbokazi Dam -14.245865703882291 How 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)
How old was the dam? the Glen Canyon Dam -14.29764113488382 How 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)
How old was the dam? The Occupy Movement -14.308388599268866 How 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)
How old was the dam? colostrum -14.330213684378098 How 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)
How old was the dam? Loch Arklet -14.388946688744564 How 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)
How old was the dam? no matter -14.392577975619684 How 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)
How old was the dam? Bottom ash -14.403029313844034 How 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)
How old was the dam? A concrete weir -14.435527637482712 How 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)
How old was the dam? ERA -14.440230185137999 How 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)
How old was the dam? ?Owl -14.46649170931622 How 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)
How old was the dam? the Act -14.468619007457594 How 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)
How old was the dam? none -14.481351214899556 How 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)
How old was the dam? world renowned fishery -14.505781873627654 How 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)
How old was the dam? water levels -14.50719817608865 How 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)
How old was the dam? Aug. 9 , 2006 -14.520163353959099 How 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)
How old was the dam? Salini Costruttori SpA -14.52438800398377 How 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)
How old was the dam? The Loki-wolf -14.528599860870077 How 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)
How old was the dam? the Finnsheep , fixed effects -14.529704880881146 How 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)
How old was the dam? a fish ladder -14.529735979106674 How 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)
How old was the dam? heavy equipment -14.53226138339802 How 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)
How old was the dam? The IAEA team -14.53588258530491 How 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)
How old was the dam? water samples -14.563794600311223 How 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)
How old was the dam? the Yellowstone -14.56399950977847 How 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)
How old was the dam? Uncertainty -14.5667735967801 How 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)
How old was the dam? Water samples -14.580976671486079 How 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)
How old was the dam? Water -14.58578159563695 How 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)
How old was the dam? beer ? -14.593467186691932 How 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)
How old was the dam? A quality breeder -14.593852511145725 How 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)
How old was the dam? Similar questions -14.599972116683645 How 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)
How old was the dam? the Volta River -14.617613212494481 How 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)
How old was the dam? total sediment -14.62922523722909 How 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)
How old was the dam? wonderful place -14.637490379320063 How 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)
How old was the dam? Salini Costruttori S.p.A -14.638642060060043 How 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)
How old was the dam? rubbish -14.698665252694523 How 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)
How old was the dam? Flit -14.719040684028547 How 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)
How old was the dam? 5000 years -14.721046048787251 How 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)
How old was the dam? A major brick -14.72747041090802 How 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)
How old was the dam? a concrete step -14.741943455889189 How 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)
How old was the dam? Feb 27/2007 09:39AM -14.76056674034082 How 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)
How old was the dam? earthquakes -14.770965750406727 How 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)
How old was the dam? the Canadian press -14.772283267246333 How 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)
How old was the dam? Reclamation -14.812760261391752 How 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)
How old was the dam? the British -14.835309850318158 How 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)
How old was the dam? New South Wales -14.852096114323677 How 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)
How old was the dam? trunks -14.901891592369715 How 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)
How old was the dam? ?This last storm -14.9769089805286 How 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)
How old was the dam? Waters -15.02068691221266 How 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)
How old was the dam? blood -15.025679269592084 How 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)
How old was the dam? Matola -15.040723302080357 How 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)
How old was the dam? A-1L and AN-10 -15.04820495799111 How 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)
How old was the dam? Blue Colour -15.067503500395272 How 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)
How old was the dam? one area -15.078741882092375 How 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)
How old was the dam? ?These -15.097915257804255 How 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)
How old was the dam? Hemoglobin A-1c -15.146855180527059 How 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)
How old was the dam? a POLITICAL WHORE!...and AMERICANS -15.21449904980429 How 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)
How old was the dam? pure Van Loon -15.217940912927391 How 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)
How old was the dam? trout , steelhead and salmon -15.219099272026154 How 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)
How old was the dam? Crews -15.230646904108548 How 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)
How old was the dam? the cubs -15.253755705744094 How 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)
How old was the dam? High Hazard Dams -15.259374426441093 How 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)
How old was the dam? NetXposure -15.300788777860827 How 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)
How old was the dam? Renny -15.306862119507315 How 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)
How old was the dam? WARRENBRI OMEGA -15.3256246816328 How 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)
How old was the dam? Tool # 4 -15.328068264413945 How 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)
How old was the dam? 14:40:10 -15.330785391744492 How 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)
How old was the dam? Lola -15.351615454334002 How 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)
How old was the dam? Big River -15.356381013088797 How 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)
How old was the dam? Marketing Digital Asset Management -15.367465247178911 How 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)
How old was the dam? Sowbugs -15.368424255357144 How 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)
How old was the dam? succession -15.430622984396495 How 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)
How old was the dam? the reserve -15.4448134168642 How 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)
How old was the dam? lap 40 leading R&S -15.460762479179126 How 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)
How old was the dam? Concerns -15.463190878925465 How 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)
How old was the dam? The 50 million tribals -15.464317990829606 How 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)
How old was the dam? the engineers -15.480373501274718 How 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)
How old was the dam? Commonsense* -15.541974732811044 How 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)
How old was the dam? the spillway -15.565150372697175 How 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)
How old was the dam? hell -15.572360779311603 How 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)
How old was the dam? threats -15.583589181771115 How 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)
How old was the dam? no work -15.587292318539689 How 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)
How old was the dam? the ranch -15.618850431772202 How 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)
How old was the dam? Owl -15.64336694582998 How 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)
How old was the dam? PIPA -15.653383642311177 How 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)
How old was the dam? farms -15.655209228901247 How 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)
How old was the dam? A limitation -15.663665070423486 How 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)
How old was the dam? the race -15.664953920731147 How 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)
How old was the dam? the sire -15.681753673161163 How 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)
How old was the dam? the 2005 tremor -15.726256923460717 How 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)
How old was the dam? power generation -15.728679656268437 How 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)
How old was the dam? uncertainty -15.762307124604403 How 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)
How old was the dam? noon -15.76593551003236 How 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)
How old was the dam? Question -15.77507134765424 How 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)
How old was the dam? The Hebrew word for blood -15.790012023787218 How 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)
How old was the dam? as much electricity -15.818471004942179 How 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)
How old was the dam? Preliminary construction work -15.818987175127862 How 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)
How old was the dam? Weaning -15.820664650980742 How 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)
How old was the dam? cows -15.843735513746543 How 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)
How old was the dam? maintenance -15.849105180409492 How 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)
How old was the dam? Shore anglers -15.852094745379798 How 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)
How old was the dam? the Vale -15.859548299135234 How 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)
How old was the dam? the Castelo -15.85955610855779 How 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)
How old was the dam? beavers -15.895083578267235 How 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)
How old was the dam? made Guy Gibson -15.91766493894406 How 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)
How old was the dam? the community -15.920397423447486 How 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)
How old was the dam? no mechanical juvenile passage system -15.938080222929859 How 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)
How old was the dam? beer -15.946348707932762 How 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)
How old was the dam? One colleague -15.960430358890251 How 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)
How old was the dam? Grannuschka -15.96186073994897 How 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)
How old was the dam? mucc -15.97724939948786 How 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)
How old was the dam? OWL -15.983538415701446 How 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)
How old was the dam? dam -15.987503901237172 How 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)
How old was the dam? Belle -15.997293065375235 How 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)
How old was the dam? Lola's -16.042423474205357 How 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)
How old was the dam? the computer -16.04526492234533 How 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)
How old was the dam? Spectrim -16.09379586432652 How 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)
How old was the dam? The returning fish -16.141304812337566 How 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)
How old was the dam? Query -16.305079708365096 How 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)
How old was the dam? The water -16.322879558102805 How 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)
How old was the dam? The icicles -16.338053642229198 How 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)
How old was the dam? The mistakes -16.344083995745766 How 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)
How old was the dam? The hydro electric power plants -16.451466778179718 How 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)
How old was the dam? The large rock wall -16.4756244919112 How 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)
How old was the dam? man -17.020506280614836 How 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)
How old was the dam? electricity -17.639194368437334 How 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)
How old was the dam? China -17.709800551085547 How 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)
How old was the dam? Beavers -17.933004393998292 How 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)
How old was the dam? India -17.94768996375737 How 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)
What are antacids? Valu Merchandisers -6.434848595403138 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Valu Merchandisers, Drugs manufactured, Antacid Antigas 200/200/200 suspension) -> Valu Merchandisers (5111ms)
What are antacids? ulcer-healing medication -6.498172892039512 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ulcer-healing medication) -> ulcer-healing medication (4041ms)
What are antacids? Western Family Foods -6.530798978475009 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Western Family Foods, Drugs manufactured, Antacid 750 chewable tablet) -> Western Family Foods (5111ms)
What are antacids? Family Dollar Services -6.530798978475009 What 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)
What are antacids? American Sales Company -6.530798978475009 What 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)
What are antacids? calcium-rich item -6.553301165245829 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, calcium-rich item) -> calcium-rich item (4041ms)
What are antacids? acid-suppressing agent -6.578915760896624 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid-suppressing agent) -> acid-suppressing agent (4041ms)
What are antacids? acid-blocking therapy -6.589536665450566 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid-blocking therapy) -> acid-blocking therapy (4041ms)
What are antacids? Tropical fruit punch -6.640248084640643 What 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)
What are antacids? Major Pharmaceuticals -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Major Pharmaceuticals, Drugs manufactured, Antacid 750 chewable tablet) -> Major Pharmaceuticals (5129ms)
What are antacids? Target Corporation -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Target Corporation, Drugs manufactured, Antacid extra strength 750 tablet) -> Target Corporation (5129ms)
What are antacids? Cardinal Health -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Cardinal Health, Drugs manufactured, Leader Antacid 1000 chewable tablet) -> Cardinal Health (5146ms)
What are antacids? Select Brand -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Select Brand, Drugs manufactured, Antacid Antigas 400/40/400 suspension) -> Select Brand (5146ms)
What are antacids? over-the counter medication -6.750638401875268 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the counter medication) -> over-the counter medication (4041ms)
What are antacids? Sam's West -6.762466253192266 What 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)
What are antacids? Physicians Total Care -6.762466253192266 What 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)
What are antacids? Chain Drug Consortium -6.762466253192266 What 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)
What are antacids? McKesson Corporation -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (McKesson Corporation, Drugs manufactured, Sunmark Calcium Antacid 750 chewable tablet) -> McKesson Corporation (5305ms)
What are antacids? CVS Corporation -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (CVS Corporation, Drugs manufactured, Antacid Supreme 400/135 suspension) -> CVS Corporation (5319ms)
What are antacids? Hannaford Bros. Co. -6.762466253192266 What 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)
What are antacids? Army and Air Force Exchange Service -6.762466253192266 What 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)
What are antacids? H-E-B -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (H-E-B, Drugs manufactured, Antacid 750 chewable tablet) -> H-E-B (5305ms)
What are antacids? SuperValu -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (SuperValu, Drugs manufactured, Equaline Antacid 750 chewable tablet) -> SuperValu (5283ms)
What are antacids? Hy-Vee -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Hy-Vee, Drugs manufactured, Antacid 1000 chewable tablet) -> Hy-Vee (5305ms)
What are antacids? Chang Kuo Chou Pharmaceutical -6.762466253192266 What 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)
What are antacids? L. Perrigo Co -6.762466253192266 What 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)
What are antacids? DOLGENCORP INC -6.762466253192266 What 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)
What are antacids? over-the-counter preparation -6.769194744681647 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter preparation) -> over-the-counter preparation (4041ms)
What are antacids? pharmacologically active substance -6.775278985283736 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pharmacologically active substance) -> pharmacologically active substance (4101ms)
What are antacids? OTC heartburn product -6.824996367091083 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC heartburn product) -> OTC heartburn product (4101ms)
What are antacids? over-the-counter remedy -6.852355418155527 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter remedy) -> over-the-counter remedy (4100ms)
What are antacids? non-prescription medicine -6.90904355208689 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non-prescription medicine) -> non-prescription medicine (4100ms)
What are antacids? acid neutralizing substance -6.927803212674002 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid neutralizing substance) -> acid neutralizing substance (4100ms)
What are antacids? medicament by adsorbent -6.9369239715211375 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medicament by adsorbent) -> medicament by adsorbent (4146ms)
What are antacids? inexpensive over-the-counter medicine -6.9369239715211375 What 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)
What are antacids? aluminum-based over-the-counter drug -6.9369239715211375 What 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)
What are antacids? OTC acid-reducing agent -6.9369239715211375 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC acid-reducing agent) -> OTC acid-reducing agent (4146ms)
What are antacids? include over-the-counter medication -6.942064929275888 What 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)
What are antacids? over-the-counter therapy -6.9486747326287235 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter therapy) -> over-the-counter therapy (4146ms)
What are antacids? nonprescription drug -6.972491381550651 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonprescription drug) -> nonprescription drug (4146ms)
What are antacids? OTC product for heartburn -6.977696340077445 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC product for heartburn) -> OTC product for heartburn (4161ms)
What are antacids? conventional treatment for heart -6.977696340077445 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, conventional treatment for heart) -> conventional treatment for heart (4161ms)
What are antacids? gastric pH-modifier agent -6.977696340077445 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, gastric pH-modifier agent) -> gastric pH-modifier agent (4161ms)
What are antacids? consumer care product -6.977715061751292 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, consumer care product) -> consumer care product (4162ms)
What are antacids? over-the-counter or prescription medicine -6.9845509506213945 What 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)
What are antacids? prescription drug and nonprescription drug -6.985921872607615 What 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)
What are antacids? absorbable pensive medication -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, absorbable pensive medication) -> absorbable pensive medication (4178ms)
What are antacids? calcium upstart product -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, calcium upstart product) -> calcium upstart product (4178ms)
What are antacids? common antiulcer drug -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common antiulcer drug) -> common antiulcer drug (4178ms)
What are antacids? supply from home -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, supply from home) -> supply from home (4178ms)
What are antacids? eligible over-the-counter drug -7.022590295512587 What 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)
What are antacids? doctor-approved over-the-counter meds -7.022590295512587 What 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)
What are antacids? liquid inside a plastic bag sunscreen flashlight and night light tweezers and nail clipper garbage bag sewing kit over-the-counter medication -7.022590295512587 What 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)
What are antacids? treatment for peptic ulcer -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, treatment for peptic ulcer) -> treatment for peptic ulcer (4191ms)
What are antacids? common medication during pregnancy -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common medication during pregnancy) -> common medication during pregnancy (4178ms)
What are antacids? easygoing.common medication -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, easygoing.common medication) -> easygoing.common medication (4191ms)
What are antacids? prescription and non-prescription drug -7.022590295512587 What 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)
What are antacids? illness and pain relief product -7.022590295512587 What 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)
What are antacids? broad classification of medicine -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, broad classification of medicine) -> broad classification of medicine (4191ms)
What are antacids? form of calcium -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, form of calcium) -> form of calcium (4209ms)
What are antacids? h. drug -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, h. drug) -> h. drug (4191ms)
What are antacids? prescription and non-prescription medication -7.024548755646114 What 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)
What are antacids? over-the counter medicine -7.025880508402085 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the counter medicine) -> over-the counter medicine (4209ms)
What are antacids? over-the-counter option -7.028759445063427 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter option) -> over-the-counter option (4209ms)
What are antacids? cholesterol lowering medication -7.03109567771398 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, cholesterol lowering medication) -> cholesterol lowering medication (4224ms)
What are antacids? non-anticancer agent -7.03172977603357 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non-anticancer agent) -> non-anticancer agent (4224ms)
What are antacids? chemically active ingredient -7.031748497707417 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, chemically active ingredient) -> chemically active ingredient (4224ms)
What are antacids? prescription drug and over-the-counter medicine -7.032872211022087 What 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)
What are antacids? accepted medical treatment -7.034033367684451 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, accepted medical treatment) -> accepted medical treatment (4223ms)
What are antacids? acid reflux medication -7.034033367684451 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid reflux medication) -> acid reflux medication (4224ms)
What are antacids? non prescription medicine -7.034341056620173 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non prescription medicine) -> non prescription medicine (4241ms)
What are antacids? kid test household product -7.035244961226471 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, kid test household product) -> kid test household product (4241ms)
What are antacids? over-the-counter and prescription product -7.0362995166004865 What 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)
What are antacids? counter ? over-the-counter drug -7.039041360572927 What 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)
What are antacids? type of medicine -7.045530028010268 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, type of medicine) -> type of medicine (4241ms)
What are antacids? concurrent gastroprotective agent -7.054597198703451 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, concurrent gastroprotective agent) -> concurrent gastroprotective agent (4241ms)
What are antacids? indigestion remedy -7.13727132810979 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, indigestion remedy) -> indigestion remedy (4256ms)
What are antacids? FDA OTC monograph part 331 -7.155023713973003 What 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)
What are antacids? FDA OTC monograph part 332 -7.155023713973003 What 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)
What are antacids? pharmaceutical agent -7.193415451676795 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pharmaceutical agent) -> pharmaceutical agent (4256ms)
What are antacids? common remedy -7.232759015298232 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common remedy) -> common remedy (4256ms)
What are antacids? prn medicine -7.241475190977767 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prn medicine) -> prn medicine (4256ms)
What are antacids? iron product -7.263601836962203 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, iron product) -> iron product (4256ms)
What are antacids? consumer item -7.299711027225607 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, consumer item) -> consumer item (4257ms)
What are antacids? nonsurgical therapy -7.3052461522772525 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonsurgical therapy) -> nonsurgical therapy (4272ms)
What are antacids? medical therapy -7.305705404848668 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medical therapy) -> medical therapy (4272ms)
What are antacids? drug treatment -7.311974479579217 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, drug treatment) -> drug treatment (4272ms)
What are antacids? particulate material -7.322662476284981 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, particulate material) -> particulate material (4272ms)
What are antacids? stomach remedy -7.33210549830786 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, stomach remedy) -> stomach remedy (4272ms)
What are antacids? heartburn remedy -7.334865256531294 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, heartburn remedy) -> heartburn remedy (4272ms)
What are antacids? pregnancyrelated drug -7.334865256531294 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pregnancyrelated drug) -> pregnancyrelated drug (5651ms)
What are antacids? counter meds -7.343639157978521 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, counter meds) -> counter meds (5651ms)
What are antacids? health remedy -7.3469616282236405 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, health remedy) -> health remedy (5651ms)
What are antacids? famous product -7.347165117685893 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, famous product) -> famous product (5660ms)
What are antacids? suitable treatment -7.350427075129758 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, suitable treatment) -> suitable treatment (5660ms)
What are antacids? gastrointestinal agent -7.352491397579822 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, gastrointestinal agent) -> gastrointestinal agent (5661ms)
What are antacids? nonglamorous product -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonglamorous product) -> nonglamorous product (5660ms)
What are antacids? thecounter drug -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, thecounter drug) -> thecounter drug (5670ms)
What are antacids? ditional therapy -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ditional therapy) -> ditional therapy (5661ms)
What are antacids? drug medicine -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, drug medicine) -> drug medicine (5670ms)
What are antacids? antipeptic drug -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, antipeptic drug) -> antipeptic drug (5670ms)
What are antacids? dangerous pharmaceutical -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, dangerous pharmaceutical) -> dangerous pharmaceutical (5660ms)
What are antacids? standard medication -7.384680470684932 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, standard medication) -> standard medication (5670ms)
What are antacids? precautionary item -7.385634592520229 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, precautionary item) -> precautionary item (5670ms)
What are antacids? medicinal product -7.386086544823378 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medicinal product) -> medicinal product (5679ms)
What are antacids? household remedy -7.386185409159873 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, household remedy) -> household remedy (5679ms)
What are antacids? patent remedy -7.3915099730740215 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, patent remedy) -> patent remedy (5679ms)
What are antacids? effective product -7.392623788584052 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, effective product) -> effective product (5679ms)
What are antacids? basic medication -7.392746894199194 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, basic medication) -> basic medication (5679ms)
What are antacids? ulcer drug -7.396895737407036 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ulcer drug) -> ulcer drug (5679ms)
What are antacids? traditional treatment -7.400969705062862 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, traditional treatment) -> traditional treatment (5687ms)
What are antacids? alkalinizing drug -7.407177654142236 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, alkalinizing drug) -> alkalinizing drug (5687ms)
What are antacids? quest item -7.4186271124886884 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, quest item) -> quest item (5687ms)
What are antacids? pharmacological group -7.434596096318035 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacids, Instance Of, pharmacological group) -> pharmacological group (5687ms)
What are antacids? Fruit -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Fruit, Drugs with this flavor, Antacid 1000 chewable tablet) -> Fruit (5724ms)
What are antacids? Peppermint -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Peppermint, Drugs with this flavor, Antacid 500 tablet) -> Peppermint (5708ms)
What are antacids? Meijer -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Meijer, Drugs manufactured, Antacid 160/105 chewable tablet) -> Meijer (5724ms)
What are antacids? Wintergreen -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Wintergreen, Drugs with this flavor, Antacid 750 chewable tablet) -> Wintergreen (5724ms)
What are antacids? Circle -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Circle, Drugs with this shape, Antacid 750 tablet) -> Circle (5724ms)
What are antacids? Berry -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Berry, Drugs with this flavor, Antacid 750 chewable tablet) -> Berry (5695ms)
What are antacids? Cherry -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Cherry, Drugs with this flavor, Antacid 1000 tablet) -> Cherry (5708ms)
What are antacids? Fragaria -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Fragaria, Drugs with this flavor, Antacid 750 tablet) -> Fragaria (5717ms)
What are antacids? Kroger -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Kroger, Drugs manufactured, Antacid 750 tablet) -> Kroger (5708ms)
What are antacids? food and product -7.7749052108386545 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, food and product) -> food and product (5732ms)
What are antacids? chewable calcium -8.940974114827064 What 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)
What are antacids? substance -9.327616068389567 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, substance) -> substance (6021ms)
What are antacids? preparation -9.354693754872835 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, preparation) -> preparation (6019ms)
What are antacids? measure -9.413482971022482 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, measure) -> measure (6019ms)
What are antacids? incidental -9.544356405579949 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, incidental) -> incidental (6076ms)
What are antacids? doctor -9.551166953343348 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, doctor) -> doctor (6076ms)
What are antacids? therapy -9.609699776362689 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, therapy) -> therapy (6076ms)
What are antacids? Acid reflux -9.615798774654706 What 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)
What are antacids? remedy -9.636607363693912 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, remedy) -> remedy (6076ms)
What are antacids? alternative -9.641255749452714 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, alternative) -> alternative (6076ms)
What are antacids? a good way -9.77460364666606 What 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)
What are antacids? aluminium-containing medicines -10.002982611807873 What 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)
What are antacids? acid-blocking medication -10.12447196452738 What 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)
What are antacids? Magnesium Hydroxide -10.177662174709312 What 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)
What are antacids? calcium -10.194208257563243 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacids, be good source of, $x) -> (Antacids, are also good sources of, calcium) -> calcium (7597ms)
What are antacids? magnesium hydroxide -10.263098768165458 What 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)
What are antacids? a placebo -10.325467341186615 What 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)
What are antacids? acid reflux -10.375240096655325 What 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)
What are antacids? endoscopy.Treatment -10.430636681410355 What 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)
What are antacids? heartburn or acid reflux -10.475379872433251 What 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)
What are antacids? low-carbohydrate diets -10.545676778567834 What 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)
What are antacids? diarrhea or constipation -10.585759280091136 What 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)
What are antacids? An example -10.5916550511501 What 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)
What are antacids? SPRYCEL plasma concentrations -10.593713990518747 What 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)
What are antacids? heartburn acid reflux -10.615811350044336 What 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)
What are antacids? Thanksgiving dinner Dad -10.626208547085572 What 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)
What are antacids? acid reflux disease -10.630635225090145 What 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)
What are antacids? magnesium , calcium -10.630970773226426 What 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)
What are antacids? available OTC -10.645526538619569 What 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)
What are antacids? magnesium or aluminium -10.646993884195286 What 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)
What are antacids? a reality -10.651265077555646 What 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)
What are antacids? stomach acid neutralizers -10.668202867317824 What 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)
What are antacids? a low-risk solution -10.670999954763595 What 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)
What are antacids? Maalox Advanced Maximum Strength -10.677366827102329 What 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)
What are antacids? an acceptable re -10.691104048457975 What 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)
What are antacids? the Pharmacist :Antacids -10.700830204274627 What 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)
What are antacids? hip new joints -10.702567540813765 What 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)
What are antacids? acid reflux disorder disorder -10.73047934454738 What 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)
What are antacids? Acceptable alternatives -10.762969910781495 What 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)
What are antacids? American families -10.794335606563624 What 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)
What are antacids? Antacids, laxatives & antidiarrhoeal products -10.809593738830454 What 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)
What are antacids? Antacids and other drugs in gastrointestinal diseases -10.809593738830454 What 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)
What are antacids? sure the region?s tourism authorities -10.812044204336237 What 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)
What are antacids? treating gastritis -10.854642229716964 What 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)
What are antacids? an option -10.859179758224137 What 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)
What are antacids? Ulcers Pepcid and Zantac -10.87122483549471 What 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)
What are antacids? weak bases -10.912671639058015 What 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)
What are antacids? one hour -10.917844766737105 What 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)
What are antacids? a span -10.92493448853784 What 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)
What are antacids? aluminum ingestion -10.9382136253862 What 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)
What are antacids? Heartburn -10.94442211621509 What 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)
What are antacids? calcium use or retention -10.948056560566027 What 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)
What are antacids? Nexium -10.948286545485225 What 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)
What are antacids? aluminum , magnesium , or calcium-based -10.96835663851909 What 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)
What are antacids? Bet CVS -10.97041493057024 What 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)
What are antacids? Common indigestion -10.98889267637923 What 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)
What are antacids? high purity magnesium carbonate -10.992420549060917 What 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)
What are antacids? more than 3 weeks -10.99420170110691 What 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)
What are antacids? gastric reflux -11.006784323589372 What 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)
What are antacids? a week take -11.027814404502841 What 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)
What are antacids? Common examples -11.0477461365202 What 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)
What are antacids? frequent indigestion -11.054462322421795 What 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)
What are antacids? a gentle medication -11.061943230620876 What 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)
What are antacids? Almond -11.075601351941106 What 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)
What are antacids? Magnesium -11.086285984061574 What 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)
What are antacids? a good example -11.116954086819442 What 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)
What are antacids? heartburn -11.117917945440825 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (heartburn, usually include drugs like, antacids) -> heartburn (7834ms)
What are antacids? nizatidine therapy -11.12516709418548 What 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)
What are antacids? a vicious cycle -11.141650974014494 What 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)
What are antacids? Mixed -11.151041617921315 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, Be, Mixed) -> Mixed (7834ms)
What are antacids? a preferred remedy -11.21510004219624 What 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)
What are antacids? mild symptoms -11.215386302810874 What 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)
What are antacids? minor episodes -11.230004063455807 What 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)
What are antacids? Fluoroquinolone absorption -11.244107799245848 What 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)
What are antacids? over-the-counter -11.277614931911362 What 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)
What are antacids? a regular basis -11.282898808291314 What 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)
What are antacids? specific foods -11.286592730958116 What 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)
What are antacids? Gaviscon -11.291728783091084 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, Gaviscon) -> Gaviscon (7866ms)
What are antacids? Doctors -11.356761822049226 What 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)
What are antacids? occasional indigestion -11.382468657149166 What 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)
What are antacids? Hm Antacid -11.384976184670029 What 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)
What are antacids? SIBO -11.391017007666717 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (SIBO, is, antacids) -> SIBO (7867ms)
What are antacids? acid indigestion -11.40356417791028 What 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)
What are antacids? least 1 hour -11.426599918545694 What 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)
What are antacids? Diets -11.443020997014177 What 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)
What are antacids? Calcium Carbonate -11.48354807651473 What 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)
What are antacids? 24 tablets -11.571238589542263 What 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)
What are antacids? Baking soda -11.572311906699712 What 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)
What are antacids? Prilosec -11.592912399847169 What 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)
What are antacids? Second -11.612109581854769 What 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)
What are antacids? the Obama 2012 reelection campaign -11.652339247577467 What 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)
What are antacids? a good source of calcium -11.65327170802537 What 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)
What are antacids? Sufferers -11.669837618086175 What 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)
What are antacids? Alka-Seltzer -11.684735980412025 What 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)
What are antacids? calcium carbonate -11.684828840075722 What 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)
What are antacids? reduce stomach acid -11.684831911109598 What 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)
What are antacids? only for occasional relief -11.741600062995278 What 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)
What are antacids? Alka Seltzer -11.746068693360359 What 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)
What are antacids? PREVACID -11.7478704682398 What 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)
What are antacids? famous Maalox -11.750013018081468 What 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)
What are antacids? insufficient acid production -11.75311825676762 What 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)
What are antacids? just following eating in order -11.765572571991342 What 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)
What are antacids? Maalox Anti-Gas -11.789797029393295 What 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)
What are antacids? 2299.0 -11.827544572466453 What 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)
What are antacids? Calcium carbonate -11.844566938135035 What 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)
What are antacids? Magnesium oxide -11.848123486790932 What 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)
What are antacids? Pepto Bismol -11.853632628300872 What 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)
What are antacids? Sodium bicarbonate -11.88454932549379 What 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)
What are antacids? Aluminium Hydroxide Mixture -11.919468703350827 What 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)
What are antacids? sodium bicarbonate -11.923995533262312 What 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)
What are antacids? unwanted side effect -11.945411120948485 What 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)
What are antacids? DiGel -11.965350704539993 What 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)
What are antacids? Care Sodium Bicarbonate BP -11.980432564417226 What 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)
What are antacids? Bananas -11.983894532313315 What 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)
What are antacids? 9780947649043 -11.98763095152655 What 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)
What are antacids? 9780914768425 -11.98763095152655 What 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)
What are antacids? bone loss -11.990881112674106 What 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)
What are antacids? Mylanta -11.9944720213268 What 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)
What are antacids? Mag-Ox -11.996725391970472 What 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)
What are antacids? jnj.canada.com -12.001911806948666 What 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)
What are antacids? FLAVORED ANTACID -12.01656633641736 What 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)
What are antacids? a volcano -12.02179748640917 What 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)
What are antacids? Pepsid Complete -12.021966210885404 What 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)
What are antacids? Diovol Suspension -12.021966210885404 What 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)
What are antacids? a purpose -12.027038089390789 What 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)
What are antacids? aluminium hydroxide -12.032917619195365 What 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)
What are antacids? Phillips Milk of Magnesia Suspension -12.037368171629979 What 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)
What are antacids? PCC -12.054619471780192 What 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)
What are antacids? ANTACID E-X -12.063629452068584 What 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)
What are antacids? Gaviscon Suspension -12.065019964312496 What 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)
What are antacids? Magaldrate Suspension -12.065019964312496 What 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)
What are antacids? Mylanta Supreme -12.065019964312496 What 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)
What are antacids? Di- Gel -12.065469654076635 What 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)
What are antacids? Tum's -12.065469654076635 What 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)
What are antacids? De witt's antacid -12.065469654076635 What 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)
What are antacids? aluminum hydroxide/magnesium hydroxide -12.065469654076635 What 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)
What are antacids? AlkaSeltzer -12.065469654076635 What 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)
What are antacids? potential side effects and dangers -12.095999575971268 What 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)
What are antacids? Maalox Rs -12.10440182062489 What 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)
What are antacids? TITRALAC EXTRA STRENGTH -12.10440182062489 What 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)
What are antacids? ranitin from Brovel -12.10440182062489 What 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)
What are antacids? ANTACID EXTRA STRENGTH -12.10440182062489 What 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)
What are antacids? little baking soda in water -12.10440182062489 What 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)
What are antacids? Alka Seltzer Plus -12.106242022632943 What 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)
What are antacids? a good safety record -12.110668157245508 What 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)
What are antacids? a meal -12.130553784003718 What 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)
What are antacids? calcium carbonate and magnesium -12.13976988146398 What 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)
What are antacids? few side effects -12.145151848506634 What 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)
What are antacids? Aluminum -12.145218860043908 What 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)
What are antacids? Text from Wikipedia Bromo-Seltzer -12.149295776060033 What 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)
What are antacids? AciGon? Tablets -12.149295776060033 What 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)
What are antacids? UlcerGard -12.149295776060033 What 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)
What are antacids? Ami-Lac -12.149295776060033 What 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)
What are antacids? Tab Pan-D -12.149295776060033 What 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)
What are antacids? Liebling TUMS -12.149295776060033 What 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)
What are antacids? magnesium aluminum hydroxide -12.150231916293798 What 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)
What are antacids? suitable for you -12.150826532924054 What 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)
What are antacids? Os-Cal -12.151135978068083 What 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)
What are antacids? less HCL -12.152100228743318 What 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)
What are antacids? non-prescription Maalox -12.159352675140935 What 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)
What are antacids? popular Alka-Seltzer -12.159352675140935 What 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)
What are antacids? Tums for heartburn -12.159352675140935 What 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)
What are antacids? stomach gas source antacid -12.159352675140935 What 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)
What are antacids? non-prescription low sodium antacid -12.159352675140935 What 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)
What are antacids? higher risk -12.160880883200326 What 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)
What are antacids? PPIs -12.163540210100189 What 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)
What are antacids? an antacid -12.16998751671483 What 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)
What are antacids? bed -12.193782732994485 What 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)
What are antacids? a king?s ransom -12.199087904103358 What 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)
What are antacids? Zantac -12.22538836128222 What 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)
What are antacids? diarrhea -12.241966003589129 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (diarrhea, are, antacids) -> diarrhea (8098ms)
What are antacids? Gelusil -12.245533994732916 What 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)
What are antacids? n?t work -12.260981742714543 What 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)
What are antacids? temporary relief -12.267213081160602 What 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)
What are antacids? Mg 2 -12.273923360380302 What 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)
What are antacids? widely available -12.279409702727156 What 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)
What are antacids? ranitidine therapy -12.281961442816236 What 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)
What are antacids? serious side effects -12.287228914231925 What 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)
What are antacids? GERD -12.30820410948616 What 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)
What are antacids? a potential increase -12.318195277665371 What 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)
What are antacids? meals and at bedtime -12.323735375547441 What 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)
What are antacids? multiple drug interactions -12.332323000413094 What 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)
What are antacids? Aluminum carbonate -12.352506283174225 What 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)
What are antacids? Dad -12.3532296377129 What 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)
What are antacids? side effects -12.362589477028058 What 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)
What are antacids? magnesium bicarbonate -12.363291989550149 What 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)
What are antacids? the biggest villains -12.369728982716923 What 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)
What are antacids? clarithromycin antacid -12.372526983420858 What 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)
What are antacids? calcium stearate -12.372526983420858 What 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)
What are antacids? the mounting reports -12.37390841286767 What 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)
What are antacids? carbonate calcium -12.377744615095342 What 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)
What are antacids? sodium hydroxide -12.396377290091879 What 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)
What are antacids? the advertising industry -12.39962850304074 What 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)
What are antacids? Nat phos D6 -12.40269828216371 What 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)
What are antacids? symptoms -12.416248450329888 What 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)
What are antacids? side goods -12.423627173919282 What 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)
What are antacids? aluminum hydroxide -12.428747951754055 What 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)
What are antacids? Caltrate 600 -12.431765834418767 What 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)
What are antacids? magnesium aluminometasilicate -12.437149658648185 What 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)
What are antacids? neutralize the acids -12.44440870789909 What 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)
What are antacids? the relative efficiency -12.45928334872923 What 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)
What are antacids? the fastest working -12.460495218796073 What 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)
What are antacids? The correct answer -12.461051774233717 What 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)
What are antacids? magnesium trisilicate -12.46960544650155 What 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)
What are antacids? previous studies -12.481984214223786 What 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)
What are antacids? the counter medications -12.488854120674484 What 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)
What are antacids? phentermine work -12.496066786620961 What 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)
What are antacids? Mg2 in low concentrations -12.496959281405626 What 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)
What are antacids? gastric juices -12.500979758639128 What 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)
What are antacids? the short term -12.507166740921042 What 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)
What are antacids? bowel changes -12.511982352649879 What 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)
What are antacids? aluminum carbonate -12.516521591594785 What 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)
What are antacids? magnesium carbonate -12.516521591594785 What 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)
What are antacids? magnesium salt -12.516521591594785 What 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)
What are antacids? Rolaids -12.533837530279756 What 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)
What are antacids? Rulide d 50mg -12.541853236840769 What 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)
What are antacids? Myogesic orphenadrine citrate 35 mg -12.541853236840769 What 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)
What are antacids? Gastrogel -12.546468305688556 What 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)
What are antacids? stomach acid -12.578083175633651 What 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)
What are antacids? tetracycline -12.58156252402795 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, tetracycline) -> tetracycline (8167ms)
What are antacids? Zantac. -12.58162286348458 What 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)
What are antacids? excess sodium -12.596412506563214 What 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)
What are antacids? patients -12.605629945237082 What 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)
What are antacids? the first drugs -12.606103389531249 What 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)
What are antacids? anti-ulcer drugs -12.63043811376368 What 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)
What are antacids? Algicon -12.632134629680005 What 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)
What are antacids? the most common medications -12.637542269796082 What 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)
What are antacids? a rapid onset -12.648419092417496 What 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)
What are antacids? carbonate -12.652820087886191 What 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)
What are antacids? a beneficial effect -12.65290464525253 What 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)
What are antacids? The pain -12.655389331338007 What 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)
What are antacids? Gavison -12.70707641793381 What 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)
What are antacids? Gastrocaine -12.710453847600242 What 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)
What are antacids? a continuous schedule -12.71804148430574 What 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)
What are antacids? the most popular drugs -12.722186730204482 What 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)
What are antacids? cooking -12.727654433502053 What 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)
What are antacids? Wingel -12.730926724604831 What 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)
What are antacids? the tablet form -12.733745826950583 What 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)
What are antacids? Digene -12.739143421677682 What 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)
What are antacids? the jaundice -12.743107518821208 What 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)
What are antacids? the hottest and also popular acid -12.748365204436185 What 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)
What are antacids? Maalux -12.757188005043435 What 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)
What are antacids? drug -12.76776204334531 What 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)
What are antacids? minerals -12.77090177855353 What 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)
What are antacids? ketoconazole -12.792122515691323 What 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)
What are antacids? the empty stomach -12.792987106358478 What 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)
What are antacids? mouth -12.795534097621326 What 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)
What are antacids? Kremil -12.79612017159169 What 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)
What are antacids? a prescription -12.79612180704101 What 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)
What are antacids? Deflatine -12.797960373599743 What 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)
What are antacids? stomach gas -12.831000694726947 What 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)
What are antacids? the most common OTC drugs -12.834544394232967 What 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)
What are antacids? Finally -12.83954874703954 What 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)
What are antacids? Carbellon -12.841014127026833 What 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)
What are antacids? Mintox -12.841014127026833 What 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)
What are antacids? Quickease -12.842854329034886 What 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)
What are antacids? Almagel -12.842854329034886 What 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)
What are antacids? Remegel -12.842854329034886 What 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)
What are antacids? Xantac -12.842854329034886 What 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)
What are antacids? Mgtrisilicate -12.844708157341046 What 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)
What are antacids? pregnancy -12.844825334031318 What 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)
What are antacids? relief -12.847477945936904 What 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)
What are antacids? the production -12.850483210178194 What 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)
What are antacids? Aciphex -12.851071026107736 What 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)
What are antacids? the most popular and popular forms -12.86540696871094 What 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)
What are antacids? Prelief -12.868899468274707 What 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)
What are antacids? the foods -12.87173498357904 What 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)
What are antacids? three basic ingredients -12.876630689054629 What 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)
What are antacids? former top-level athletes -12.877034694862887 What 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)
What are antacids? belly acid reflux -12.878911184358953 What 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)
What are antacids? fecal los -12.90294837282053 What 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)
What are antacids? the other side -12.903839943592434 What 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)
What are antacids? sodium -12.906654657217542 What 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)
What are antacids? inflammation -12.919097993067036 What 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)
What are antacids? The medical ?acid cure reflux ? -12.930837605628804 What 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)
What are antacids? the number 2 selling drug -12.954376713331488 What 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)
What are antacids? the past -12.95481857576726 What 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)
What are antacids? the user -12.955384747575776 What 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)
What are antacids? Riopan Plus -12.966591082976203 What 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)
What are antacids? aluminum or magnesium in it -12.9674954735903 What 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)
What are antacids? the administration -12.98894518262551 What 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)
What are antacids? the stomach -12.991572296214134 What 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)
What are antacids? lots of calcium -13.014337958403907 What 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)
What are antacids? aluminum or magnesium -13.022812118503538 What 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)
What are antacids? CHOOZ -13.03007156455227 What 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)
What are antacids? natural health -13.037512203109491 What 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)
What are antacids? the counter -13.040259939406685 What 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)
What are antacids? folic acid absorption -13.047297388365202 What 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)
What are antacids? ulcers -13.055409053227356 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (ulcers, is, antacids) -> ulcers (10880ms)
What are antacids? effective -13.056293239628452 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (effective, are, antacids) -> effective (10880ms)
What are antacids? pain and help ulcers heal -13.069681154037966 What 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)
What are antacids? value -13.071091324941191 What 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)
What are antacids? drugs -13.091661169992971 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, drugs) -> drugs (10939ms)
What are antacids? the symptoms -13.094521819018546 What 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)
What are antacids? Sprycel drug levels -13.113602087997748 What 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)
What are antacids? counteract the acid -13.116280836435628 What 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)
What are antacids? absorption -13.116604213950046 What 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)
What are antacids? stomach acidity -13.121685993990617 What 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)
In what state is Dulles located? Iran -10.31039751250819 In 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)
In what state is Dulles located? Washington DC -10.503591815771886 In 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)
In what state is Dulles located? Washington D.C. -10.55767041813808 In 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)
In what state is Dulles located? DC -10.698224602749136 In 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)
In what state is Dulles located? Northern Virginia -10.728117788211485 In 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)
In what state is Dulles located? Washington D.C -10.777745026847132 In 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)
In what state is Dulles located? Mark D. Lerner -10.83084685034004 In 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)
In what state is Dulles located? Washington, DC -10.958610884017679 In 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)
In what state is Dulles located? Washington -10.962489033395567 In 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)
In what state is Dulles located? turn -11.122365538831962 In 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)
In what state is Dulles located? Dwight D. Eisenhower -11.160863687179074 In 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)
In what state is Dulles located? touch -11.269182418545917 In 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)
In what state is Dulles located? United States of America -11.405907422805868 In 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)
In what state is Dulles located? Eastern Time Zone -11.405907422805868 In 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)
In what state is Dulles located? john foster dulles sec. of state under dwight david eisenhower -11.446748045410333 In 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)
In what state is Dulles located? John Foster Dulles -11.446748045410333 In 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)
In what state is Dulles located? Mao Zedong -11.488358330399828 In 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)
In what state is Dulles located? Joseph Stalin -11.495654937477537 In 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)
In what state is Dulles located? Walter Capps -11.541854853845326 In 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)
In what state is Dulles located? Virginia -11.633667030256328 In 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)
In what state is Dulles located? john foster dulles opposed mao zedong -11.661161314083778 In 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)
In what state is Dulles located? Gamal Abdel Nasser -11.688650194682937 In 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)
In what state is Dulles located? john foster dulles studied work of stalin -11.688650194682937 In 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)
In what state is Dulles located? john foster dulles negotiated with gamal abdel nasser -11.712212092339358 In 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)
In what state is Dulles located? Nikita Sergeevich Khrushchev -11.712212092339358 In 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)
In what state is Dulles located? V-1 and V-2 Intelligence -11.748374001102423 In 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)
In what state is Dulles located? the nation -11.926185287600978 In 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)
In what state is Dulles located? a Wish Foundation -12.41935543575469 In 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)
In what state is Dulles located? Arc Second -12.451978091007181 In 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)
In what state is Dulles located? May 21-22 , 2005 event -12.617850779454125 In 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)
In what state is Dulles located? Spring 2011 New member initiation -12.66338673788821 In 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)
In what state is Dulles located? August 8 , 2010 Brickfair -12.722387311682326 In 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)
In what state is Dulles located? Sterling -12.76527241522042 In 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)
In what state is Dulles located? LLC -12.787357185543724 In 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)
In what state is Dulles located? Statesmen -12.879821300118909 In 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)
In what state is Dulles located? ?Virginia -12.953119831144555 In 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)
In what state is Dulles located? dc -12.959383670508004 In 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)
In what state is Dulles located? event -13.014919259725708 In 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)
In what state is Dulles located? diplomat -13.06141587209984 In 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)
In what state is Dulles located? politician -13.06141587209984 In 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)
In what state is Dulles located? NewHomeSource -13.094074024646956 In 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)
In what state is Dulles located? the Vatican -13.176806820348586 In 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)
In what state is Dulles located? the members -13.513556370946608 In 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)
In what state is Dulles located? an organizer -13.519073915935165 In 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)
In what state is Dulles located? military satellites -13.624666077887843 In 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)
In what state is Dulles located? Die Harder -13.652449608582161 In 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)
In what state is Dulles located? NetZero -13.665217297163087 In 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)
In what state is Dulles located? Teyon Ware -13.669477836344795 In 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)
In what state is Dulles located? Travis Friday -13.674181870403014 In 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)
In what state is Dulles located? 59 degrees -13.674754905788475 In 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)
In what state is Dulles located? SIPNOC US 2012 -13.675169088012918 In 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)
In what state is Dulles located? drug companies -13.678289490032036 In 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)
In what state is Dulles located? the Silver Line -13.691450806573403 In 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)
In what state is Dulles located? A record -13.819534319016018 In 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)
In what state is Dulles located? 55 degrees -13.837710145939743 In 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)
In what state is Dulles located? Sterling CO -13.890076165678229 In 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)
In what state is Dulles located? the AIGA event -13.914212285359731 In 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)
In what state is Dulles located? New records -13.93948579799417 In 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)
In what state is Dulles located? A ceremony -13.967285573984872 In 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)
In what state is Dulles located? seven seniors -13.974014090138354 In 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)
In what state is Dulles located? three games -14.0490070623997 In 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)
In what state is Dulles located? independent website -14.053422443613812 In 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)
In what state is Dulles located? last year -14.243213492768188 In 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)
In what state is Dulles located? any other weapon -14.259289118105183 In 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)
In what state is Dulles located? The MARKETPLACE -14.276010137286097 In 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)
In what state is Dulles located? Open AIM -14.276114510410492 In 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)
In what state is Dulles located? the Titanic. -14.296515629274444 In 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)
In what state is Dulles located? An Agency Scoping meeting -14.319103132527218 In 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)
In what state is Dulles located? humor -14.323340361443588 In 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)
In what state is Dulles located? five different models -14.350594469889527 In 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)
In what state is Dulles located? a US policy -14.417694308215152 In 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)
In what state is Dulles located? I-66 -14.713771409891585 In 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)
In what state is Dulles located? sterling -14.753283508635745 In 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)
In what state is Dulles located? The event -14.811226979933966 In 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)
In what state is Dulles located? events -14.81768297503484 In 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)
In what state is Dulles located? companies -14.841886744715598 In 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)
In what state is Dulles located? Switzerland -14.97442253502609 In 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)
In what state is Dulles located? The movie -15.066895270479268 In 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)
In what state is Dulles located? west -15.111132281639744 In 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)
In what state is Dulles located? Herndon -15.158456679420844 In 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)
In what state is Dulles located? the event -15.173526229162322 In 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)
In what state is Dulles located? Companies -15.195186046321046 In 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)
In what state is Dulles located? the scene -15.20356873551016 In 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)
In what state is Dulles located? Chantilly -15.299424524436883 In 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)
In what state is Dulles located? Wilsdorf -15.360823384185942 In 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)
In what state is Dulles located? 23 above -15.45026056112324 In 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)
In what state is Dulles located? The following interview -15.517655078132776 In 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)
In what state is Dulles located? The meeting -15.565783037567023 In 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)
In what state is Dulles located? the site -15.59662537166694 In 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)
In what state is Dulles located? the puck -15.657853655913854 In 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)
In what state is Dulles located? the essence -15.685014644100287 In 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)
In what state is Dulles located? The tournament -15.736314045187164 In 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)
In what state is Dulles located? the club -15.748393360269569 In 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)
In what state is Dulles located? the conferences -16.077948528774826 In 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)
In what state is Dulles located? the four purposes -16.091020645774947 In 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)
In what state is Dulles located? the doctrine -16.152586800720385 In 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)
Who was Abraham Lincoln? good president -1.4531390592649704 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, good president) -> good president (8146ms)
Who was Abraham Lincoln? calculating politician -1.5388853083941172 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, calculating politician) -> calculating politician (8146ms)
Who was Abraham Lincoln? classical liberal -1.6308871539686192 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, classical liberal) -> classical liberal (8147ms)
Who was Abraham Lincoln? country lawyer -1.6460800577512056 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, country lawyer) -> country lawyer (8146ms)
Who was Abraham Lincoln? successful president -1.6510044297822404 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, successful president) -> successful president (8146ms)
Who was Abraham Lincoln? state congressman -1.689612184530946 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, state congressman) -> state congressman (8319ms)
Who was Abraham Lincoln? famous president -1.689612184530946 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous president) -> famous president (8147ms)
Who was Abraham Lincoln? credible person -1.7078911455729124 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, credible person) -> credible person (8319ms)
Who was Abraham Lincoln? case study -1.7119153669749063 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, case study) -> case study (8319ms)
Who was Abraham Lincoln? remarkable president -1.739989828523818 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, remarkable president) -> remarkable president (8320ms)
Who was Abraham Lincoln? brilliant statesman -1.7403815205198812 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, brilliant statesman) -> brilliant statesman (8320ms)
Who was Abraham Lincoln? strong president -1.7409575381611497 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, strong president) -> strong president (8320ms)
Who was Abraham Lincoln? poor president -1.7436456204870714 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, poor president) -> poor president (8460ms)
Who was Abraham Lincoln? gifted politician -1.745473517081548 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, gifted politician) -> gifted politician (8460ms)
Who was Abraham Lincoln? generous person -1.7476547602653458 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, generous person) -> generous person (8460ms)
Who was Abraham Lincoln? polarizing figure -1.748262149694099 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, polarizing figure) -> polarizing figure (8460ms)
Who was Abraham Lincoln? hard worker -1.7534671514913516 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hard worker) -> hard worker (8460ms)
Who was Abraham Lincoln? true statesman -1.7535596329959136 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, true statesman) -> true statesman (8460ms)
Who was Abraham Lincoln? respected politician -1.7542474173030762 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, respected politician) -> respected politician (8478ms)
Who was Abraham Lincoln? proper noun -1.7561206776615963 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, proper noun) -> proper noun (8478ms)
Who was Abraham Lincoln? shoe maker -1.757537630805424 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, shoe maker) -> shoe maker (8478ms)
Who was Abraham Lincoln? poor farmer -1.7594144420163897 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln's, Instance Of, poor farmer) -> poor farmer (8478ms)
Who was Abraham Lincoln? outstanding person -1.761924582141888 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, outstanding person) -> outstanding person (8501ms)
Who was Abraham Lincoln? staunch patriot -1.761924582141888 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, staunch patriot) -> staunch patriot (8478ms)
Who was Abraham Lincoln? episodic film -1.761924582141888 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, episodic film) -> episodic film (8477ms)
Who was Abraham Lincoln? accomplished attorney -1.7636654338234565 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, accomplished attorney) -> accomplished attorney (8501ms)
Who was Abraham Lincoln? distinguished figure -1.7637834589127492 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, distinguished figure) -> distinguished figure (8501ms)
Who was Abraham Lincoln? legendary figure -1.7656297771630176 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, legendary figure) -> legendary figure (8501ms)
Who was Abraham Lincoln? multifaceted personality -1.7711741764725266 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, multifaceted personality) -> multifaceted personality (8501ms)
Who was Abraham Lincoln? informative book -1.7715210348197283 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (ABRAHAM LINCOLN, Instance Of, informative book) -> informative book (8501ms)
Who was Abraham Lincoln? white leader -1.775633802004088 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, white leader) -> white leader (8524ms)
Who was Abraham Lincoln? man -1.8336905138666093 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man) -> man (8524ms)
Who was Abraham Lincoln? cat person -2.1413806257598056 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, cat person) -> cat person (8524ms)
Who was Abraham Lincoln? smart man -2.1470149870108117 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, smart man) -> smart man (8524ms)
Who was Abraham Lincoln? good old man -2.2555237552890413 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham lincoln, Instance Of, good old man) -> good old man (8524ms)
Who was Abraham Lincoln? amazing man -2.291286248522742 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, amazing man) -> amazing man (8547ms)
Who was Abraham Lincoln? US president -2.3000872243751496 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, US president) -> US president (8546ms)
Who was Abraham Lincoln? moderate Republican -2.3170014673106523 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, moderate Republican) -> moderate Republican (8547ms)
Who was Abraham Lincoln? true American -2.3333903998423318 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, true American) -> true American (8547ms)
Who was Abraham Lincoln? radical Republican -2.3334283842804697 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, radical Republican) -> radical Republican (8547ms)
Who was Abraham Lincoln? average man -2.3358535650213432 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, average man) -> average man (8547ms)
Who was Abraham Lincoln? sasquatch/president -2.343316106986041 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, sasquatch/president) -> sasquatch/president (8564ms)
Who was Abraham Lincoln? Captain of another company -2.3648564173313145 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, Captain of another company) -> Captain of another company (8564ms)
Who was Abraham Lincoln? hated man -2.368594982736123 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hated man) -> hated man (8564ms)
Who was Abraham Lincoln? hardworking man -2.3688453037379817 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hardworking man) -> hardworking man (8564ms)
Who was Abraham Lincoln? profoundly religious leader -2.375712696869015 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, profoundly religious leader) -> profoundly religious leader (8564ms)
Who was Abraham Lincoln? work-a-day lawyer -2.40287534828422 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, work-a-day lawyer) -> work-a-day lawyer (8603ms)
Who was Abraham Lincoln? non-religious man -2.40287534828422 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, non-religious man) -> non-religious man (8564ms)
Who was Abraham Lincoln? famous American patriot -2.405628785887621 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous American patriot) -> famous American patriot (8603ms)
Who was Abraham Lincoln? intensely partisan politician -2.4206066523041567 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, intensely partisan politician) -> intensely partisan politician (8603ms)
Who was Abraham Lincoln? man of principle -2.4225008031145334 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of principle) -> man of principle (8603ms)
Who was Abraham Lincoln? gentle man -2.423106431212612 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, gentle man) -> gentle man (8603ms)
Who was Abraham Lincoln? curious man -2.4265018771749904 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, curious man) -> curious man (8603ms)
Who was Abraham Lincoln? big man -2.4265815746301893 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, big man) -> big man (8622ms)
Who was Abraham Lincoln? famous man -2.426755925530072 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous man) -> famous man (8622ms)
Who was Abraham Lincoln? courageous man -2.43029379046002 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, courageous man) -> courageous man (8622ms)
Who was Abraham Lincoln? person of great interest -2.4330472280634208 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, person of great interest) -> person of great interest (8622ms)
Who was Abraham Lincoln? man of dignity -2.4337210948127206 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of dignity) -> man of dignity (8622ms)
Who was Abraham Lincoln? crucial american figure -2.4480250944799566 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, crucial american figure) -> crucial american figure (8650ms)
Who was Abraham Lincoln? traditional american icon -2.4480250944799566 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, traditional american icon) -> traditional american icon (8622ms)
Who was Abraham Lincoln? man of rugged simplicity -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of rugged simplicity) -> man of rugged simplicity (8649ms)
Who was Abraham Lincoln? INOVATION genuine leader -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, INOVATION genuine leader) -> INOVATION genuine leader (8649ms)
Who was Abraham Lincoln? rich trial/corporate lawyer -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, rich trial/corporate lawyer) -> rich trial/corporate lawyer (8649ms)
Who was Abraham Lincoln? man Walt Whitman -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man Walt Whitman) -> man Walt Whitman (8651ms)
Who was Abraham Lincoln? man of great resolve -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great resolve) -> man of great resolve (8650ms)
Who was Abraham Lincoln? world famous revolutionary -2.453508782424837 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, world famous revolutionary) -> world famous revolutionary (8668ms)
Who was Abraham Lincoln? man of great character -2.4640072205388304 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great character) -> man of great character (8668ms)
Who was Abraham Lincoln? man of moral courage -2.464231962410663 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of moral courage) -> man of moral courage (8668ms)
Who was Abraham Lincoln? member of the Board -2.479729038317715 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, member of the Board) -> member of the Board (8668ms)
Who was Abraham Lincoln? transformational and inspirational leader -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, transformational and inspirational leader) -> transformational and inspirational leader (8668ms)
Who was Abraham Lincoln? man of the Border South -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of the Border South) -> man of the Border South (8668ms)
Who was Abraham Lincoln? likeable, very real person -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, likeable, very real person) -> likeable, very real person (8687ms)
Who was Abraham Lincoln? great public inspirational speaker -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great public inspirational speaker) -> great public inspirational speaker (8687ms)
Who was Abraham Lincoln? third party candidate of sort -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, third party candidate of sort) -> third party candidate of sort (8687ms)
Who was Abraham Lincoln? great and kindhearted Christian man -2.521993830880578 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great and kindhearted Christian man) -> great and kindhearted Christian man (8687ms)
Who was Abraham Lincoln? historical and literary character -2.5443438563422625 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, historical and literary character) -> historical and literary character (8687ms)
Who was Abraham Lincoln? man of great insight, intelligence and wit -2.5494827114797376 Who 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)
Who was Abraham Lincoln? name -2.628622151447157 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, name) -> name (8716ms)
Who was Abraham Lincoln? president -2.698571389242592 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, president) -> president (8716ms)
Who was Abraham Lincoln? American president -2.720513370453024 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, American president) -> American president (8717ms)
Who was Abraham Lincoln? personality -2.7456903690131274 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, personality) -> personality (8716ms)
Who was Abraham Lincoln? leader -2.7652394504964244 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, leader) -> leader (8740ms)
Who was Abraham Lincoln? guest -2.782366904321326 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, guest) -> guest (8740ms)
Who was Abraham Lincoln? republican -2.7914045420450107 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, republican) -> republican (8740ms)
Who was Abraham Lincoln? 2-volume biography of Abraham Lincoln -2.8217005945447093 Who 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)
Who was Abraham Lincoln? advocate -2.8946596216147924 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, advocate) -> advocate (8755ms)
Who was Abraham Lincoln? visitor -2.9047137988590306 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, visitor) -> visitor (8755ms)
Who was Abraham Lincoln? President of the 19th century -2.908332218251151 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, President of the 19th century) -> President of the 19th century (8755ms)
Who was Abraham Lincoln? pioneer -2.967741065804428 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, pioneer) -> pioneer (8813ms)
Who was Abraham Lincoln? model -3.0282287097938516 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, model) -> model (8972ms)
Who was Abraham Lincoln? player -3.0317834575134386 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, player) -> player (8972ms)
Who was Abraham Lincoln? American citizen -3.040401409661717 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, American citizen) -> American citizen (8972ms)
Who was Abraham Lincoln? mind -3.093191263389513 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, mind) -> mind (8987ms)
Who was Abraham Lincoln? bastard -3.0966709296395107 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, bastard) -> bastard (8987ms)
Who was Abraham Lincoln? healer -3.1004095801378577 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, healer) -> healer (8987ms)
Who was Abraham Lincoln? genious -3.1022566583220295 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, genious) -> genious (8988ms)
Who was Abraham Lincoln? professional -3.1140102985985463 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, professional) -> professional (8987ms)
Who was Abraham Lincoln? application -3.1328076411980597 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (ABRAHAM LINCOLN, Instance Of, application) -> application (8987ms)
Who was Abraham Lincoln? National Historical Park -3.4541184276637744 Who 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)
Who was Abraham Lincoln? thrill -5.609573373509696 Who 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)
Who was Abraham Lincoln? Clinton -5.989657125460536 Who 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)
Who was Abraham Lincoln? achievers -6.065879182086029 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, modelling, $x) -> (Abraham Lincoln, is a model for, achievers) -> achievers (9127ms)
Who was Abraham Lincoln? reinstatement -6.516749155042682 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, modelling, $x) -> (Abraham Lincoln, offered a model for, reinstatement) -> reinstatement (9127ms)
Who was Abraham Lincoln? the citizens -6.803331705082824 Who 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)
Who was Abraham Lincoln? President -7.349455722111308 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, take office as, $x) -> (Abraham Lincoln, took office as, President) -> President (9137ms)
Who was Abraham Lincoln? Abraham Lincoln -7.630814597407539 Who 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)
Who was Abraham Lincoln? Charles Darwin -7.814597399127635 Who 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)
Who was Abraham Lincoln? Lincoln Prize -7.814597399127635 Who 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)
Who was Abraham Lincoln? Lincoln Memorial -7.814597399127635 Who 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)
Who was Abraham Lincoln? Lincoln Bedroom -7.814597399127635 Who 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)
Who was Abraham Lincoln? Comments Today -8.400322678009807 Who 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)
Who was Abraham Lincoln? Lincoln Tomb -8.747468614012714 Who 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)
Who was Abraham Lincoln? Robert Todd Lincoln -8.81574635567154 Who 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)
Who was Abraham Lincoln? recent history -8.905607755903105 Who 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)
Who was Abraham Lincoln? Henry Clay -8.907029493654978 Who 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)
Who was Abraham Lincoln? Abraham Lincoln Brigade -8.948854969357477 Who 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)
Who was Abraham Lincoln? Fort Abraham Lincoln -8.948854969357477 Who 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)
Who was Abraham Lincoln? Abraham Lincoln University -8.948854969357477 Who 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)
Who was Abraham Lincoln? Abraham Lincoln's Clemency -8.987839200025377 Who 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)
Who was Abraham Lincoln? Lincoln Memorial Tower -8.987839200025377 Who 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)
Who was Abraham Lincoln? Lincoln College, Illinois -8.987839200025377 Who 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)
Who was Abraham Lincoln? Abraham Lincoln National Cemetery -8.987839200025377 Who 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)
Who was Abraham Lincoln? Abraham Lincoln Memorial Hospital -8.987839200025377 Who 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)
Who was Abraham Lincoln? Abraham Lincoln Memorial Garden -8.987839200025377 Who 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)
Who was Abraham Lincoln? Lincoln Heritage Trail -8.987839200025377 Who 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)
Who was Abraham Lincoln? Abraham Lincoln Capital Airport -8.987839200025377 Who 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)
Who was Abraham Lincoln? Abraham Lincoln Memorial Bridge -8.987839200025377 Who 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)
Who was Abraham Lincoln? Abraham Lincoln High School -8.987839200025377 Who 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)
Who was Abraham Lincoln? Lincoln cent mintage figures -9.020326058915293 Who 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)
Who was Abraham Lincoln? Lincoln Home National Historic Site -9.047814939514453 Who 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)
Who was Abraham Lincoln? Abraham Lincoln Presidential Library and Museum -9.047814939514453 Who 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)
Who was Abraham Lincoln? Lincoln Trail Homestead State Memorial -9.047814939514453 Who 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)
Who was Abraham Lincoln? Proposed Chicago south suburban airport -9.071376837170874 Who 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)
Who was Abraham Lincoln? better angels -9.25265281486515 Who 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)
Who was Abraham Lincoln? Polk ?a -9.380575287943255 Who 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)
Who was Abraham Lincoln? USS Abraham Lincoln (CVN-72) -9.406664446285866 Who 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)
Who was Abraham Lincoln? USS Abraham Lincoln (SSBN-602) -9.406664446285866 Who 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)
Who was Abraham Lincoln? the Americans -9.410960400292389 Who 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)
Who was Abraham Lincoln? the Gettysburg address -9.454126275657545 Who 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)
Who was Abraham Lincoln? Assassination of Abraham Lincoln -9.492587332390851 Who 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)
Who was Abraham Lincoln? the Bible -9.500010939788309 Who 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)
Who was Abraham Lincoln? more volunteers -9.52596714385593 Who 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)
Who was Abraham Lincoln? historians -9.601325409488775 Who 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)
Who was Abraham Lincoln? Saint Status -9.65206754955514 Who 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)
Who was Abraham Lincoln? a patent -9.65260598713518 Who 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)
Who was Abraham Lincoln? a baboon -9.663717756189879 Who 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)
Who was Abraham Lincoln? Northern Whigs -9.668672714296928 Who 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)
Who was Abraham Lincoln? the Ripper -9.66958328611701 Who 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)
Who was Abraham Lincoln? Abe -9.692688025399963 Who 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)
Who was Abraham Lincoln? a traitor -9.718548050795599 Who 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)
Who was Abraham Lincoln? Southern Baptist -9.732691152061305 Who 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)
Who was Abraham Lincoln? a log cabin -9.733710908290957 Who 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)
Who was Abraham Lincoln? a racist -9.734845816009623 Who 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)
Who was Abraham Lincoln? The Papers of Abraham Lincoln -9.742736145843203 Who 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)
Who was Abraham Lincoln? Sinking Spring -9.805388403496481 Who 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)
Who was Abraham Lincoln? One notable exception -9.80772833229638 Who 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)
Who was Abraham Lincoln? the Moon -9.824740817384953 Who 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)
Who was Abraham Lincoln? the Whig Party -9.838930407578824 Who 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)
Who was Abraham Lincoln? Stacy Pratt McDermott -9.838930407578824 Who 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)
Who was Abraham Lincoln? Abrahm Lincoln -9.843676487188167 Who 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)
Who was Abraham Lincoln? number six position -9.847772429696674 Who 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)
Who was Abraham Lincoln? biblical character -9.859213646178947 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical character) -> biblical character (15324ms)
Who was Abraham Lincoln? David Glasgow Farragut -9.859537497171255 Who 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)
Who was Abraham Lincoln? Such a man -9.873841518023083 Who 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)
Who was Abraham Lincoln? 1.00 -9.873874297803571 Who 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)
Who was Abraham Lincoln? the ?missing link ? -9.898532143727275 Who 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)
Who was Abraham Lincoln? The Great Emancipator -9.907641148559156 Who 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)
Who was Abraham Lincoln? the Black Hawk War -9.9147232294985 Who 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)
Who was Abraham Lincoln? ?Honest Abe . ? Bill Clinton -9.917194711012442 Who 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)
Who was Abraham Lincoln? bible character -9.92939661352169 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, bible character) -> bible character (15324ms)
Who was Abraham Lincoln? the Great Experiment -9.947373295291776 Who 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)
Who was Abraham Lincoln? the 'family -9.959705937260079 Who 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)
Who was Abraham Lincoln? Bill Kendrat -9.959714739960308 Who 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)
Who was Abraham Lincoln? a 'proposition -9.96140979463731 Who 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)
Who was Abraham Lincoln? true believer -9.977688774618347 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, true believer) -> true believer (15324ms)
Who was Abraham Lincoln? ?the mythic chords -9.998864059694306 Who 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)
Who was Abraham Lincoln? the Mississippi -10.018131936895045 Who 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)
Who was Abraham Lincoln? a ?flypaper figure -10.051915928889935 Who 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)
Who was Abraham Lincoln? unpopular president -10.053934667434657 Who 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)
Who was Abraham Lincoln? ?the last best hope -10.0669125715968 Who 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)
Who was Abraham Lincoln? ?the Last full measure -10.0669125715968 Who 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)
Who was Abraham Lincoln? successful lawyer -10.076912073042715 Who 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)
Who was Abraham Lincoln? good player -10.084993302117876 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, good player) -> good player (15390ms)
Who was Abraham Lincoln? Honest Abe -10.099135180097825 Who 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)
Who was Abraham Lincoln? a failed actor -10.109453350920598 Who 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)
Who was Abraham Lincoln? cent -10.109655629949307 Who 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)
Who was Abraham Lincoln? good person -10.110847361146396 Who 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)
Who was Abraham Lincoln? male name -10.119249883226566 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (ABRAHAM, Instance Of, male name) -> male name (15441ms)
Who was Abraham Lincoln? the Bible ?the best gift God -10.119423284129404 Who 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)
Who was Abraham Lincoln? horrible president -10.120192131337998 Who 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)
Who was Abraham Lincoln? private company -10.128423618993914 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abrahams, Instance Of, private company) -> private company (15441ms)
Who was Abraham Lincoln? spiritual teacher -10.133146206169817 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, spiritual teacher) -> spiritual teacher (15441ms)
Who was Abraham Lincoln? political leader -10.134050688709188 Who 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)
Who was Abraham Lincoln? ?The Inspired Wisdom -10.13951611017624 Who 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)
Who was Abraham Lincoln? home -10.140667143733303 Who 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)
Who was Abraham Lincoln? office -10.148499710371084 Who 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)
Who was Abraham Lincoln? distant memory -10.151397330474476 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, distant memory) -> distant memory (15441ms)
Who was Abraham Lincoln? small player -10.15220899136198 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, small player) -> small player (15484ms)
Who was Abraham Lincoln? ambiguous figure -10.153097486922752 Who 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)
Who was Abraham Lincoln? President Polk?s rationale -10.15356394565246 Who 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)
Who was Abraham Lincoln? victory -10.155633902531573 Who 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)
Who was Abraham Lincoln? elected president -10.166818066571098 Who 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)
Who was Abraham Lincoln? action -10.176981854797136 Who 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)
Who was Abraham Lincoln? christian prophet -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, christian prophet) -> christian prophet (15485ms)
Who was Abraham Lincoln? religious patriarch -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, religious patriarch) -> religious patriarch (15485ms)
Who was Abraham Lincoln? patriarchal figure -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, patriarchal figure) -> patriarchal figure (15485ms)
Who was Abraham Lincoln? testement saint -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, testement saint) -> testement saint (15542ms)
Who was Abraham Lincoln? biblical alias -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical alias) -> biblical alias (15542ms)
Who was Abraham Lincoln? American history -10.181139761370495 Who 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)
Who was Abraham Lincoln? terrible speaker -10.184929899281336 Who 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)
Who was Abraham Lincoln? Diamonds -10.185073655964121 Who 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)
Who was Abraham Lincoln? ?a new birth -10.186771251421781 Who 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)
Who was Abraham Lincoln? Abe Lincoln -10.189031619842645 Who 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)
Who was Abraham Lincoln? the American form -10.189790151089607 Who 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)
Who was Abraham Lincoln? typical person -10.191071519332056 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, typical person) -> typical person (15542ms)
Who was Abraham Lincoln? biblical leader -10.19275880793048 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical leader) -> biblical leader (15542ms)
Who was Abraham Lincoln? compassionate leader -10.195897275783945 Who 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)
Who was Abraham Lincoln? untenured teacher -10.196555207276935 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, untenured teacher) -> untenured teacher (15628ms)
Who was Abraham Lincoln? legendary person -10.200667973235594 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, legendary person) -> legendary person (15628ms)
Who was Abraham Lincoln? avid reader -10.201159069488934 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, avid reader) -> avid reader (15628ms)
Who was Abraham Lincoln? great speaker -10.201686614047302 Who 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)
Who was Abraham Lincoln? Sidney Edgerton -10.204158741269243 Who 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)
Who was Abraham Lincoln? a day -10.204364710797169 Who 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)
Who was Abraham Lincoln? brilliant scientist -10.207421964240874 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, brilliant scientist) -> brilliant scientist (15628ms)
Who was Abraham Lincoln? holy father -10.207522584392395 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, holy father) -> holy father (15725ms)
Who was Abraham Lincoln? insomniacs -10.207866153453361 Who 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)
Who was Abraham Lincoln? religious leader -10.208641704731345 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, religious leader) -> religious leader (15724ms)
Who was Abraham Lincoln? ?America?s political religion -10.212020291005174 Who 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)
Who was Abraham Lincoln? 3153 Lincoln -10.215545958047738 Who 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)
Who was Abraham Lincoln? biographical story -10.220227400200088 Who 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)
Who was Abraham Lincoln? familiar icon -10.220227400200088 Who 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)
Who was Abraham Lincoln? inherent individual -10.220227400200088 Who 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)
Who was Abraham Lincoln? core biography -10.220227400200088 Who 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)
Who was Abraham Lincoln? ridiculous politician -10.220227400200088 Who 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)
Who was Abraham Lincoln? the United States -10.222062908473271 Who 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)
Who was Abraham Lincoln? fantastic president -10.22655473305703 Who 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)
Who was Abraham Lincoln? heroic leader -10.227705157157125 Who 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)
Who was Abraham Lincoln? misguided individual -10.229366880721072 Who 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)
Who was Abraham Lincoln? great listener -10.234697344541415 Who 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)
Who was Abraham Lincoln? american icon -10.237129179606736 Who 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)
Who was Abraham Lincoln? inspirational leader -10.237200721255178 Who 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)
Who was Abraham Lincoln? courageous leader -10.238191206846995 Who 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)
Who was Abraham Lincoln? traditional topic -10.24121090103977 Who 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)
Who was Abraham Lincoln? notable case -10.241552854136199 Who 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)
Who was Abraham Lincoln? good lawyer -10.242677399422655 Who 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)
Who was Abraham Lincoln? corporate lawyer -10.245450498741095 Who 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)
Who was Abraham Lincoln? infamous character -10.245536731627856 Who 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)
Who was Abraham Lincoln? question -10.246341541814685 Who 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)
Who was Abraham Lincoln? famous name -10.248182838636952 Who 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)
Who was Abraham Lincoln? USDA ?The People?s Department -10.25347051711119 Who 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)
Who was Abraham Lincoln? New Salem home -10.258882802690831 Who 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)
Who was Abraham Lincoln? great teacher -10.259992503201897 Who 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)
Who was Abraham Lincoln? northern politician -10.261355062238088 Who 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)
Who was Abraham Lincoln? world leader -10.263913239991837 Who 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)
Who was Abraham Lincoln? The 8th Judicial Circuit -10.267233652440027 Who 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)
Who was Abraham Lincoln? republican president -10.267848903354468 Who 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)
Who was Abraham Lincoln? such a day -10.27064484989747 Who 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)
Who was Abraham Lincoln? prominent politician -10.28139161679578 Who 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)
Who was Abraham Lincoln? immediate war -10.285344142810242 Who 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)
Who was Abraham Lincoln? Lincoln -10.286468430021962 Who 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)
Who was Abraham Lincoln? thousands -10.309601196335759 Who 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)
Who was Abraham Lincoln? volunteers -10.314022181043537 Who 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)
Who was Abraham Lincoln? days -10.33524291818133 Who 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)
Who was Abraham Lincoln? the Midwest home -10.359582064925004 Who 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)
Who was Abraham Lincoln? The Reprieve -10.39748896438627 Who 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)
Who was Abraham Lincoln? The President -10.402400999760829 Who 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)
Who was Abraham Lincoln? students -10.424177854271928 Who 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)
Who was Abraham Lincoln? an ex-recorder -10.477896648930082 Who 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)
Who was Abraham Lincoln? IS ENSHRINED FOREVER -10.484637369614585 Who 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)
Who was Abraham Lincoln? guy -10.496573995698537 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, guy) -> guy (16507ms)
Who was Abraham Lincoln? six hundred thousand men -10.504441574415143 Who 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)
Who was Abraham Lincoln? one of my heroes -10.534904269279664 Who 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)
Who was Abraham Lincoln? One of his heroes -10.555305388143616 Who 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)
Who was Abraham Lincoln? old man -10.564719648711707 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, old man) -> old man (16507ms)
Who was Abraham Lincoln? Edwin Booth -10.591699167210997 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who save lincoln ? -> $x: ($x, save, lincoln) -> (Edwin Booth, saved, Abraham Lincoln?s son) -> Edwin Booth (16547ms)
Who was Abraham Lincoln? key figure -10.597234562938151 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, key figure) -> key figure (16547ms)
Who was Abraham Lincoln? profiteers -10.636831110890377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, profiteers) -> profiteers (10075ms)
Who was Abraham Lincoln? 75,000 men -10.637919133879025 Who 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)
Who was Abraham Lincoln? the constitution -10.654936030238314 Who 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)
Who was Abraham Lincoln? good guy -10.666460669149307 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, good guy) -> good guy (16547ms)
Who was Abraham Lincoln? 75,000 volunteers -10.666972437654598 Who 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)
Who was Abraham Lincoln? the front -10.682601307214078 Who 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)
Who was Abraham Lincoln? the time -10.697568118714644 Who 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)
Who was Abraham Lincoln? the English Reader -10.708330074201946 Who 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)
Who was Abraham Lincoln? worshipful man -10.712695439433652 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, worshipful man) -> worshipful man (16586ms)
Who was Abraham Lincoln? Lincoln Farm -10.714697720725137 Who 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)
Who was Abraham Lincoln? member of Congress -10.732451314006369 Who 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)
Who was Abraham Lincoln? great guy -10.749550917314297 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, great guy) -> great guy (16788ms)
Who was Abraham Lincoln? talented author -10.7555369230144 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham's, Instance Of, talented author) -> talented author (16788ms)
Who was Abraham Lincoln? business man -10.760129439237327 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, business man) -> business man (16788ms)
Who was Abraham Lincoln? OT saint -10.762807026543278 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, OT saint) -> OT saint (16788ms)
Who was Abraham Lincoln? Abraham Lincoln plaque -10.769476712874384 Who 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)
Who was Abraham Lincoln? Lincoln, Abraham -10.769476712874384 Who 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)
Who was Abraham Lincoln? states -10.788817517473591 Who 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)
Who was Abraham Lincoln? citizenship -10.807463485422993 Who 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)
Who was Abraham Lincoln? troops -10.827702443093278 Who 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)
Who was Abraham Lincoln? government -10.8407317538028 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, government) -> government (10140ms)
Who was Abraham Lincoln? help -10.933006313559911 Who 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)
Who was Abraham Lincoln? support -10.954227050697703 Who 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)
Who was Abraham Lincoln? a new determination -11.070128101083846 Who 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)
Who was Abraham Lincoln? a special session of Congress -11.09899638194617 Who 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)
Who was Abraham Lincoln? 15 % discounts -11.190224452445111 Who 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)
Who was Abraham Lincoln? the nation -11.271522298073538 Who 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)
Who was Abraham Lincoln? Americans -11.285190376009748 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Americans) -> Americans (10253ms)
Who was Abraham Lincoln? Manhunt -11.299212352859794 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Manhunt) -> Manhunt (10253ms)
Who was Abraham Lincoln? America -11.299337569236473 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, America) -> America (10272ms)
Who was Abraham Lincoln? Grant -11.313484709760903 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Grant) -> Grant (10272ms)
Who was Abraham Lincoln? Vicksburg -11.562354275180112 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called, Vicksburg) -> Vicksburg (10291ms)
Who was Abraham Lincoln? Rivals -11.584647247360259 Who 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)
Who was Abraham Lincoln? better angels of our nature -11.642455386024086 Who 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)
Who was Abraham Lincoln? Leaves -11.650361275065508 Who 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)
Who was Abraham Lincoln? the ability -11.703955609522414 Who 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)
Who was Abraham Lincoln? a misguided fanatic. -11.743622236308116 Who 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)
Who was Abraham Lincoln? the equality -11.842476454831537 Who 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)
Who was Abraham Lincoln? the plain people -11.855912170023409 Who 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)
Who was Abraham Lincoln? the governors -11.964813721141997 Who 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)
Who was Abraham Lincoln? once -12.19607908600387 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, once) -> once (10327ms)
Who was Abraham Lincoln? Union troops -12.25063842897757 Who 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)
Who was Abraham Lincoln? later -12.429243913154208 Who 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)
Who was Abraham Lincoln? the newly elected 37th Congress -12.504632835665 Who 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)
Who was Abraham Lincoln? the cottage -12.581093948215468 Who 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)
Who was Abraham Lincoln? the silent artillery of time -12.963764233385964 Who 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)
Who was Abraham Lincoln? the better angels of our nature -13.447507926625857 Who 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)
Who was Abraham Lincoln? the better angels of our nature -13.555923571145968 Who 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)
Who was Abraham Lincoln? the last full measure of devotion -13.567573312002656 Who 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)
How old was Sani Abacha when he died? THE 8TH -8.710650040659381 How 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)
How old was Sani Abacha when he died? the 8th -8.848002874811538 How 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)
How old was Sani Abacha when he died? 8th -8.884936710689182 How 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)
How old was Sani Abacha when he died? cardiac arrest -9.285319230771776 How 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)
How old was Sani Abacha when he died? 1998 -9.358474672277733 How 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)
How old was Sani Abacha when he died? heart -9.506608015597948 How 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)
How old was Sani Abacha when he died? SUDDENLY -9.722383445305622 How 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)
How old was Sani Abacha when he died? Aso Rock -9.849125785319961 How 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)
How old was Sani Abacha when he died? 18th June 1998 -10.010828235906862 How 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)
How old was Sani Abacha when he died? power -10.061800747744137 How 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)
How old was Sani Abacha when he died? a heart attack -10.073371809925684 How 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)
How old was Sani Abacha when he died? June 8 , 1998 -10.07728599568058 How 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)
How old was Sani Abacha when he died? july 1998 -10.312139185718433 How 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)
How old was Sani Abacha when he died? Power -10.877681300796883 How 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)
How old was Sani Abacha when he died? the 8th of June 1998 -11.407464804997323 How 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)
How old was Sani Abacha when he died? POWER -12.6218182964982 How 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)
When was Algeria colonized? the 19th century -1.6905492025033517 When was Algeria colonized? -> $x: (Algeria, was colonized in, $x) -> (Algeria, was colonized in, the 19th century) -> the 19th century (3194ms)
When was Algeria colonized? 1830 -8.125114606356995 When 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)
When was Algeria colonized? 1962 -8.202892974734045 When 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)
When was Algeria colonized? 21 March 2009 -8.837901661394431 When 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)
When was Algeria colonized? UTC+01:00 -8.985512488521428 When 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)
When was Algeria colonized? November -9.057822633277809 When 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)
When was Algeria colonized? 1 December 1961 -9.257578215057752 When 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)
When was Algeria colonized? 1832 France -9.773553169540813 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (1832 France, colonized, Algeria) -> 1832 France (6839ms)
When was Algeria colonized? 2003-05-21T18:44Z -9.832504256407416 When 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)
When was Algeria colonized? 40 -10.175308856878793 When 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)
When was Algeria colonized? Central European Time -10.240855529308668 When 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)
When was Algeria colonized? Roy Douglas -10.348062163645391 When 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)
When was Algeria colonized? http://en.wikipedia.org/wiki/Air%20Express%20Algeria -10.390410061760216 When 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)
When was Algeria colonized? http://en.wikipedia.org/wiki/Bank%20of%20Algeria -10.390410061760216 When 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)
When was Algeria colonized? http://en.wikipedia.org/wiki/French%20Algeria -10.445387822958534 When 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)
When was Algeria colonized? http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria -10.49251161827138 When 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)
When was Algeria colonized? 60,550 tons -10.533789781279726 When 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)
When was Algeria colonized? 82 and 86 World Cup -10.590594077709309 When 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)
When was Algeria colonized? Islamic groups -10.641782118117447 When 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)
When was Algeria colonized? 99 % -10.695356710561436 When 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)
When was Algeria colonized? interest -10.708444120254748 When 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)
When was Algeria colonized? travel -10.74198155258867 When 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)
When was Algeria colonized? law -10.827748740243232 When 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)
When was Algeria colonized? the Internet -11.00187110662839 When 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)
When was Algeria colonized? al-Qaeda -11.14674553172168 When 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)
When was Algeria colonized? basic necessities -11.169027695330822 When 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)
When was Algeria colonized? OPEC -11.204122312695077 When 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)
When was Algeria colonized? proof -11.343214682545531 When 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)
When was Algeria colonized? James Turner -11.34404902975265 When 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)
When was Algeria colonized? an agreement -11.405995203158959 When 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)
When was Algeria colonized? Hardcover -11.422781066584443 When 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)
When was Algeria colonized? hundreds -11.46725306528728 When 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)
When was Algeria colonized? suit -11.468510102649857 When 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)
When was Algeria colonized? addax -11.483200155544637 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (addax, were found from, Algeria) -> addax (8018ms)
When was Algeria colonized? terrorism -11.487997044516895 When 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)
When was Algeria colonized? women -11.496431585439533 When 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)
When was Algeria colonized? general reference -11.533442672229565 When 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)
When was Algeria colonized? a presidential decree -11.54127746170247 When 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)
When was Algeria colonized? mass demonstrations -11.546830842729577 When 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)
When was Algeria colonized? more than 150,000 deaths -11.555538543620818 When 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)
When was Algeria colonized? development centers -11.575761152963596 When 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)
When was Algeria colonized? an identification -11.593052892703998 When 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)
When was Algeria colonized? WL. Ukraine -11.60297269021723 When 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)
When was Algeria colonized? a complete file -11.608213345901145 When 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)
When was Algeria colonized? the Committee -11.633234006867003 When 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)
When was Algeria colonized? 500 deaths -11.636884746567603 When 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)
When was Algeria colonized? an example -11.649397782814154 When 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)
When was Algeria colonized? a conflict -11.65337200020957 When 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)
When was Algeria colonized? the English-speaking world -11.671940125441777 When 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)
When was Algeria colonized? a success story -11.684193729489632 When 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)
When was Algeria colonized? a shock -11.698664643784868 When 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)
When was Algeria colonized? the U.S. -11.763896723308605 When 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)
When was Algeria colonized? high food-inflation rates -11.768317708016383 When 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)
When was Algeria colonized? potential sites -11.799915644976913 When 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)
When was Algeria colonized? an African Union summit -11.801852644749157 When 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)
When was Algeria colonized? the U.N. committee -11.827717991417678 When 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)
When was Algeria colonized? Algeria -11.836573675847216 When 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)
When was Algeria colonized? the Tre Fontane Trappists -11.840821941547611 When 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)
When was Algeria colonized? decades -11.90601938336817 When 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)
When was Algeria colonized? political and economic ties -11.922327148487796 When 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)
When was Algeria colonized? macaques -11.980113789644069 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (macaques, are also found in, Algeria and Morocco) -> macaques (8018ms)
When was Algeria colonized? Hikma -12.092911204267041 When 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)
When was Algeria colonized? demand -12.143727338617966 When 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)
When was Algeria colonized? travellers -12.148730175167596 When 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)
When was Algeria colonized? France -12.186488908009288 When 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)
When was Algeria colonized? Bank of Algeria -12.27949064396605 When 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)
When was Algeria colonized? Air Express Algeria -12.27949064396605 When 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)
When was Algeria colonized? French rule in Algeria -12.334468405164369 When 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)
When was Algeria colonized? movement for democracy in algeria -12.381592200477215 When 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)
When was Algeria colonized? wines -12.389079660340984 When 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)
When was Algeria colonized? English -12.429976682065147 When 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)
When was Algeria colonized? Alger* -12.452357483293294 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Alger*, will find stories about, Algeria) -> Alger* (8018ms)
When was Algeria colonized? Sahrawis -12.458271015816303 When 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)
When was Algeria colonized? Oil -12.479940029009379 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Oil, is mainly found in, Algeria) -> Oil (8018ms)
When was Algeria colonized? Chris Adcock -12.487540646918756 When 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)
When was Algeria colonized? a loss -12.514174894148665 When 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)
When was Algeria colonized? much electricity -12.550392273993324 When 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)
When was Algeria colonized? a lasting interest -12.619886380746921 When 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)
When was Algeria colonized? new breakthroughs -12.625330357183476 When 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)
When was Algeria colonized? a victory -12.627098782687963 When 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)
When was Algeria colonized? a pipeline -12.654826891928305 When 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)
When was Algeria colonized? the Purim meal -12.661448153849783 When 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)
When was Algeria colonized? Guantanamo Bay -12.662784674942765 When 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)
When was Algeria colonized? the Islamic Republic -12.678700240971683 When 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)
When was Algeria colonized? Afghanistan -12.684525646054382 When 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)
When was Algeria colonized? Bronner -12.694103631723962 When 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)
When was Algeria colonized? terrorist attack -12.697020156285658 When 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)
When was Algeria colonized? a semolina soup -12.722695814878879 When 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)
When was Algeria colonized? half a century -12.732318281975829 When 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)
When was Algeria colonized? change -12.73337551624361 When 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)
When was Algeria colonized? a Tunisian or Egyptian-style popular uprising -12.742541661649959 When 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)
When was Algeria colonized? rocks and mud -12.751934983280552 When 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)
When was Algeria colonized? a general profile -12.76010217001653 When 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)
When was Algeria colonized? The Tuareg people -12.76349413272895 When 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)
When was Algeria colonized? conditions -12.78123444381815 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (conditions, found throughout, Algeria) -> conditions (8307ms)
When was Algeria colonized? the Mediterranean -12.798136880685771 When 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)
When was Algeria colonized? a much higher quality -12.802557865393549 When 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)
When was Algeria colonized? iron ore deposits -12.803804803632747 When 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)
When was Algeria colonized? the French -12.846070509032444 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (the French, had colonized, Algeria) -> the French (6839ms)
When was Algeria colonized? Varroa -12.873432604810949 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Varroa, was first found in, Algeria) -> Varroa (8716ms)
When was Algeria colonized? The Tuaregs -12.889209292151502 When 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)
When was Algeria colonized? Shell beads -12.907608959762094 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Shell beads, found in, Algeria and Israel) -> Shell beads (8716ms)
When was Algeria colonized? the card -12.943853225734602 When 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)
When was Algeria colonized? history -12.948132309037078 When 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)
When was Algeria colonized? Western circles -12.967809107392274 When 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)
When was Algeria colonized? the recordings -12.988555060122769 When 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)
When was Algeria colonized? Student B -12.989556124140647 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Student B, then finds, Algeria) -> Student B (8717ms)
When was Algeria colonized? The French -12.995564528929934 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (The French, began colonizing, Algeria) -> The French (6839ms)
When was Algeria colonized? the Sahrawis -13.073937469010556 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (the Sahrawis, found refuge in, Algeria) -> the Sahrawis (8716ms)
When was Algeria colonized? Lebanon -13.085282371075007 When 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)
When was Algeria colonized? a piece -13.102952115987339 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (a piece, originally found in, northern Algeria) -> a piece (8716ms)
When was Algeria colonized? R. pygmaea -13.159640088537861 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (R. pygmaea, is found in, Algeria\) -> R. pygmaea (8833ms)
When was Algeria colonized? Gambia -13.310146710250386 When 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)
When was Algeria colonized? the role -13.332838123706711 When 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)
When was Algeria colonized? the collision -13.387906628325062 When 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)
When was Algeria colonized? L & L International -13.4107081561447 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (L & L International, find, AlgeriaUsed Aircraft) -> L & L International (8833ms)
When was Algeria colonized? the seminar -13.417020580350059 When 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)
When was Algeria colonized? the economic powerhouses -13.422102608969523 When 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)
When was Algeria colonized? the history -13.438877293970714 When 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)
When was Algeria colonized? the cuts -13.451320629820207 When 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)
When was Algeria colonized? the first record -13.464385026549412 When 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)
When was Algeria colonized? the arc -13.471592612429646 When 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)
When was Algeria colonized? Kouba -13.53613595668863 When 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)
When was Algeria colonized? the list -13.543078617590613 When 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)
When was Algeria colonized? the last remaining colony -13.555094954743254 When 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)
When was Algeria colonized? the regional strategy -13.575793936049545 When 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)
When was Algeria colonized? Tuareg -13.58393528806969 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Tuareg, are also found in, southeastern Algeria) -> Tuareg (8833ms)
When was Algeria colonized? the same offence -13.63657044586462 When 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)
When was Algeria colonized? the declaration -13.794862128377344 When 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)
When was Algeria colonized? the failure -13.888423431427857 When 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)
When was Algeria colonized? the second largest country -14.165217279073929 When 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)
When was Algeria colonized? half a century ago -14.167456472385997 When 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)
When was Algeria colonized? half -14.243107765899673 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (half, found in, southeast Algeria) -> half (8834ms)
When was Algeria colonized? the very word -14.395863080265826 When 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)
When was Algeria colonized? the most fortuitous moment -14.50192255836463 When 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)
When was Algeria colonized? the matter -14.51879253511786 When 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)
When was Algeria colonized? The macaca monkeys -14.533083860461176 When 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)
When was Algeria colonized? the ball -14.5660178451571 When 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)
When was Algeria colonized? the guard -14.577732025751772 When 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)
When was Algeria colonized? The slender-horned gazelle -14.579687166503284 When 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)
When was Algeria colonized? the defeat -14.639778695564623 When 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)
When was Algeria colonized? the government -14.670165141185779 When 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)
When was Algeria colonized? the tournament -14.69990410867132 When 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)
When was Algeria colonized? the international respect -14.70520933248249 When 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)
When was Algeria colonized? the meantime -14.736384685005952 When 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)
What is Dick Clark's date of birth? Linn County -5.946920588613317 What 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)
What is Dick Clark's date of birth? Mount Vernon -6.190262434654907 What 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)
What is Dick Clark's date of birth? 1928-09-14 -6.3988658451533516 What 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)
What is Dick Clark's date of birth? 1929-11-30 -6.3988658451533516 What 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)
What is Dick Clark's date of birth? 1944-01-05 -6.3988658451533516 What 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)
What is Dick Clark's date of birth? Findlay -6.901282879589413 What 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)
What is Dick Clark's date of birth? 1929 -7.908898679885201 What 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)
What is Dick Clark's date of birth? 1959-09-27 -8.073436171154071 What 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)
What is Dick Clark's date of birth? 1959-12-20 -8.073436171154071 What 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)
What is Dick Clark's date of birth? 2012-04-18 -8.106422827873063 What 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)
What is Dick Clark's date of birth? 1963-11-23 -8.320836096546508 What 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)
What is Dick Clark's date of birth? 1958-11-29 -8.320836096546508 What 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)
What is Dick Clark's date of birth? 1999-02-16 -8.473988431313254 What 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)
What is Dick Clark's date of birth? 1958-02-15 -8.473988431313254 What 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)
What is Dick Clark's date of birth? 1994-01-01 -8.473988431313254 What 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)
What is Dick Clark's date of birth? 1960-09-10 -8.473988431313254 What 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)
What is Dick Clark's date of birth? 1988-09-19 -8.473988431313254 What 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)
What is Dick Clark's date of birth? 1972-12-31 -8.588852682388314 What 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)
What is Dick Clark's date of birth? 1959-06-24 -8.61321782655575 What 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)
What is Dick Clark's date of birth? 2004-11-12 -8.61321782655575 What 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)
What is Dick Clark's date of birth? Santa Monica -8.672873102393357 What 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)
What is Dick Clark's date of birth? 1960-10-23 -8.678191544335583 What 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)
What is Dick Clark's date of birth? 2003-12-31 -8.7331693055339 What 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)
What is Dick Clark's date of birth? 2002-01-29 -8.7331693055339 What 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)
What is Dick Clark's date of birth? 1958-01-02 -8.780293100846746 What 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)
What is Dick Clark's date of birth? 1994-02-14 -8.821133723451211 What 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)
What is Dick Clark's date of birth? 1997-05-19 -8.821133723451211 What 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)
What is Dick Clark's date of birth? 2000-12-28 -8.856869268230119 What 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)
What is Dick Clark's date of birth? 2006-10-25 -8.888400631270331 What 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)
What is Dick Clark's date of birth? 1980-06-03 -8.916428509528298 What 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)
What is Dick Clark's date of birth? 1966-11-20 -8.941506084811742 What 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)
What is Dick Clark's date of birth? 1980-03-04 -8.941506084811742 What 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)
What is Dick Clark's date of birth? Myocardial infarction -8.960359421255085 What 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)
What is Dick Clark's date of birth? David Spade -9.387531776996482 What 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)
What is Dick Clark's date of birth? 1978 -9.58346900588592 What 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)
What is Dick Clark's date of birth? The Savage Seven -9.900431559598506 What 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)
What is Dick Clark's date of birth? 1994 -9.913335573075836 What 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)
What is Dick Clark's date of birth? The Woman Who Willed a Miracle -9.918501898480361 What 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)
What is Dick Clark's date of birth? 2001 -9.949987413874716 What 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)
What is Dick Clark's date of birth? 1986 -9.984021266045104 What 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)
What is Dick Clark's date of birth? 2012 -10.098885517120163 What 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)
What is Dick Clark's date of birth? 1979 -10.1232506612876 What 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)
What is Dick Clark's date of birth? 1957 -10.1232506612876 What 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)
What is Dick Clark's date of birth? 1999 -10.259695468625246 What 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)
What is Dick Clark's date of birth? 1997 -10.259695468625246 What 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)
What is Dick Clark's date of birth? 2000 -10.290325935578595 What 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)
What is Dick Clark's date of birth? J. D. Santen -12.360862958217927 What 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)
What is Dick Clark's date of birth? true -12.4004941202205 What 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)
Who did the Prince Edward marry? a German princess -0.9192973410028679 Who did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> (the English Prince Edward, had married, a German princess) -> a German princess (3522ms)
Who did the Prince Edward marry? Princess Alexandra -1.5577213012568014 Who 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)
Who did the Prince Edward marry? Sophie Rhys-Jones -2.0589890012191456 Who 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)
Who did the Prince Edward marry? Joan -3.042505866562246 Who did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> (Prince Edward, eventually married, Joan) -> Joan (4972ms)
Who did the Prince Edward marry? Giselle -5.973846836978462 Who 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)
Who did the Prince Edward marry? a pauper -8.933813526600682 Who 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)
Who did the Prince Edward marry? the American -9.447422903416959 Who 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)
Who did the Prince Edward marry? the Countess -9.864471581771085 Who 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)
Who did the Prince Edward marry? Sophie Rhys -10.122988307493612 Who 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)
Who did the Prince Edward marry? Jasper -10.507542066840546 Who 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)
Who did the Prince Edward marry? Can gays and lesbians -10.815583378151233 Who 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)
Who did the Prince Edward marry? Denmark -11.150841417961278 Who 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)
Who did the Prince Edward marry? Sophie -11.483345467361715 Who 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)
Who did the Prince Edward marry? 1881 -11.555135666595854 Who 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)
Who did the Prince Edward marry? grades -12.097033941303053 Who 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)
Who did the Prince Edward marry? The couple -12.136385898633055 Who 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)
Who did the Prince Edward marry? Tewkesbury -12.328860527133024 Who 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)
Who did the Prince Edward marry? the battle -12.724613342989322 Who 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)
Who did the Prince Edward marry? the battlefield -12.819287068186696 Who 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)
When was the White House built? 1936 3.274248426432216 When was the White House built? -> $x: (the White House, was built in, $x) -> (the white house, was built in, 1936) -> 1936 (3111ms)
When was the White House built? 1792 3.100945678320899 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, was built in, 1792) -> 1792 (3111ms)
When was the White House built? 1902 3.0093862479446227 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, was originally built in, 1902) -> 1902 (3111ms)
When was the White House built? 1890 2.95721856515009 When was the White House built? -> $x: (the White House, was built in, $x) -> (The Little White House, was built in, 1890) -> 1890 (3111ms)
When was the White House built? 1904 2.928988852228486 When was the White House built? -> $x: (the White House, was built in, $x) -> (The white clapboard house, was built in, 1904) -> 1904 (3781ms)
When was the White House built? 1868 2.917979831095663 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White County Court House, was built in, 1868) -> 1868 (3781ms)
When was the White House built? 1943 2.5750159280941687 When was the White House built? -> $x: (the White House, was built in, $x) -> (?The White House ?, was built in, 1943) -> 1943 (3781ms)
When was the White House built? 1856 1.0747222688631815 When 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)
When was the White House built? 1824 0.987578907497134 When 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)
When was the White House built? 1817 0.9765117453591254 When 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)
When was the White House built? 1906 0.8380965272559369 When 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)
When was the White House built? 1911 0.7639841993116216 When 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)
When was the White House built? 1822 0.701994597736292 When 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)
When was the White House built? 1876 0.1323653010010104 When 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)
When was the White House built? 1786 -0.1306489263299646 When 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)
When was the White House built? March 2009 -0.3085413647584718 When 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)
When was the White House built? 1800 -0.3387941715182232 When 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)
When was the White House built? 1878 -0.5511425234581182 When 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)
When was the White House built? 2007 -0.6540577704294841 When 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)
When was the White House built? WWII -0.8344920450446978 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House East Wing, was built in, WWII) -> WWII (5318ms)
When was the White House built? December -1.0138564183875425 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, was built in, December) -> December (5318ms)
When was the White House built? the District -1.0145407061036305 When 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)
When was the White House built? January 2012 -1.2645105950915645 When 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)
When was the White House built? 2001 -1.3909694058839013 When 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)
When was the White House built? large part -1.4167807310273894 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, were built in, large part) -> large part (5412ms)
When was the White House built? Dec 17 , 1999 -1.9048204162085258 When 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)
When was the White House built? 1975 -1.9596791404288458 When 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)
When was the White House built? April 1977 -1.9905942953009457 When 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)
When was the White House built? January -2.0143661778167683 When 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)
When was the White House built? 2008 -2.0597032567331213 When 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)
When was the White House built? 2009 -2.1288617244092385 When 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)
When was the White House built? 1970 -2.1512888076749053 When 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)
When was the White House built? Washington -2.2190381831561496 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, was built in, Washington) -> Washington (5410ms)
When was the White House built? 1957 -2.3393615990845618 When 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)
When was the White House built? the late 1700 -2.421777803388036 When 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)
When was the White House built? the 1700s -2.438430365931743 When 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)
When was the White House built? 1949-52 -2.550907134701113 When 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)
When was the White House built? a hill -2.5789598652161154 When 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)
When was the White House built? 1845-46 -2.7727179178294357 When 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)
When was the White House built? http://en.wikipedia.org/wiki/Backstairs%20at%20the%20White%20House -3.1344692675107924 When 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)
When was the White House built? Wednesday -3.1909897396388307 When 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)
When was the White House built? dc -3.260501102845401 When 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)
When was the White House built? http://en.wikipedia.org/wiki/First%20White%20House%20of%20the%20Confederacy -3.310398103345414 When 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)
When was the White House built? fact -3.363405191827636 When 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)
When was the White House built? the capital -3.530632736280156 When 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)
When was the White House built? steps -3.5480732494837826 When 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)
When was the White House built? the Pacific -3.5482670893873496 When 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)
When was the White House built? September -3.596444322537911 When 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)
When was the White House built? the same year -3.634546198201247 When 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)
When was the White House built? 35 years -3.7099719870881165 When 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)
When was the White House built? College Drive -3.7105619379099446 When was the White House built? -> $x: (the White House, was built on, $x) -> ('the white house, was built on, College Drive) -> College Drive (5894ms)
When was the White House built? recent years -3.712308129962964 When 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)
When was the White House built? an invitation -3.7149310899935775 When 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)
When was the White House built? Denver -3.8586531918980524 When 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)
When was the White House built? an agreement -3.863576090880101 When 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)
When was the White House built? a deal -3.9669570810210653 When 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)
When was the White House built? the USA -3.9996428003073214 When 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)
When was the White House built? full public view -4.048588670493872 When 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)
When was the White House built? a grid system -4.201476505134028 When 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)
When was the White House built? the back -4.243362773031283 When 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)
When was the White House built? Adobe Illustrator -4.298016510984263 When 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)
When was the White House built? the United States -4.555783819636918 When 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)
When was the White House built? Arizona -4.642766418094627 When 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)
When was the White House built? the creation -4.722371095876105 When 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)
When was the White House built? various internet sites -4.744558834259375 When 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)
When was the White House built? rival programs -4.785951818489222 When 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)
When was the White House built? Iran -4.787318613101669 When 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)
When was the White House built? the US capital -4.819274792812869 When 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)
When was the White House built? persona -4.823243655446862 When 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)
When was the White House built? a property high up -4.857571865619353 When 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)
When was the White House built? the GOP nominee -4.858646502063664 When 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)
When was the White House built? rocks -4.9334672685340974 When 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)
When was the White House built? three themes -4.952090014690254 When 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)
When was the White House built? Vietnam -4.999064886520512 When 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)
When was the White House built? Gate Street -5.053452465385687 When 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)
When was the White House built? rules -5.068844015646047 When 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)
When was the White House built? 1792 and 1800 -5.110983675327038 When 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)
When was the White House built? Thomas Jefferson -5.185120628850512 When 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)
When was the White House built? the shape -5.2120980237143 When 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)
When was the White House built? spending -5.26593052415297 When 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)
When was the White House built? daddy -5.393539974712716 When 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)
When was the White House built? the White House lawn -5.412455847586373 When 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)
When was the White House built? a small hill -5.488934245810724 When 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)
When was the White House built? http://en.wikipedia.org/wiki/Little%20White%20House -5.525204622566941 When 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)
When was the White House built? http://en.wikipedia.org/wiki/David%20White%20House -5.525204622566941 When 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)
When was the White House built? importance -5.543590972665452 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Black%20Market -5.5958903155362085 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Press%20Secretary -5.5958903155362085 When 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)
When was the White House built? http://en.wikipedia.org/wiki/Andrew%20Dickson%20White%20House -5.5958903155362085 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Historical%20Association -5.5958903155362085 When 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)
When was the White House built? Jackson Hole -5.616894863079959 When 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)
When was the White House built? Main Street -5.641353940552146 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Chief%20of%20Staff -5.657151249442907 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Deputy%20Chief%20of%20Staff -5.710754566611268 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Office%20of%20Public%20Engagement%20and%20Intergovernmental%20Affairs -5.710754566611268 When 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)
When was the White House built? behalf of human dignity -5.712942950392456 When 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)
When was the White House built? the top -5.746653585945351 When 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)
When was the White House built? the tradition -5.7567494229254095 When 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)
When was the White House built? the last day -5.789370521382115 When 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)
When was the White House built? November 1 , 1800 -5.829245813461184 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%2DMeyer%20House -5.855071189756855 When 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)
When was the White House built? a cliff -5.869027857106126 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%2Dshouldered%20House%20Moth -5.902194985069701 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%2Dbellied%20Lesser%20House%20Bat -5.943035607674166 When 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)
When was the White House built? IRS activities -5.950016464247196 When 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)
When was the White House built? the assumption -6.115672814947599 When 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)
When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Bridge -6.184937756946771 When 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)
When was the White House built? the work -6.281075729617557 When 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)
When was the White House built? positions -6.296296372190527 When 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)
When was the White House built? the uncompensated labor -6.324408061550689 When 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)
When was the White House built? ?science ? -6.419777285091763 When 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)
When was the White House built? the d?tente policy -6.4557944198670745 When 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)
When was the White House built? Deponent -6.752670687864402 When 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)
When was the White House built? the hillside -6.845725682170979 When 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)
When was the White House built? congressional investigations -6.851892483149247 When 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)
When was the White House built? the early 1980s -6.86826159828578 When 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)
When was the White House built? a seminal time -6.906886768414504 When 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)
When was the White House built? a music video creation -7.057399214279879 When 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)
When was the White House built? the floor -7.122908918038523 When 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)
When was the White House built? jobs -7.140442517771194 When 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)
When was the White House built? slaves -7.15044362213694 When 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)
When was the White House built? the mandate -7.258126608454776 When 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)
When was the White House built? a 20 turn campaign season -7.280874059880485 When 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)
When was the White House built? Afghanistan -7.4868362674586955 When 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)
When was the White House built? the media -7.693916018805702 When 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)
When was the White House built? the corridor -7.749207447650882 When 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)
When was the White House built? Solyndra -8.092806273853874 When 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)
When was the White House built? the pattern -8.09804189676849 When 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)
When was the White House built? the past few years -8.182017603319109 When 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)
When was the White House built? the liberal tax revolt -8.493929409437182 When 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)
When was the White House built? the defensive -8.524026053583153 When 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)
When was the White House built? the war -8.541184120213547 When 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)
When was the White House built? the meaning -8.68589467213137 When 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)
When was the White House built? the raid -8.744314679744999 When 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)
When was the White House built? children 's health -8.955496911324525 When 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)
What was the name of Patsy Cline's producer? Owen Bradley -4.056860612786702 What 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)
What was the name of Patsy Cline's producer? Chet Atkins -4.448577161324726 What 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)
What was the name of Patsy Cline's producer? The Best of Patsy Cline -6.012400328047809 What 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)
What was the name of Patsy Cline's producer? Patsy Cline -6.054545849384213 What 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)
What was the name of Patsy Cline's producer? The Wonderful World of Patsy Cline -6.349153726503442 What 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)
What was the name of Patsy Cline's producer? Very Best of Patsy Cline -6.349153726503442 What 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)
What was the name of Patsy Cline's producer? The Half Pints -6.389434572568244 What 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)
What was the name of Patsy Cline's producer? Through the Eyes of Patsy Cline: An Anthology -6.481100353379407 What 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)
What was the name of Patsy Cline's producer? The Best of Patsy Cline: Walkin' After Midnight -6.481100353379407 What 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)
What was the name of Patsy Cline's producer? Anne Kirkpatrick -6.5066339616406585 What 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)
What was the name of Patsy Cline's producer? Pop music -6.519100671159558 What 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)
What was the name of Patsy Cline's producer? Compilation album -6.521959386713168 What 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)
What was the name of Patsy Cline's producer? Walkin' After Midnight: The Very Best of Patsy Cline -6.534703670547769 What 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)
What was the name of Patsy Cline's producer? Have You Ever Been Lonely? -6.551595868203622 What 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)
What was the name of Patsy Cline's producer? Traditional pop music -6.551595868203622 What 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)
What was the name of Patsy Cline's producer? The Patsy Cline Collection -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? Sings Patsy Cline's Favorites -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? The Patsy Cline Story -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? Portrait of Patsy Cline -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? The Definitive Patsy Cline -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? The Legendary Patsy Cline -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? The Great Patsy Cline -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? C.R. Avery and the Boomchasers -6.624042532495038 What 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)
What was the name of Patsy Cline's producer? Down by the Riverside -6.648615446788891 What 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)
What was the name of Patsy Cline's producer? The Man Upstairs -6.648615446788891 What 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)
What was the name of Patsy Cline's producer? Stop the World -6.648615446788891 What 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)
What was the name of Patsy Cline's producer? The Wayward Wind -6.648615446788891 What 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)
What was the name of Patsy Cline's producer? Country pop -6.648615446788891 What 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)
What was the name of Patsy Cline's producer? Lullaby Renditions of Patsy Cline -6.679020293693356 What 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)
What was the name of Patsy Cline's producer? A Portrait of Patsy Cline -6.679020293693356 What 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)
What was the name of Patsy Cline's producer? Adam Brodsky -6.681269203094143 What 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)
What was the name of Patsy Cline's producer? Let The Teardrops Fall -6.695739242101736 What 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)
What was the name of Patsy Cline's producer? Sweet Dreams of Mine -6.695739242101736 What 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)
What was the name of Patsy Cline's producer? Turn the Cards Slowly -6.695739242101736 What 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)
What was the name of Patsy Cline's producer? The Heart You Break -6.695739242101736 What 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)
What was the name of Patsy Cline's producer? Sweet Dreams of You -6.695739242101736 What 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)
What was the name of Patsy Cline's producer? Crystal Sands -6.718444444642037 What 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)
What was the name of Patsy Cline's producer? Live At the Opry -6.726144089006201 What 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)
What was the name of Patsy Cline's producer? Patsy Cline Sings Songs of Love -6.726144089006201 What 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)
What was the name of Patsy Cline's producer? Why Can't He Be You -6.736579864706202 What 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)
What was the name of Patsy Cline's producer? If Could See the World -6.736579864706202 What 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)
What was the name of Patsy Cline's producer? Remembering Patsy Cline -6.749730705566855 What 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)
What was the name of Patsy Cline's producer? Patsy Cline Collection -6.749730705566855 What 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)
What was the name of Patsy Cline's producer? The Universal Masters Collection: Classic Patsy Cline -6.766984711610667 What 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)
What was the name of Patsy Cline's producer? Patsy Cline: Selections From the Patsy Cline Story -6.766984711610667 What 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)
What was the name of Patsy Cline's producer? Walking After Midnight -6.770376636917971 What 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)
What was the name of Patsy Cline's producer? Ain't No Wheels On the Ship -6.772315409485109 What 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)
What was the name of Patsy Cline's producer? I Fall to Pieces -6.772315409485109 What 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)
What was the name of Patsy Cline's producer? The Late and Great Patsy Cline and Dottie West -6.802720256389574 What 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)
What was the name of Patsy Cline's producer? A Tribute to Patsy Cline / A Portrait of Patsy Cline -6.802720256389574 What 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)
What was the name of Patsy Cline's producer? He Will Do for You What He Has Done -6.803846772525321 What 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)
What was the name of Patsy Cline's producer? When Your House Is Not a Home -6.803846772525321 What 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)
What was the name of Patsy Cline's producer? I Cried All the Way to the Alter -6.803846772525321 What 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)
What was the name of Patsy Cline's producer? Stop The World (And Let Me Off) -6.803846772525321 What 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)
What was the name of Patsy Cline's producer? Album -6.830540012098551 What 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)
What was the name of Patsy Cline's producer? Just Out of Reach (Of My Two Arms) -6.831874650783288 What 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)
What was the name of Patsy Cline's producer? Stop the World (And Let Me Get Off) -6.831874650783288 What 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)
What was the name of Patsy Cline's producer? Stop the World (And Let Me Go Off) -6.831874650783288 What 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)
What was the name of Patsy Cline's producer? When Your House Is Not a Home (radio transcription) -6.856952226066731 What 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)
What was the name of Patsy Cline's producer? Today, Tomorrow, & Forever: The Patsy Cline Collection -6.862279497687753 What 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)
What was the name of Patsy Cline's producer? Don't Ever Leave Me Again: The Patsy Cline Collection -6.887357072971197 What 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)
What was the name of Patsy Cline's producer? Lonely Street -6.894206202231269 What 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)
What was the name of Patsy Cline's producer? Awards Dialogue -6.894206202231269 What 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)
What was the name of Patsy Cline's producer? Stupid Cupid -6.894206202231269 What 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)
What was the name of Patsy Cline's producer? Flatbed Honeymoon -6.894206202231269 What 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)
What was the name of Patsy Cline's producer? EP -6.909385515642594 What 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)
What was the name of Patsy Cline's producer? Jenny Toomey -6.924611049135733 What 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)
What was the name of Patsy Cline's producer? Kirsten Siggaard -6.938188411189923 What 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)
What was the name of Patsy Cline's producer? Dark Dark Dark -6.9509931333796455 What 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)
What was the name of Patsy Cline's producer? Chris Kennedy -6.956056183579378 What 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)
What was the name of Patsy Cline's producer? 20th Century Masters: The Millennium Collection: The Best of Patsy Cline -6.974558175888824 What 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)
What was the name of Patsy Cline's producer? Hidin? Out -6.978482013978805 What 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)
What was the name of Patsy Cline's producer? Foolin' Round -6.978482013978805 What 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)
What was the name of Patsy Cline's producer? Walkin' Dream -6.978482013978805 What 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)
What was the name of Patsy Cline's producer? Melissa Swift-Sawyer -6.978482013978805 What 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)
What was the name of Patsy Cline's producer? Foolin' 'Round -6.978482013978805 What 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)
What was the name of Patsy Cline's producer? Here's Patsy Cline -6.981397980284111 What 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)
What was the name of Patsy Cline's producer? Seven Lonely Days -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Yes, I Understand -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Melissa Swift-Sawyer Sings Patsy Cline -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Yes I Understand -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Walkin' After Midnight -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Come on In -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? I Don?t Wanta -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Always...Patsy Cline -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Pick Me Up -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Poor Man's Roses -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Walking' After Midnight -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? San Antonio Rose -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Walkin? After Midnight -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Tra La La La Triangle -7.002043911635228 What 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)
What was the name of Patsy Cline's producer? Country Spotlight: Patsy Cline -7.008886860883271 What 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)
What was the name of Patsy Cline's producer? Stop, Look and Listen -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Honky Tonk Merry Go-Round -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Shake, Rattle and Roll -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Sweet Dreams [Of You] -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Love Me Love Me Honey Do -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? I've Loved And Loved Again -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? I Love You Honey -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Life?s Railway to Heaven -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? If I Could Only -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Cry Not for Me -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Life's Railroad to Heaven -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Tra Le La Le La Triangle -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? You Belong to Me -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? I Love You, Honey -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Stop, Look & Listen -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Tra le la le Triangle -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? Today, Tomorrow, and Forever -7.022464222937461 What 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)
What was the name of Patsy Cline's producer? the same name -11.713938577920384 What 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)
Where is Mesa Verde National park? Southwestern Colorado -1.8587341627924612 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, is in, Southwestern Colorado) -> Southwestern Colorado (2652ms)
Where is Mesa Verde National park? Authorities Concept Scheme -2.2501364945342663 Where 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)
Where is Mesa Verde National park? the New York Times -2.2580548209106475 Where 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)
Where is Mesa Verde National park? Southwest Colorado -2.2775152557802647 Where 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)
Where is Mesa Verde National park? Geographic Names Concept Scheme -2.332603136331745 Where 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)
Where is Mesa Verde National park? COLORADO -2.488800146395396 Where 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)
Where is Mesa Verde National park? treasures -3.489471203497019 Where 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)
Where is Mesa Verde National park? the southwest corner -4.320924281798899 Where 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)
Where is Mesa Verde National park? the 59th Congress -4.428993906387246 Where 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)
Where is Mesa Verde National park? accessibility -4.795228413021565 Where 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)
Where is Mesa Verde National park? 1906 -5.557253966210219 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, was established in, 1906) -> 1906 (2857ms)
Where is Mesa Verde National park? 1996 -7.493008665115658 Where 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)
Where is Mesa Verde National park? Colorado -8.478420275287277 Where 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)
Where is Mesa Verde National park? Cortez -8.760718002715041 Where 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)
Where is Mesa Verde National park? Durango -8.760718002715041 Where 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)
Where is Mesa Verde National park? a World Heritage Site -9.054879686829173 Where 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)
Where is Mesa Verde National park? Balcony House -9.17262111912381 Where 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)
Where is Mesa Verde National park? Cliff Palace -9.17262111912381 Where 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)
Where is Mesa Verde National park? Montezuma County -9.17262111912381 Where 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)
Where is Mesa Verde National park? Long House -9.685937427040631 Where 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)
Where is Mesa Verde National park? Step House -9.685937427040631 Where 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)
Where is Mesa Verde National park? Mesa Verde Administrative District -9.685937427040631 Where 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)
Where is Mesa Verde National park? Chapin Mesa Archeological Museum -9.802890119044328 Where 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)
Where is Mesa Verde National park? Cedar Tree Tower -9.802890119044328 Where 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)
Where is Mesa Verde National park? Spruce Tree House -9.802890119044328 Where 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)
Where is Mesa Verde National park? Badger House Trail -9.802890119044328 Where 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)
Where is Mesa Verde National park? Square Tower House -9.802890119044328 Where 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)
Where is Mesa Verde National park? Far View Sites Complex -9.900350695714074 Where 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)
Where is Mesa Verde National park? United States of America -9.968209141536768 Where 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)
Where is Mesa Verde National park? national park -10.302035715468387 Where 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)
Where is Mesa Verde National park? US National Park -10.468707388347394 Where 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)
Where is Mesa Verde National park? wonderful national park -10.51382731870841 Where 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)
Where is Mesa Verde National park? World Heritage Site -10.579007670682497 Where 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)
Where is Mesa Verde National park? series of mesa -10.587564952296637 Where 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)
Where is Mesa Verde National park? national park site -10.60021961801052 Where 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)
Where is Mesa Verde National park? beautiful place -10.609462642183667 Where 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)
Where is Mesa Verde National park? breathtaking national park -10.612241550499995 Where 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)
Where is Mesa Verde National park? U.S. park -10.628692614334636 Where 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)
Where is Mesa Verde National park? beautiful park -10.633496181047773 Where 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)
Where is Mesa Verde National park? natural wonder -10.653337971450343 Where 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)
Where is Mesa Verde National park? educational, historical park -10.65962368886519 Where 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)
Where is Mesa Verde National park? area attraction -10.666699877005 Where 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)
Where is Mesa Verde National park? regional site -10.673860187640098 Where 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)
Where is Mesa Verde National park? scenic wonder -10.690088622709435 Where 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)
Where is Mesa Verde National park? natural attraction -10.690214511888922 Where 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)
Where is Mesa Verde National park? UNESCO World Heritage Site -10.692622734114074 Where 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)
Where is Mesa Verde National park? great spot -10.69651781306189 Where 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)
Where is Mesa Verde National park? beautiful historical park -10.704517644300333 Where 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)
Where is Mesa Verde National park? tourist attraction -10.706800699325665 Where 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)
Where is Mesa Verde National park? regional attraction -10.71311652960243 Where 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)
Where is Mesa Verde National park? southwest area -10.714548781621932 Where 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)
Where is Mesa Verde National park? must-see site -10.7159419954112 Where 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)
Where is Mesa Verde National park? area's world-class attraction -10.716311896978631 Where 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)
Where is Mesa Verde National park? outdoor attraction -10.716855943402013 Where 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)
Where is Mesa Verde National park? regional partner -10.717437328382895 Where 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)
Where is Mesa Verde National park? photograph place -10.718226865388234 Where 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)
Where is Mesa Verde National park? photogenic place -10.718561236305433 Where 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)
Where is Mesa Verde National park? spectacular monument -10.719940517564583 Where 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)
Where is Mesa Verde National park? dream destination -10.722169782442535 Where 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)
Where is Mesa Verde National park? popular area -10.72251965110855 Where 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)
Where is Mesa Verde National park? extraordinary experience -10.722927169340988 Where 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)
Where is Mesa Verde National park? pretty place -10.723380453979866 Where 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)
Where is Mesa Verde National park? phenomenal place -10.725310811114177 Where 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)
Where is Mesa Verde National park? tourist destination -10.727712770971523 Where 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)
Where is Mesa Verde National park? spectacular place -10.73051175216785 Where 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)
Where is Mesa Verde National park? amazing experience -10.731362814402512 Where 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)
Where is Mesa Verde National park? absolute must-see -10.732581226234354 Where 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)
Where is Mesa Verde National park? visitor attraction -10.732623694282518 Where 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)
Where is Mesa Verde National park? huge property -10.732630222359882 Where 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)
Where is Mesa Verde National park? class I area -10.73488567928096 Where 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)
Where is Mesa Verde National park? excellent spot -10.735086289511102 Where 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)
Where is Mesa Verde National park? spectacular site -10.737242881419656 Where 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)
Where is Mesa Verde National park? wonderful setting -10.73758666816305 Where 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)
Where is Mesa Verde National park? historical site -10.739312102991992 Where 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)
Where is Mesa Verde National park? popular attraction -10.744011325877485 Where 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)
Where is Mesa Verde National park? good local destination -10.757084265534939 Where 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)
Where is Mesa Verde National park? UNESCO World Magazine -10.757084265534939 Where 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)
Where is Mesa Verde National park? nonprofit organization -10.76189374237771 Where 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)
Where is Mesa Verde National park? local attraction -10.765249154531812 Where 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)
Where is Mesa Verde National park? amazing archeological attraction -10.771950647134334 Where 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)
Where is Mesa Verde National park? group of the cliff dwelling -10.79877853877611 Where 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)
Where is Mesa Verde National park? Land of Mysteries | Mesa Verde | -10.801978220970081 Where 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)
Where is Mesa Verde National park? archeological rich site -10.801978220970081 Where 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)
Where is Mesa Verde National park? ideal combination of heritage -10.801978220970081 Where 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)
Where is Mesa Verde National park? Top US Destination -10.805141887398552 Where 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)
Where is Mesa Verde National park? popular tourism attraction -10.80883283151403 Where 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)
Where is Mesa Verde National park? Navaho word -10.82939666314588 Where 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)
Where is Mesa Verde National park? fantastic spot -10.832293450286887 Where 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)
Where is Mesa Verde National park? seven-mile drive west of Mancos -10.839550907332416 Where 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)
Where is Mesa Verde National park? ancient Native American town -10.839550907332416 Where 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)
Where is Mesa Verde National park? Amazing Colorado Attraction -10.84310588300808 Where 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)
Where is Mesa Verde National park? Class I Air Quality park -10.854417288931812 Where 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)
Where is Mesa Verde National park? local point of interest -10.861415514737221 Where 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)
Where is Mesa Verde National park? magical time -10.86539027549754 Where 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)
Where is Mesa Verde National park? stunning array of cliff dwelling -10.884444862767559 Where 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)
Where is Mesa Verde National park? part of a family vacation -10.884444862767559 Where 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)
Where is Mesa Verde National park? site in north america -10.884444862767559 Where 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)
Where is Mesa Verde National park? astounding collection of many ruin -10.884444862767559 Where 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)
Where is Mesa Verde National park? cultural and natural attraction -10.906379616998478 Where 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)
Where is Mesa Verde National park? great destination -10.91250399541115 Where 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)
Where is Mesa Verde National park? crossword puzzle clue -10.926160306713921 Where 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)
Where is Mesa Verde National park? mandatory federal class I area -10.955130555736826 Where 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)
Where is Mesa Verde National park? extremely delicate and unique setting -10.955130555736826 Where 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)
Where is Mesa Verde National park? downtown durango and area attraction -10.955130555736826 Where 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)
Where is Mesa Verde National park? historic landmark -11.003846349002735 Where 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)
Where is Mesa Verde National park? eighty square mile area of cliff dwelling -11.016391489643524 Where 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)
Where is Mesa Verde National park? archeological treasure trove -11.016391489643524 Where 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)
Where is Mesa Verde National park? eighty square mile area of the cliff dwelling -11.025100851376743 Where 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)
Where is Mesa Verde National park? UNESCO designated World Heritage Cultural Site -11.025100851376743 Where 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)
Where is Mesa Verde National park? area of abandoned cliff side dwelling of the ancient inhabitant -11.072397895937062 Where 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)
Where is Mesa Verde National park? attraction -11.094898040384148 Where 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)
Where is Mesa Verde National park? area -11.144467060494346 Where 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)
Where is Mesa Verde National park? site -11.225581767062902 Where 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)
Where is Mesa Verde National park? incredibly well preserved and stunning collection of archaeological site of the Native American Pueblo person -11.289281104318817 Where 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)
Where is Mesa Verde National park? destination -11.312848324145873 Where 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)
Where is Mesa Verde National park? opportunity -11.331581384401156 Where 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)
Where is Mesa Verde National park? place -11.36898216330709 Where 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)
Where is Mesa Verde National park? experience -11.384368834432602 Where 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)
Where is Mesa Verde National park? 81-square-mile area -12.214915309386068 Where 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)
Where is Mesa Verde National park? an Archeological Disneyland -12.287154111423742 Where 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)
Where is Mesa Verde National park? 81.4 square mile area -12.349948572418151 Where 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)
Where is Mesa Verde National park? short 35 minute drive west -12.42063426538742 Where 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)
Where is Mesa Verde National park? short 30 minute drive -12.427744657973975 Where 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)
Where is Mesa Verde National park? beautiful 45 minute drive -12.435970189891295 Where 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)
Where is Mesa Verde National park? Desert Exposure -12.657021803735184 Where 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)
Where is Mesa Verde National park? mountain -13.393699126023568 Where 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)
Where is Mesa Verde National park? the archaeological center -13.683555388681148 Where 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)
Where is Mesa Verde National park? tourism -14.27451187655951 Where 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)
Where is Mesa Verde National park? the year -14.315610558885908 Where 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)
When did the Mesozoic period end? the dinosaurs -14.556033710865394 When 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)
What is the location of Lake Champlain? Richelieu River 2.367032788309219 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain, Outflow location, Richelieu River) -> Richelieu River (1071ms)
What is the location of Lake Champlain? Vergennes Opera House 2.3065083543834772 What 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)
What is the location of Lake Champlain? Champlain Valley Exposition 2.239241446564357 What 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)
What is the location of Lake Champlain? Lake Champlain 2.22053232767182 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Regatta for Lake Champlain, Location(s), Lake Champlain) -> Lake Champlain (1071ms)
What is the location of Lake Champlain? Lake Champlain Maritime Museum 2.162805497583531 What 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)
What is the location of Lake Champlain? Champlain Valley 1.9771904816302293 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain Quadricentennial, Location(s), Champlain Valley) -> Champlain Valley (1140ms)
What is the location of Lake Champlain? Flynn Center for the Performing Arts 1.95446871830569 What 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)
What is the location of Lake Champlain? Lake Champlain Waterfront 1.8581122248117117 What 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)
What is the location of Lake Champlain? Niquette Bay State Park 1.7889567214349609 What 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)
What is the location of Lake Champlain? Round Pond Natural Area 1.7889567214349609 What 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)
What is the location of Lake Champlain? Eagle Mountain Natural Area 1.7889567214349609 What 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)
What is the location of Lake Champlain? Goodsell Ridge Fossil Preserves 1.7889567214349609 What 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)
What is the location of Lake Champlain? ECHO Lake Aquarium and Science Center 1.728770540754696 What 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)
What is the location of Lake Champlain? Invasion of Canada 0.018619800348620874 What 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)
What is the location of Lake Champlain? Small Boats of Lake Champlain -0.10133167862952996 What 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)
What is the location of Lake Champlain? Quadricentennial Storytelling Festival -0.22309286875861045 What 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)
What is the location of Lake Champlain? Shipwreck Tours -0.34692243407190726 What 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)
What is the location of Lake Champlain? Regatta for Lake Champlain -0.37122250633036913 What 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)
What is the location of Lake Champlain? Carleton's Raid -0.37122250633036913 What 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)
What is the location of Lake Champlain? D'Olobaratz Voyage Race Challenge -0.43119824581944455 What 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)
What is the location of Lake Champlain? Lake Champlain's First Navigators -0.454760143475867 What 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)
What is the location of Lake Champlain? When the French Were Here: International Symposium -0.46883059441803915 What 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)
What is the location of Lake Champlain? Lake Between: Native American Encampment -0.4751804547780999 What 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)
What is the location of Lake Champlain? Carleton's Prize -0.48878733415909076 What 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)
What is the location of Lake Champlain? The Phoenix Shipwreck -0.4896783364914105 What 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)
What is the location of Lake Champlain? Washington, D.C. -0.49946493363703026 What 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)
What is the location of Lake Champlain? Crab Island -0.5081233429150193 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Crab Island) -> Crab Island (3450ms)
What is the location of Lake Champlain? Four Brothers -0.5081233429150193 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Four Brothers) -> Four Brothers (3450ms)
What is the location of Lake Champlain? First Person: Stories from the Edge of the World -0.510872411804989 What 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)
What is the location of Lake Champlain? Lake Champlain Quadricentennial -0.5406768785852125 What 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)
What is the location of Lake Champlain? General Butler Shipwreck -0.6365605848768066 What 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)
What is the location of Lake Champlain? Crown Point Light -0.6365605848768066 What 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)
What is the location of Lake Champlain? Burlington Community Boathouse -0.6640494654759661 What 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)
What is the location of Lake Champlain? Champlain: The Lake Between World Premiere -0.6895501356995262 What 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)
What is the location of Lake Champlain? New York City -0.6990834497371721 What 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)
What is the location of Lake Champlain? Winooski River Sojourn -0.7080316744346216 What 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)
What is the location of Lake Champlain? Realities and Relationships of First Contacts -0.7210814987397385 What 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)
What is the location of Lake Champlain? The Lake We Share: Lake Champlain in History and Imagination -0.7210814987397385 What 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)
What is the location of Lake Champlain? Dameas Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Dameas Island) -> Dameas Island (3495ms)
What is the location of Lake Champlain? Three Sisters -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Three Sisters) -> Three Sisters (3478ms)
What is the location of Lake Champlain? Juniper Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Juniper Island) -> Juniper Island (3767ms)
What is the location of Lake Champlain? Stave Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Stave Island) -> Stave Island (3767ms)
What is the location of Lake Champlain? Knight Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Knight Island) -> Knight Island (3495ms)
What is the location of Lake Champlain? North America -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, contain, Lake Champlain) -> (North America, Contains, Lake Champlain) -> North America (3478ms)
What is the location of Lake Champlain? Young Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Young Island) -> Young Island (3495ms)
What is the location of Lake Champlain? Cloak Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Cloak Island) -> Cloak Island (3495ms)
What is the location of Lake Champlain? Burton Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Burton Island) -> Burton Island (3783ms)
What is the location of Lake Champlain? Garden Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Garden Island) -> Garden Island (3478ms)
What is the location of Lake Champlain? Valcour Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Valcour Island) -> Valcour Island (3495ms)
What is the location of Lake Champlain? Providence Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Providence Island) -> Providence Island (3495ms)
What is the location of Lake Champlain? Savage Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Savage Island) -> Savage Island (3478ms)
What is the location of Lake Champlain? Chittenden County -0.7839520478465258 What 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)
What is the location of Lake Champlain? 1609: The Other Side of History -0.8140910106384573 What 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)
What is the location of Lake Champlain? Indigenous Expressions -0.8350028261021079 What 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)
What is the location of Lake Champlain? Champlain II Shipwreck -0.8357410007041473 What 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)
What is the location of Lake Champlain? Coal Barge Shipwreck -0.8430545651759676 What 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)
What is the location of Lake Champlain? South Hero Island -0.8682278595940631 What 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)
What is the location of Lake Champlain? Stone Boat Shipwreck -0.8682278595940631 What 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)
What is the location of Lake Champlain? Colchester Reef Light -0.8682278595940631 What 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)
What is the location of Lake Champlain? Isle La Motte -0.8682278595940631 What 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)
What is the location of Lake Champlain? North Hero Island -0.8682278595940631 What 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)
What is the location of Lake Champlain? OJ Walker Shipwreck -0.8682278595940631 What 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)
What is the location of Lake Champlain? Knight Island State Park -0.8957167401932227 What 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)
What is the location of Lake Champlain? Burton Island State Park -0.8957167401932227 What 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)
What is the location of Lake Champlain? Woods Island State Park -0.8957167401932227 What 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)
What is the location of Lake Champlain? Celebrate Champlain Event Series -0.9192786378496451 What 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)
What is the location of Lake Champlain? Celebrate Southern Lake Champlain -0.9192786378496451 What 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)
What is the location of Lake Champlain? Burlington Bay Horse Ferry Shipwreck -0.9192786378496451 What 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)
What is the location of Lake Champlain? Art Fits Vermont -0.9396989491518781 What 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)
What is the location of Lake Champlain? Teddy Roosevelt Day -0.9396989491518781 What 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)
What is the location of Lake Champlain? Champlain Hudson Celebration Ride -0.9396989491518781 What 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)
What is the location of Lake Champlain? Great Champlain-Hudson Sojourn -0.9396989491518781 What 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)
What is the location of Lake Champlain? Boston -0.9429152892977372 What 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)
What is the location of Lake Champlain? Isle La Motte Flotilla -0.9575667215413317 What 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)
What is the location of Lake Champlain? Meet Explorer Samuel de Champlain -0.9575667215413317 What 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)
What is the location of Lake Champlain? Lake Champlain Basin Native American Lecture Series -0.9733324030614379 What 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)
What is the location of Lake Champlain? Quadricentennial Table Talks: Side Dishes for Thought -0.9873463421904214 What 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)
What is the location of Lake Champlain? LCLT Protected Landscape Tour: Goodsell Ridge -0.9873463421904214 What 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)
What is the location of Lake Champlain? Bike Champlain: Vermont to Quebec City Bike Tour -0.9998851298321432 What 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)
What is the location of Lake Champlain? Maritime museum -0.9999672771504402 What 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)
What is the location of Lake Champlain? LCLT Protected Landscape Tour: Eagle Mountain Natural Area -1.011170038709693 What 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)
What is the location of Lake Champlain? LCLT Protected Landscape Tour: Round Pond Natural Area -1.011170038709693 What 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)
What is the location of Lake Champlain? If Samuel Came to St. Albans During Sugarin' -1.011170038709693 What 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)
What is the location of Lake Champlain? LCLT Protected Landscape Tour: Niquette Bay State Park -1.011170038709693 What 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)
What is the location of Lake Champlain? Exploring Franklin County, Vermont the 21st Century Way -1.1667444130618858 What 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)
What is the location of Lake Champlain? Lake Champlain Maritime Festival 2009 -1.2276229083513672 What 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)
What is the location of Lake Champlain? Hen Island -1.361461540653071 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Hen Island) -> Hen Island (4281ms)
What is the location of Lake Champlain? Burlington -1.418429966216229 What 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)
What is the location of Lake Champlain? Rutland City -1.4899487788899526 What 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)
What is the location of Lake Champlain? Plattsburgh -1.56462083122085 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, tourist attraction, Lake Champlain) -> (Plattsburgh, Tourist attractions, Lake Champlain) -> Plattsburgh (4411ms)
What is the location of Lake Champlain? Vermont Quilt Festival 2009 -1.593181432568171 What 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)
What is the location of Lake Champlain? Experience Lake Champlain 2009 -1.7157033003815678 What 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)
What is the location of Lake Champlain? INDIECON 2009 -1.7157033003815678 What 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)
What is the location of Lake Champlain? Grand Isle -1.7649639120503713 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Grand Isle) -> Grand Isle (4451ms)
What is the location of Lake Champlain? North Hero -1.7649639120503713 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, North Hero) -> North Hero (4451ms)
What is the location of Lake Champlain? Burlington Discover Jazz Festival 2009 -1.7697570655933605 What 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)
What is the location of Lake Champlain? Burlington Irish Heritage Festival 2009 -1.7697570655933605 What 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)
What is the location of Lake Champlain? Vermont Youth Orchestra 2009 International Tour Kickoff Concert -1.8075947012416156 What 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)
What is the location of Lake Champlain? Central New York -2.2283185993366215 What 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)
What is the location of Lake Champlain? South Bay -2.4426407405343857 What 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)
What is the location of Lake Champlain? the Lake -2.4818499444030664 What 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)
What is the location of Lake Champlain? Vermont -2.782594854822041 What 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)
What is the location of Lake Champlain? the Vermont Fish -2.817584415785421 What 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)
What is the location of Lake Champlain? the Narrows -2.8966317421134495 What 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)
What is the location of Lake Champlain? Ir-o-coi-sia -2.905306742513825 What 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)
What is the location of Lake Champlain? The World Championship -3.1747423243985287 What 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)
What is the location of Lake Champlain? a time travel novel -3.1802284374829757 What 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)
What is the location of Lake Champlain? a series -3.227081079389212 What 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)
What is the location of Lake Champlain? cold fresh water -3.4045059617131077 What 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)
What is the location of Lake Champlain? a furious naval fight -3.493964955916806 What 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)
What is the location of Lake Champlain? a wonderful patchwork -3.552479260338389 What 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)
What is the location of Lake Champlain? flood levels -3.725194290517134 What 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)
What is the location of Lake Champlain? 2 stores -3.7949180595888583 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, contains, 2 stores) -> 2 stores (7009ms)
What is the location of Lake Champlain? Champ -3.9330754146868463 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, called, Champ) -> Champ (7100ms)
What is the location of Lake Champlain? the Adirondacks -4.0720790871279515 What 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)
What is the location of Lake Champlain? the event -4.411964576932867 What 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)
What is the location of Lake Champlain? The property -4.557489874560202 What 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)
What is the location of Lake Champlain? the classic Vermont backdrop -4.653405145329504 What 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)
What is the location of Lake Champlain? 1992 -4.9113247784004965 What 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)
What is the location of Lake Champlain? 1812 -4.969497161368953 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (1812, took place on, Lake Champlain) -> 1812 (7339ms)
What is the location of Lake Champlain? place -5.022768130877048 What 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)
What is the location of Lake Champlain? twelve -5.2582338357242975 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (the Lake Champlain area, contains, twelve) -> twelve (7392ms)
What is the location of Lake Champlain? links -5.792492833935675 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, sponsor, $x) -> (Lake Champlain Chocolates, sponsored, links) -> links (7555ms)
What is the location of Lake Champlain? the sixth Great Lake -6.133611953100442 What 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)
What is the location of Lake Champlain? the sun -6.145443415306451 What 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)
What is the location of Lake Champlain? VT Vermont -10.585134720399516 What 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)
What is the location of Lake Champlain? New York -10.992996455680638 What 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)
What is the location of Lake Champlain? North and South America -12.28642313847069 What 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)
What is the location of Lake Champlain? North-America -12.316468984075716 What 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)
What is the location of Lake Champlain? North & South America -12.499363170567543 What 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)
What is the location of Lake Champlain? Burlington VT -12.567783653488316 What 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)
What is the location of Lake Champlain? 1895 -12.777269840803617 What 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)
What is the location of Lake Champlain? the Steamship Champlain -12.91542113886215 What 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)
What is the location of Lake Champlain? Plattsburg -13.163418953019058 What 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)
What is the location of Lake Champlain? program -15.43981472625138 What 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)
What was Curveball's profession? TV Episode -3.8715505290040135 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Voiceprints; Curveball; Goosebumps Chat; Hawk, Type, TV Episode) -> TV Episode (8834ms)
What was Curveball's profession? EP -4.183480481576067 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball EP, Release type, EP) -> EP (8834ms)
What was Curveball's profession? Curveball: Spies, Lies, and the Con Man Who Caused a War -4.192601240423203 What 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)
What was Curveball's profession? Book Edition -4.489208318132069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball, Notable types, Book Edition) -> Book Edition (8854ms)
What was Curveball's profession? El Camino -4.727807369573149 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (El Camino, Instance Of, fitting curveball) -> El Camino (8188ms)
What was Curveball's profession? Business Operation -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Business Operation, Instance, Curveball Recordings) -> Business Operation (9005ms)
What was Curveball's profession? Canonical Version -4.732550164173659 What 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)
What was Curveball's profession? Musical Album -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball / Haiku, Notable types, Musical Album) -> Musical Album (9114ms)
What was Curveball's profession? Musical Release -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball EP, Notable types, Musical Release) -> Musical Release (9006ms)
What was Curveball's profession? Musical Recording -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball for the 21st Century, Type, Musical Recording) -> Musical Recording (8993ms)
What was Curveball's profession? Literature Subject -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Literature Subject) -> Literature Subject (8956ms)
What was Curveball's profession? Netflix Title -4.732550164173659 What 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)
What was Curveball's profession? Musical Artist -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball Abbey, Notable types, Musical Artist) -> Musical Artist (9006ms)
What was Curveball's profession? Award-Nominated Work -4.816825975921197 What 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)
What was Curveball's profession? Album -4.884319591390004 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball, Release type, Album) -> Album (9129ms)
What was Curveball's profession? Cataloged instance -5.020036483035389 What 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)
What was Curveball's profession? Release track -5.020036483035389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Dreamer, Type, Release track) -> Release track (9302ms)
What was Curveball's profession? Record label -5.020036483035389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Recordings, Notable types, Record label) -> Record label (9286ms)
What was Curveball's profession? Ahmed Chalabi -5.051700541170984 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (Curveball, was a creation of, Ahmed Chalabi) -> Ahmed Chalabi (6973ms)
What was Curveball's profession? Brad Lincoln -5.160743009776882 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Brad Lincoln, Instance Of, curveball specialist) -> Brad Lincoln (9345ms)
What was Curveball's profession? wholly reliable source -5.172167553224494 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, wholly reliable source) -> wholly reliable source (7558ms)
What was Curveball's profession? Rick Waits -5.205636965212024 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Rick Waits, Instance Of, curveball specialist) -> Rick Waits (9344ms)
What was Curveball's profession? sort of clever fellow -5.276877052170741 What 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)
What was Curveball's profession? technique of baseball pitching -5.276877052170741 What 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)
What was Curveball's profession? type of breaking ball -5.276877052170741 What 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)
What was Curveball's profession? off-speed pitch -5.30214902560001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, off-speed pitch) -> off-speed pitch (7558ms)
What was Curveball's profession? Strike two -5.320794312980254 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Strike two, Instance Of, nasty curveball) -> Strike two (9344ms)
What was Curveball's profession? Edwards breaking ball -5.325014836976386 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Edwards breaking ball, Instance Of, true curveball) -> Edwards breaking ball (9344ms)
What was Curveball's profession? trained chemical engineer -5.336350152336478 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, trained chemical engineer) -> trained chemical engineer (7558ms)
What was Curveball's profession? American League -5.362957193780473 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (American League, Instance Of, curveball league) -> American League (9344ms)
What was Curveball's profession? casual puzzle game -5.385816158268836 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, casual puzzle game) -> casual puzzle game (9380ms)
What was Curveball's profession? Eldon Alexander -5.387883050303928 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Eldon Alexander, Instance Of, curveball) -> Eldon Alexander (9380ms)
What was Curveball's profession? hard biting sweeper -5.397339878124567 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, hard biting sweeper) -> hard biting sweeper (9380ms)
What was Curveball's profession? asset of the German intelligence service -5.406460636971703 What 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)
What was Curveball's profession? Anorthosis Famagusta -5.407851149215615 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Anorthosis Famagusta, Instance Of, massive curveball) -> Anorthosis Famagusta (9380ms)
What was Curveball's profession? Kosher Lutherans -5.407851149215615 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Kosher Lutherans, Instance Of, curveball comedy) -> Kosher Lutherans (9380ms)
What was Curveball's profession? Baghdad taxi driver -5.411036454449529 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Baghdad taxi driver) -> Baghdad taxi driver (9397ms)
What was Curveball's profession? Sony Playstation Phone -5.422059711109915 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sony Playstation Phone, Instance Of, real curveball) -> Sony Playstation Phone (9397ms)
What was Curveball's profession? type of pitch -5.422911702032043 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, type of pitch) -> type of pitch (9397ms)
What was Curveball's profession? Rabbit Snare -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Rabbit Snare, Instance Of, curveball) -> Rabbit Snare (9415ms)
What was Curveball's profession? Renaissance Italy -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Renaissance Italy, Instance Of, curveball) -> Renaissance Italy (9397ms)
What was Curveball's profession? Memphis Blues -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Memphis Blues, Instance Of, curveball) -> Memphis Blues (9415ms)
What was Curveball's profession? Hanging Curve -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hanging Curve, Instance Of, curveball) -> Hanging Curve (9415ms)
What was Curveball's profession? Uncle Charlie -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Uncle Charlie, Instance Of, curveball) -> Uncle Charlie (9397ms)
What was Curveball's profession? advanced pitching technique -5.438112246680874 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced pitching technique) -> advanced pitching technique (9415ms)
What was Curveball's profession? pitcher's secret weapon -5.447233005528011 What 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)
What was Curveball's profession? McPherson's breaking ball -5.447233005528011 What 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)
What was Curveball's profession? Jules Thin Crust -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Jules Thin Crust, Instance Of, nice curveball) -> Jules Thin Crust (9415ms)
What was Curveball's profession? fun and addictive online game -5.447233005528011 What 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)
What was Curveball's profession? rapid fire quiz show -5.447233005528011 What 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)
What was Curveball's profession? introducing Leonardo DaVinci -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (introducing Leonardo DaVinci, Instance Of, curveballs) -> introducing Leonardo DaVinci (9436ms)
What was Curveball's profession? Film -5.453819773805181 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Joe Torre: Curveballs Along the Way, Type, Film) -> Film (9620ms)
What was Curveball's profession? Book -5.453819773805181 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Book, Instance, Curveballs) -> Book (9620ms)
What was Curveball's profession? SECRET INVASION -5.4699897018353845 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (SECRET INVASION, Instance Of, curveball) -> SECRET INVASION (9735ms)
What was Curveball's profession? source of information -5.4775346982157505 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALL, Instance Of, source of information) -> source of information (9735ms)
What was Curveball's profession? completely unreliable informant -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, completely unreliable informant) -> completely unreliable informant (9735ms)
What was Curveball's profession? strategy quiz format -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, strategy quiz format) -> strategy quiz format (9877ms)
What was Curveball's profession? highly regarded informant -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, highly regarded informant) -> highly regarded informant (9735ms)
What was Curveball's profession? very hittable pitch -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, very hittable pitch) -> very hittable pitch (9735ms)
What was Curveball's profession? two -5.485314891669929 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be an, $x) -> (Curveballs, is an outlet for, two) -> two (9877ms)
What was Curveball's profession? addictive futurist pong remake -5.4921269609631524 What 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)
What was Curveball's profession? coddled, lazy, underachieving college student -5.4921269609631524 What 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)
What was Curveball's profession? senior Iraqi engineer -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, senior Iraqi engineer) -> senior Iraqi engineer (9904ms)
What was Curveball's profession? minimal yet addicting game -5.4921269609631524 What 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)
What was Curveball's profession? Thompson's breaking ball -5.4921269609631524 What 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)
What was Curveball's profession? Elijah coming in the personage of John -5.4921269609631524 What 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)
What was Curveball's profession? Empress of the Dark Spaces -5.4921269609631524 What 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)
What was Curveball's profession? benefit back-payments -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (benefit back-payments, Instance Of, curveballs) -> benefit back-payments (9904ms)
What was Curveball's profession? ball thrown with a ton of topspin -5.4921269609631524 What 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)
What was Curveball's profession? Minny picking Flynn -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Minny picking Flynn, Instance Of, real curveball) -> Minny picking Flynn (9953ms)
What was Curveball's profession? sort of virtual ping pong ball -5.4921269609631524 What 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)
What was Curveball's profession? modification of the classic old school arcade game Pong -5.4921269609631524 What 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)
What was Curveball's profession? Iraqi named Rafid Ahmed Alwan al-Janabi -5.4921269609631524 What 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)
What was Curveball's profession? Gravity Ball HD -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Gravity Ball HD, Instance Of, literal curveball) -> Gravity Ball HD (9929ms)
What was Curveball's profession? free Kids game , Curveballs -5.4921269609631524 What 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)
What was Curveball's profession? Dre & Snoop -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Dre & Snoop, Instance Of, huge curveball) -> Dre & Snoop (9953ms)
What was Curveball's profession? Stephens out pitch -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Stephens out pitch, Instance Of, sharp curveball) -> Stephens out pitch (9904ms)
What was Curveball's profession? Yuko and Hiro-amazing-it -5.4921269609631524 What 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)
What was Curveball's profession? American Tabloid by James Ellroy -5.4921269609631524 What 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)
What was Curveball's profession? GERMAN intelligence asset -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, GERMAN intelligence asset) -> GERMAN intelligence asset (9904ms)
What was Curveball's profession? pretty nifty Web game -5.4921269609631524 What 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)
What was Curveball's profession? very fast read -5.503570033135016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, very fast read) -> very fast read (9979ms)
What was Curveball's profession? breaking pitch -5.506399805087683 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, breaking pitch) -> breaking pitch (9979ms)
What was Curveball's profession? Organization -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Recordings, Notable types, Organization) -> Organization (10071ms)
What was Curveball's profession? Person -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Person) -> Person (10050ms)
What was Curveball's profession? Image -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Image, Instance, Curveball topspin) -> Image (10071ms)
What was Curveball's profession? Content -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (12-6 Curveball, Notable types, Content) -> Content (10050ms)
What was Curveball's profession? Topic -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Topic, Instance, Curveballs) -> Topic (10050ms)
What was Curveball's profession? crossword puzzle answer -5.510569892174624 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALLS, Instance Of, crossword puzzle answer) -> crossword puzzle answer (10072ms)
What was Curveball's profession? Marvel LeFay -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Marvel LeFay, Instance Of, curveball) -> Marvel LeFay (10072ms)
What was Curveball's profession? Sean Marshall s next pitch -5.517052817486607 What 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)
What was Curveball's profession? Acclaimed novelist Andrew O?Hagan's latest -5.517052817486607 What 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)
What was Curveball's profession? Hanatarou and Izuru -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hanatarou and Izuru, Instance Of, curveball) -> Hanatarou and Izuru (10092ms)
What was Curveball's profession? Ramos on Wolverine -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Ramos on Wolverine, Instance Of, curveball) -> Ramos on Wolverine (10092ms)
What was Curveball's profession? Last year's Evil Urges -5.517052817486607 What 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)
What was Curveball's profession? Last week's -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Last week's, Instance Of, curveball) -> Last week's (10072ms)
What was Curveball's profession? Pedro's setback'' -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Pedro's setback'', Instance Of, curveball) -> Pedro's setback'' (10092ms)
What was Curveball's profession? elite level movement pitch -5.519545403138952 What 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)
What was Curveball's profession? friend of mine -5.522694226035899 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, friend of mine) -> friend of mine (10275ms)
What was Curveball's profession? pitch during live batting practice -5.525029091083832 What 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)
What was Curveball's profession? Dies Irae -5.533254623001152 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Dies Irae, Instance Of, complete curveball) -> Dies Irae (10275ms)
What was Curveball's profession? Sunrise/sunset -5.533254623001152 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sunrise/sunset, Instance Of, complete curveball) -> Sunrise/sunset (10275ms)
What was Curveball's profession? con artist -5.548362022341165 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, con artist) -> con artist (10275ms)
What was Curveball's profession? free online flash arcade game -5.548564918186212 What 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)
What was Curveball's profession? free online flash game -5.554734252817729 What 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)
What was Curveball's profession? Iraqi exile -5.62453752568529 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi exile) -> Iraqi exile (10312ms)
What was Curveball's profession? Iraqi informant -5.695337468077344 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi informant) -> Iraqi informant (10312ms)
What was Curveball's profession? hard pitch -5.703934187989367 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, hard pitch) -> hard pitch (10312ms)
What was Curveball's profession? pitch type -5.724846803464216 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, pitch type) -> pitch type (10380ms)
What was Curveball's profession? Published Work -5.7460488872674205 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Published Work, Instance, Curveball) -> Published Work (10471ms)
What was Curveball's profession? Creative Work -5.7460488872674205 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Creative Work) -> Creative Work (10491ms)
What was Curveball's profession? Written Work -5.7460488872674205 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveballs, Notable types, Written Work) -> Written Work (10491ms)
What was Curveball's profession? 3D version of pong -5.748906510642813 What 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)
What was Curveball's profession? advanced pitch -5.75986326002841 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced pitch) -> advanced pitch (10491ms)
What was Curveball's profession? specialty pitch -5.768214019515447 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, specialty pitch) -> specialty pitch (10491ms)
What was Curveball's profession? fun game -5.78185878742751 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun game) -> fun game (10514ms)
What was Curveball's profession? popular pitch -5.796531683546233 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, popular pitch) -> popular pitch (10514ms)
What was Curveball's profession? movement pitch -5.796531683546233 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, movement pitch) -> movement pitch (10514ms)
What was Curveball's profession? unpredictable pitch -5.804401921981859 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, unpredictable pitch) -> unpredictable pitch (10514ms)
What was Curveball's profession? reliable source -5.81729575237763 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, reliable source) -> reliable source (10514ms)
What was Curveball's profession? standard pitch -5.831820364157659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, standard pitch) -> standard pitch (10514ms)
What was Curveball's profession? fascinating pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, fascinating pitch) -> fascinating pitch (10535ms)
What was Curveball's profession? gimmicky pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, gimmicky pitch) -> gimmicky pitch (10555ms)
What was Curveball's profession? basic pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, basic pitch) -> basic pitch (10535ms)
What was Curveball's profession? ping pong -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, ping pong) -> ping pong (10555ms)
What was Curveball's profession? average offering -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, average offering) -> average offering (10535ms)
What was Curveball's profession? secondary stuff -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, secondary stuff) -> secondary stuff (10555ms)
What was Curveball's profession? outstanding pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, outstanding pitch) -> outstanding pitch (10555ms)
What was Curveball's profession? humping curveball -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (humping curveball, Instance Of, hittable curveball) -> humping curveball (10535ms)
What was Curveball's profession? meaningless codename -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, meaningless codename) -> meaningless codename (10555ms)
What was Curveball's profession? downright swindler -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, downright swindler) -> downright swindler (10535ms)
What was Curveball's profession? shockwave game -5.863005098504901 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, shockwave game) -> shockwave game (10555ms)
What was Curveball's profession? drunken fool -5.865389310228519 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, drunken fool) -> drunken fool (10575ms)
What was Curveball's profession? serious weapon -5.865746942477341 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, serious weapon) -> serious weapon (10575ms)
What was Curveball's profession? drunken liar -5.865746942477341 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, drunken liar) -> drunken liar (10575ms)
What was Curveball's profession? clone trooper -5.867351924105601 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, clone trooper) -> clone trooper (10575ms)
What was Curveball's profession? uplifting film -5.87152704509238 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, uplifting film) -> uplifting film (10575ms)
What was Curveball's profession? credible source -5.871639270170014 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, credible source) -> credible source (10575ms)
What was Curveball's profession? play game -5.8737863776131825 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, play game) -> play game (10594ms)
What was Curveball's profession? good spotter -5.873972475620361 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, good spotter) -> good spotter (10594ms)
What was Curveball's profession? hanging curveball -5.874221733940455 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (hanging curveball, Instance Of, curveball) -> hanging curveball (10594ms)
What was Curveball's profession? true screwball -5.874221733940455 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (true screwball, Instance Of, curveball) -> true screwball (10594ms)
What was Curveball's profession? wonderful program -5.875061487868366 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, wonderful program) -> wonderful program (10594ms)
What was Curveball's profession? chemical engineer -5.8764522821261425 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, chemical engineer) -> chemical engineer (10594ms)
What was Curveball's profession? advanced idea -5.876714319592802 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced idea) -> advanced idea (10614ms)
What was Curveball's profession? conventional pitch -5.876714319592802 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, conventional pitch) -> conventional pitch (10614ms)
What was Curveball's profession? fun, 3d game -5.88468442174389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun, 3d game) -> fun, 3d game (10614ms)
What was Curveball's profession? true 12-6 pitch -5.88468442174389 What 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)
What was Curveball's profession? 3D version of the classic arcade game Pong -5.88468442174389 What 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)
What was Curveball's profession? 3D style pong game -5.88468442174389 What 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)
What was Curveball's profession? Funk #49 -5.88468442174389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Funk #49, Instance Of, fiery curveball) -> Funk #49 (10614ms)
What was Curveball's profession? funbrain game -5.897999688241244 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, funbrain game) -> funbrain game (10633ms)
What was Curveball's profession? flash game -5.901659446569189 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, flash game) -> flash game (10633ms)
What was Curveball's profession? Sony Tablet S2 -5.909610278267344 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sony Tablet S2, Instance Of, curveball) -> Sony Tablet S2 (10633ms)
What was Curveball's profession? a lot -5.913433383091028 What 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)
What was Curveball's profession? the Iraqi defector -5.989835328639058 What 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)
What was Curveball's profession? clever fellow -6.00723753356433 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (Curveball, was a sort of, clever fellow) -> clever fellow (6973ms)
What was Curveball's profession? Elva -6.084226803411994 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Elva, Instance Of, scary curveball) -> Elva (10966ms)
What was Curveball's profession? Hughes -6.138951356494811 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hughes, Instance Of, curveball pitcher) -> Hughes (10966ms)
What was Curveball's profession? Mond -6.154046615370591 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Mond, Instance Of, curveball) -> Mond (10984ms)
What was Curveball's profession? Sima -6.1702484208851365 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sima, Instance Of, curveball specialist) -> Sima (10984ms)
What was Curveball's profession? Blyleven -6.18007901853281 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Blyleven, Instance Of, curveball specialist) -> Blyleven (10984ms)
What was Curveball's profession? Stovall -6.18007901853281 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Stovall, Instance Of, curveball specialist) -> Stovall (10984ms)
What was Curveball's profession? Naranjo -6.18007901853281 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Naranjo, Instance Of, curveball specialist) -> Naranjo (10984ms)
What was Curveball's profession? Talbain -6.183845311929953 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Talbain, Instance Of, nice curveball) -> Talbain (10984ms)
What was Curveball's profession? easy pitch -6.191622430385394 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, is a cheap 'n, easy pitch) -> easy pitch (6973ms)
What was Curveball's profession? Tacktick -6.208771168453407 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Tacktick, Instance Of, curveball) -> Tacktick (11001ms)
What was Curveball's profession? Horrible -6.208771168453407 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Horrible, Instance Of, curveball) -> Horrible (11001ms)
What was Curveball's profession? Wonder Boys -6.376455916874234 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Wonder Boys, Instance Of, amazing curveball) -> Wonder Boys (11946ms)
What was Curveball's profession? Bedard -6.471943293026003 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, is a great pitch for, Bedard) -> Bedard (6973ms)
What was Curveball's profession? Weaver -6.479901076040463 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, had been a weapon for, Weaver) -> Weaver (6973ms)
What was Curveball's profession? reflex and timing -6.60816218955526 What 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)
What was Curveball's profession? Moore -6.622891655761129 What 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)
What was Curveball's profession? Ozick?s most characteristic sentences -6.627475378290349 What 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)
What was Curveball's profession? Smashback -6.770624590230393 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Smashback, is like taking, the famous curveball game) -> Smashback (7026ms)
What was Curveball's profession? Instructors -7.269678605665907 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Instructors, may likely like, the curveball decision) -> Instructors (7026ms)
What was Curveball's profession? George -7.3324566833804825 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (George, Will More like, an incredibly slow curveball) -> George (7026ms)
On what date was the surgery performed? July 2 -4.235619055848602 On 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)
On what date was the surgery performed? July 25 -4.320820170493459 On 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)
On what date was the surgery performed? October 2007 -4.329503804059328 On 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)
On what date was the surgery performed? April 3 -4.354027423560485 On 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)
On what date was the surgery performed? New York -4.561224293426866 On 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)
On what date was the surgery performed? the Receiving Hospital -4.592756363862872 On 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)
On what date was the surgery performed? Las Playas -4.620867676885711 On 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)
On what date was the surgery performed? the 5th -4.649737286729568 On 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)
On what date was the surgery performed? children -4.651566902321132 On 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)
On what date was the surgery performed? 1/21/99 -4.656875451470187 On 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)
On what date was the surgery performed? each eye -4.6746798599392045 On 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)
On what date was the surgery performed? an adult -4.70489470769927 On 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)
On what date was the surgery performed? five ? -4.728982517510865 On 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)
On what date was the surgery performed? patients -4.733509691090944 On 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)
On what date was the surgery performed? a man -4.779748545734618 On 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)
On what date was the surgery performed? general anesthesia -4.831174026610431 On 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)
On what date was the surgery performed? a way -4.831442252423116 On 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)
On what date was the surgery performed? infants -4.854117654409505 On 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)
On what date was the surgery performed? a Thursday -4.906140177320253 On 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)
On what date was the surgery performed? obese people -4.909108647627212 On 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)
On what date was the surgery performed? an outpatient basis -4.9114157492564505 On 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)
On what date was the surgery performed? adults -4.9309479079644145 On 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)
On what date was the surgery performed? a beating heart -4.969345621515667 On 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)
On what date was the surgery performed? outpatient facilities -4.9693938909779085 On 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)
On what date was the surgery performed? the TV screen -4.97317236452968 On 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)
On what date was the surgery performed? July -4.981637331742794 On 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)
On what date was the surgery performed? an outpatient -4.994968024253479 On 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)
On what date was the surgery performed? any kind -4.996328349682592 On 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)
On what date was the surgery performed? Saturdays and Sundays -4.9989809615881775 On 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)
On what date was the surgery performed? a timely basis -5.003401946295955 On 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)
On what date was the surgery performed? Vail -5.0072790535883644 On 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)
On what date was the surgery performed? an ambulatory basis -5.012243915711511 On 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)
On what date was the surgery performed? under one hundred -5.013527278179051 On 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)
On what date was the surgery performed? children and adults -5.025969205270261 On 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)
On what date was the surgery performed? May 5-6 -5.027275295339332 On 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)
On what date was the surgery performed? Friday Dec 16 -5.03169628004711 On 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)
On what date was the surgery performed? either hospitalized patients -5.0432609450106645 On 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)
On what date was the surgery performed? younger patients -5.047361578765402 On 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)
On what date was the surgery performed? an out-patient surgery setting -5.064813539176679 On 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)
On what date was the surgery performed? an emergency situation -5.070766696939347 On 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)
On what date was the surgery performed? an inpatient or outpatient basis -5.072590147216974 On 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)
On what date was the surgery performed? July 11 , 2007 -5.079413326258893 On 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)
On what date was the surgery performed? January 27 , 2004 -5.085210484678156 On 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)
On what date was the surgery performed? Sept. 1 , 2005 -5.091399842188127 On 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)
On what date was the surgery performed? individuals -5.0985435466430165 On 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)
On what date was the surgery performed? July 1 , 1893 -5.115540226647829 On 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)
On what date was the surgery performed? August 8th , 2006 -5.115540226647829 On 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)
On what date was the surgery performed? an in?patient or out?patient basis -5.122169786233177 On 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)
On what date was the surgery performed? July 11 , 1953 -5.127095403516097 On 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)
On what date was the surgery performed? Dr. U -5.150637653997986 On 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)
On what date was the surgery performed? January 7 , 2011 -5.155454305394508 On 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)
On what date was the surgery performed? a cold operating table -5.159875290102286 On 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)
On what date was the surgery performed? July 22 , 1946 -5.161643715606774 On 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)
On what date was the surgery performed? Dr. Ackerman -5.166061232716515 On 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)
On what date was the surgery performed? Tuesday -5.189967134220136 On 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)
On what date was the surgery performed? Monday -5.1906496830289734 On 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)
On what date was the surgery performed? Saturday -5.201716897869276 On 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)
On what date was the surgery performed? an out patient basis -5.207052787486642 On 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)
On what date was the surgery performed? two steps -5.207618520591004 On 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)
On what date was the surgery performed? June 2008 -5.219997288313241 On 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)
On what date was the surgery performed? an ambulatory surgery center -5.252911414466219 On 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)
On what date was the surgery performed? 60 Galveston area patients -5.253031060068909 On 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)
On what date was the surgery performed? two different ways -5.270576476121224 On 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)
On what date was the surgery performed? the Receiving Sanatorium -5.272130729595852 On 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)
On what date was the surgery performed? 2 hours -5.282974173721863 On 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)
On what date was the surgery performed? a multidisciplinary program -5.30531534971035 On 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)
On what date was the surgery performed? March 2007 -5.3058987155345925 On 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)
On what date was the surgery performed? a private hospital -5.313921066676308 On 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)
On what date was the surgery performed? the Receiving Medical centre -5.324531461596351 On 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)
On what date was the surgery performed? a surgical facility -5.338850286443123 On 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)
On what date was the surgery performed? an outpatient facility -5.3592514053070754 On 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)
On what date was the surgery performed? a dedicated surgery center -5.36190401721266 On 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)
On what date was the surgery performed? epileptics -5.3663163294225935 On 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)
On what date was the surgery performed? site -5.39522781415852 On 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)
On what date was the surgery performed? bodies -5.427386577179809 On 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)
On what date was the surgery performed? victims -5.440588935756015 On 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)
On what date was the surgery performed? Dallas -5.609740336764148 On 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)
On what date was the surgery performed? June -5.620009207765217 On 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)
On what date was the surgery performed? a doctor -5.622655124643066 On 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)
On what date was the surgery performed? January -5.626208485650583 On 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)
On what date was the surgery performed? Europe -5.638979505165822 On 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)
On what date was the surgery performed? February -5.638979505165822 On 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)
On what date was the surgery performed? women -5.645878283994429 On 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)
On what date was the surgery performed? Baltimore -5.646609604514534 On 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)
On what date was the surgery performed? a facility -5.648490290587594 On 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)
On what date was the surgery performed? August -5.654959586619701 On 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)
On what date was the surgery performed? April -5.681485547568663 On 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)
On what date was the surgery performed? a hospital -5.746015435384597 On 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)
On what date was the surgery performed? a matter -5.755677023073993 On 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)
On what date was the surgery performed? February 2003 -5.847833028027082 On 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)
On what date was the surgery performed? an outpatient setting -5.931995023822161 On 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)
On what date was the surgery performed? conjunction -5.968075806818227 On 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)
On what date was the surgery performed? different days -6.150523101167668 On 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)
On what date was the surgery performed? a Przewalski horse -6.207822709079628 On 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)
On what date was the surgery performed? Charlotte -6.233965072262142 On 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)
On what date was the surgery performed? the Plaintiff -6.2492739104926995 On 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)
On what date was the surgery performed? Los Angeles -6.2717658992419665 On 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)
On what date was the surgery performed? the US. -6.355105071521377 On 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)
On what date was the surgery performed? two stages -6.423883239596278 On 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)
On what date was the surgery performed? the correct part -6.438412578386908 On 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)
On what date was the surgery performed? premenopausal women -6.455942418984019 On 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)
On what date was the surgery performed? the eyes one -6.466607176620677 On 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)
On what date was the surgery performed? an office -6.471579117218731 On 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)
On what date was the surgery performed? May 2005 -6.472057763525075 On 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)
On what date was the surgery performed? Saturday morning -6.4737222584230905 On 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)
On what date was the surgery performed? the right shoulder -6.4810430297993715 On 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)
On what date was the surgery performed? operating rooms -6.493812277577042 On 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)
On what date was the surgery performed? a Saturday -6.507714015076123 On 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)
On what date was the surgery performed? three steps -6.514213396440994 On 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)
On what date was the surgery performed? an outpatient clinic -6.517078450047267 On 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)
On what date was the surgery performed? an operating room -6.517078450047267 On 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)
On what date was the surgery performed? last Tuesday -6.533338483901268 On 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)
On what date was the surgery performed? severe cases -6.53967123997975 On 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)
On what date was the surgery performed? the type -6.539703080277384 On 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)
On what date was the surgery performed? the first day -6.541613272119224 On 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)
On what date was the surgery performed? a hospital or a surgery center -6.599545091844746 On 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)
On what date was the surgery performed? the rich and famous -6.606628533263354 On 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)
On what date was the surgery performed? order -6.62201145501747 On 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)
On what date was the surgery performed? the United States -6.623069281487579 On 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)
On what date was the surgery performed? Caracas Venezuela -6.636851765269561 On 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)
On what date was the surgery performed? a hospital or surgery center -6.638686401117633 On 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)
On what date was the surgery performed? the wrong part -6.66106609374253 On 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)
On what date was the surgery performed? the wrong area -6.674329047865864 On 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)
On what date was the surgery performed? the right knee -6.706224748050956 On 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)
On what date was the surgery performed? less than one hour -6.7093720940869 On 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)
On what date was the surgery performed? the hospital -6.73969366222442 On 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)
On what date was the surgery performed? the rest -6.819448465579269 On 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)
On what date was the surgery performed? the NHS. -6.83832050271756 On 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)
On what date was the surgery performed? the Hospital -6.8491542488167205 On 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)
On what date was the surgery performed? Philadelphia -6.888173246864035 On 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)
On what date was the surgery performed? October -6.901650322595405 On 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)
On what date was the surgery performed? Costa Rica -6.904318436502427 On 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)
On what date was the surgery performed? round-the-clock -6.914233856186815 On 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)
On what date was the surgery performed? the 23rd -6.921012627683247 On 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)
On what date was the surgery performed? Louisville -6.922051441459357 On 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)
On what date was the surgery performed? the wrong place -6.93424053298777 On 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)
On what date was the surgery performed? a statement -6.9427846008492455 On 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)
On what date was the surgery performed? second time -6.959664051718411 On 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)
On what date was the surgery performed? Cleveland -6.9679778225709335 On 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)
On what date was the surgery performed? the same hospital -6.970000715145291 On 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)
On what date was the surgery performed? one part -6.981059039393079 On 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)
On what date was the surgery performed? Friday morning -6.992235507322828 On 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)
On what date was the surgery performed? teenagers -7.016080142330992 On 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)
On what date was the surgery performed? the patients -7.024103763734828 On 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)
On what date was the surgery performed? the intensive care unit -7.024135578436061 On 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)
On what date was the surgery performed? one layer -7.025344955946903 On 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)
On what date was the surgery performed? a Monday -7.068151322784059 On 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)
On what date was the surgery performed? the upper or lower lids -7.073770294927698 On 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)
On what date was the surgery performed? various muscles -7.080799169737491 On 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)
On what date was the surgery performed? the surgeons office -7.094871386462802 On 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)
On what date was the surgery performed? one eye -7.100437180554165 On 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)
On what date was the surgery performed? worry -7.103910527904676 On 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)
On what date was the surgery performed? men -7.1045286032240575 On 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)
On what date was the surgery performed? Nathan -7.1089490015335475 On 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)
On what date was the surgery performed? one year -7.120838299418117 On 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)
On what date was the surgery performed? ears -7.128860309845061 On 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)
On what date was the surgery performed? three days -7.134896727344394 On 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)
On what date was the surgery performed? a later hospital admission -7.151679576426134 On 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)
On what date was the surgery performed? two weeks -7.160627214490412 On 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)
On what date was the surgery performed? two days -7.160627214490412 On 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)
On what date was the surgery performed? 3 months -7.160627214490412 On 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)
On what date was the surgery performed? three hours -7.162145372684274 On 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)
On what date was the surgery performed? themapped locations -7.168824786430201 On 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)
On what date was the surgery performed? Arturo Bonilla -7.16946759783988 On 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)
On what date was the surgery performed? a team -7.182711255977813 On 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)
On what date was the surgery performed? three months -7.186838340001492 On 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)
On what date was the surgery performed? last month -7.186838340001492 On 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)
On what date was the surgery performed? 7-14-2000 -7.1871445731084895 On 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)
On what date was the surgery performed? detail -7.189307402722594 On 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)
On what date was the surgery performed? last June -7.191574107444858 On 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)
On what date was the surgery performed? Tuesday night -7.1933425329493454 On 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)
On what date was the surgery performed? 09-05-2000 -7.203060139137408 On 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)
On what date was the surgery performed? outpatient -7.211782691800423 On 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)
On what date was the surgery performed? four to six months -7.226495217794719 On 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)
On what date was the surgery performed? Wednesday afternoon -7.227826224210471 On 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)
On what date was the surgery performed? the 3rd day -7.2339396176489865 On 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)
On what date was the surgery performed? an inpatient basis -7.25332741385733 On 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)
On what date was the surgery performed? a day case -7.256044541187876 On 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)
On what date was the surgery performed? yesterday -7.257368712589686 On 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)
On what date was the surgery performed? around 50,000 people -7.260465525895653 On 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)
On what date was the surgery performed? 500,000 Americans -7.262204965064449 On 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)
On what date was the surgery performed? one side -7.2737285327212815 On 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)
On what date was the surgery performed? 48 hours -7.276169484451048 On 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)
On what date was the surgery performed? one side first -7.282666732177823 On 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)
On what date was the surgery performed? 2005 -7.287966793433891 On 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)
On what date was the surgery performed? 1st October 2010 -7.289644046047905 On 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)
On what date was the surgery performed? Christmas Eve 2008 -7.2905282851512965 On 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)
On what date was the surgery performed? the patient -7.2909259256093275 On 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)
On what date was the surgery performed? 6/30/2006 -7.292296657953489 On 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)
On what date was the surgery performed? unborn children -7.294076355458268 On 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)
On what date was the surgery performed? lymph node cancer types -7.298929291704617 On 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)
On what date was the surgery performed? the second eye -7.304846340861211 On 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)
On what date was the surgery performed? a hospital setting -7.306764447705707 On 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)
On what date was the surgery performed? a single step -7.309498403756435 On 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)
On what date was the surgery performed? 1974 -7.310528536893039 On 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)
On what date was the surgery performed? an out-patient basis -7.3182715789799655 On 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)
On what date was the surgery performed? Wednesday or Thursday -7.335592719457495 On 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)
On what date was the surgery performed? an urgent basis -7.342274064277855 On 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)
On what date was the surgery performed? November 9 , 2004 -7.343701338416409 On 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)
On what date was the surgery performed? Mr. Siegel -7.345118131851941 On 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)
On what date was the surgery performed? one day -7.345514215370157 On 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)
On what date was the surgery performed? 45-year-old Abida Parveen -7.350723834602702 On 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)
On what date was the surgery performed? a bloodless field -7.351230956297884 On 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)
On what date was the surgery performed? a day-care basis -7.364314419689488 On 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)
On what date was the surgery performed? an hour -7.365208938857799 On 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)
On what date was the surgery performed? a outpatient basis -7.370011842591365 On 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)
On what date was the surgery performed? an in-patient or outpatient basis -7.370788852699605 On 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)
On what date was the surgery performed? earth -7.389987132631847 On 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)
On what date was the surgery performed? a gallbladder disease -7.404597969952231 On 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)
On what date was the surgery performed? one time -7.409340470145366 On 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)
On what date was the surgery performed? the UK. -7.4143019974162785 On 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)
On what date was the surgery performed? private clinics -7.416620619368361 On 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)
On what date was the surgery performed? infrabony defects -7.417372098072543 On 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)
On what date was the surgery performed? three stages -7.421469023259271 On 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)
On what date was the surgery performed? October 10 , 2000 -7.4257808918198345 On 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)
On what date was the surgery performed? an emergency basis -7.426310694400413 On 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)
On what date was the surgery performed? two ways -7.427545797023992 On 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)
On what date was the surgery performed? a surgery center -7.4318474623929 On 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)
On what date was the surgery performed? less time -7.4460625680442085 On 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)
On what date was the surgery performed? the ICU. -7.451354577940113 On 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)
On what date was the surgery performed? cancer patients -7.456515385436138 On 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)
On what date was the surgery performed? a well-equipped facility or hospital -7.469488029984651 On 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)
On what date was the surgery performed? mass lesions -7.471546765063959 On 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)
On what date was the surgery performed? March 13 , 2009 -7.473587393277288 On 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)
On what date was the surgery performed? older patients -7.4762344148277045 On 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)
On what date was the surgery performed? a safe and humane manner -7.47751749421959 On 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)
On what date was the surgery performed? August time -7.480224069111742 On 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)
On what date was the surgery performed? June 2001 -7.480597666219621 On 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)
On what date was the surgery performed? July 2003 -7.492976433941857 On 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)
On what date was the surgery performed? the ACHD centre -7.493742758095866 On 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)
On what date was the surgery performed? February 2009 -7.495629045847442 On 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)
On what date was the surgery performed? various disciplines -7.497976639230787 On 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)
On what date was the surgery performed? Boston -7.500172687998405 On 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)
On what date was the surgery performed? 1995 and 1996 -7.501068456523106 On 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)
On what date was the surgery performed? an office setting -7.504605254829787 On 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)
On what date was the surgery performed? fewer and smaller warts -7.505203093135657 On 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)
On what date was the surgery performed? four minutes -7.5121139628395746 On 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)
On what date was the surgery performed? Virgina -7.512397982362028 On 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)
On what date was the surgery performed? any community hospital -7.5138430199304995 On 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)
On what date was the surgery performed? Wednesday -7.519790129679063 On 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)
On what date was the surgery performed? 24 hours -7.521199951171458 On 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)
On what date was the surgery performed? 1-3 hours -7.5231127845148675 On 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)
On what date was the surgery performed? Mr. Oden -7.523357646494236 On 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)
On what date was the surgery performed? a surgery clinic -7.529362790274261 On 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)
On what date was the surgery performed? 22 and 23 June 2008 -7.529547004004207 On 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)
On what date was the surgery performed? partnership -7.530114274765936 On 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)
On what date was the surgery performed? patients 16 and younger -7.53461005631495 On 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)
On what date was the surgery performed? a high tibia opening wedge osteotomy -7.538738592021096 On 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)
On what date was the surgery performed? a few years -7.539465769632521 On 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)
On what date was the surgery performed? a hemorrhage-free environment -7.539754694461 On 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)
On what date was the surgery performed? darkness -7.548016474824911 On 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)
On what date was the surgery performed? left eye utilizing ladarvision -7.548176375850642 On 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)
On what date was the surgery performed? January 2011 -7.550583580114349 On 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)
On what date was the surgery performed? the IAS Surgery Center -7.5524165210437975 On 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)
On what date was the surgery performed? three to four hours -7.556139456742605 On 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)
On what date was the surgery performed? 553 patients -7.556519378718661 On 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)
On what date was the surgery performed? three major methods -7.569197343595411 On 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)
On what date was the surgery performed? different ways -7.570734431667674 On 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)
On what date was the surgery performed? February 3 , 2009 -7.579867951262082 On 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)
On what date was the surgery performed? Nantes Jan 06 -7.581260924781143 On 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)
On what date was the surgery performed? teens -7.5859971997528435 On 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)
On what date was the surgery performed? a relatively short period -7.590241857233046 On 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)
On what date was the surgery performed? the right side of the brain -7.59073069909247 On 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)
On what date was the surgery performed? the UK, -7.5938287705972005 On 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)
On what date was the surgery performed? local anesthesia -7.600939014547964 On 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)
On what date was the surgery performed? 600 women -7.601292933050296 On 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)
On what date was the surgery performed? right eye utilizing ladarvision -7.610954400862923 On 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)
On what date was the surgery performed? a timely style -7.618178385519563 On 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)
On what date was the surgery performed? a minimally invasive fashion -7.6197371000287255 On 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)
On what date was the surgery performed? San Diego -7.622886272262152 On 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)
On what date was the surgery performed? a patient -7.6233715902836146 On 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)
On what date was the surgery performed? a relatively shorter time -7.625117800287175 On 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)
On what date was the surgery performed? special instruments -7.635356411334018 On 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)
On what date was the surgery performed? an out-patient setting -7.635737107973997 On 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)
On what date was the surgery performed? Peoria Children?s Hospital -7.639871664009018 On 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)
On what date was the surgery performed? combination -7.640092312045264 On 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)
On what date was the surgery performed? a child -7.640518093725368 On 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)
On what date was the surgery performed? 7 patients -7.641894215362444 On 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)
On what date was the surgery performed? joints -7.649212549486361 On 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)
On what date was the surgery performed? a Singapore hospital -7.652269877689982 On 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)
On what date was the surgery performed? May 2010 -7.65329056477346 On 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)
On what date was the surgery performed? a hospital environment -7.675517057577219 On 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)
On what date was the surgery performed? steps -7.675579509046357 On 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)
On what date was the surgery performed? a dermatologist?s office -7.6818405969329415 On 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)
On what date was the surgery performed? a surgery clinic or hospital -7.682515125041007 On 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)
On what date was the surgery performed? time -7.68347272393356 On 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)
On what date was the surgery performed? temporary medical facilities -7.687061806658127 On 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)
On what date was the surgery performed? non rodents -7.6881129134170125 On 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)
On what date was the surgery performed? any age group -7.710049230644843 On 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)
On what date was the surgery performed? less than 30 minutes -7.71175826602281 On 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)
On what date was the surgery performed? less than a minute -7.71175826602281 On 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)
On what date was the surgery performed? one or two stages -7.71175826602281 On 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)
On what date was the surgery performed? infancy -7.712502057008054 On 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)
On what date was the surgery performed? Utah Lasik center -7.716998869004428 On 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)
On what date was the surgery performed? the girl -7.7245610889531475 On 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)
On what date was the surgery performed? one to three hours -7.727673779349433 On 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)
On what date was the surgery performed? 36 hours -7.741687738619607 On 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)
On what date was the surgery performed? 1 year -7.743456164124096 On 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)
On what date was the surgery performed? Children -7.744373336858406 On 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)
On what date was the surgery performed? 1992 -7.746518042467928 On 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)
What are semiconductors? innovation-intensive industry -5.165890122995664 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, innovation-intensive industry) -> innovation-intensive industry (2938ms)
What are semiconductors? high-value item -5.244377583582281 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-value item) -> high-value item (2937ms)
What are semiconductors? process-intensive industry -5.319907212021991 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, process-intensive industry) -> process-intensive industry (2938ms)
What are semiconductors? well-known industry -5.32191343936374 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, well-known industry) -> well-known industry (2937ms)
What are semiconductors? science-based technology -5.32676182256594 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, science-based technology) -> science-based technology (2938ms)
What are semiconductors? chemical-related industry -5.3648011674571325 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, chemical-related industry) -> chemical-related industry (3101ms)
What are semiconductors? physics-based concept -5.3648011674571325 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, physics-based concept) -> physics-based concept (3101ms)
What are semiconductors? device-developing area -5.3648011674571325 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, device-developing area) -> device-developing area (2937ms)
What are semiconductors? cutting-edge technology -5.378127449271549 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cutting-edge technology) -> cutting-edge technology (3101ms)
What are semiconductors? cutting-edge sector -5.378510388545033 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cutting-edge sector) -> cutting-edge sector (3101ms)
What are semiconductors? transparent or semitransparent material -5.416395074555697 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, transparent or semitransparent material) -> transparent or semitransparent material (3101ms)
What are semiconductors? strategic business area -5.6409038783534005 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, strategic business area) -> strategic business area (3101ms)
What are semiconductors? high-value-added industry -5.670341011599557 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-value-added industry) -> high-value-added industry (3122ms)
What are semiconductors? heat generating part -5.685315605972828 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, heat generating part) -> heat generating part (3123ms)
What are semiconductors? solid-state electronic device -5.698581858802984 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, solid-state electronic device) -> solid-state electronic device (3123ms)
What are semiconductors? product in market -5.715352139956176 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, product in market) -> product in market (3123ms)
What are semiconductors? first conductive material -5.722049712638546 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, first conductive material) -> first conductive material (3123ms)
What are semiconductors? non-metal material -5.726699561645407 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, non-metal material) -> non-metal material (3123ms)
What are semiconductors? substance, consisting of a solid chemical element or compound -5.752960842084011 What 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)
What are semiconductors? memory device -5.757506100318768 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, memory device) -> memory device (3198ms)
What are semiconductors? cumulative system technologies -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cumulative system technologies) -> cumulative system technologies (3198ms)
What are semiconductors? cumulative technology field -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cumulative technology field) -> cumulative technology field (3198ms)
What are semiconductors? pure scientific sample -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, pure scientific sample) -> pure scientific sample (3198ms)
What are semiconductors? tremendous complex market -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, tremendous complex market) -> tremendous complex market (3199ms)
What are semiconductors? material or item -5.794088504122012 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, material or item) -> material or item (3251ms)
What are semiconductors? spectral region certain nonmetallic material -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, spectral region certain nonmetallic material) -> spectral region certain nonmetallic material (3251ms)
What are semiconductors? free Java simulation -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, free Java simulation) -> free Java simulation (3268ms)
What are semiconductors? key strategic industry -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, key strategic industry) -> key strategic industry (3251ms)
What are semiconductors? competitiveness higher value-added-per-employee industry -5.797854797519154 What 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)
What are semiconductors? tiny complex of electronic component -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, tiny complex of electronic component) -> tiny complex of electronic component (3267ms)
What are semiconductors? high tech manufacturing industry -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high tech manufacturing industry) -> high tech manufacturing industry (3251ms)
What are semiconductors? substance, usually solid chemical element or compound -5.797854797519154 What 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)
What are semiconductors? cold war information technology -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cold war information technology) -> cold war information technology (3251ms)
What are semiconductors? precision electronic device -5.798225037651006 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, precision electronic device) -> precision electronic device (3267ms)
What are semiconductors? high work function material -5.80079248779605 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high work function material) -> high work function material (3268ms)
What are semiconductors? man made material -5.818418628538154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, man made material) -> man made material (3284ms)
What are semiconductors? sophisticated, high-tech manufactured good -5.825273239694954 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, sophisticated, high-tech manufactured good) -> sophisticated, high-tech manufactured good (3284ms)
What are semiconductors? substance or material -5.829190159655583 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, substance or material) -> substance or material (3284ms)
What are semiconductors? high-quality thin film -5.838982459557154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-quality thin film) -> high-quality thin film (3285ms)
What are semiconductors? bulk material -5.856385971431186 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, bulk material) -> bulk material (3284ms)
What are semiconductors? active device -5.897388615983568 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, active device) -> active device (3284ms)
What are semiconductors? common material -5.9012993662909246 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, common material) -> common material (3297ms)
What are semiconductors? intellectual property -5.932455380244988 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, intellectual property) -> intellectual property (3297ms)
What are semiconductors? commercial application -5.958329829072698 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, commercial application) -> commercial application (3297ms)
What are semiconductors? dielectric compound -6.0262962594139085 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, dielectric compound) -> dielectric compound (3298ms)
What are semiconductors? component part -6.0288683084127825 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component part) -> component part (3298ms)
What are semiconductors? signage material -6.054063486658409 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, signage material) -> signage material (3298ms)
What are semiconductors? display device -6.05521599111584 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, display device) -> display device (3325ms)
What are semiconductors? traditional material -6.061779818735707 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, traditional material) -> traditional material (3325ms)
What are semiconductors? electronic system -6.082417594422629 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electronic system) -> electronic system (3325ms)
What are semiconductors? flat surface -6.088944180110317 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, flat surface) -> flat surface (3325ms)
What are semiconductors? optical material -6.096775832157354 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, optical material) -> optical material (3325ms)
What are semiconductors? inorganic nanomaterials -6.120858713745539 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, inorganic nanomaterials) -> inorganic nanomaterials (3325ms)
What are semiconductors? communication technology -6.126595930348767 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, communication technology) -> communication technology (3356ms)
What are semiconductors? unexplored material -6.155023713973003 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, unexplored material) -> unexplored material (3356ms)
What are semiconductors? nanotubesmadeof material -6.155023713973003 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nanotubesmadeof material) -> nanotubesmadeof material (3356ms)
What are semiconductors? ightechnology industry -6.155023713973003 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, ightechnology industry) -> ightechnology industry (3356ms)
What are semiconductors? component group -6.1565469607265 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component group) -> component group (3356ms)
What are semiconductors? tech field -6.156851610107842 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, tech field) -> tech field (3356ms)
What are semiconductors? automation industry -6.157594192850378 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, automation industry) -> automation industry (3386ms)
What are semiconductors? complex field -6.159724018232183 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, complex field) -> complex field (3387ms)
What are semiconductors? nontraditional industry -6.161351046829945 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nontraditional industry) -> nontraditional industry (3387ms)
What are semiconductors? target industry -6.162302946165001 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, target industry) -> target industry (3387ms)
What are semiconductors? thriving industry -6.163249246503173 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, thriving industry) -> thriving industry (3387ms)
What are semiconductors? korean product -6.163249246503173 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, korean product) -> korean product (3387ms)
What are semiconductors? electronics technology -6.163964509775118 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electronics technology) -> electronics technology (3409ms)
What are semiconductors? emissive material -6.164370910169298 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, emissive material) -> emissive material (3409ms)
What are semiconductors? covalent solid -6.166774475080588 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, covalent solid) -> covalent solid (3409ms)
What are semiconductors? crystal material -6.168732935060903 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, crystal material) -> crystal material (3409ms)
What are semiconductors? important device -6.1690673059781025 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, important device) -> important device (3409ms)
What are semiconductors? technology market -6.171474779033343 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, technology market) -> technology market (3426ms)
What are semiconductors? nonmetal substrate -6.171474779033343 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nonmetal substrate) -> nonmetal substrate (3426ms)
What are semiconductors? traditional export -6.171474779033343 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, traditional export) -> traditional export (3409ms)
What are semiconductors? core industry -6.173597496275332 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, core industry) -> core industry (3427ms)
What are semiconductors? extreme environment -6.175457229810384 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, extreme environment) -> extreme environment (3426ms)
What are semiconductors? electric device -6.177219596201298 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electric device) -> electric device (3426ms)
What are semiconductors? synthetic material -6.177616870034447 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, synthetic material) -> synthetic material (3426ms)
What are semiconductors? photonic device -6.1821195862696925 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, photonic device) -> photonic device (3453ms)
What are semiconductors? electron system -6.182442156148802 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electron system) -> electron system (3453ms)
What are semiconductors? exotic material -6.184590143644457 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, exotic material) -> exotic material (3453ms)
What are semiconductors? microelectronic device -6.192412498758184 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, microelectronic device) -> microelectronic device (3453ms)
What are semiconductors? star industry -6.196151376011002 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, star industry) -> star industry (3453ms)
What are semiconductors? system and component -6.310963909359615 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, system and component) -> system and component (3453ms)
What are semiconductors? market and application -6.323859538749476 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, market and application) -> market and application (3477ms)
What are semiconductors? product -7.664496210084847 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, product) -> product (3873ms)
What are semiconductors? component -7.733800561428993 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component) -> component (3873ms)
What are semiconductors? market -7.754963573350632 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, market) -> market (3873ms)
What are semiconductors? circuit -7.857427158808397 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, circuit) -> circuit (3873ms)
What are semiconductors? surface -7.998416978030524 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, surface) -> surface (3880ms)
What are semiconductors? medium -8.039515793184774 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, medium) -> medium (3880ms)
What are semiconductors? source -8.105836984059604 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, source) -> source (3881ms)
What are semiconductors? element -8.131476371445647 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, element) -> element (3881ms)
What are semiconductors? device -8.196596557577648 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, device) -> device (3882ms)
What are semiconductors? parts -8.378332184742158 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, parts) -> parts (3887ms)
What are semiconductors? industies -8.38855096138849 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, industies) -> industies (3887ms)
What are semiconductors? vertical -8.401552975729512 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, vertical) -> vertical (3887ms)
What are semiconductors? apparatuses -8.402910188262988 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, apparatuses) -> apparatuses (3887ms)
What are semiconductors? conductor -8.40793886210651 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, conductor) -> conductor (3888ms)
What are semiconductors? a system -8.738884409581786 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (A semiconductor heterostructure, can be modelled by, a system) -> a system (3888ms)
What are semiconductors? Germanium -8.922758095582903 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, element, semiconductors) -> (Germanium, is an important element in, semiconductors) -> Germanium (3895ms)
What are semiconductors? rate equations -9.102792912572301 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (semiconductor lasers, are modeled by, rate equations) -> rate equations (3895ms)
What are semiconductors? a finite domain -9.165329442045694 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (The semiconductor device, is modeled as, a finite domain) -> a finite domain (3901ms)
What are semiconductors? a plus -10.468832939308127 What 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)
What are semiconductors? Distributed feedback semiconductor lasers -10.503669404334103 What 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)
What are semiconductors? Single frequency semiconductor lasers -10.503669404334103 What 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)
What are semiconductors? Introductory semiconductor device physics -10.503669404334103 What 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)
What are semiconductors? Semiconductor silicon crystal technology -10.503669404334103 What 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)
What are semiconductors? Highly coherent semiconductor lasers -10.503669404334103 What 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)
What are semiconductors? a term -10.572801533963482 What 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)
What are semiconductors? Dilute Nitride Semiconductors -10.578094796526733 What 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)
What are semiconductors? Computational Semiconductor Processing -10.578094796526733 What 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)
What are semiconductors? Semiconductor Circuit Approx -10.578094796526733 What 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)
What are semiconductors? two everyday examples -10.63202824837186 What 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)
What are semiconductors? natural scalar interferometers -10.63882305555364 What 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)
What are semiconductors? economic sector -10.647847393662019 What 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)
What are semiconductors? silicon -10.656475394683213 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, element, semiconductors) -> (silicon, is an important element in, semiconductors) -> silicon (3920ms)
What are semiconductors? an excellence-driven organization -10.675389129140965 What 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)
What are semiconductors? Optical semiconductor devices -10.687543902692365 What 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)
What are semiconductors? Semiconductor device fundamentals -10.687543902692365 What 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)
What are semiconductors? Semiconductor crystal manufacture -10.687543902692365 What 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)
What are semiconductors? Semiconductor optical modulators -10.687543902692365 What 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)
What are semiconductors? Semiconductor amateur projects -10.687543902692365 What 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)
What are semiconductors? Semiconductor manufacturing technology -10.687543902692365 What 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)
What are semiconductors? Optoelectronic semiconductor devices -10.687543902692365 What 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)
What are semiconductors? Advanced semiconductor fundamentals -10.687543902692365 What 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)
What are semiconductors? Understanding semiconductor devices -10.687543902692365 What 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)
What are semiconductors? Semiconductor comparator circuits -10.687543902692365 What 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)
What are semiconductors? Semiconductor testing technology -10.687543902692365 What 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)
What are semiconductors? Power semiconductor devices -10.687543902692365 What 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)
What are semiconductors? Basic semiconductor physics -10.687543902692365 What 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)
What are semiconductors? Semiconductor circuit elements -10.687543902692365 What 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)
What are semiconductors? silicon , germanium -10.696510130761371 What 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)
What are semiconductors? a grant -10.708502595334675 What 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)
What are semiconductors? Semiconductor Memories -10.725486259496451 What 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)
What are semiconductors? Semiconductor Transport -10.725486259496451 What 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)
What are semiconductors? Semiconductor Devices -10.725486259496451 What 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)
What are semiconductors? Semiconductor Electronics -10.725486259496451 What 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)
What are semiconductors? Galvanometric Effects in Semiconductors -10.758685821700027 What 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)
What are semiconductors? available today -10.77827474259274 What 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)
What are semiconductors? materials -10.793749694817187 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, be a class of, $x) -> (Semiconductors, are a class of, materials) -> materials (3920ms)
What are semiconductors? a complex and precise process -10.796457990804566 What 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)
What are semiconductors? ON Semiconductor -10.802866700018345 What 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)
What are semiconductors? powerful technology enablers -10.803219266122147 What 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)
What are semiconductors? Galvanomagnetic effects in semiconductors -10.80976207124399 What 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)
What are semiconductors? Plasma effects in semiconductors: Helicon and Alfv?n waves -10.80976207124399 What 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)
What are semiconductors? Semiconductor devices : basic principles -10.80976207124399 What 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)
What are semiconductors? Diffusion in semiconductors -10.80976207124399 What 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)
What are semiconductors? Principles of semiconductor devices -10.80976207124399 What 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)
What are semiconductors? Heteroepitaxy of semiconductors : theory, growth, and characterization -10.80976207124399 What 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)
What are semiconductors? Physics of semiconductor devices -10.80976207124399 What 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)
What are semiconductors? Introduction to semiconductor optics -10.80976207124399 What 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)
What are semiconductors? Conductors and semiconductors -10.80976207124399 What 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)
What are semiconductors? Narrow-gap semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductor ceramics : grain boundary effects -10.80976207124399 What 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)
What are semiconductors? Semiconductor Devices (German) -10.80976207124399 What 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)
What are semiconductors? Microwave Semiconductor Devices (The Springer International Series in Engineering and Computer Science) -10.80976207124399 What 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)
What are semiconductors? Semiconductors: Others Than Group IV Elements and Iii-V Compounds (Data in Science and Technology) -10.80976207124399 What 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)
What are semiconductors? Superconductor/semiconductor junctions -10.80976207124399 What 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)
What are semiconductors? Nitride Semiconductors and Devices (Springer Series in Materials Science) -10.80976207124399 What 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)
What are semiconductors? Ion implantation of semiconductors -10.80976207124399 What 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)
What are semiconductors? Handbook of semiconductor memories -10.80976207124399 What 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)
What are semiconductors? Semiconductor physics and devices: basic principles -10.80976207124399 What 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)
What are semiconductors? Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals) -10.80976207124399 What 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)
What are semiconductors? Semiconductor alloys : physics and materials engineering -10.80976207124399 What 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)
What are semiconductors? Chemical physics of semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductor physics and applications -10.80976207124399 What 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)
What are semiconductors? Semiconductor Devices: Pioneering Papers -10.80976207124399 What 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)
What are semiconductors? Faraday effect in semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductors and Semimetals: Nanostructured Systems (Semiconductors and Semimetals) -10.80976207124399 What 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)
What are semiconductors? Photoelectric effects in semiconductors -10.80976207124399 What 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)
What are semiconductors? Potential barriers in semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductor power devices: physics of operation and fabrication technology -10.80976207124399 What 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)
What are semiconductors? Noise in semiconductor devices : modeling and simulation -10.80976207124399 What 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)
What are semiconductors? Semiconductors and transistors -10.80976207124399 What 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)
What are semiconductors? ULSI semiconductor technology atlas -10.80976207124399 What 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)
What are semiconductors? Textbook on Semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductor microdevices and materials -10.80976207124399 What 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)
What are semiconductors? Semiconductors: data handbook -10.80976207124399 What 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)
What are semiconductors? Semiconductor opto-electronics -10.80976207124399 What 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)
What are semiconductors? Semiconductors and electronic devices -10.80976207124399 What 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)
What are semiconductors? Diffusion in Semiconductors -10.80976207124399 What 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)
What are semiconductors? Thermomagnetic effects in semiconductors -10.80976207124399 What 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)
What are semiconductors? Application of Semiconductor Technology -10.80976207124399 What 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)
What are semiconductors? Electrochemistry of semiconductors -10.80976207124399 What 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)
What are semiconductors? Defect electronics in semiconductors -10.80976207124399 What 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)
What are semiconductors? Survey of Semiconductor Physics: Electronic Transport in Semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductor lithography : principles, practices, and materials -10.80976207124399 What 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)
What are semiconductors? Semiconductor devices, physics and technology -10.80976207124399 What 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)
What are semiconductors? Semiconductor Devices and Circuits -10.80976207124399 What 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)
What are semiconductors? Advanced semiconductor memories : architectures, designs, and applications -10.80976207124399 What 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)
What are semiconductors? Compound Semiconductor Devices: Structures and Processing -10.80976207124399 What 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)
What are semiconductors? Semiconductors and Semimetals: Defects, Hgcd, Se, Hgcdo and Te (Semiconductors and Semimetals) -10.80976207124399 What 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)
What are semiconductors? Metal-semiconductor contacts -10.80976207124399 What 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)
What are semiconductors? Semiconductor Optoelectronic Devices, Second Edition -10.80976207124399 What 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)
What are semiconductors? Semiconductor essentials: for hobbyists, technicians & engineers -10.80976207124399 What 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)
What are semiconductors? Optical characterization of semiconductors: infrared, Raman, and photoluminescence spectroscopy -10.80976207124399 What 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)
What are semiconductors? Semiconductor Desk Reference -10.80976207124399 What 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)
What are semiconductors? Handbook of semiconductor electrodeposition -10.80976207124399 What 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)
What are semiconductors? Getting to know semiconductors -10.80976207124399 What 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)
What are semiconductors? Introduction to semiconductor devices -10.80976207124399 What 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)
What are semiconductors? Semiconductor photoelectric devices: an introduction to design -10.80976207124399 What 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)
What are semiconductors? History of semiconductor engineering -10.80976207124399 What 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)
What are semiconductors? Semiconductor devices: an introduction -10.80976207124399 What 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)
What are semiconductors? Introduction to semiconductor theory -10.80976207124399 What 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)
What are semiconductors? Introduction to semiconductor physics -10.80976207124399 What 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)
What are semiconductors? Using semiconductors: a beginners' course including theory, practical demonstrations and projects -10.80976207124399 What 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)
What are semiconductors? Semiconductors and Semimetals -10.80976207124399 What 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)
What are semiconductors? Semiconductor Photochemistry and Photophysics: Determination, Analysis, and Applications for Drug Discovery (MOLECULAR AND SUPRAMOLECULAR PHOTOCHEMISTRY) -10.80976207124399 What 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)
What are semiconductors? Gettering defects in semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductor contacts: an approach to ideas and models -10.80976207124399 What 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)
What are semiconductors? Semiconductor physics: an introduction -10.80976207124399 What 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)
What are semiconductors? Fundamentals of semiconductor lasers -10.80976207124399 What 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)
What are semiconductors? Molecular semiconductors: photoelectrical properties and solar cells -10.80976207124399 What 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)
What are semiconductors? Chemistry for Semiconductor Technicians (with CD-ROM) -10.80976207124399 What 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)
What are semiconductors? Physics of semiconductor lasers -10.80976207124399 What 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)
What are semiconductors? Fundamentals of semiconductor devices -10.80976207124399 What 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)
What are semiconductors? Semiconductor building block materials: growing markets for material precursors -10.80976207124399 What 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)
What are semiconductors? Introduction to Semiconductors Electronic -10.80976207124399 What 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)
What are semiconductors? Conductors and Semiconductor (PERMACHARTS -10.80976207124399 What 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)
What are semiconductors? Recombination in semiconductors -10.80976207124399 What 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)
What are semiconductors? Fundamentals of Semiconductors: Physics and Materials Properties -10.80976207124399 What 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)
What are semiconductors? Semiconductors: Group IV Elements and Iii-V Compounds (Data in Science and Technology) -10.80976207124399 What 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)
What are semiconductors? Photoinduced defects in semiconductors -10.80976207124399 What 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)
What are semiconductors? Semiconductor lasers : stability, instability and chaos -10.80976207124399 What 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)
What are semiconductors? Semiconductor devices explained : using active simulation -10.80976207124399 What 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)
What are semiconductors? Semiconductor nanowires : synthesis, passivation, and devices -10.80976207124399 What 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)
What are semiconductors? an interesting , -10.816825577804316 What 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)
What are semiconductors? the industry today -10.835934855689032 What 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)
What are semiconductors? a dirty , dangerous business -10.853046658306877 What 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)
What are semiconductors? a really broad term -10.857149628422075 What 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)
What are semiconductors? ?a high efficiency -10.876951043613307 What 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)
What are semiconductors? a very mature field -10.909317311216608 What 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)
What are semiconductors? an equal opportunity employer -10.924840678154817 What 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)
What are semiconductors? the United States -10.949462710743678 What 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)
What are semiconductors? entire range -10.9923203441495 What 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)
What are semiconductors? the Nation?s largest export -10.995084498871169 What 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)
What are semiconductors? silicon chips -11.019725307654763 What 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)
What are semiconductors? SK Hynix -11.043580137625286 What 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)
What are semiconductors? US$ 25.03 billion -11.080782124861903 What 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)
What are semiconductors? crystalline solids -11.08780850377592 What 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)
What are semiconductors? unique substances -11.092656907666829 What 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)
What are semiconductors? multilayer sandwiches -11.127532850720959 What 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)
What are semiconductors? an imperfect process -11.130577942311682 What 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)
What are semiconductors? a $ 250 Billion industry and storage is -11.132998756561552 What 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)
What are semiconductors? America -11.136175717615272 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, America) -> America (6353ms)
What are semiconductors? a growing problem -11.137520685005175 What 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)
What are semiconductors? China -11.13794414311976 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, China) -> China (6376ms)
What are semiconductors? a registered trademark -11.14371009521744 What 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)
What are semiconductors? a tough industry -11.166699205157425 What 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)
What are semiconductors? perfect conductors -11.167740568620939 What 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)
What are semiconductors? a glam industry -11.203770940196879 What 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)
What are semiconductors? any way -11.21911295765322 What are semiconductors? -> what be [ semiconductor ] ? -> what exactly be semiconductor ? -> $x: ($x, exactly be, semiconductor) -> (any way, exactly is, a semiconductor) -> any way (6465ms)
What are semiconductors? terms -11.257710967538927 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (a semiconductor, can be modeled in, terms) -> terms (3926ms)
What are semiconductors? Such materials -11.288167303458494 What 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)
What are semiconductors? a developing market -11.34594204814276 What 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)
What are semiconductors? a wonderful job -11.350836230456675 What 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)
What are semiconductors? LIKE -11.387253489591108 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (SEMICONDUCTORS, IS, LIKE) -> LIKE (6465ms)
What are semiconductors? Atmel -11.480913280043143 What 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)
What are semiconductors? America?s top export -11.481959680615752 What 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)
What are semiconductors? SEMI?s mainstay -11.504288438633596 What 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)
What are semiconductors? a unique way -11.564812080041383 What 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)
What are semiconductors? Brazil -11.581602390032678 What 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)
What are semiconductors? NXP. -11.614752994872184 What 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)
What are semiconductors? a revolution -11.647514837033363 What 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)
What are semiconductors? part-time orchestra leaders and microchips -11.65343718734715 What 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)
What are semiconductors? a period -11.659386683575768 What 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)
What are semiconductors? one shot -11.663560600326221 What 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)
What are semiconductors? exactly what the name implies -11.702470628727305 What 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)
What are semiconductors? Leo Esaki -11.733915794188576 What 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)
What are semiconductors? economic growth -11.747400234948536 What 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)
What are semiconductors? power generation -11.756242204364092 What 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)
What are semiconductors? an amazing -11.76755947289389 What 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)
What are semiconductors? cell phones -11.779231367006373 What 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)
What are semiconductors? personal computers -11.78889295469577 What 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)
What are semiconductors? programmable logic devices -11.81180464956937 What 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)
What are semiconductors? low dimensions -11.822717083837302 What 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)
What are semiconductors? video and installation work -11.854425660930618 What 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)
What are semiconductors? Austin -11.857732791487017 What 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)
What are semiconductors? three Schottky -11.874796727619136 What 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)
What are semiconductors? more than two years -11.918167427042992 What 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)
What are semiconductors? Silicon -11.927757955361294 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Silicon, is known as, a semiconductor) -> Silicon (6621ms)
What are semiconductors? a proven track record -11.945916037951267 What 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)
What are semiconductors? now -11.946754356910684 What 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)
What are semiconductors? a member -11.953821664254647 What 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)
What are semiconductors? the Photovoltaic cells -11.975194650972917 What 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)
What are semiconductors? EDA -12.006204139788917 What 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)
What are semiconductors? human history -12.014035754638167 What 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)
What are semiconductors? the nation -12.02486652475801 What 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)
What are semiconductors? a body good click -12.035029409711766 What 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)
What are semiconductors? a downturn -12.04279145107574 What 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)
What are semiconductors? higher electrical resistance -12.053017425105043 What 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)
What are semiconductors? a toothpaste -12.057266275265917 What 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)
What are semiconductors? Arizona -12.059869080717963 What 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)
What are semiconductors? a complete documentation package -12.060042127484241 What 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)
What are semiconductors? a higher and higher percentage -12.07546570620277 What 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)
What are semiconductors? Berkeley Design Automation -12.080763443712502 What 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)
What are semiconductors? ?defects -12.085066698345038 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, ?defects) -> ?defects (6671ms)
What are semiconductors? a manufacturing and sales presence -12.107171621883928 What 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)
What are semiconductors? a very special property -12.109949397463897 What 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)
What are semiconductors? four valence electrons -12.114975831843484 What 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)
What are semiconductors? the Samsung Art + Prize -12.12055979238394 What 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)
What are semiconductors? Bilayer graphene -12.122115164982807 What 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)
What are semiconductors? more electrons or holes -12.122328165186133 What 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)
What are semiconductors? recent years -12.124093701146373 What 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)
What are semiconductors? Japan -12.133254615198771 What 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)
What are semiconductors? short product life cycles -12.145192111451735 What 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)
What are semiconductors? such soul searching -12.151655315089936 What 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)
What are semiconductors? a new series -12.162936698532269 What 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)
What are semiconductors? a negative temperature coefficient -12.174495847980666 What 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)
What are semiconductors? a new and ancient aesthetic -12.178460065470478 What 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)
What are semiconductors? every iteration -12.18290799184031 What 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)
What are semiconductors? a tailspin -12.19084472913449 What 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)
What are semiconductors? two people -12.197517661465174 What 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)
What are semiconductors? moderate bandgap energies -12.198719464367853 What 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)
What are semiconductors? a break -12.207579913437248 What 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)
What are semiconductors? Microsemi Corp. -12.217821561359642 What 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)
What are semiconductors? a new family -12.22224254606742 What 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)
What are semiconductors? public earlier this year -12.230692263689972 What 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)
What are semiconductors? a strong actvity -12.236065799512012 What 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)
What are semiconductors? Intersil -12.248807877734835 What 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)
What are semiconductors? a 5 % additional positive effect -12.249781240995475 What 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)
What are semiconductors? Northumbria -12.256565431915318 What 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)
What are semiconductors? one global industry -12.258494662833034 What 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)
What are semiconductors? under 6 % -12.265566233515303 What 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)
What are semiconductors? M/A-COM?s Foundry Supplier -12.272641803357462 What 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)
What are semiconductors? large Hall coefficients -12.291209981291967 What 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)
What are semiconductors? America 's largest manufacturing industry -12.31858816125685 What 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)
What are semiconductors? body wearables -12.325735600786885 What 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)
What are semiconductors? EPC. -12.332767269166455 What 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)
What are semiconductors? any marketing -12.334166692794248 What 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)
What are semiconductors? a narrow band gap -12.341609238582011 What 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)
What are semiconductors? critical components of flat panel displays -12.350978556143216 What 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)
What are semiconductors? very important -12.355410411425362 What 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)
What are semiconductors? CMOS -12.356350750517459 What 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)
What are semiconductors? a cycle change -12.357280419527793 What 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)
What are semiconductors? volume -12.383667667091643 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, volume) -> volume (6903ms)
What are semiconductors? the newest market -12.402895327938827 What 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)
What are semiconductors? relative strength in the tech space -12.40497450848295 What 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)
What are semiconductors? 2? or 3? wafers -12.41483174114148 What 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)
What are semiconductors? the lowest tier -12.440324147381157 What 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)
What are semiconductors? application notes -12.452086986992217 What 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)
What are semiconductors? 6 hrs -12.4556795666514 What 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)
What are semiconductors? two components -12.456185997214426 What 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)
What are semiconductors? fantastic results -12.462697329209966 What 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)
What are semiconductors? telecoms spending -12.464828553068036 What 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)
What are semiconductors? crystals -12.467601913816758 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, crystals) -> crystals (6987ms)
What are semiconductors? certain bands -12.48126550714447 What 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)
What are semiconductors? valance electrons -12.482969311819406 What 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)
What are semiconductors? 20,000 employees -12.486199093125006 What 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)
What are semiconductors? electronics functions -12.502029424362004 What 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)
What are semiconductors? offer roadmaps -12.519777984022666 What 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)
What are semiconductors? minority carriers -12.520170183113374 What 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)
What are semiconductors? Intel -12.525675439454695 What 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)
What are semiconductors? the 1980?s -12.530801191995788 What 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)
What are semiconductors? the charge distribution -12.531953061582236 What 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)
What are semiconductors? conduct electricity -12.532622748010935 What 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)
What are semiconductors? yaaron amber -12.548464516864529 What 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)
What are semiconductors? 1.5 -12.556378345714101 What 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)
What are semiconductors? 37 -12.561748137652527 What 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)
What are semiconductors? the 1980s -12.567053308761402 What 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)
What are semiconductors? Aegis -12.567962825015462 What 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)
What are semiconductors? 6-7 microns -12.569705920666987 What 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)
What are semiconductors? the heart and brains -12.574437736795192 What 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)
What are semiconductors? a positive permittivity -12.5770290927364 What 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)
What are semiconductors? the continual layoffs -12.580976145160797 What 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)
What are semiconductors? selenium -12.58172800334973 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, selenium) -> selenium (7229ms)
What are semiconductors? heat -12.5879173608597 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, heat) -> heat (7229ms)
What are semiconductors? the common thread -12.592470726481936 What 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)
What are semiconductors? two techniques -12.59608289160489 What 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)
What are semiconductors? serious growth -12.598799206027316 What 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)
What are semiconductors? the largest sector -12.599544323095298 What 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)
What are semiconductors? heart -12.605238921823512 What 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)
What are semiconductors? mixed results -12.605872802640679 What 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)
What are semiconductors? the NSI45 series -12.609038015819023 What 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)
What are semiconductors? positive signs -12.619200324891269 What 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)
What are semiconductors? last year -12.619200324891269 What 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)
What are semiconductors? the world?s biggest supplier -12.620351441250202 What 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)
What are semiconductors? a strong month -12.642851981447269 What 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)
What are semiconductors? Tuesday -12.64982223874646 What 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)
What are semiconductors? 1.3 percent -12.652820496415963 What 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)
What is sodium chloride? Calculi Dissolution Agent -6.315527729893548 What 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)
What is sodium chloride? Cardinal Health -6.402943453374191 What 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)
What is sodium chloride? Baxter International -6.402943453374191 What 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)
What is sodium chloride? Major Pharmaceuticals -6.435430312264107 What 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)
What is sodium chloride? McKesson Corporation -6.487219265121729 What 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)
What is sodium chloride? West-ward Pharmaceutical -6.487219265121729 What 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)
What is sodium chloride? Pregnancy Category C (FDA) -6.519706124011645 What 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)
What is sodium chloride? B. Braun Medical -6.547195004610804 What 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)
What is sodium chloride? General Injectables & Vaccines -6.547195004610804 What 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)
What is sodium chloride? Taro Pharmaceutical Industries Ltd. -6.5707569022672265 What 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)
What is sodium chloride? Subcutaneous injection -6.651445541568021 What 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)
What is sodium chloride? Intramuscular injection -6.651445541568021 What 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)
What is sodium chloride? Sodium chloride -6.651445541568021 What 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)
What is sodium chloride? Sublingual administration -6.6904297722359205 What 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)
What is sodium chloride? Magnesium chloride -6.773967409381418 What 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)
What is sodium chloride? Potassium chloride -6.773967409381418 What 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)
What is sodium chloride? Sodium gluconate -6.773967409381418 What 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)
What is sodium chloride? Sodium acetate -6.773967409381418 What 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)
What is sodium chloride? Osmotic Laxative -6.792785760053182 What 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)
What is sodium chloride? Follicle-stimulating hormone -6.877061571800718 What 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)
What is sodium chloride? D-Glucose -6.877061571800718 What 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)
What is sodium chloride? Pregnancy Category X (FDA) -6.877061571800718 What 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)
What is sodium chloride? FDA OTC monograph part 349 -6.983734674350196 What 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)
What is sodium chloride? Calcium chloride -7.08027207891491 What 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)
What is sodium chloride? Oral -7.085228832337814 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Oral, Drug formulations, Sodium chloride 30 pellet) -> Oral (6849ms)
What is sodium chloride? Sodium -7.092305992382086 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium, Active moiety of drug, Sodium chloride) -> Sodium (6848ms)
What is sodium chloride? Ophthalmic -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Ophthalmic, Drug formulations, Sodium chloride 20 solution) -> Ophthalmic (7144ms)
What is sodium chloride? Intravenous -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Intravenous, Drug formulations, Sodium chloride 9 injection) -> Intravenous (7213ms)
What is sodium chloride? Irrigation -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Irrigation, Drug formulations, Sodium chloride 9 irrigant) -> Irrigation (7144ms)
What is sodium chloride? Nasal -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Nasal, Drug formulations, Sodium chloride 9 solution) -> Nasal (7144ms)
What is sodium chloride? Hospira -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Hospira, Drugs manufactured, Sodium Chloride 900 irrigant) -> Hospira (7213ms)
What is sodium chloride? Drug -7.156699921895628 What 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)
What is sodium chloride? Medefil -7.178937616088529 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Medefil, Drugs manufactured, Sodium Chloride 9 injectable solution) -> Medefil (7239ms)
What is sodium chloride? Physiosol -7.238913355577604 What 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)
What is sodium chloride? Homeopathic -7.238913355577604 What 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)
What is sodium chloride? Salt -7.271036230087325 What 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)
What is sodium chloride? Potassium Salt -7.448929035357868 What 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)
What is sodium chloride? ?salt? -8.421964843951121 What 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)
What is sodium chloride? industry -10.157301449439892 What 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)
What is sodium chloride? Rock salt -10.328694894999488 What 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)
What is sodium chloride? NaCl -10.877584498135764 What 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)
What is sodium chloride? Table salt -10.950430472559185 What 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)
What is sodium chloride? Sea salt -10.95606481616344 What 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)
What is sodium chloride? a metal ion -10.997739756659033 What 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)
What is sodium chloride? 36 grams -11.045702895964055 What 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)
What is sodium chloride? salt-water pools -11.128697419169995 What 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)
What is sodium chloride? the Dead Sea -11.155225099017539 What 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)
What is sodium chloride? MMS -11.159746867839642 What 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)
What is sodium chloride? Road salts -11.25443109324124 What 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)
What is sodium chloride? Himalayan salt -11.268388980043014 What 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)
What is sodium chloride? solute carrier family 12 (sodium/potassium/chloride transporters), member 1 -11.342905786021625 What 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)
What is sodium chloride? potassium channel, subfamily T, member 2 -11.342905786021625 What 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)
What is sodium chloride? Io -11.343792994775967 What 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)
What is sodium chloride? sea salt -11.40757237175211 What 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)
What is sodium chloride? table salt -11.450900224221346 What 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)
What is sodium chloride? a cube -11.469314232054167 What 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)
What is sodium chloride? Wakura Onsen -11.495551428108595 What 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)
What is sodium chloride? Slc12a3 -11.56860396357262 What 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)
What is sodium chloride? solute carrier family 6 (neurotransmitter transporter, creatine), member 10 (pseudogene) -11.56860396357262 What 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)
What is sodium chloride? solute carrier family 12 (potassium/chloride transporters), member 8 -11.56860396357262 What 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)
What is sodium chloride? Slc12a2 -11.56860396357262 What 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)
What is sodium chloride? solute carrier family 6, member 15 -11.56860396357262 What 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)
What is sodium chloride? solute carrier family 6 (neurotransmitter transporter, glycine), member 9 -11.56860396357262 What 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)
What is sodium chloride? Slc12a1 -11.56860396357262 What 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)
What is sodium chloride? solute carrier family 12 (sodium/potassium/chloride transporters), member 2 -11.56860396357262 What 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)
What is sodium chloride? normal ocean water -11.579716210471066 What 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)
What is sodium chloride? rock salt -11.586904017907944 What 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)
What is sodium chloride? sodium chloride -11.627874981823675 What 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)
What is sodium chloride? water soluble -11.638342317288952 What 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)
What is sodium chloride? Dead Sea mineral salts -11.647697718917502 What 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)
What is sodium chloride? Halite -11.652608039052286 What 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)
What is sodium chloride? Avoid rock salt -11.677076229390217 What 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)
What is sodium chloride? an attractant -11.682472365406724 What 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)
What is sodium chloride? S/M -11.687645121695958 What 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)
What is sodium chloride? smart and -11.69033658677827 What 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)
What is sodium chloride? a toxin -11.715542813524547 What 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)
What is sodium chloride? bleached table salt -11.746265942121084 What 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)
What is sodium chloride? a chemical -11.752157781346037 What 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)
What is sodium chloride? ROHYPNOL -11.760902536688116 What 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)
What is sodium chloride? 10-15 -11.77430642969955 What 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)
What is sodium chloride? Sea water -11.780798395370404 What 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)
What is sodium chloride? typical salt -11.814969042467247 What 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)
What is sodium chloride? Sodium chloride; the production and properties of salt and brine -11.81920453395079 What 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)
What is sodium chloride? common table salt -11.819226995572572 What 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)
What is sodium chloride? Common human electrolytes -11.831026401385614 What 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)
What is sodium chloride? 40 % sodium -11.86362840304232 What 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)
What is sodium chloride? unprocessed salt crystals -11.871537685119574 What 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)
What is sodium chloride? a kid -11.87186365751139 What 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)
What is sodium chloride? Halite Halite -11.880506610745925 What 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)
What is sodium chloride? easier ? sea salt -11.884813375678169 What 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)
What is sodium chloride? 3.8 grams -11.884849140180114 What 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)
What is sodium chloride? Salt Salt -11.896897783766434 What 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)
What is sodium chloride? a very stable compound -11.90780253832045 What 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)
What is sodium chloride? food and table salt -11.912841167390798 What 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)
What is sodium chloride? dietary salt -11.92013183575271 What 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)
What is sodium chloride? Lye -11.923158569645691 What 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)
What is sodium chloride? Natrum mur. -11.929906479439333 What 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)
What is sodium chloride? Typical table salt -11.94060633253886 What 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)
What is sodium chloride? Seawater -11.951128445111909 What 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)
What is sodium chloride? Commercial salt -11.95450755415219 What 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)
What is sodium chloride? Morton Salt -11.968699014180052 What 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)
What is sodium chloride? One common form -11.96906040044877 What 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)
What is sodium chloride? 58.44 grams -11.97592149894355 What 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)
What is sodium chloride? Sodium chloride water in granitic rocks of the western Sierra Nevada foothills -12.021651208092358 What 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)
What is sodium chloride? renal epithelium -12.021879157563445 What 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)
What is sodium chloride? 50 mg. -12.03686658302638 What 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)
What is sodium chloride? a nice and fancy way -12.03934944116315 What 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)
What is sodium chloride? Sodium chloride 37.5 spray -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 11.25 spray -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 11.25 liquid -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 0.09 injection -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 50 ointment -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 200 pellet -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 6.5 spray -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 0.0065 lotion -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 9 solution -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 0.9 injection -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 1 solution/drops -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 20 solution -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 26 spray -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 4.5 irrigant -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 50 solution/drops -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 9 injection -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 4.5 injection -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 30 pellet -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 4.5 solution -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 0.03 spray -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 0.45 injection -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 50 solution -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 0.0065 spray -12.041592733879588 What 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)
What is sodium chloride? Sodium chloride 9 irrigant -12.041592733879588 What 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)
What is sodium chloride? 6,200 mg -12.051078291678067 What 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)
What is sodium chloride? 800oC -12.067878096810377 What 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)
What is sodium chloride? A phase rule study of soap -12.075254525260718 What 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)
What is sodium chloride? Celtic Sea Salt -12.078908932512718 What 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)
What is sodium chloride? a white crystalline solid -12.084642084738448 What 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)
What is sodium chloride? Higher order behavior of earth materials -12.085464680911835 What 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)
What is sodium chloride? Isodium chloride 0.009 solution -12.089240126918131 What 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)
What is sodium chloride? Sodium chloride 0.2 spray aerosol -12.089240126918131 What 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)
What is sodium chloride? Sodium chloride 9 injectable solution -12.089240126918131 What 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)
What is sodium chloride? Sodium chloride 4.5 injectable solution -12.089240126918131 What 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)
What is sodium chloride? Sodium chloride 30 injectable solution -12.089240126918131 What 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)
What is sodium chloride? Sodium chloride 50 injectable solution -12.089240126918131 What 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)
What is sodium chloride? Design Normlgel -12.089528933290307 What 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)
What is sodium chloride? an ionic solid -12.10243636752916 What 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)
What is sodium chloride? 90 % -12.1032459744726 What 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)
What is sodium chloride? Salt vs. sodium Salt -12.107172117969352 What 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)
What is sodium chloride? high power laser systems -12.125759810698943 What 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)
What is sodium chloride? Sodium chloride 146 injectable concentrate solution -12.12822435758603 What 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)
What is sodium chloride? Natrum muriaticum 0.6 liquid -12.12822435758603 What 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)
What is sodium chloride? Natrum muriaticum 1 shampoo -12.12822435758603 What 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)
What is sodium chloride? Natrum muriaticum 6 tablet -12.12822435758603 What 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)
What is sodium chloride? Natrum muriaticum 30 tablet -12.12822435758603 What 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)
What is sodium chloride? Sodium chloride 7.8 injectable concentrate solution -12.12822435758603 What 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)
What is sodium chloride? Natrum muriaticum 0.0253 shampoo -12.12822435758603 What 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)
What is sodium chloride? common salt -12.13669964899358 What 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)
What is sodium chloride? 15 F -12.144989399739213 What 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)
What is sodium chloride? a safe , white crystalline solid -12.14914898185449 What 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)
What is sodium chloride? Sweat -12.153411155981349 What 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)
What is sodium chloride? parenteral suspension -12.158045602508052 What 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)
What is sodium chloride? Sodium chloride 900 powder for injectable solution -12.160711216475946 What 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)
What is sodium chloride? Kosher salt -12.166224556805462 What 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)
What is sodium chloride? a natural preservative -12.173960728129552 What 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)
What is sodium chloride? a very effective de-icing agent -12.193199824938866 What 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)
What is sodium chloride? an crucial section -12.201218352091118 What 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)
What is sodium chloride? Toxic -12.203508975447505 What 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)
What is sodium chloride? an aggressive substance -12.209131828748193 What 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)
What is sodium chloride? an essential nutrient -12.230645082161603 What 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)
What is sodium chloride? Commercial ice melt -12.24477528565709 What 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)
What is sodium chloride? a stable compound -12.261396605771218 What 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)
What is sodium chloride? a strong electrolyte -12.28786186576846 What 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)
What is sodium chloride? 0.9 % -12.310416366830887 What 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)
What is sodium chloride? Chloride -12.378807617834022 What 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)
What is sodium chloride? 10 millimolar , -12.439179055951376 What 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)
What is sodium chloride? Rock Salt -12.504329512529953 What 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)
What is sodium chloride? Regular table salt -12.554584242457231 What 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)
What is sodium chloride? Le Tresor -12.595105598307516 What 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)
What is sodium chloride? The most common salt -12.628367921834013 What 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)
What is sodium chloride? Common Salt -12.641779586059961 What 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)
What is sodium chloride? anti-edema effect -12.672308061656658 What 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)
What is sodium chloride? The most common compound -12.685294815166838 What 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)
What is sodium chloride? Estimations -12.715677484740901 What 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)
What is sodium chloride? The most common form -12.71813535000245 What 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)
What is sodium chloride? physiologically-acceptable salt -12.760466333276577 What 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)
What is sodium chloride? What we dont need -12.764172847202742 What 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)
What is sodium chloride? The most common combination -12.766274247179911 What 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)
What is sodium chloride? The most familiar salt -12.766274247179911 What 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)
What is sodium chloride? so soluble in water -12.780603340516226 What 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)
What is sodium chloride? metal ion -12.789333959663699 What 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)
What is sodium chloride? by-products -12.842485453362094 What 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)
What is sodium chloride? The common table salt -12.851250655364037 What 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)
What is sodium chloride? make hydrochloric acid -12.868099194003905 What 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)
What is sodium chloride? a solution -12.902106353741544 What 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)
What is sodium chloride? Salt Brine -12.913549698588014 What 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)
What is sodium chloride? sodium -12.924614756158945 What 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)
What is sodium chloride? a chemical compound with formula NaCl -12.971058867051344 What 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)
What is sodium chloride? suitable carrier or excipients -12.981177896974852 What 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)
What is sodium chloride? calcium chloride -12.999123516046295 What 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)
What is sodium chloride? typical ionic compound -13.000618286984889 What 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)
What is sodium chloride? Sodium Salt -13.004530056938723 What 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)
What is sodium chloride? an action -13.015683043883321 What 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)
What is sodium chloride? SPLASH Ice Melt -13.016772217696342 What 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)
What is sodium chloride? magnesium chloride -13.028465312180463 What 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)
What is sodium chloride? high temperatures -13.031900961102489 What 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)
What is sodium chloride? an ionic compound -13.046391004538581 What 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)
What is sodium chloride? water soluble material -13.0553628677924 What 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)
What is sodium chloride? use -13.088076185898327 What 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)
What is sodium chloride? Normal saline solution -13.08892161398977 What 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)
What is sodium chloride? Simulated Gastric Fluid -13.089611974365784 What 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)
What is sodium chloride? normal table salt -13.09626868642893 What 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)
What is sodium chloride? a Salt Gram technique -13.103270120479111 What 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)
What is sodium chloride? potassium chloride -13.119349267846397 What 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)
What is sodium chloride? Lasio Hypersilk Color Treated Shampoo -13.120197082388762 What 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)
What is sodium chloride? adjust tonicity -13.124118936948612 What 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)
What is sodium chloride? Soda-Lo -13.129239751947088 What 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)
What is sodium chloride? An example -13.132557258651115 What 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)
What is sodium chloride? tonicity agent -13.137331687425245 What 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)
What is sodium chloride? large ingots -13.139094083227803 What 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)
What is sodium chloride? common inorganic salt -13.146380273538556 What 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)
What is sodium chloride? Salt/Sodium Chloride -13.155501032385692 What 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)
What is sodium chloride? a higher reflection coefficient -13.162799861403425 What 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)
What is sodium chloride? source of iodine -13.168480740920721 What 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)
What is sodium chloride? inorganic acid salt -13.171432656605415 What 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)
What is sodium chloride? Grocery store salt -13.175715037032367 What 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)
What is sodium chloride? Lasio Hypersilk Replenishing Shampoo -13.182078166508365 What 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)
What is sodium chloride? a single positive charge -13.185868526042405 What 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)
What is sodium chloride? natural cleaning agent -13.191722382355355 What 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)
What is sodium chloride? non-volatile solute -13.193519963338598 What 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)
What is sodium chloride? non-vasoactive substance -13.193519963338598 What 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)
What is sodium chloride? original source material -13.195643514127068 What 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)
What is sodium chloride? Ionic Compounds Salt -13.196273400942 What 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)
What is sodium chloride? Zach Hunt -13.196273400942 What 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)
What is sodium chloride? Adios Ambros -13.198019206667604 What 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)
What is sodium chloride? sodium hypochlorite -13.205015591837846 What 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)
What is sodium chloride? mixture of two element -13.211228914856072 What 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)
What is sodium chloride? strong electrolyte -13.21519990631774 What 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)
What is sodium chloride? 65.degree -13.225202567843477 What 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)
What is sodium chloride? solid test aerosol -13.232046597530005 What 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)
What is sodium chloride? soluble inorganic salt -13.232046597530005 What 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)
What is sodium chloride? customary electrolyte salt -13.232046597530005 What 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)
What is sodium chloride? natural electrical conductor -13.232046597530005 What 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)
What is sodium chloride? Sodium Chloride Oral Solution -13.234647625376597 What 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)
What is sodium chloride? Sodium Chloride Irrigation Solution -13.234647625376597 What 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)
What is sodium chloride? Pre-mix -13.234647625376597 What 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)
What is sodium chloride? common household substance -13.234882988004818 What 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)
What is sodium chloride? water-soluble organic or inorganic salt -13.235197654473676 What 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)
What is sodium chloride? ordinary table salt -13.23616580976245 What 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)
What is sodium chloride? processed form of salt -13.24116735637714 What 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)
What is sodium chloride? monovalent, inorganic salt -13.24116735637714 What 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)
What is sodium chloride? non-oxidizing metal ion -13.24116735637714 What 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)
What is sodium chloride? cupric chloride -13.249909547272988 What 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)
What is sodium chloride? lithium chloride -13.249909547272988 What 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)
What is sodium chloride? ferric chloride -13.249909547272988 What 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)
What is sodium chloride? ammonium chloride -13.249909547272988 What 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)
What is sodium chloride? GOOD SOLUBILITY -13.253770868547212 What 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)
What is sodium chloride? one atom -13.261887990018584 What 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)
What is sodium chloride? hydrochloric acid -13.264574833136024 What 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)
What is sodium chloride? halogen salt -13.265117570387268 What 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)
What is sodium chloride? Water in the reservoir -13.267744490499814 What 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)
What is sodium chloride? minor component of the PM emission -13.267744490499814 What 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)
What is sodium chloride? molecule composed of one sodium ion and one chloride ion -13.267744490499814 What 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)
What is sodium chloride? calcium magnesium acetate -13.271030828197905 What 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)
What is sodium chloride? glutamic acid sodium metal salt -13.28015158704504 What 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)
What is sodium chloride? colorless crystalline ionic substance -13.28015158704504 What 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)
What is sodium chloride? white, crystalline chemical compound -13.28015158704504 What 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)
What is sodium chloride? principal constituent of the water -13.28015158704504 What 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)
What is sodium chloride? Common salt -13.280490703847226 What 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)
What is sodium chloride? ionic substance -13.282933653464866 What 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)
What is sodium chloride? KC1 -13.285298091599875 What 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)
What is sodium chloride? resultant waste solution from the process -13.295588664580666 What 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)
What is sodium chloride? essential constituent of the body fluid -13.312638445934956 What 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)
What is sodium chloride? water soluble, substantially neutral salt -13.312638445934956 What 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)
What is sodium chloride? Great Salt Lake of USA -13.312638445934956 What 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)
What is sodium chloride? excellent water soluble crystalline Sodium source -13.312638445934956 What 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)
What is sodium chloride? Reference toxicants -13.324773367549241 What 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)
What is sodium chloride? solid salt -13.325238549187844 What 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)
What is sodium chloride? Table Salt -13.331015373136207 What 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)
What is sodium chloride? Ordinary salt -13.335767765765308 What 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)
What is sodium chloride? ample other minerals -13.338650845535842 What 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)
What is sodium chloride? Rusk Deepshine Smooth Keratin Care Shampoo -13.339215580057628 What 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)
What is sodium chloride? Water in the Pierre aquifer -13.340127326534116 What 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)
What is sodium chloride? Water from the upper aquifer -13.340127326534116 What 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)
What is sodium chloride? Water in the Boone aquifer -13.340127326534116 What 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)
What is sodium chloride? seawater -13.340468392402284 What 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)
What is sodium chloride? chemical compound -13.349755592655004 What 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)
What is sodium chloride? mineral ingredient -13.35720771763603 What 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)
What is sodium chloride? a high melting point -13.357815333962922 What 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)
What is sodium chloride? simple salt -13.357855192737532 What 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)
What is sodium chloride? effectiveeluant for DEAE cellulose resins -13.363689224190537 What 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)
What is sodium chloride? conventional material -13.373769197830075 What 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)
What is sodium chloride? ionic salt -13.37622926126732 What 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)
What is sodium chloride? effective eluant for DEAE cellulose resins -13.38410953549277 What 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)
What is sodium chloride? a cubic crystal structure -13.387340391528198 What 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)
What is sodium chloride? suitable salt -13.389638147319049 What 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)
What is sodium chloride? 1 gram -13.392873625929358 What 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)
What is sodium chloride? why sweat tastes salty -13.393771977786429 What 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)
What is sodium chloride? osmotic agent -13.397237823413779 What 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)
What is sodium chloride? mineral source -13.398955278114359 What 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)
What is sodium chloride? placebo -13.402305472308768 What 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)
What is sodium chloride? cooking -13.402370040436026 What 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)
What is sodium chloride? ions -13.402370040436026 What 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)
What is sodium chloride? high heat -13.405554226807881 What 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)
What is sodium chloride? The regenerant -13.411639128737972 What 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)
What is sodium chloride? chlorine -13.41563299455936 What 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)
What is sodium chloride? weight -13.41563299455936 What 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)
What is sodium chloride? compound form -13.416917196033122 What 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)
What is sodium chloride? important for animal nutrition -13.421226184255001 What 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)
What is sodium chloride? suitable electrolyte -13.423696735870633 What 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)
What is sodium chloride? Chlorides Saline hot springs -13.447685932561969 What 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)
What is sodium chloride? the calcium chloride -13.458139064135713 What 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)
What is sodium chloride? natural salt crystal -13.458332426142364 What 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)
What is sodium chloride? ideal target pH -13.462245036200356 What 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)
What is sodium chloride? 9780119391909 -13.46770500663026 What 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)
What is sodium chloride? three frequencies -13.49145573456175 What 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)
What is sodium chloride? the most common -13.498014328380453 What 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)
What is sodium chloride? a double effect -13.511724681525886 What 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)
What is sodium chloride? a poison to the body -13.516520970332088 What 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)
What is sodium chloride? a formula weight -13.549516845178452 What 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)
What is sodium chloride? a chemical compound with the formula -13.551100750434278 What 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)
What is sodium chloride? a crystal lattice -13.563172051094789 What 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)
What is sodium chloride? the Kyropoulos growth method -13.563331466022472 What 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)
What is sodium chloride? a food preservative -13.568024887511777 What 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)
What is sodium chloride? neutral charges -13.569563350742921 What 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)
What is sodium chloride? the iodized salt -13.57493954661946 What 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)
What is sodium chloride? an ionic compound with the formula -13.585976693488407 What 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)
What is sodium chloride? the predominant one -13.599697082063933 What 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)
What is sodium chloride? a unique taste -13.614358294787753 What 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)
What is sodium chloride? product -13.622499005558609 What 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)
What is sodium chloride? the mix -13.626525106461061 What 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)
What is sodium chloride? concrete corrosion -13.626807745077311 What 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)
What is sodium chloride? a fancy way of saying salt -13.654672036523042 What 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)
What is sodium chloride? the culprit -13.660906697854081 What 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)
What is sodium chloride? the selecting agent -13.661590920675117 What 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)
What is sodium chloride? a paralyzing effect -13.664854752075975 What 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)
What is sodium chloride? The solution -13.672742066025679 What 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)
What is sodium chloride? the most frequent -13.67548990398361 What 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)
What is sodium chloride? biological systems -13.683475198531017 What 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)
What is sodium chloride? the most common de-icer -13.685708047110651 What 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)
What is sodium chloride? The bulk content -13.69430623913405 What 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)
What is sodium chloride? the chief one -13.697530259395243 What 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)
What is sodium chloride? older cats -13.71088529317878 What 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)
What is sodium chloride? the diet -13.72938611834837 What 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)
What is sodium chloride? medicinal purposes -13.732557279742423 What 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)
What is sodium chloride? the rest -13.736584878636116 What 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)
What is sodium chloride? the inorganic salt -13.74824234743307 What 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)
What is sodium chloride? 190 pm -13.75674087834706 What 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)
What is sodium chloride? The windows -13.785099782756458 What 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)
What is sodium chloride? The salt effect -13.822657960518963 What 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)
What is sodium chloride? the ocean -13.875867121600066 What 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)
What is sodium chloride? The salts -13.909473783937585 What 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)
What is sodium chloride? the resulting solution -13.935669471422448 What 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)
What is sodium chloride? water -13.994767271960027 What 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)
What is sodium chloride? the agency -14.07120290697024 What 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)
What is sodium chloride? The waste liquid -14.249320656392559 What 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)
What is sodium chloride? the salt -14.252595459977227 What 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)
What is sodium chloride? The derivatized extracts -14.291762183370437 What 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)
What is sodium chloride? the tannin -14.369435781231154 What 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)
What is sodium chloride? summers -14.408393998702074 What 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)
What is sodium chloride? salt -14.551110495444604 What 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)
What is sodium chloride? The salt -15.02202868346188 What 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)
What is sodium chloride? hazards -15.772187369852624 What 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)
What is sodium chloride? the compound -16.640982901097875 What 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)
What continent is Bolivia on? Hugo Banzer -8.635910730562411 What 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)
What continent is Bolivia on? South America -9.018682408718947 What 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)
What continent is Bolivia on? La Paz -9.211289575070301 What 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)
What continent is Bolivia on? ? Bechtel -9.262580880886293 What 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)
What continent is Bolivia on? SPanish -9.276659700935772 What 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)
What continent is Bolivia on? Jose Pando -9.421451645540193 What 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)
What continent is Bolivia on? Rene Barrientos -9.559946928619578 What 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)
What continent is Bolivia on? Cochabamba -9.575425184483889 What 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)
What continent is Bolivia on? Pando Department Pando -9.580115538199385 What 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)
What continent is Bolivia on? drug prohibition -9.583497680574528 What 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)
What continent is Bolivia on? SOUTH AMERICA -9.619964481508383 What 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)
What continent is Bolivia on? Evo Morales -9.6433874423412 What 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)
What continent is Bolivia on? Mendoza-Nava -9.69032006393411 What 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)
What continent is Bolivia on? The Apolo area -9.725583773552868 What 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)
What continent is Bolivia on? the MNR -9.73492216280489 What 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)
What continent is Bolivia on? Submit Answer -9.737099167718885 What 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)
What continent is Bolivia on? Tiwanaku -9.74494292437029 What 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)
What continent is Bolivia on? an Indian -9.76056388465046 What 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)
What continent is Bolivia on? Iquique -9.801531591872601 What 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)
What continent is Bolivia on? the Chapare coca growers union -9.810466722104039 What 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)
What continent is Bolivia on? The Tunquini area -9.821374979466421 What 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)
What continent is Bolivia on? Bechtel -9.832845255760756 What 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)
What continent is Bolivia on? JL Tejada Sorzano -9.845407385205494 What 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)
What continent is Bolivia on? simple , factual answers -9.864402777700764 What 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)
What continent is Bolivia on? the 'movements -9.87442684866205 What 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)
What continent is Bolivia on? prominence leading protests -9.908398608096583 What 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)
What continent is Bolivia on? the Atacama Desert -9.916970297807511 What 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)
What continent is Bolivia on? the United States Department -9.920264778002474 What 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)
What continent is Bolivia on? Daniel Salamanca Urey -9.930290333756664 What 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)
What continent is Bolivia on? Like-Minded Mega-Diverse Countries -9.931899702565456 What 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)
What continent is Bolivia on? Aguas del Tunari -9.951511123596752 What 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)
What continent is Bolivia on? union organizer Evo Morales -9.963432972180954 What 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)
What continent is Bolivia on? successful? International Waters -9.964774077720085 What 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)
What continent is Bolivia on? Quechua -9.968378051902572 What 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)
What continent is Bolivia on? Aymara -9.968378051902572 What 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)
What continent is Bolivia on? Prospective parents -9.986564997012806 What 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)
What continent is Bolivia on? an international legal status -9.992154672412948 What 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)
What continent is Bolivia on? The Andean Community -9.9977842685706 What 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)
What continent is Bolivia on? Main sights La Paz -10.006916152058134 What 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)
What continent is Bolivia on? Quiroga -10.059062437627203 What 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)
What continent is Bolivia on? coastal territory -10.085736951971363 What 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)
What continent is Bolivia on? Brazil -10.122201502544712 What 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)
What continent is Bolivia on? Chuquisaca Department Chuquisaca -10.133672091608979 What 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)
What continent is Bolivia on? third place -10.148481189366922 What 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)
What continent is Bolivia on? The Chacaltaya -10.251800733338259 What 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)
What continent is Bolivia on? an indigenous person -10.269784155626985 What 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)
What continent is Bolivia on? Paz Estenssoro -10.405452559719848 What 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)
What continent is Bolivia on? Eva Morales -10.411641969932115 What 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)
What continent is Bolivia on? Ramiro -10.417798544356135 What 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)
What continent is Bolivia on? The Llama -10.426608728730384 What 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)
What continent is Bolivia on? Sucre -10.429922129750373 What 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)
What continent is Bolivia on? Lozada -10.464661003339499 What 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)
What continent is Bolivia on? Copacabana -10.481262198375385 What 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)
What continent is Bolivia on? Uturuncu -10.530091640257364 What 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)
What continent is Bolivia on? the Altiplano -10.5893681715632 What 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)
What continent is Bolivia on? Santa Cruz -10.649997933626684 What 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)
What continent is Bolivia on? 2005 Evo Morales -10.755829001015877 What 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)
What continent is Bolivia on? 1931 ? Daniel Salamanca Urey -10.928012678213522 What 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)
What continent is Bolivia on? Spanish -11.152352503370123 What 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)
What continent is Bolivia on? 10 million -11.162391614877233 What 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)
What continent is Bolivia on? the town -11.382202216499566 What 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)
What continent is Bolivia on? The boliviano -11.39507446000093 What 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)
What continent is Bolivia on? Argentina -11.483490441765426 What 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)
What continent is Bolivia on? Peru -11.526454487634195 What 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)
What continent is Bolivia on? a part -11.700260955233604 What 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)
What continent is Bolivia on? the lowlands -11.791994282492592 What 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)
What continent is Bolivia on? Morales -11.834144581339963 What 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)
What continent is Bolivia on? 9 million -11.848343202149652 What 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)
What continent is Bolivia on? Copacana -11.919519417983746 What 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)
What continent is Bolivia on? a high demand -11.92068380977794 What 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)
What continent is Bolivia on? sucre -11.933978764241655 What 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)
What continent is Bolivia on? 9.2 million people -11.944720732021963 What 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)
What continent is Bolivia on? 6.6 million -11.947387509049392 What 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)
What continent is Bolivia on? the left populist Evo Morales -11.95940084715375 What 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)
What continent is Bolivia on? 9 million people -12.004781629703698 What 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)
What continent is Bolivia on? 8,274,325 people -12.05341251419155 What 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)
What continent is Bolivia on? 9,827,522 inhabitants -12.095262829762312 What 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)
What continent is Bolivia on? 8 million -12.12951806145442 What 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)
What continent is Bolivia on? 8.2 million -12.13836008357227 What 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)
What continent is Bolivia on? 8 million people -12.145447845307478 What 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)
What continent is Bolivia on? example -12.322230547789434 What 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)
What continent is Bolivia on? Germany -12.515642429544553 What 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)
What continent is Bolivia on? Chile -12.645005479114362 What 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)
What continent is Bolivia on? Venezuela -12.831771690795545 What 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)
What continent is Bolivia on? Bolivia -12.843029467134295 What 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)
What continent is Bolivia on? country -12.966641265322624 What 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)
What continent is Bolivia on? basin -13.675220588542299 What 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)
What sport do the Cleaveland Cavaliers play? The Orlando Magic -7.977179053413658 What 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)
What sport do the Cleaveland Cavaliers play? the second game -10.935520335341465 What 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)
What are brake pads made of? hazardous materials -2.119265168173219 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, are made of very, hazardous materials) -> hazardous materials (6292ms)
What are brake pads made of? organic materials -2.2378122424139693 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, are those made of, organic materials) -> organic materials (6292ms)
What are brake pads made of? a metal backing plate -2.4494817464505854 What 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)
What are brake pads made of? crystal :eek -2.564993527267105 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (your brake pads, are made of, crystal :eek) -> crystal :eek (6292ms)
What are brake pads made of? a compound -2.591361249471974 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brembo front brake pads, are made of, a compound) -> a compound (7306ms)
What are brake pads made of? exact fit -2.6057664989384284 What 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)
What are brake pads made of? friction lining -2.6515979266339347 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Types Brake pads, are made of, friction lining) -> friction lining (7306ms)
What are brake pads made of? non-asbestos material -2.7677633097493874 What 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)
What are brake pads made of? a special pad compound -2.8313584606925595 What 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)
What are brake pads made of? a relatively soft resinous composite -2.872098622636157 What 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)
What are brake pads made of? metal shavings -2.8796564013181127 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (the brake pads, are made of, metal shavings) -> metal shavings (8494ms)
What are brake pads made of? a sinter mixture -2.931100834040523 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (The braking pads, are made of, a sinter mixture) -> a sinter mixture (8494ms)
What are brake pads made of? tough material -2.9437666658382895 What 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)
What are brake pads made of? compressed wood chips -2.965485552825949 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (counterfeit brake pads, made of, compressed wood chips) -> compressed wood chips (8494ms)
What are brake pads made of? hard , semi-metallic materials -3.058979363271801 What 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)
What are brake pads made of? different materials -3.0789189846663905 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Truck disc brake pads, are made of, different materials) -> different materials (8519ms)
What are brake pads made of? wood or cow dung -3.190350534059987 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads, made of, wood or cow dung) -> wood or cow dung (8518ms)
What are brake pads made of? a hard material -3.331927772385904 What 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)
What are brake pads made of? hard plastic -3.33242080313334 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Cheap brake pads, made of, hard plastic) -> hard plastic (8518ms)
What are brake pads made of? a material -3.461955906552911 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (the brake pads, to be made of, a material) -> a material (8518ms)
What are brake pads made of? Richard . 1 -3.5236022000078684 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, make fun of, Richard . 1) -> Richard . 1 (8551ms)
What are brake pads made of? carbon-fibre -3.7973475676278508 What 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)
What are brake pads made of? a variety -4.142715605380191 What 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)
What are brake pads made of? asbestos -4.158236736486661 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, were made of, asbestos) -> asbestos (8627ms)
What are brake pads made of? copper -4.405570853422932 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (The brake pads, were made of, copper) -> copper (8683ms)
What are brake pads made of? a combination -4.566951716626382 What 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)
What are brake pads made of? sawdust -4.567200562266926 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, made of, sawdust) -> sawdust (8703ms)
What are brake pads made of? ceramic fibers -4.574051444006008 What 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)
What are brake pads made of? several components -4.653201854967466 What 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)
What are brake pads made of? small pieces -4.703203997469254 What 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)
What are brake pads made of? soft Ferro Carbon material -4.729181155520072 What 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)
What are brake pads made of? now -5.6037985242578205 What 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)
What are brake pads made of? cast aluminum -5.680795352891165 What 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)
What are brake pads made of? difference -5.7135475813737 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (some quality brake pads, would make a world of, difference) -> difference (8834ms)
What are brake pads made of? cashew nut shells -5.845265461713868 What 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)
What are brake pads made of? the same material -6.236625884797544 What 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)
What are brake pads made of? 22 -6.3436026080382195 What 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)
What are brake pads made of? fibers -6.357749562287511 What 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)
What are brake pads made of? sintered copper -6.35849543363171 What 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)
What are brake pads made of? 14 percent -6.899151708775062 What 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)
What are brake pads made of? steel -7.540089543388488 What 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)
What are brake pads made of? composite ceramic fibers -7.593791164252705 What 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)
What are brake pads made of? any carbon brake track wheel -7.869883854588265 What 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)
What are brake pads made of? organic ingredients -8.01551828523858 What 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)
What are brake pads made of? superbike-level stopping performance -8.096731548611697 What 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)
What are brake pads made of? Ontario -8.239084094372682 What 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)
What are brake pads made of? racing materials -8.258213999555867 What 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)
What are brake pads made of? Brake dust -8.296622021658841 What 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)
What are brake pads made of? compound -8.302015995871457 What 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)
What are brake pads made of? the USA NOTES -8.553802516885717 What 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)
What are brake pads made of? brembo caliper -8.636110171205956 What 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)
What are brake pads made of? a slight noise -8.649086444228374 What 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)
What are brake pads made of? dust -8.901148857663031 What 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)
What are brake pads made of? a great replacement -9.055686280378263 What 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)
What are brake pads made of? a 1997 Ford Mustang -9.4048540300188 What 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)
What are brake pads made of? quick and easy -9.411380719187218 What 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)
What are brake pads made of? brake pads -9.564166190288148 What 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)
What are brake pads made of? contact with the rotor -9.739772863258134 What 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)
What are brake pads made of? Asbestos -9.913571937315842 What 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)
What are brake pads made of? The brake -9.937437867504084 What 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)
What are brake pads made of? Balance -10.083849581158047 What 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)
What are brake pads made of? balance -10.654861413443989 What 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)
What are brake pads made of? hazardous material -10.835572409256253 What 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)
What are brake pads made of? different material -10.943391582148612 What 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)
What are brake pads made of? ceramic fiber -11.009790571569322 What 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)
What are brake pads made of? Copper -11.029141981503075 What 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)
What are brake pads made of? Copper 10 -11.060354853471146 What 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)
What are brake pads made of? Carbon Fibre -11.091335351712432 What 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)
What are brake pads made of? non-asbestos sheet material -11.104069355380275 What 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)
What are brake pads made of? die cast aluminum -11.139150100308457 What 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)
What are brake pads made of? Sawdust -11.212806978593012 What 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)
What are brake pads made of? Fiber -11.282813291745894 What 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)
What are brake pads made of? organic material -11.307274527657654 What 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)
What are brake pads made of? Ceramic fiber -11.413772968877076 What 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)
What are brake pads made of? Contact -11.436608530900347 What 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)
What are brake pads made of? fiber -11.939965837538587 What 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)
What are brake pads made of? contact -11.99296283789632 What 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)
What are brake pads made of? Eye contact -12.13235483118082 What 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)
What are brake pads made of? Difference -12.327344212561457 What 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)
What are brake pads made of? coppered -13.507028194077972 What 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)
Which British teams has Manchester United played? Manchester City -3.0166688704638065 Which 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)
Which British teams has Manchester United played? Liverpool FC -3.3816369697957516 Which 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)
Which British teams has Manchester United played? Liverpool -3.965243237043895 Which 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)
Which British teams has Manchester United played? Arsenal -4.0966832122599595 Which 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)
Which British teams has Manchester United played? West Ham -4.767539394252644 Which 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)
Which British teams has Manchester United played? Chelsea FC -5.0714274050227885 Which 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)
Which British teams has Manchester United played? Manchester United -5.46348064690218 Which 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)
Which British teams has Manchester United played? Chelsea -5.526265426755739 Which 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)
Which British teams has Manchester United played? football -5.626691368579184 Which 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)
Which British teams has Manchester United played? Everton -5.672426444339753 Which 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)
Which British teams has Manchester United played? Swansea -5.752196342829025 Which 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)
Which British teams has Manchester United played? Manchester United FC -6.167647827426459 Which 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)
How did Adolf Hitler die? age 56 -7.402020592095105 How 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)
How did Adolf Hitler die? 93 -7.813064293293401 How 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)
How did Adolf Hitler die? 37 years -8.00745437865814 How 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)
How did Adolf Hitler die? 1960 -8.532103934726027 How 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)
How did Adolf Hitler die? a hospital -8.911721155284425 How 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)
How did Adolf Hitler die? May 1st -9.368980014132404 How 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)
How did Adolf Hitler die? a Berlin hospital -9.428280219760806 How 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)
How did Adolf Hitler die? April 30 , 1945 -9.450031534052757 How 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)
How did Adolf Hitler die? age 5/6 -9.532620660747279 How 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)
How did Adolf Hitler die? action -9.712749313658199 How 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)
How did Adolf Hitler die? defending Christianity -10.122684711095872 How 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)
How did Adolf Hitler die? Such action -10.222958900196158 How 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)
How did Adolf Hitler die? 1960s -10.26995071950705 How 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)
How did Adolf Hitler die? May 1st-2nd -10.39803934880479 How 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)
How did Adolf Hitler die? May 1 st -10.533561029111066 How 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)
How did Adolf Hitler die? April 30th 1945 -10.713781796532396 How 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)
How did Adolf Hitler die? the age -10.767701830064878 How 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)
How did Adolf Hitler die? Action -10.800822221216535 How 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)
How did Adolf Hitler die? Berlin -10.821846971830201 How 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)
How did Adolf Hitler die? the war -11.128018378569683 How 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)
How did Adolf Hitler die? gunshot -12.54805550627081 How 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)
How did Adolf Hitler die? Germany -12.646750992923934 How 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)
How did Adolf Hitler die? cyanide -12.874312748729894 How 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)
How did Adolf Hitler die? Vienna -13.445465206339868 How 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)
How did Adolf Hitler die? Cyanide -13.480480007777487 How 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)
What movies did Meg Ryan star in? LIFE -10.288028553130037 What 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)
What movies did Meg Ryan star in? The Hunger Games -10.415874368728176 What 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)
What movies did Meg Ryan star in? 10 years -11.599680183698718 What 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)
What movies did Meg Ryan star in? Doris Day -11.656275825655879 What 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)
What movies did Meg Ryan star in? Billy Crystal -11.75777006535542 What 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)
What movies did Meg Ryan star in? a few movies -11.875514915376245 What 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)
What movies did Meg Ryan star in? Scarlett Johansson -11.953800639779535 What 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)
What movies did Meg Ryan star in? 10 kills -11.988121955813156 What 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)
What movies did Meg Ryan star in? Dennis Quaid -12.096156494936409 What 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)
What movies did Meg Ryan star in? Monster Garage -12.199479923444992 What 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)
What movies did Meg Ryan star in? a fully-clothed orgasm -12.242592811619726 What 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)
What movies did Meg Ryan star in? film stars -12.251942071297645 What 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)
What movies did Meg Ryan star in? Noni Juice -12.299707850664424 What 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)
What movies did Meg Ryan star in? thankful Harlin -12.338336518529452 What 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)
What movies did Meg Ryan star in? the Hollywood stars -12.353375554049611 What 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)
What movies did Meg Ryan star in? such a fund -12.356840277148425 What 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)
What movies did Meg Ryan star in? terrific....Hutton shines -12.3710485278351 What 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)
What movies did Meg Ryan star in? the Edie Sedgewick -12.372930895939962 What 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)
What movies did Meg Ryan star in? Dennis Quald -12.373283746901379 What 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)
What movies did Meg Ryan star in? holiday shopping -12.38293290187417 What 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)
What movies did Meg Ryan star in? Maggie -12.396234658295194 What 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)
What movies did Meg Ryan star in? two jilted lovers -12.41843279535226 What 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)
What movies did Meg Ryan star in? odd walk-on parts -12.422491028221936 What 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)
What movies did Meg Ryan star in? an orgasm -12.435120066345252 What 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)
What movies did Meg Ryan star in? O.o -12.442802564232103 What 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)
What movies did Meg Ryan star in? Meg Ryan -12.46967584134416 What 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)
What movies did Meg Ryan star in? gifted comic actors -12.495600711424975 What 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)
What movies did Meg Ryan star in? a small little bookstore -12.499778945596749 What 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)
What movies did Meg Ryan star in? Ian -12.51470312521278 What 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)
What movies did Meg Ryan star in? a buyer -12.517012065853965 What 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)
What movies did Meg Ryan star in? two strangers -12.521320847795483 What 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)
What movies did Meg Ryan star in? such a talented woman -12.531419516156136 What 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)
What movies did Meg Ryan star in? a vagina-free Valentine -12.560946117007333 What 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)
What movies did Meg Ryan star in? Kathleen Kelly -12.580485452512557 What 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)
What movies did Meg Ryan star in? a Wiccan -12.585908563820905 What 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)
What movies did Meg Ryan star in? a capable and courageous officer -12.591073391687939 What 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)
What movies did Meg Ryan star in? older adoptive parents -12.595515039603967 What 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)
What movies did Meg Ryan star in? ThinkGeek iPad Keyboard Case -12.598873708204195 What 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)
What movies did Meg Ryan star in? A teenage girl -12.611709395064466 What 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)
What movies did Meg Ryan star in? American romantic comedy -12.622018188713161 What 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)
What movies did Meg Ryan star in? a style -12.62275305240712 What 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)
What movies did Meg Ryan star in? an Appearance -12.624280697457259 What 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)
What movies did Meg Ryan star in? a market research executive -12.628936414757543 What 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)
What movies did Meg Ryan star in? an international film festival -12.632630679562427 What 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)
What movies did Meg Ryan star in? an extremely easy exotic dancer -12.637810686996918 What 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)
What movies did Meg Ryan star in? Sunset Beach -12.642806558386804 What 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)
What movies did Meg Ryan star in? an Amway distributor -12.643475906292752 What 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)
What movies did Meg Ryan star in? a number -12.649706280619146 What 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)
What movies did Meg Ryan star in? a bit -12.651684800035364 What 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)
What movies did Meg Ryan star in? three movies -12.65297862572962 What 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)
What movies did Meg Ryan star in? Lexington St & -12.666842750824594 What 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)
What movies did Meg Ryan star in? Ecuador -12.671303720083717 What 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)
What movies did Meg Ryan star in? Seattle -12.69618647190487 What 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)
What movies did Meg Ryan star in? amazing chemistry -12.701691483339987 What 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)
What movies did Meg Ryan star in? 6:03 -12.701806638573093 What 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)
What movies did Meg Ryan star in? ex-lover Russell Crowe -12.73696604515149 What 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)
What movies did Meg Ryan star in? Warner Brothers sole savior -12.772176456315512 What 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)
What movies did Meg Ryan star in? New York traffic -12.774286057259784 What 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)
What movies did Meg Ryan star in? Joel really all about -12.775870721120395 What 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)
What movies did Meg Ryan star in? Short Takes Kate & Leopold -12.78550921511319 What 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)
What movies did Meg Ryan star in? Medium Hair Styles -12.786350200576917 What 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)
What movies did Meg Ryan star in? Joe?s luggage -12.787207835943333 What 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)
What movies did Meg Ryan star in? Anya -12.802722408605854 What 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)
What movies did Meg Ryan star in? 2 children -12.812236873103688 What 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)
What movies did Meg Ryan star in? 19 ? -12.82808787100535 What 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)
What movies did Meg Ryan star in? poster moms -12.834972173983996 What 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)
What movies did Meg Ryan star in? Diana -12.852526384918 What 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)
What movies did Meg Ryan star in? Margaret Mary Emily Anne Hyra -12.8689728417178 What 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)
What movies did Meg Ryan star in? Life -12.871190251767509 What 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)
What movies did Meg Ryan star in? romantic comedies -12.944580346160722 What 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)
What movies did Meg Ryan star in? omg jack quaid -12.955859635003595 What 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)
What movies did Meg Ryan star in? backwoods roads -12.973726563489155 What 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)
What movies did Meg Ryan star in? an email romance -12.988059472758605 What 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)
What movies did Meg Ryan star in? Shopgirl -12.994425420154613 What 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)
What movies did Meg Ryan star in? Mail -12.998762937214792 What 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)
What movies did Meg Ryan star in? The City -13.01848096433947 What 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)
What movies did Meg Ryan star in? a man -13.028844943606254 What 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)
What movies did Meg Ryan star in? 19-years-old -13.045859159189751 What 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)
What movies did Meg Ryan star in? last month -13.064436491682997 What 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)
What movies did Meg Ryan star in? Sally -13.079372989535335 What 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)
What movies did Meg Ryan star in? the Broadway play -13.089424221496312 What 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)
What movies did Meg Ryan star in? Kate -13.127607575627803 What 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)
What movies did Meg Ryan star in? beaded jewelry -13.166639195136568 What 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)
What movies did Meg Ryan star in? the 58 year old -13.28108556713566 What 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)
What movies did Meg Ryan star in? Quaid -13.283755267540021 What 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)
What movies did Meg Ryan star in? China -13.328612548738803 What 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)
What movies did Meg Ryan star in? Crowe -13.357791068891053 What 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)
What movies did Meg Ryan star in? of business -13.390844080073542 What 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)
What movies did Meg Ryan star in? Beyond -13.428983796055828 What 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)
What movies did Meg Ryan star in? Runyeon -13.429113253578848 What 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)
What movies did Meg Ryan star in? one of my favorite actresses -13.461047242786687 What 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)
What movies did Meg Ryan star in? a beautiful and courageous woman -13.498840480059 What 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)
What movies did Meg Ryan star in? the Worms -13.546965349147337 What 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)
What movies did Meg Ryan star in? The Film -13.55826421707416 What 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)
What movies did Meg Ryan star in? Every Word -13.567389062083953 What 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)
What movies did Meg Ryan star in? November 19 , 1961 -13.664513265146333 What 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)
What movies did Meg Ryan star in? hot -13.731223143211746 What 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)
What movies did Meg Ryan star in? The $ 23 dish -13.809593191048753 What 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)
What movies did Meg Ryan star in? in -13.812765220555274 What 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)
What movies did Meg Ryan star in? The event -13.918911476689768 What 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)
What movies did Meg Ryan star in? the flock -14.095573297548254 What 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)
What movies did Meg Ryan star in? the island -14.110642740784131 What 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)
What movies did Meg Ryan star in? business -14.174528062758746 What 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)
What movies did Meg Ryan star in? pretty cute -14.204087964606634 What 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)
What movies did Meg Ryan star in? the day -14.281975935056229 What 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)
What movies did Meg Ryan star in? 2000 -14.308102598180527 What 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)
What movies did Meg Ryan star in? the new movie -14.368418766260467 What 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)
What movies did Meg Ryan star in? the event -14.374095597649733 What 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)
What movies did Meg Ryan star in? the ebodiment -14.432312823143869 What 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)
What movies did Meg Ryan star in? the movie -14.455337571427107 What 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)
What movies did Meg Ryan star in? the power -14.461491343296121 What 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)
What movies did Meg Ryan star in? The same -14.479473948072089 What 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)
What movies did Meg Ryan star in? the defending champion -14.483732073614396 What 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)
What movies did Meg Ryan star in? The bottom pic -14.489464511986334 What 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)
What movies did Meg Ryan star in? the film jury -14.496831747752996 What 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)
What movies did Meg Ryan star in? the greatest on-screen couple -14.537368729273584 What 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)
What movies did Meg Ryan star in? hand -14.54649871079986 What 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)
What movies did Meg Ryan star in? the perfect Maggie -14.546510098626678 What 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)
What movies did Meg Ryan star in? the film -14.5484776735665 What 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)
What movies did Meg Ryan star in? the consensus -14.556100500366238 What 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)
What movies did Meg Ryan star in? the city -14.564925012084238 What 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)
What movies did Meg Ryan star in? actor -14.569260443569199 What 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)
What movies did Meg Ryan star in? the most explosive performance -14.603411879891294 What 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)
What movies did Meg Ryan star in? the birthplace -14.659253764409574 What 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)
What movies did Meg Ryan star in? the table -14.668979920226224 What 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)
What movies did Meg Ryan star in? the genre -14.680474653467435 What 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)
What movies did Meg Ryan star in? the female villain Dr. Blight -14.685393992170336 What 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)
What movies did Meg Ryan star in? The film -14.693510621054093 What 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)
What movies did Meg Ryan star in? the celebrities -14.698093924953515 What 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)
What movies did Meg Ryan star in? The all-female cast -14.700945321568248 What 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)
What movies did Meg Ryan star in? the bookstore -14.710537260803008 What 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)
What movies did Meg Ryan star in? The blond , slim Rachel -14.769760421437095 What 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)
What movies did Meg Ryan star in? the romance -14.797188634858667 What 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)
What movies did Meg Ryan star in? the cover -14.810024321718938 What 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)
What movies did Meg Ryan star in? the resort -14.829019766916502 What 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)
What movies did Meg Ryan star in? the cowboy -14.853777302360978 What 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)
What movies did Meg Ryan star in? the singer -14.861735085375436 What 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)
What movies did Meg Ryan star in? the market -14.934396785404866 What 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)
What movies did Meg Ryan star in? screen -15.020930026462826 What 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)
What movies did Meg Ryan star in? victim -15.125172440978648 What 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)
What movies did Meg Ryan star in? city -15.132431201807357 What 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)
What movies did Meg Ryan star in? curls -15.220665784449864 What 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)
What movies did Meg Ryan star in? harry -15.2396908815224 What 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)
What movies did Meg Ryan star in? love -15.271521960877942 What 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)
What movies did Meg Ryan star in? example -15.310815992421924 What 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)
What movies did Meg Ryan star in? the role of Anya -15.328051556116447 What 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)
What movies did Meg Ryan star in? moves -15.383515656841634 What 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)
What movies did Meg Ryan star in? the orgasm -15.424962860066103 What 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)
Where is the highest point on earth? Everest -6.162795695101316 Where 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)
Where is the highest point on earth? Mount Kilimanjaro -6.628965235748124 Where 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)
Where is the highest point on earth? Cayambe -6.73156332240354 Where 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)
Where is the highest point on earth? Mount Everest -6.946456832648057 Where 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)
Where is the highest point on earth? Kaba -7.208764219767921 Where 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)
Where is the highest point on earth? Eden -7.212568053490926 Where 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)
Where is the highest point on earth? sea level -7.443693270891315 Where 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)
Where is the highest point on earth? Mt Everest -7.495041335412007 Where 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)
Where is the highest point on earth? Kilimanjaro -7.627131273509676 Where 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)
Where is the highest point on earth? Aconcagua -7.6736756191016475 Where 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)
Where is the highest point on earth? Mount Hood -7.729070199125613 Where 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)
Where is the highest point on earth? Mount Olympus -7.790521058919659 Where 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)
Where is the highest point on earth? Tibet ABC -8.02593871562907 Where 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)
Where is the highest point on earth? the Nepal-Tibet border -8.120150257311098 Where 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)
Where is the highest point on earth? Highlights Mount Everest -8.193544093540805 Where 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)
Where is the highest point on earth? Peak XV -8.244335602623853 Where 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)
Where is the highest point on earth? a Himalayan peak -8.2743983091772 Where 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)
Where is the highest point on earth? Physical Geography Extremes -8.30446101573055 Where 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)
Where is the highest point on earth? Mount Aragats -8.439795846137743 Where 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)
Where is the highest point on earth? part -8.682110469225119 Where 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)
Where is the highest point on earth? Luzon -8.77289183646466 Where 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)
Where is the highest point on earth? The Santa Ana Volcano -8.869019119199967 Where 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)
Where is the highest point on earth? a whole -8.91972933164453 Where 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)
Where is the highest point on earth? K?kestet ? -8.955764713257853 Where 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)
Where is the highest point on earth? Jabal Ram -8.955764713257853 Where 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)
Where is the highest point on earth? Mount Apo -9.037906030169646 Where 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)
Where is the highest point on earth? Three Lands Point -9.041531900912414 Where 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)
Where is the highest point on earth? Edmund Hillary -9.076100407002244 Where 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)
Where is the highest point on earth? Tenzing Norgay -9.102690936078462 Where 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)
Where is the highest point on earth? Henderson Waves -9.409020376416123 Where 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)
Where is the highest point on earth? Iron Hill -9.520185063007428 Where 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)
Where is the highest point on earth? happiness -9.661731305265576 Where 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)
Where is the highest point on earth? France -9.66231257465813 Where 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)
Where is the highest point on earth? The mountain -9.718568040303794 Where 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)
Where is the highest point on earth? 29 ,035 feet -9.789708946281102 Where 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)
Where is the highest point on earth? the Sun ? 7 -9.83254267234969 Where 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)
Where is the highest point on earth? the Jews -9.845975449894839 Where 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)
Where is the highest point on earth? Morni hills -9.865355817739925 Where 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)
Where is the highest point on earth? Copper prices -9.885699744137582 Where 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)
Where is the highest point on earth? The Baru Volcano -9.900231760794053 Where 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)
Where is the highest point on earth? The Cuban revolution -9.935599638456276 Where 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)
Where is the highest point on earth? The mountain?s peak -9.990404563058835 Where 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)
Where is the highest point on earth? Africa -10.106664711681935 Where 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)
Where is the highest point on earth? Legislature -10.130824817942763 Where 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)
Where is the highest point on earth? Santander -10.139907032921316 Where 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)
Where is the highest point on earth? Cuba -10.164990613190831 Where 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)
Where is the highest point on earth? Vienna -10.258682154528204 Where 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)
Where is the highest point on earth? Finland -10.267588692071016 Where 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)
Where is the highest point on earth? a volcano -10.320175011876325 Where 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)
Where is the highest point on earth? Railways -10.324540058709132 Where 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)
Where is the highest point on earth? 2,909 m -10.381279377090122 Where 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)
Where is the highest point on earth? 4,981 meters -10.381279377090122 Where 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)
Where is the highest point on earth? 514 metres -10.404268539732403 Where 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)
Where is the highest point on earth? Shenzhen -10.453790426240873 Where 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)
Where is the highest point on earth? Seller -10.46229712405525 Where 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)
Where is the highest point on earth? 895 meters -10.472351788555853 Where 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)
Where is the highest point on earth? Mont Blanc -10.506377720550008 Where 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)
Where is the highest point on earth? Toshiba -10.513669569144522 Where 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)
Where is the highest point on earth? Yokohama -10.551918419063572 Where 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)
Where is the highest point on earth? Scholarships -10.552885136146024 Where 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)
Where is the highest point on earth? Sydney -10.567032329372749 Where 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)
Where is the highest point on earth? Mount Teide -10.571182659172237 Where 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)
Where is the highest point on earth? Calgary -10.591355288167831 Where 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)
Where is the highest point on earth? Edmonton -10.60292369367789 Where 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)
Where is the highest point on earth? Helsinki -10.60613377354388 Where 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)
Where is the highest point on earth? Spain -10.630676630934321 Where 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)
Where is the highest point on earth? Haiti -10.632886588041492 Where 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)
Where is the highest point on earth? Kindle -10.635376861823387 Where 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)
Where is the highest point on earth? Canada -10.638219799498934 Where 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)
Where is the highest point on earth? Edinburgh -10.64598725674343 Where 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)
Where is the highest point on earth? Domain name -10.696298599682631 Where 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)
Where is the highest point on earth? Mexico -10.718779068745093 Where 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)
Where is the highest point on earth? Japan -10.718779068745093 Where 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)
Where is the highest point on earth? India -10.751793229502029 Where 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)
Where is the highest point on earth? China -10.758240220649382 Where 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)
Where is the highest point on earth? Europe -10.810904018086683 Where 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)
Where is the highest point on earth? Denmark -10.817913046572789 Where 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)
Where is the highest point on earth? The Games -10.859476891206663 Where 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)
Where is the highest point on earth? God -10.871761972389145 Where 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)
Where is the highest point on earth? Prague -10.87448252163682 Where 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)
Where is the highest point on earth? Leadership -10.92576596532796 Where 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)
Where is the highest point on earth? Airdrie -10.95984848258438 Where 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)
Where is the highest point on earth? Camrose -10.95984848258438 Where 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)
Where is the highest point on earth? Victoria -10.963860741962202 Where 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)
Where is the highest point on earth? Mumbai -10.985399443826562 Where 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)
Where is the highest point on earth? Lethbridge -10.98733736318354 Where 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)
Where is the highest point on earth? Sugar -11.010899260839963 Where 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)
Where is the highest point on earth? Kurbanov -11.024405010598878 Where 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)
Where is the highest point on earth? Greece -11.030605103545732 Where 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)
Where is the highest point on earth? Vietnam -11.03925180938614 Where 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)
Where is the highest point on earth? Scotland -11.043927447556934 Where 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)
Where is the highest point on earth? Egypt -11.045970488154119 Where 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)
Where is the highest point on earth? Light -11.052435809544148 Where 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)
Where is the highest point on earth? Czechoslovakia -11.097526347823683 Where 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)
Where is the highest point on earth? Switzerland -11.097776149589583 Where 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)
Where is the highest point on earth? the students -11.100099986347177 Where 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)
Where is the highest point on earth? The Being -11.111368631139168 Where 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)
Where is the highest point on earth? Chicago -11.114217356215594 Where 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)
Where is the highest point on earth? Syria -11.122301993653815 Where 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)
Where is the highest point on earth? NTT DATA -11.12278088476687 Where 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)
Where is the highest point on earth? Qatar -11.123478519684577 Where 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)
Where is the highest point on earth? Venezuela -11.123478519684577 Where 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)
Where is the highest point on earth? Uruguay -11.13221687638841 Where 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)
Where is the highest point on earth? Hawaii -11.134618475079547 Where 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)
Where is the highest point on earth? The Netherlands -11.137905845065607 Where 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)
Where is the highest point on earth? photograph -11.14007647997831 Where 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)
Where is the highest point on earth? the tallest -11.143743760415248 Where 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)
Where is the highest point on earth? Bulgaria -11.143879638548528 Where 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)
Where is the highest point on earth? Jamaica -11.143879638548528 Where 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)
Where is the highest point on earth? Slovenia -11.143879638548528 Where 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)
Where is the highest point on earth? Eritrea -11.143879638548528 Where 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)
Where is the highest point on earth? Belize -11.143879638548528 Where 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)
Where is the highest point on earth? Babylonia -11.143879638548528 Where 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)
Where is the highest point on earth? Akita -11.149242957075995 Where 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)
Where is the highest point on earth? Mandy -11.16213931541349 Where 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)
Where is the highest point on earth? The Grass -11.171625288256791 Where 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)
Where is the highest point on earth? Neysh?b?r -11.173117744396794 Where 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)
Where is the highest point on earth? Los Angeles -11.174477926403098 Where 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)
Where is the highest point on earth? Twitter -11.189563247378052 Where 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)
Where is the highest point on earth? Consciousness -11.192140608222592 Where 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)
Where is the highest point on earth? Soccer -11.209964366242003 Where 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)
Where is the highest point on earth? Aggressive -11.209964366242003 Where 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)
Where is the highest point on earth? Duisberg -11.222465294154668 Where 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)
Where is the highest point on earth? WWII -11.249541023567854 Where 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)
Where is the highest point on earth? Rory -11.25091626119034 Where 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)
Where is the highest point on earth? Morgex -11.252815579178453 Where 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)
Where is the highest point on earth? San Marino -11.26059185409295 Where 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)
Where is the highest point on earth? Lee Bowman?s John -11.267048539086048 Where 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)
Where is the highest point on earth? North America -11.296464336664453 Where 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)
Where is the highest point on earth? Pembina Institute -11.296693878631842 Where 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)
Where is the highest point on earth? West Indies -11.330357175596195 Where 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)
Where is the highest point on earth? Harold Evans -11.338841295515078 Where 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)
Where is the highest point on earth? Nucleus -11.343003804243086 Where 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)
Where is the highest point on earth? South Africa -11.352620307846983 Where 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)
Where is the highest point on earth? The Bible -11.353405920891305 Where 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)
Where is the highest point on earth? United States -11.363960786450962 Where 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)
Where is the highest point on earth? POWERFUL -11.381274777566876 Where 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)
Where is the highest point on earth? The summit -11.383043271156433 Where 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)
Where is the highest point on earth? the NRA -11.402223635211929 Where 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)
Where is the highest point on earth? Members -11.409635936609128 Where 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)
Where is the highest point on earth? Tiffany -11.421656822519129 Where 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)
Where is the highest point on earth? the SolarBeam Concentrator -11.432816483784148 Where 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)
Where is the highest point on earth? ?Mingalaba? -11.456197845517137 Where 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)
Where is the highest point on earth? God?and -11.460618830224915 Where 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)
Where is the highest point on earth? Tags -11.461355312468369 Where 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)
Where is the highest point on earth? Taylor -11.483987328893946 Where 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)
Where is the highest point on earth? Eric?s -11.48551035493626 Where 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)
Where is the highest point on earth? Vocations Today -11.489413064007985 Where 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)
Where is the highest point on earth? ?apparent malfunction ? -11.497457270949287 Where 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)
Where is the highest point on earth? Schumacher -11.527885777287064 Where 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)
Where is the highest point on earth? the Cardinals -11.544955927954813 Where 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)
Where is the highest point on earth? Time -11.54680012015693 Where 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)
Where is the highest point on earth? Johannesburg -11.579252981543743 Where 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)
Where is the highest point on earth? Poor -11.58167606321106 Where 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)
Where is the highest point on earth? America -11.604071987173302 Where 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)
Where is the highest point on earth? Plum -11.646584264873773 Where 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)
Where is the highest point on earth? Roble -11.647484274177165 Where 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)
Where is the highest point on earth? Technology Toshiba -11.653193781076304 Where 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)
Where is the highest point on earth? LLP -11.657797938655959 Where 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)
Where is the highest point on earth? native English -11.665360458601064 Where 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)
Where is the highest point on earth? Awesome -11.668341596541792 Where 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)
Where is the highest point on earth? Costa Rica -11.671144826724099 Where 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)
Where is the highest point on earth? an anathema -11.675478866210721 Where 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)
Where is the highest point on earth? Hong Kong -11.678014432053294 Where 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)
Where is the highest point on earth? Caramoan -11.692426193264488 Where 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)
Where is the highest point on earth? Yugoslavia -11.703894640675479 Where 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)
Where is the highest point on earth? Portuguese -11.718360672786375 Where 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)
Where is the highest point on earth? Thailand -11.723051136821827 Where 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)
Where is the highest point on earth? Fort Macleod -11.725781882431198 Where 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)
Where is the highest point on earth? Macedonia -11.733228430992392 Where 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)
Where is the highest point on earth? Argentina -11.743452255685778 Where 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)
Where is the highest point on earth? Brazil -11.743452255685778 Where 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)
Where is the highest point on earth? Korea -11.743452255685778 Where 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)
Where is the highest point on earth? Happy -11.756441611886403 Where 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)
Where is the highest point on earth? Alberta This -11.761783284867587 Where 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)
Where is the highest point on earth? Magic -11.764437215631737 Where 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)
Where is the highest point on earth? Change -11.764437215631737 Where 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)
Where is the highest point on earth? On the bottle -11.792088915553318 Where 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)
Where is the highest point on earth? Energy development -11.796125491367231 Where 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)
Where is the highest point on earth? Delicious -11.799313158685868 Where 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)
Where is the highest point on earth? Great Britain -11.803191313591846 Where 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)
Where is the highest point on earth? organization -11.80740323589222 Where 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)
Where is the highest point on earth? Soulful -11.813787982876045 Where 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)
Where is the highest point on earth? Divine -11.822526339579879 Where 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)
Where is the highest point on earth? Quirky -11.824927938271015 Where 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)
Where is the highest point on earth? Ellen -11.824927938271015 Where 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)
Where is the highest point on earth? Tenacity -11.834189101739996 Where 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)
Where is the highest point on earth? dependent on Russia -11.83887039083156 Where 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)
Where is the highest point on earth? Dynamic -11.84292745844383 Where 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)
Where is the highest point on earth? Canadian rockies -11.845745731327568 Where 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)
Where is the highest point on earth? STATES -11.845745731327568 Where 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)
Where is the highest point on earth? The Lena River -11.849763174550183 Where 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)
Where is the highest point on earth? the Mekong -11.861779243136613 Where 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)
Where is the highest point on earth? grande prairie -11.87727709436778 Where 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)
Where is the highest point on earth? Lac La Biche -11.87727709436778 Where 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)
Where is the highest point on earth? The Mexican economy -11.887848232245247 Where 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)
Where is the highest point on earth? The Myitsone Dam -11.889086706049067 Where 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)
Where is the highest point on earth? The Edmonton region -11.907032887355578 Where 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)
Where is the highest point on earth? Spruce Grove -11.907033918948406 Where 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)
Where is the highest point on earth? hel -11.936936035871133 Where 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)
Where is the highest point on earth? Adoption Options -11.941909862002534 Where 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)
Where is the highest point on earth? the Buddhist leader -11.963982215156397 Where 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)
Where is the highest point on earth? a global event and hosts -11.966214612809276 Where 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)
Where is the highest point on earth? Map Immaculate -11.969613583293107 Where 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)
Where is the highest point on earth? parade.com -11.971419779834553 Where 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)
Where is the highest point on earth? the Greens ? best province -11.974236290142047 Where 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)
Where is the highest point on earth? November -12.007118689481697 Where 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)
Where is the highest point on earth? The Great Grey Copper -12.014179868843627 Where 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)
Where is the highest point on earth? IAF -12.022703223525694 Where 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)
Where is the highest point on earth? the San Francisco event -12.022768060219162 Where 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)
Where is the highest point on earth? state or a province -12.024423455222104 Where 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)
Where is the highest point on earth? good a place -12.037370582386428 Where 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)
Where is the highest point on earth? strathcona county -12.051912335821264 Where 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)
Where is the highest point on earth? CANADA. -12.051912335821264 Where 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)
Where is the highest point on earth? Medicine Hat -12.051912335821264 Where 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)
Where is the highest point on earth? every now -12.075884497542047 Where 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)
Where is the highest point on earth? The Honourable Alison Redford -12.08396697504431 Where 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)
Where is the highest point on earth? The Golden Tulip Hospitality group -12.085610706060994 Where 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)
Where is the highest point on earth? The Canmore Folk Music Festival -12.099589925579835 Where 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)
Where is the highest point on earth? The USA -12.09992122733259 Where 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)
Where is the highest point on earth? July -12.107976295421512 Where 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)
Where is the highest point on earth? The Vibrator Play -12.114295800625435 Where 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)
Where is the highest point on earth? DD -12.123044871670043 Where 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)
Where is the highest point on earth? the Deaf -12.12523204729992 Where 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)
Where is the highest point on earth? Canadas -12.135336784824705 Where 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)
Where is the highest point on earth? the UK -12.143443876227128 Where 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)
Where is the highest point on earth? upside down -12.14601584132653 Where 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)
Where is the highest point on earth? Blue -12.152498731113404 Where 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)
Where is the highest point on earth? Texas -12.155737903688657 Where 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)
Where is the highest point on earth? relatively quiet -12.158329705581723 Where 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)
Where is the highest point on earth? Duisburg/Germany -12.172652893632232 Where 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)
Where is the highest point on earth? Gorgeous -12.176626722167327 Where 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)
Where is the highest point on earth? Iran -12.18124868034831 Where 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)
Where is the highest point on earth? an MIE -12.189574572148206 Where 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)
Where is the highest point on earth? more rural -12.193205648635853 Where 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)
Where is the highest point on earth? relatively untouched -12.193205648635853 Where 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)
Where is the highest point on earth? just visible -12.200432348009755 Where 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)
Where is the highest point on earth? online sale -12.201902135913222 Where 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)
Where is the highest point on earth? The Bible Love -12.209853764926198 Where 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)
Where is the highest point on earth? mere words -12.210097619210615 Where 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)
Where is the highest point on earth? the Philippines -12.213195762335387 Where 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)
Where is the highest point on earth? somewhat subjective -12.215131010234003 Where 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)
Where is the highest point on earth? democratic instinct -12.224325298825656 Where 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)
Where is the highest point on earth? tomorrow night -12.226914800983401 Where 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)
Where is the highest point on earth? 3 candles -12.233119721536848 Where 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)
Where is the highest point on earth? the Star -12.233177001069917 Where 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)
Where is the highest point on earth? debt free -12.245988951212746 Where 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)
Where is the highest point on earth? excellent status -12.25582824007621 Where 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)
Where is the highest point on earth? an abbreviation -12.25679661698814 Where 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)
Where is the highest point on earth? Sandton Convention Centre -12.272668395606033 Where 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)
Where is the highest point on earth? T&T Honda -12.279298167870024 Where 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)
Where is the highest point on earth? ASC -12.282514608762046 Where 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)
Where is the highest point on earth? AWA -12.289096270767315 Where 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)
Where is the highest point on earth? Heart disease -12.292092440171691 Where 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)
Where is the highest point on earth? a professional poker player -12.294029265567453 Where 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)
Where is the highest point on earth? NorQuest NorQuest -12.296989432952223 Where 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)
Where is the highest point on earth? a Church -12.31091361583577 Where 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)
Where is the highest point on earth? James E. West -12.314617935273525 Where 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)
Where is the highest point on earth? the Holy Spirit -12.330998334459014 Where 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)
Where is the highest point on earth? ones and zeros -12.33332619332936 Where 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)
Where is the highest point on earth? similar sounds -12.334854527348053 Where 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)
Where is the highest point on earth? an NFL record -12.338715177706064 Where 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)
Where is the highest point on earth? Protesters and plan -12.340976322389118 Where 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)
Where is the highest point on earth? coach Linzy DAVIS -12.345853342446683 Where 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)
Where is the highest point on earth? awash in weapons -12.349659782643537 Where 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)
Where is the highest point on earth? a womans heart -12.357496828637846 Where 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)
Where is the highest point on earth? three syllables -12.358177167865167 Where 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)
Where is the highest point on earth? South Korea -12.363704505728009 Where 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)
Where is the highest point on earth? Alberta Foreclosure Stoppers -12.365037944854718 Where 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)
Where is the highest point on earth? just like person -12.37006090150749 Where 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)
Where is the highest point on earth? near economic collapse -12.37006090150749 Where 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)
Where is the highest point on earth? a bit harsh -12.373112421860684 Where 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)
Where is the highest point on earth? Blogs Caramoan -12.373295487034703 Where 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)
Where is the highest point on earth? hospital -12.376035482591034 Where 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)
Where is the highest point on earth? MISS CCEMC Proposals -12.377496267275951 Where 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)
Where is the highest point on earth? 4100 meters -12.384979503655558 Where 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)
Where is the highest point on earth? strong advocate -12.387901891120322 Where 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)
Where is the highest point on earth? Sites Caramoan -12.398997857129697 Where 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)
Where is the highest point on earth? wealthy in natural resources -12.400158676233191 Where 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)
Where is the highest point on earth? On the ground -12.406124189360424 Where 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)
Where is the highest point on earth? AUPE -12.40757877688081 Where 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)
Where is the highest point on earth? What really caught my attention -12.40799317182725 Where 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)
Where is the highest point on earth? unions -12.411132656779333 Where 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)
Where is the highest point on earth? any other province -12.413291564121305 Where 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)
Where is the highest point on earth? an astonishing landscape -12.416400943244854 Where 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)
Where is the highest point on earth? a distinct person -12.417667794387619 Where 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)
Where is the highest point on earth? Travel Caramoan -12.419398975993648 Where 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)
Where is the highest point on earth? big -12.426082333985763 Where 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)
Where is the highest point on earth? FNMI education -12.426931836168198 Where 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)
Where is the highest point on earth? part of the Mongol empire -12.436069850465525 Where 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)
Where is the highest point on earth? incivility -12.438539792853042 Where 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)
Where is the highest point on earth? dependent on imports -12.44138714936385 Where 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)
Where is the highest point on earth? an importnt part -12.444735155531784 Where 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)
Where is the highest point on earth? a smear campaign -12.44545896974151 Where 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)
Where is the highest point on earth? the water -12.450655707647336 Where 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)
Where is the highest point on earth? a link -12.457140806615735 Where 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)
Where is the highest point on earth? Bernhard Tieff -12.476970965507643 Where 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)
Where is the highest point on earth? an ally of the United States -12.480091692682574 Where 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)
Where is the highest point on earth? an Evangelical scholar -12.488125384335724 Where 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)
Where is the highest point on earth? even part of my vocabulary -12.489724365038086 Where 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)
Where is the highest point on earth? a form of exaggeration -12.490063248753005 Where 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)
Where is the highest point on earth? Canyon Ski Area -12.494210400587253 Where 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)
Where is the highest point on earth? a name for the Messiah -12.502154578159 Where 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)
Where is the highest point on earth? where we want to be -12.51144269218218 Where 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)
Where is the highest point on earth? a record attendee -12.53375846800602 Where 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)
Where is the highest point on earth? A-Channel?s only concern -12.547262217080586 Where 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)
Where is the highest point on earth? constant frantic energy -12.561472348456906 Where 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)
Where is the highest point on earth? in -12.56437210887549 Where 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)
Where is the highest point on earth? a comfortable margin -12.569471587282507 Where 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)
Where is the highest point on earth? the Federal Reserve -12.601789180307577 Where 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)
Where is the highest point on earth? system -12.603320944574527 Where 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)
Where is the highest point on earth? Tiffany jewelry -12.609135844685678 Where 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)
Where is the highest point on earth? A case in point -12.61168259562206 Where 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)
Where is the highest point on earth? On the back of the picture -12.630510366561566 Where 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)
Where is the highest point on earth? a Moscow hospital -12.652853757155363 Where 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)
Where is the highest point on earth? natural gas -12.655789640463464 Where 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)
Where is the highest point on earth? On the walls of the places -12.666486898751344 Where 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)
Where is the highest point on earth? Later -12.668506900331277 Where 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)
Where is the highest point on earth? so true -12.669354038356442 Where 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)
Where is the highest point on earth? five yellow cards -12.676094630927263 Where 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)
Where is the highest point on earth? so diverse -12.684645290685307 Where 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)
Where is the highest point on earth? relatively stable -12.694542838006706 Where 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)
Where is the highest point on earth? one of the few places on earth -12.698448748438235 Where 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)
Where is the highest point on earth? the Empress Theatre -12.700551665562498 Where 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)
Where is the highest point on earth? a nail biting finish -12.728262313721796 Where 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)
Where is the highest point on earth? more diverse -12.731655387056726 Where 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)
Where is the highest point on earth? tour -12.734950653854277 Where 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)
Where is the highest point on earth? easily accessible -12.736450952120773 Where 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)
Where is the highest point on earth? so far -12.741752203351812 Where 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)
Where is the highest point on earth? convention -12.752760756416617 Where 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)
When was Hiroshima bombed? 1945 1.9640372080376975 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (Hiroshima, was bombed in, 1945) -> 1945 (4006ms)
When was Hiroshima bombed? August 6 0.8801282130439216 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, August 6) -> August 6 (5321ms)
When was Hiroshima bombed? 1999 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1999) -> 1999 (6697ms)
When was Hiroshima bombed? 1994 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1994) -> 1994 (6236ms)
When was Hiroshima bombed? 1946 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1946) -> 1946 (6697ms)
When was Hiroshima bombed? 2004 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 2004) -> 2004 (6697ms)
When was Hiroshima bombed? 1976 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1976) -> 1976 (6235ms)
When was Hiroshima bombed? 1990 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1990) -> 1990 (6236ms)
When was Hiroshima bombed? 1989 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1989) -> 1989 (6697ms)
When was Hiroshima bombed? 1997 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1997) -> 1997 (6698ms)
When was Hiroshima bombed? 1985 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1985) -> 1985 (6738ms)
When was Hiroshima bombed? 2000 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 2000) -> 2000 (6738ms)
When was Hiroshima bombed? 1971 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1971) -> 1971 (6738ms)
When was Hiroshima bombed? 1995 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1995) -> 1995 (6236ms)
When was Hiroshima bombed? 1982 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1982) -> 1982 (6236ms)
When was Hiroshima bombed? 1987 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1987) -> 1987 (6236ms)
When was Hiroshima bombed? 1972 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1972) -> 1972 (6697ms)
When was Hiroshima bombed? 2007 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Dreams, Publication date, 2007) -> 2007 (6798ms)
When was Hiroshima bombed? 2005 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Beyond Hiroshima, Publication date, 2005) -> 2005 (6763ms)
When was Hiroshima bombed? 1992 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (My Hiroshima, Publication date, 1992) -> 1992 (6798ms)
When was Hiroshima bombed? 2003 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Joe, Publication date, 2003) -> 2003 (6798ms)
When was Hiroshima bombed? 2009 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shambling towards Hiroshima, Publication date, 2009) -> 2009 (6906ms)
When was Hiroshima bombed? 1964 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima pilot, Publication date, 1964) -> 1964 (6846ms)
When was Hiroshima bombed? 1996 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima (Apple Paperbacks), Publication date, 1996) -> 1996 (6882ms)
When was Hiroshima bombed? 1984 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima and Nagasaki, Publication date, 1984) -> 1984 (6822ms)
When was Hiroshima bombed? 1961 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima mon amour, Publication date, 1961) -> 1961 (6882ms)
When was Hiroshima bombed? 1970 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Return to Hiroshima, Publication date, 1970) -> 1970 (6846ms)
When was Hiroshima bombed? 1966 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Postscript from Hiroshima, Publication date, 1966) -> 1966 (6821ms)
When was Hiroshima bombed? 1983 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shadows of Hiroshima, Publication date, 1983) -> 1983 (6821ms)
When was Hiroshima bombed? 1978 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima watch, Publication date, 1978) -> 1978 (6882ms)
When was Hiroshima bombed? 1965 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima pilot, Publication date, 1965) -> 1965 (6882ms)
When was Hiroshima bombed? 1993 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (A soul remembers Hiroshima, Publication date, 1993) -> 1993 (6906ms)
When was Hiroshima bombed? 1975 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The legacy of Hiroshima, Publication date, 1975) -> 1975 (6929ms)
When was Hiroshima bombed? 2006 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (BY HELLSHIP TO HIROSHIMA, Publication date, 2006) -> 2006 (6929ms)
When was Hiroshima bombed? 1977 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima flows through us, Publication date, 1977) -> 1977 (6953ms)
When was Hiroshima bombed? 1960 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The flowers of Hiroshima, Publication date, 1960) -> 1960 (6906ms)
When was Hiroshima bombed? 1974 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (New Letters from Hiroshima, Publication date, 1974) -> 1974 (6929ms)
When was Hiroshima bombed? 1959 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The flowers of Hiroshima, Publication date, 1959) -> 1959 (6930ms)
When was Hiroshima bombed? 1962 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The legacy of Hiroshima, Publication date, 1962) -> 1962 (6929ms)
When was Hiroshima bombed? 1988 0.1942838359362793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Bajo El Puente de Hiroshima, Publication date, 1988) -> 1988 (6954ms)
When was Hiroshima bombed? 1980 0.1942838359362793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Peace march, Nagasaki to Hiroshima, Publication date, 1980) -> 1980 (6975ms)
When was Hiroshima bombed? 1973 0.1942838359362793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima atomic bomb blast, Publication date, 1973) -> 1973 (6999ms)
When was Hiroshima bombed? 6 August 0.08092750529144066 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (The Hiroshima bomb, was dropped on, 6 August) -> 6 August (5321ms)
When was Hiroshima bombed? 1968 -0.05672997201199781 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was established in, 1968) -> 1968 (7050ms)
When was Hiroshima bombed? 1589 -0.10264367646700823 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was founded in, 1589) -> 1589 (7070ms)
When was Hiroshima bombed? 1986 -0.19555847074271115 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima: la bombe, Publication date, 1986) -> 1986 (7251ms)
When was Hiroshima bombed? 1958 -0.4261698392577986 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be open in, $x) -> (Hiroshima Bay, was opened in, 1958) -> 1958 (7305ms)
When was Hiroshima bombed? August 6th -0.5237802977436976 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (The Hiroshima bomb, was dropped on, August 6th) -> August 6th (5321ms)
When was Hiroshima bombed? 1957 -0.578003640313089 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be build in, $x) -> (Hiroshima Municipal Stadium, was built in, 1957) -> 1957 (7305ms)
When was Hiroshima bombed? 1998 -0.5976887336132326 When 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)
When was Hiroshima bombed? August 6 , 1945 and Nagasaki -0.7290391237700387 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, August 6 , 1945 and Nagasaki) -> August 6 , 1945 and Nagasaki (5321ms)
When was Hiroshima bombed? uranium-235 -0.7577222857407269 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, uranium-235) -> uranium-235 (5442ms)
When was Hiroshima bombed? August 6 , 1945 -0.9783189371002023 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, August 6 , 1945) -> August 6 , 1945 (5442ms)
When was Hiroshima bombed? 1986-04-01 -1.036759884976648 When 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)
When was Hiroshima bombed? 1987-10-29 -1.036759884976648 When 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)
When was Hiroshima bombed? 2009-02-01 -1.0963191262748269 When 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)
When was Hiroshima bombed? 1982-08-01 -1.0963191262748269 When 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)
When was Hiroshima bombed? 1949 -1.2403109184574834 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was proclaimed in, 1949) -> 1949 (7350ms)
When was Hiroshima bombed? Obon -1.3923077880004175 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Obon, is, Hiroshima) -> Obon (5601ms)
When was Hiroshima bombed? 08.15 -1.63969620549118 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (9:48 am Hiroshima and Nagasaki, were bombed in, 08.15) -> 08.15 (5601ms)
When was Hiroshima bombed? 1 hour -1.6708761904662721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, 1 hour) -> 1 hour (5601ms)
When was Hiroshima bombed? 15 kilotons -1.6738916007254385 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, 15 kilotons) -> 15 kilotons (5671ms)
When was Hiroshima bombed? 2 + 2 -1.7027073225241085 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, IS, 2 + 2) -> 2 + 2 (5672ms)
When was Hiroshima bombed? the 2006 dystopian film -1.7423534500890976 When 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)
When was Hiroshima bombed? Rhapsody in August -1.7478341700746203 When 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)
When was Hiroshima bombed? 12 kilotons -1.7503893997813122 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, 12 kilotons) -> 12 kilotons (5672ms)
When was Hiroshima bombed? 1955 -1.7507635858729906 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, open in, $x) -> (The Hiroshima Peace Memorial Museum, opened in, 1955) -> 1955 (5755ms)
When was Hiroshima bombed? a 100 % -1.7937331005418162 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a 100 %) -> a 100 % (5672ms)
When was Hiroshima bombed? DYING -1.798062301385111 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (HIROSHIMA, WAS, DYING) -> DYING (5755ms)
When was Hiroshima bombed? 1957 and houses -1.8408916572588994 When 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)
When was Hiroshima bombed? May 2008 -1.8594597824911072 When 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)
When was Hiroshima bombed? choice -1.9360969073515908 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (choice, is, Hiroshima) -> choice (5756ms)
When was Hiroshima bombed? civilians -1.958986334476486 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, civilians) -> civilians (5756ms)
When was Hiroshima bombed? August 1945 -2.0020018633372585 When 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)
When was Hiroshima bombed? interest -2.005848793459849 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (interest, is, Hiroshima) -> interest (5811ms)
When was Hiroshima bombed? a 13-kiloton nuclear device -2.0335368093642208 When 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)
When was Hiroshima bombed? humanists -2.103110562435551 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, humanists) -> humanists (7520ms)
When was Hiroshima bombed? 20th century -2.1522381333762564 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, 20th century) -> 20th century (7520ms)
When was Hiroshima bombed? World War II -2.294407853904045 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (Hiroshima, was bombed back in, World War II) -> World War II (7520ms)
When was Hiroshima bombed? Aug 6 -2.3542675606117633 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (HIROSHIMA Hiroshima, was bombed on, Aug 6) -> Aug 6 (7587ms)
When was Hiroshima bombed? Aug 6th -2.35515174701286 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, Aug 6th) -> Aug 6th (7587ms)
When was Hiroshima bombed? average 2.25 cm -2.3914829899926437 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (the Hiroshima bomb, were on, average 2.25 cm) -> average 2.25 cm (7587ms)
When was Hiroshima bombed? city -2.4393258574819034 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a, city) -> city (7624ms)
When was Hiroshima bombed? book -2.4393258574819034 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a, book) -> book (7624ms)
When was Hiroshima bombed? nuclear holocaust -2.4606149150946477 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (nuclear holocaust, were, Hiroshima) -> nuclear holocaust (7624ms)
When was Hiroshima bombed? August -2.4875298446419474 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, August) -> August (7624ms)
When was Hiroshima bombed? Asia -2.5897206702616633 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Asia) -> Asia (7624ms)
When was Hiroshima bombed? a subject -2.678928306834856 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a subject) -> a subject (7644ms)
When was Hiroshima bombed? a little -2.6865584588858633 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, a little) -> a little (7644ms)
When was Hiroshima bombed? question -2.6981567777812927 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (question, is, Hiroshima) -> question (7644ms)
When was Hiroshima bombed? Textured Hair -2.725208005229063 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Textured Hair, is, Hiroshima) -> Textured Hair (7644ms)
When was Hiroshima bombed? attendance -2.731756282641322 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (attendance, were, Hiroshima) -> attendance (7644ms)
When was Hiroshima bombed? native Japanese -2.7514971084933406 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, native Japanese) -> native Japanese (7671ms)
When was Hiroshima bombed? a military base -2.7969733891679027 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a military base) -> a military base (7671ms)
When was Hiroshima bombed? America???s revenge -2.8063173504911627 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, America???s revenge) -> America???s revenge (7671ms)
When was Hiroshima bombed? a blunder -2.853054645800142 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a blunder) -> a blunder (7693ms)
When was Hiroshima bombed? a nuclear attack -2.8787104351494066 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a nuclear attack) -> a nuclear attack (7693ms)
When was Hiroshima bombed? 1985-08 -2.887947307523957 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1985-08) -> 1985-08 (7693ms)
When was Hiroshima bombed? an environment -2.8971345796288945 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, an environment) -> an environment (7693ms)
When was Hiroshima bombed? simple military necessities -2.907953523428914 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, simple military necessities) -> simple military necessities (7715ms)
When was Hiroshima bombed? a hell -2.9317482368413414 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a hell) -> a hell (7716ms)
When was Hiroshima bombed? Fudoin ryokan -2.941599661736967 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Fudoin ryokan, is, Hiroshima) -> Fudoin ryokan (7714ms)
When was Hiroshima bombed? one such response -2.970149564846553 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, one such response) -> one such response (7737ms)
When was Hiroshima bombed? Japan -2.984423460841673 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, Japan) -> Japan (7737ms)
When was Hiroshima bombed? Next stop -2.992883105428108 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Next stop, was, Hiroshima) -> Next stop (7737ms)
When was Hiroshima bombed? an ammunition depot -2.9963733229890606 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, an ammunition depot) -> an ammunition depot (7737ms)
When was Hiroshima bombed? Aug 6 , 1945 -3.0058993653736623 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, occur in, $x) -> (Hiroshima, occurred in, Aug 6 , 1945) -> Aug 6 , 1945 (7757ms)
When was Hiroshima bombed? a great honour -3.009636277112394 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a great honour) -> a great honour (7757ms)
When was Hiroshima bombed? First stop -3.0362088188070846 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (First stop, was, Hiroshima) -> First stop (7757ms)
When was Hiroshima bombed? a port city -3.046251244933885 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a port city) -> a port city (7756ms)
When was Hiroshima bombed? a well known symbol -3.0681148866817667 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a well known symbol) -> a well known symbol (7757ms)
When was Hiroshima bombed? a uranium bomb -3.071530115723579 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a uranium bomb) -> a uranium bomb (7784ms)
When was Hiroshima bombed? a small market -3.084336302628948 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a small market) -> a small market (7784ms)
When was Hiroshima bombed? japan -3.08906303528022 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a city located in the country, japan) -> japan (7784ms)
When was Hiroshima bombed? the Atomic Bomb -3.0979915085452845 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the Atomic Bomb) -> the Atomic Bomb (7784ms)
When was Hiroshima bombed? a fully rebuilt city -3.1026631987724436 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a fully rebuilt city) -> a fully rebuilt city (7784ms)
When was Hiroshima bombed? final assembly location -3.1056216078939967 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (final assembly location, was, Hiroshima) -> final assembly location (7784ms)
When was Hiroshima bombed? The Guardian last August -3.1117360162126446 When 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)
When was Hiroshima bombed? a beautiful spectacle -3.1121386490697147 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a beautiful spectacle) -> a beautiful spectacle (7803ms)
When was Hiroshima bombed? a beautiful city -3.1210451866125264 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a beautiful city) -> a beautiful city (7803ms)
When was Hiroshima bombed? a sobering experience -3.1210451866125264 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a sobering experience) -> a sobering experience (7803ms)
When was Hiroshima bombed? a special case -3.1554643624486913 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a special case) -> a special case (7803ms)
When was Hiroshima bombed? a fast paced engaging book -3.187233369278125 When 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)
When was Hiroshima bombed? a long time practitioner -3.20788269806031 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a long time practitioner) -> a long time practitioner (7867ms)
When was Hiroshima bombed? a two hour flight -3.212239114640832 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a two hour flight) -> a two hour flight (7867ms)
When was Hiroshima bombed? a modern Mephistopheles -3.223486963022719 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a modern Mephistopheles) -> a modern Mephistopheles (7867ms)
When was Hiroshima bombed? a very successful meeting -3.2246824504903246 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a very successful meeting) -> a very successful meeting (7867ms)
When was Hiroshima bombed? an important sake prefecture -3.258282008052649 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, an important sake prefecture) -> an important sake prefecture (7867ms)
When was Hiroshima bombed? a communications center -3.262391638991623 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a communications center) -> a communications center (7968ms)
When was Hiroshima bombed? a more manageable size -3.276850133284857 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a more manageable size) -> a more manageable size (7968ms)
When was Hiroshima bombed? a very industrial city -3.3069128398382053 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a very industrial city) -> a very industrial city (7968ms)
When was Hiroshima bombed? World history -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, World history) -> World history (8021ms)
When was Hiroshima bombed? Nuclear weapon -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Nuclear weapon) -> Nuclear weapon (7968ms)
When was Hiroshima bombed? Modern history -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Modern history) -> Modern history (7968ms)
When was Hiroshima bombed? Military history -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Military history) -> Military history (7968ms)
When was Hiroshima bombed? a three-piece Indie pop act -3.331422165364446 When 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)
When was Hiroshima bombed? the Consulate General?s jurisdiction -3.331670375282679 When 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)
When was Hiroshima bombed? a major military target -3.3352071735893603 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a major military target) -> a major military target (8021ms)
When was Hiroshima bombed? a VERY important part -3.35465953792496 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a VERY important part) -> a VERY important part (8021ms)
When was Hiroshima bombed? Wonders Are Many -3.3718456293845893 When 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)
When was Hiroshima bombed? quiet -3.375278280699085 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, quiet) -> quiet (8118ms)
When was Hiroshima bombed? William Shawn -3.3894027714818487 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, William Shawn) -> William Shawn (8118ms)
When was Hiroshima bombed? the Peace Park and Museum -3.3897792583712443 When 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)
When was Hiroshima bombed? World War II buffs -3.395268071271096 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (World War II buffs, are, Hiroshima) -> World War II buffs (8118ms)
When was Hiroshima bombed? a picturesque , quiet city -3.439294329260192 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a picturesque , quiet city) -> a picturesque , quiet city (8139ms)
When was Hiroshima bombed? An equally huge disappointment -3.4509725523723094 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (An equally huge disappointment, was, Hiroshima) -> An equally huge disappointment (8138ms)
When was Hiroshima bombed? Nuclear warfare -3.467140415461676 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (The Hiroshima Panels, Subject, Nuclear warfare) -> Nuclear warfare (8138ms)
When was Hiroshima bombed? a very cool city and thanks -3.472303024933091 When 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)
When was Hiroshima bombed? Atomic bombings of Hiroshima and Nagasaki -3.514787808500219 When 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)
When was Hiroshima bombed? Popular literature -3.553772039168118 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (From Hiroshima to the moon, Subjects, Popular literature) -> Popular literature (8156ms)
When was Hiroshima bombed? Shintenchi -3.592797198438004 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Shintenchi, was, Hiroshima) -> Shintenchi (8173ms)
When was Hiroshima bombed? a street corner -3.6144597631765842 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (post-bomb Hiroshima, was found on, a street corner) -> a street corner (8192ms)
When was Hiroshima bombed? business -3.6390244238587237 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, will be in, business) -> business (8192ms)
When was Hiroshima bombed? Destroyed -3.6431318876007923 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, Was, Destroyed) -> Destroyed (8192ms)
When was Hiroshima bombed? Authorities Concept Scheme -3.656704038053911 When 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)
When was Hiroshima bombed? Topical Terms Concept Scheme -3.656704038053911 When 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)
When was Hiroshima bombed? 8:48 pm Photos -3.657246337689449 When 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)
When was Hiroshima bombed? The Hiroshima Panels -3.657729987615849 When 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)
When was Hiroshima bombed? Black Rain -3.657729987615849 When 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)
When was Hiroshima bombed? Bombed -3.663533006464744 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, Was, Bombed) -> Bombed (8233ms)
When was Hiroshima bombed? The Atom Strikes! -3.6755977600053025 When 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)
When was Hiroshima bombed? Empire of the Sun -3.6755977600053025 When 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)
When was Hiroshima bombed? Peace Street -3.6838217631872228 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Peace Street, is, Hiroshima) -> Peace Street (8254ms)
When was Hiroshima bombed? A Tale of Two Cities -3.6913634415254086 When 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)
When was Hiroshima bombed? Battles Without Honor and Humanity -3.6913634415254086 When 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)
When was Hiroshima bombed? First Yank into Tokyo -3.6913634415254086 When 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)
When was Hiroshima bombed? B-29 bombers -3.7043073540669402 When 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)
When was Hiroshima bombed? White Light/Black Rain: The Destruction of Hiroshima and Nagasaki -3.705377380654392 When 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)
When was Hiroshima bombed? the bombing 1945 Frank Barrett -3.7201469891178878 When 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)
When was Hiroshima bombed? 1,000 cranes -3.809030486220635 When 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)
When was Hiroshima bombed? 800 atomic bombs -3.8340213159801912 When 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)
When was Hiroshima bombed? petitioner?s exhibit 6 -3.878454840583216 When 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)
When was Hiroshima bombed? ruins -3.8999273005540513 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was certainly in, ruins) -> ruins (8297ms)
When was Hiroshima bombed? teaching -3.908955407361732 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (teaching, will be done in, Hiroshima) -> teaching (8298ms)
When was Hiroshima bombed? a war crime -3.9149225744469027 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a war crime) -> a war crime (8298ms)
When was Hiroshima bombed? nuclear war -3.937001531194654 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (nuclear war, had been demonstrated in, Hiroshima) -> nuclear war (8319ms)
When was Hiroshima bombed? Hondori Street -3.937586527844227 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Hondori Street, is, Hiroshima) -> Hondori Street (8319ms)
When was Hiroshima bombed? cities -3.9601717247744963 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (100 Hiroshima-sized bombs, were dropped on, cities) -> cities (8318ms)
When was Hiroshima bombed? three days -3.9644737510708206 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, three days) -> three days (8319ms)
When was Hiroshima bombed? different -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, different) -> different (8335ms)
When was Hiroshima bombed? well-known -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, well-known) -> well-known (8335ms)
When was Hiroshima bombed? small -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, small) -> small (8319ms)
When was Hiroshima bombed? necessary -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, necessary) -> necessary (8335ms)
When was Hiroshima bombed? Little Boy -4.012747885520027 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Little Boy, was dropped on, Hiroshima) -> Little Boy (8335ms)
When was Hiroshima bombed? Mazda -4.020839759103643 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Mazda, is a company headquartered in the city, hiroshima) -> Mazda (8335ms)
When was Hiroshima bombed? famous for its oysters -4.061971761270349 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, famous for its oysters) -> famous for its oysters (8369ms)
When was Hiroshima bombed? an act of terrorism -4.102950852267778 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, an act of terrorism) -> an act of terrorism (8369ms)
When was Hiroshima bombed? rads -4.108719548294754 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (rads, have been found in, Hiroshima) -> rads (8369ms)
When was Hiroshima bombed? an atomic bomb -4.111866552193861 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (an atomic bomb, was dropped, Hiroshima) -> an atomic bomb (8369ms)
When was Hiroshima bombed? the Times -4.142319053154784 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were being printed in, the Times) -> the Times (8431ms)
When was Hiroshima bombed? Places -4.160680174092382 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Places) -> Places (8431ms)
When was Hiroshima bombed? History -4.160680174092382 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, History) -> History (8431ms)
When was Hiroshima bombed? the time -4.171713613255498 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the time, was, Hiroshima) -> the time (8448ms)
When was Hiroshima bombed? global citizenship -4.236744568433925 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (global citizenship, will be held in, Hiroshima) -> global citizenship (8448ms)
When was Hiroshima bombed? The New Yorker -4.2531521217732315 When 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)
When was Hiroshima bombed? MacArthur -4.273906082320194 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, MacArthur) -> MacArthur (8474ms)
When was Hiroshima bombed? jeopardy -4.280997666315084 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, may be in, jeopardy) -> jeopardy (8474ms)
When was Hiroshima bombed? nuclear weapons -4.314230199303221 When 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)
When was Hiroshima bombed? a city -4.314543078058616 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a city) -> a city (8474ms)
When was Hiroshima bombed? cancer -4.386069898676176 When 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)
When was Hiroshima bombed? bombs -4.41603816936338 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (bombs, had been dropped on, Hiroshima and Nagasaki) -> bombs (8496ms)
When was Hiroshima bombed? great part -4.431803239094509 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, great part) -> great part (8496ms)
When was Hiroshima bombed? better shape -4.4328089947604745 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is in far, better shape) -> better shape (8496ms)
When was Hiroshima bombed? terms -4.478932733494196 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was negligible in, terms) -> terms (8513ms)
When was Hiroshima bombed? tune -4.4889702430796525 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (The Hiroshima, are so in, tune) -> tune (8513ms)
When was Hiroshima bombed? a military target -4.493043820985951 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a military target) -> a military target (8513ms)
When was Hiroshima bombed? charge -4.5002786870086675 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are still in, charge) -> charge (8513ms)
When was Hiroshima bombed? Yakuza -4.518035621881456 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Battles Without Honor and Humanity: Hiroshima Deathmatch, Subjects, Yakuza) -> Yakuza (8699ms)
When was Hiroshima bombed? Mr. Shrestha -4.518084195104648 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Mr. Shrestha, will be in, Hiroshima) -> Mr. Shrestha (8700ms)
When was Hiroshima bombed? a living hell -4.53052753095414 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were in, a living hell) -> a living hell (8699ms)
When was Hiroshima bombed? an atomic bomb named Little Boy -4.5353370736454455 When 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)
When was Hiroshima bombed? a modern city -4.539147309944896 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a modern city) -> a modern city (8700ms)
When was Hiroshima bombed? the president -4.54128939769539 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the president) -> the president (8700ms)
When was Hiroshima bombed? Hiroshima -4.545524502480616 When 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)
When was Hiroshima bombed? Insignificance -4.569086400137039 When 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)
When was Hiroshima bombed? part -4.56912095855883 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was targeted in, part) -> part (8716ms)
When was Hiroshima bombed? a big city -4.574023252999025 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a big city) -> a big city (8716ms)
When was Hiroshima bombed? MacArthur?s pilot -4.595772083182176 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, MacArthur?s pilot) -> MacArthur?s pilot (8716ms)
When was Hiroshima bombed? The A-bomb -4.600042705018212 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The A-bomb, was dropped on, Hiroshima) -> The A-bomb (8738ms)
When was Hiroshima bombed? WWII curriculum -4.608024157548755 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is barely mentioned in, WWII curriculum) -> WWII curriculum (8738ms)
When was Hiroshima bombed? peace cranes -4.60808872567601 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (peace cranes, have been sent to, Hiroshima) -> peace cranes (8737ms)
When was Hiroshima bombed? excessive numbers -4.609401740018523 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are now dying in, excessive numbers) -> excessive numbers (8737ms)
When was Hiroshima bombed? Hiroshima Witness -4.633296542420876 When 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)
When was Hiroshima bombed? Yamaguchi -4.6372816620863055 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Yamaguchi, was in, Hiroshima) -> Yamaguchi (8737ms)
When was Hiroshima bombed? Matouqin Nocturne -4.653716853723109 When 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)
When was Hiroshima bombed? a mess -4.6569678200820945 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was just in, a mess) -> a mess (8754ms)
When was Hiroshima bombed? the order -4.659090808957984 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (the Hiroshima bombs, were only on, the order) -> the order (8753ms)
When was Hiroshima bombed? a man -4.6637286386499675 When 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)
When was Hiroshima bombed? a flash -4.666301776808039 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was destroyed in, a flash) -> a flash (8754ms)
When was Hiroshima bombed? date -4.6724266188930486 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (date, have been, Hiroshima and Auschwitz) -> date (8754ms)
When was Hiroshima bombed? flames -4.674396629287502 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was completely enveloped in, flames) -> flames (8771ms)
When was Hiroshima bombed? memory -4.687914765738834 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is mainly dedicated in, memory) -> memory (8772ms)
When was Hiroshima bombed? bloody puddles -4.708251316475531 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were soaked in, bloody puddles) -> bloody puddles (8771ms)
When was Hiroshima bombed? the finals -4.709286974697832 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the finals) -> the finals (8771ms)
When was Hiroshima bombed? the connection -4.722549981523461 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the connection, is, Hiroshima) -> the connection (8771ms)
When was Hiroshima bombed? rightly open to question -4.727175587765771 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, rightly open to question) -> rightly open to question (8771ms)
When was Hiroshima bombed? the region -4.73928516582622 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the region, is, Hiroshima) -> the region (8790ms)
When was Hiroshima bombed? a showcase -4.75062822262386 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed as, a showcase) -> a showcase (8791ms)
When was Hiroshima bombed? Appalachia -4.756539422220398 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is exploded in, Appalachia) -> Appalachia (8790ms)
When was Hiroshima bombed? the Uranium bomb -4.756694309639139 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the Uranium bomb, was dropped on, Hiroshima) -> the Uranium bomb (8790ms)
When was Hiroshima bombed? defence -4.759247049550005 When 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)
When was Hiroshima bombed? the warrior -4.761062405699363 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the warrior, was, Hiroshima) -> the warrior (8811ms)
When was Hiroshima bombed? bomb-damaged artifacts -4.762783847856687 When 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)
When was Hiroshima bombed? a tie-up -4.763707534956216 When 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)
When was Hiroshima bombed? wars -4.771466760576547 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (wars, have been fought since, Hiroshima and Nagasaki) -> wars (8811ms)
When was Hiroshima bombed? major journals -4.783159899291816 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, has been published in, major journals) -> major journals (8811ms)
When was Hiroshima bombed? age groups -4.791738743185988 When 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)
When was Hiroshima bombed? fiery , emotional , and incredibly memorable -4.795932783577351 When 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)
When was Hiroshima bombed? Omine-machi -4.803744659946744 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima # 6, was in, Omine-machi) -> Omine-machi (8835ms)
When was Hiroshima bombed? the cumulative effect -4.807386349328903 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the cumulative effect, is, Hiroshima) -> the cumulative effect (8835ms)
When was Hiroshima bombed? a Korean prince -4.81920559653845 When 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)
When was Hiroshima bombed? NEC Hiroshima -4.822948814364111 When 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)
When was Hiroshima bombed? London -4.831639456250217 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was staged in, London) -> London (8851ms)
When was Hiroshima bombed? conventional human scale -4.8353275820863475 When 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)
When was Hiroshima bombed? a city of military importance -4.837032906893148 When 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)
When was Hiroshima bombed? origami cranes -4.842336557870159 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (origami cranes, have been sent to, Hiroshima) -> origami cranes (8851ms)
When was Hiroshima bombed? the flame -4.8463376587458304 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the flame, was, Hiroshima) -> the flame (8851ms)
When was Hiroshima bombed? the Air and Space museum -4.84937065378509 When 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)
When was Hiroshima bombed? Japan 's seventh largest city -4.8550324270659635 When 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)
When was Hiroshima bombed? the ultimate symbol -4.860438218524532 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the ultimate symbol) -> the ultimate symbol (8871ms)
When was Hiroshima bombed? war -4.869771772649042 When 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)
When was Hiroshima bombed? Genius -4.87539106967053 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (The genius of Einstein leads to Hiroshima., Subjects, Genius) -> Genius (8870ms)
When was Hiroshima bombed? Taka -4.876698949563408 When 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)
When was Hiroshima bombed? Disarmament -4.8787526207529615 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Disarmament, will be marking, Hiroshima Day) -> Disarmament (8870ms)
When was Hiroshima bombed? paper origami cranes -4.881991483675582 When 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)
When was Hiroshima bombed? a new production line -4.88833989788125 When 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)
When was Hiroshima bombed? symbolic value -4.890833453091139 When 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)
When was Hiroshima bombed? The target -4.891923679535094 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The target, was, Hiroshima) -> The target (8946ms)
When was Hiroshima bombed? An Atomic Bomb -4.898301784314418 When 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)
When was Hiroshima bombed? Tokyo -4.901491077875861 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is headquartered in, Tokyo) -> Tokyo (9028ms)
When was Hiroshima bombed? American warplanes -4.904588394524861 When 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)
When was Hiroshima bombed? a large conference -4.909401631025641 When 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)
When was Hiroshima bombed? the atomic bomb -4.919287246139424 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the atomic bomb, is, Hiroshima) -> the atomic bomb (9028ms)
When was Hiroshima bombed? no sizeable store of explosives -4.920386609990888 When 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)
When was Hiroshima bombed? a city of considerable military importance -4.921187737575264 When 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)
When was Hiroshima bombed? Bintulu -4.921830124213705 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Bintulu, will be delivered to, Hiroshima Gas) -> Bintulu (9028ms)
When was Hiroshima bombed? Dag Hammarskjold Park -4.922656775726418 When 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)
When was Hiroshima bombed? Iraq -4.923294919536343 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, occur in, $x) -> (Hiroshima-esqe tragedies, are occurring today in, Iraq) -> Iraq (9047ms)
When was Hiroshima bombed? the Atom Bomb -4.925882985025565 When 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)
When was Hiroshima bombed? the Canadian journal Public -4.927085569856753 When 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)
When was Hiroshima bombed? the Japan -4.933861403245552 When 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)
When was Hiroshima bombed? an entire issue -4.9368117256734045 When 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)
When was Hiroshima bombed? American POWs -4.939166475136651 When 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)
When was Hiroshima bombed? Midnight -4.940646459364146 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Midnight, will be Autumn in, Hiroshima) -> Midnight (9068ms)
When was Hiroshima bombed? famous for all the wrong reasons -4.941588856439216 When 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)
When was Hiroshima bombed? a nuclear bomb -4.946145682399349 When 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)
When was Hiroshima bombed? a Fujiyama mama -4.966149302521352 When 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)
When was Hiroshima bombed? a huge bomb -4.992123954981616 When 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)
When was Hiroshima bombed? Final preparations -5.004536615725164 When 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)
When was Hiroshima bombed? a project to collect paper cranes -5.0235626921854175 When 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)
When was Hiroshima bombed? Kyoto -5.033731021024225 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Kyoto, will be different than in, Hiroshima) -> Kyoto (9177ms)
When was Hiroshima bombed? a combat atomic bomb -5.0341679832175465 When 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)
When was Hiroshima bombed? the initial target -5.038097435918665 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the initial target) -> the initial target (9177ms)
When was Hiroshima bombed? Nagasaki -5.04144502664653 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were higher than in, Nagasaki) -> Nagasaki (9177ms)
When was Hiroshima bombed? ?An atom bomb -5.049104874276928 When 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)
When was Hiroshima bombed? less person -5.050575384636783 When 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)
When was Hiroshima bombed? Sydney -5.064434189288811 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, will be commemorated in, Sydney) -> Sydney (9201ms)
When was Hiroshima bombed? an atomic weapon -5.065114928874286 When 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)
When was Hiroshima bombed? no effects -5.066947869803736 When 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)
When was Hiroshima bombed? the United States -5.072188472785354 When 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)
When was Hiroshima bombed? The primary target -5.07572567369347 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The primary target, was, Hiroshima) -> The primary target (9201ms)
When was Hiroshima bombed? A hit -5.076674025620388 When 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)
When was Hiroshima bombed? 60 years ago -5.087176478374883 When 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)
When was Hiroshima bombed? manga -5.087956609046806 When 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)
When was Hiroshima bombed? an ' Atomic bomb -5.095242203554891 When 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)
When was Hiroshima bombed? A & H Bombs -5.100247974726228 When 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)
When was Hiroshima bombed? the Chugoku region -5.102381142789156 When 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)
When was Hiroshima bombed? the prime target -5.103592640963788 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the prime target) -> the prime target (9217ms)
When was Hiroshima bombed? every four years -5.111585036846871 When 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)
When was Hiroshima bombed? the first practical application -5.132892677678614 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first practical application, was, Hiroshima) -> the first practical application (9231ms)
When was Hiroshima bombed? two nuclear bombs -5.176131487363641 When 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)
When was Hiroshima bombed? the perfect nuclear target -5.203693106534905 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the perfect nuclear target) -> the perfect nuclear target (9231ms)
When was Hiroshima bombed? The most useful books -5.225798030073793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The most useful books, were, Hiroshima) -> The most useful books (9231ms)
When was Hiroshima bombed? the Fifth Floor -5.257201428644216 When 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)
When was Hiroshima bombed? the issues -5.268905225707869 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> (the Hiroshima bombing, were well versed in, the issues) -> the issues (9250ms)
When was Hiroshima bombed? the only nuclear incident country -5.288327845167842 When 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)
When was Hiroshima bombed? a bridge balustrade -5.291620551778086 When 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)
When was Hiroshima bombed? the great French writer Albert Camus -5.321336593543036 When 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)
When was Hiroshima bombed? the most awful option imaginable -5.329759969367947 When 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)
When was Hiroshima bombed? poems -5.335810385142686 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (a ?Hiroshima survivor?, is going to read, poems) -> poems (9249ms)
When was Hiroshima bombed? the rubble -5.34848305585246 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> (Hiroshima bombing victims, were found in, the rubble) -> the rubble (9249ms)
When was Hiroshima bombed? a chapter -5.364530970733301 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, is the subject of, a chapter) -> a chapter (9262ms)
When was Hiroshima bombed? The New Yorker magazine -5.484200323832784 When 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)
When was Hiroshima bombed? a madhouse -5.511566928836208 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, is going to be, a madhouse) -> a madhouse (9262ms)
When was Hiroshima bombed? Benwa and his parents -5.533885820999282 When 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)
When was Hiroshima bombed? Tsutomu Yamaguchi -5.549559038466793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Tsutomu Yamaguchi, was in, Hiroshima) -> Tsutomu Yamaguchi (9262ms)
When was Hiroshima bombed? the Packers -5.553210354222145 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (Hiroshima bomb, blasted in, the Packers) -> the Packers (9285ms)
When was Hiroshima bombed? the target -5.559196474596874 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the target) -> the target (9285ms)
When was Hiroshima bombed? world federalism -5.577063952916306 When 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)
When was Hiroshima bombed? a typical reactor -5.58914969294227 When 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)
When was Hiroshima bombed? a fifty-fold increase -5.646851006414693 When 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)
When was Hiroshima bombed? HBO/Cinemax -5.707060790700157 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> $x: (hiroshima bomb, on, $x) -> (the Hiroshima bombing, aired on, HBO/Cinemax) -> HBO/Cinemax (9300ms)
When was Hiroshima bombed? Murasaki -5.727190174460796 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Murasaki, will be visiting in, Hiroshima pref) -> Murasaki (9300ms)
When was Hiroshima bombed? Yoshinori Sakai -5.7287475081090315 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Yoshinori Sakai, had been born in, Hiroshima) -> Yoshinori Sakai (9300ms)
When was Hiroshima bombed? Livermore California -5.764363648391782 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were arrested in, Livermore California) -> Livermore California (9300ms)
When was Hiroshima bombed? Simucad -5.790093415849755 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Simucad, has been working with, Hiroshima University) -> Simucad (9300ms)
When was Hiroshima bombed? the Hiroshima city -5.80400978163037 When 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)
When was Hiroshima bombed? a new type of bomb -5.818402122131921 When 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)
When was Hiroshima bombed? home or travel -5.838152885685507 When 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)
When was Hiroshima bombed? the bomb -5.849312520597242 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the bomb, was dropped in, Hiroshima) -> the bomb (9441ms)
When was Hiroshima bombed? Ramirez -5.860829276578791 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Ramirez, had been with, the Hiroshima Carp) -> Ramirez (9441ms)
When was Hiroshima bombed? The bomb -5.863787344787419 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The bomb, was dropped over, Hiroshima) -> The bomb (9441ms)
When was Hiroshima bombed? The one word response -5.869137141142339 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The one word response, was, ?Hiroshima) -> The one word response (9441ms)
When was Hiroshima bombed? the atomic-bomb -5.9190644067055 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the atomic-bomb, was dropped on, Hiroshima) -> the atomic-bomb (9543ms)
When was Hiroshima bombed? the nuclear bomb -5.923703809518684 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the nuclear bomb, was dropped on, Hiroshima) -> the nuclear bomb (9543ms)
When was Hiroshima bombed? the capital of Hiroshima Prefecture -5.925290279089783 When 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)
When was Hiroshima bombed? the south -5.956581167184643 When 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)
When was Hiroshima bombed? The atomic bomb -6.02395363078598 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The atomic bomb, was used against, Hiroshima) -> The atomic bomb (9632ms)
When was Hiroshima bombed? the cold war -6.06451784650535 When 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)
When was Hiroshima bombed? the capital city of Hiroshima Prefecture -6.064809880550093 When 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)
When was Hiroshima bombed? history -6.082895924492324 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was the first city in, history) -> history (9733ms)
When was Hiroshima bombed? Nuclear Free Zone Cities -6.130193322238318 When 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)
When was Hiroshima bombed? the ashes -6.135293207932817 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (the ashes, will be sent to, Hiroshima) -> the ashes (9733ms)
When was Hiroshima bombed? the morning -6.167167538091739 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, am in, the morning) -> the morning (9793ms)
When was Hiroshima bombed? the New Yorker -6.179575377995931 When 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)
When was Hiroshima bombed? the horror -6.193200603045379 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the horror, was, Hiroshima) -> the horror (9793ms)
When was Hiroshima bombed? the products of a single satanic mindset -6.201178781032032 When 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)
When was Hiroshima bombed? the shower -6.201194409432607 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, the shower) -> the shower (9793ms)
When was Hiroshima bombed? the place -6.20382232895882 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the place) -> the place (9793ms)
When was Hiroshima bombed? the headlines -6.2246403919951465 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, the headlines) -> the headlines (9992ms)
When was Hiroshima bombed? the revitalization -6.301687126796727 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is investing in, the revitalization) -> the revitalization (9992ms)
When was Hiroshima bombed? Sagan -6.363109871859707 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, went down to, Sagan) -> Sagan (9992ms)
When was Hiroshima bombed? the circumstances? -6.3707191301485295 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was ?understandable in, the circumstances?) -> the circumstances? (9992ms)
When was Hiroshima bombed? the atmosphere -6.384801702545704 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is now in, the atmosphere) -> the atmosphere (10040ms)
When was Hiroshima bombed? The next stop -6.411686037978488 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The next stop, is, Hiroshima) -> The next stop (10040ms)
When was Hiroshima bombed? the gallery -6.415813216329699 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are available in, the gallery) -> the gallery (10040ms)
When was Hiroshima bombed? Russia -6.418962890884368 When 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)
When was Hiroshima bombed? the shadows -6.427397175366631 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (?Hiroshima, is locked in, the shadows) -> the shadows (10040ms)
When was Hiroshima bombed? the circumstances -6.450296907590825 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was "understandable in, the circumstances) -> the circumstances (10067ms)
When was Hiroshima bombed? the concert -6.4537691377702515 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (the concert, will be in, hiroshima) -> the concert (10067ms)
When was Hiroshima bombed? the one i -6.494819010082956 When 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)
When was Hiroshima bombed? the fatherhood movement -6.4993652111674125 When 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)
When was Hiroshima bombed? Silicon Valley -6.49995856777408 When 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)
When was Hiroshima bombed? the history -6.50486899237271 When 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)
When was Hiroshima bombed? The route -6.513074985305401 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (The route, will be from, Hiroshima) -> The route (10067ms)
When was Hiroshima bombed? the type -6.5312996863334885 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the type, was dropped on, Hiroshima) -> the type (10098ms)
When was Hiroshima bombed? the first Bomb -6.594838501822343 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first Bomb, was dropped on, Hiroshima) -> the first Bomb (10098ms)
When was Hiroshima bombed? the first Atomic bomb -6.605753080814816 When 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)
When was Hiroshima bombed? the same year -6.6374986390106345 When 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)
When was Hiroshima bombed? the end -6.66873896188134 When 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)
When was Hiroshima bombed? the vast flat -6.677222985955674 When 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)
When was Hiroshima bombed? the eyes of the world -6.679495131759877 When 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)
When was Hiroshima bombed? the right direction -6.687215763758181 When 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)
When was Hiroshima bombed? the city -6.689541105428488 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima castle, is also in, the city) -> the city (10126ms)
When was Hiroshima bombed? the international school -6.723067269271068 When 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)
When was Hiroshima bombed? the first nuclear bomb -6.723455989623275 When 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)
When was Hiroshima bombed? the downtown area -6.7336130433615615 When 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)
When was Hiroshima bombed? the first atomic bomb -6.734683535528092 When 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)
When was Hiroshima bombed? the national conservative creed -6.7737765888536625 When 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)
When was Hiroshima bombed? the bombing -6.8017608603122675 When 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)
When was Hiroshima bombed? the nuclear bombs -6.9164087056767425 When 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)
When was Hiroshima bombed? The report -6.916801056687522 When 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)
When was Hiroshima bombed? the atomic bombing -6.92082179120575 When 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)
When was Hiroshima bombed? the first atomic bomb in history -6.922538598947372 When 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)
When was Hiroshima bombed? the first bomb -6.927475967032526 When 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)
When was Hiroshima bombed? the atom bomb -6.956624987229876 When 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)
When was Hiroshima bombed? The workshop -6.958422912689265 When 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)
When was Hiroshima bombed? the bombs -6.977910292494924 When 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)
When was Hiroshima bombed? the unspeakable horrors -6.97891052172511 When 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)
When was Hiroshima bombed? The first atomic bomb used in war -6.981928701677109 When 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)
When was Hiroshima bombed? the atom bombs -7.017207272959126 When 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)
When was Hiroshima bombed? 12 to 16 kt -7.05574193363697 When 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)
When was Hiroshima bombed? the death -7.45431230057841 When 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)
When was Hiroshima bombed? the atomic explosion -7.674038532520992 When 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)
When was Hiroshima bombed? the day -7.717256279546244 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, the day) -> the day (10309ms)
When was Hiroshima bombed? the discoveries -7.887190790984736 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, also goes back to, the discoveries) -> the discoveries (10309ms)
What is the life expectancy of a dollar bill? 18-22 months -10.311684269603013 What 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)
What is the life expectancy of a dollar bill? dollar coins -11.571122498171102 What 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)
What is the life expectancy of a dollar bill? American Revolution Bicentennial two dollar bill postage-stamp cancellations -12.351246376180528 What 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)
What is the life expectancy of a dollar bill? a world -12.942098848574876 What 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)
What is the life expectancy of a dollar bill? a design -13.132936546592418 What 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)
What is the life expectancy of a dollar bill? An industrial economy -13.196497414056186 What 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)
What is the life expectancy of a dollar bill? Maple Syrup -13.430689154566128 What 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)
What is the life expectancy of a dollar bill? a cheap addition -13.448434321967067 What 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)
What is the life expectancy of a dollar bill? a robot -13.57850475522491 What 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)
What is the life expectancy of a dollar bill? such a large amount -13.578805878150398 What 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)
What is the life expectancy of a dollar bill? RWR -13.603700764332581 What 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)
What is the life expectancy of a dollar bill? a successful stripper -13.687826903743062 What 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)
What is the life expectancy of a dollar bill? bow ties -13.732354137809647 What 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)
What is the life expectancy of a dollar bill? one hundred -13.73942773442301 What 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)
What is the life expectancy of a dollar bill? a life -13.766534533538866 What 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)
What is the life expectancy of a dollar bill? comparison list -13.78891919579334 What 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)
What is the life expectancy of a dollar bill? approx value/site -13.792416346982531 What 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)
What is the life expectancy of a dollar bill? serial numbers -13.827059575865057 What 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)
What is the life expectancy of a dollar bill? a Benjamin -13.872778628010833 What 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)
What is the life expectancy of a dollar bill? future payment -13.882646278093567 What 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)
What is the life expectancy of a dollar bill? a postage stamp -13.952377278386672 What 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)
What is the life expectancy of a dollar bill? Dollar bills -13.983066666961873 What 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)
What is the life expectancy of a dollar bill? a $ 10 bill -14.027485662304276 What 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)
What is the life expectancy of a dollar bill? 358 feet -14.085147543160689 What 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)
What is the life expectancy of a dollar bill? Money -14.142180776729067 What 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)
What is the life expectancy of a dollar bill? one gold coin -14.176801889098527 What 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)
What is the life expectancy of a dollar bill? a green piece -14.183542825741862 What 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)
What is the life expectancy of a dollar bill? one relationship -14.229341769048197 What 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)
What is the life expectancy of a dollar bill? a large , lawful city -14.251359731728114 What 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)
What is the life expectancy of a dollar bill? fine uses -14.334096217541337 What 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)
What is the life expectancy of a dollar bill? 3 million dollars -14.374789932977098 What 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)
What is the life expectancy of a dollar bill? Jamestown -14.461783786870575 What 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)
What is the life expectancy of a dollar bill? Piggy -14.528494781860372 What 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)
What is the life expectancy of a dollar bill? one side -14.60800933976805 What 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)
What is the life expectancy of a dollar bill? Portland -14.613870613904906 What 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)
What is the life expectancy of a dollar bill? Americans -14.68018543722387 What 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)
What is the life expectancy of a dollar bill? money -15.143709204456446 What 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)
What is the life expectancy of a dollar bill? the dollar coins -15.143873262384274 What 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)
What is the life expectancy of a dollar bill? cloth -15.159576221244942 What 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)
What is the life expectancy of a dollar bill? the number -15.34374606998317 What 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)
What is the life expectancy of a dollar bill? the innards -15.45897199058267 What 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)
What is the life expectancy of a dollar bill? goods -15.528301146778542 What 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)
What is the life expectancy of a dollar bill? substantially more -15.536592482277126 What 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)
What is the life expectancy of a dollar bill? the sample -15.56380989603964 What 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)
What is the life expectancy of a dollar bill? students -15.56626856861778 What 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)
What is the life expectancy of a dollar bill? the one Dollar bill -15.613858348829805 What 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)
What is the life expectancy of a dollar bill? the campsite -15.614039904542057 What 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)
What is the life expectancy of a dollar bill? the gift shop -15.624726953573685 What 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)
What is the life expectancy of a dollar bill? the ceiling -15.719902361142307 What 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)
What is the life expectancy of a dollar bill? silver -15.7630560903148 What 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)
What is the life expectancy of a dollar bill? confetti -15.794100235969717 What 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)
What is the life expectancy of a dollar bill? business -15.812880164114578 What 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)
What is the life expectancy of a dollar bill? the front ...Good news -15.840406660535628 What 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)
What is the life expectancy of a dollar bill? the back -15.900197249135232 What 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)
What is the life expectancy of a dollar bill? the money -15.94591258796348 What 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)
What is the life expectancy of a dollar bill? the founding -16.072720491505823 What 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)
What is the life expectancy of a dollar bill? prize -16.089981184941514 What 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)
What is the life expectancy of a dollar bill? debt -16.15991325466822 What 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)
What is the life expectancy of a dollar bill? hype -16.209820452074695 What 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)
What is the life expectancy of a dollar bill? banks -16.40329359183989 What 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)
What is the life expectancy of a dollar bill? value -16.516682729757164 What 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)
What is the life expectancy of a dollar bill? vacation -16.761278529128983 What 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)
What is the life expectancy of a dollar bill? quarters -16.820802894441137 What 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)
What is the life expectancy of a dollar bill? the event -17.667792164562794 What 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)
What is the life expectancy of a dollar bill? hands -17.70761713007169 What 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)
What is the life expectancy of a dollar bill? techniques -17.781893534082595 What 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)
Who was the founder of Habitat for Humanity? Hurricane Katrina -4.734485730158193 Who 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)
Who was the founder of Habitat for Humanity? Collier County -5.066855182933777 Who 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)
Who was the founder of Habitat for Humanity? Build Louder -5.60884952908389 Who 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)
Who was the founder of Habitat for Humanity? the Week -5.748174308080958 Who 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)
Who was the founder of Habitat for Humanity? Marathon Petroleum -5.751140816113505 Who 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)
Who was the founder of Habitat for Humanity? Navigator Online -5.776528498312991 Who 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)
Who was the founder of Habitat for Humanity? Collier Construction -5.821191245433194 Who 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)
Who was the founder of Habitat for Humanity? Grace Lutheran -5.903486202908331 Who 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)
Who was the founder of Habitat for Humanity? single mothers -6.1993451864918105 Who 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)
Who was the founder of Habitat for Humanity? private gifting -6.229407945747454 Who 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)
Who was the founder of Habitat for Humanity? social activities -6.291366352485894 Who 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)
Who was the founder of Habitat for Humanity? out Restore -6.499896419828262 Who 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)
Who was the founder of Habitat for Humanity? the Home Ownership category -6.601237914387642 Who 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)
Who was the founder of Habitat for Humanity? One such program -6.704261674392477 Who 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)
Who was the founder of Habitat for Humanity? Quiz Nite -6.774566295254376 Who 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)
Who was the founder of Habitat for Humanity? Questions Q -6.802348326019333 Who 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)
Who was the founder of Habitat for Humanity? volunteer -6.882071249251372 Who 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)
Who was the founder of Habitat for Humanity? choice -6.891732889643063 Who 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)
Who was the founder of Habitat for Humanity? come Sayid -6.950208212681419 Who 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)
Who was the founder of Habitat for Humanity? such an organization -6.95102783095526 Who 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)
Who was the founder of Habitat for Humanity? 11:36 -7.029302646234002 Who 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)
Who was the founder of Habitat for Humanity? One such organization -7.038563391412015 Who 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)
Who was the founder of Habitat for Humanity? CIPH official charity -7.057196137473774 Who 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)
Who was the founder of Habitat for Humanity? C volunteer hours -7.061617122181551 Who 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)
Who was the founder of Habitat for Humanity? Sony Electronics Inc. employees -7.092800267585594 Who 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)
Who was the founder of Habitat for Humanity? more than two decades -7.098105491396764 Who 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)
Who was the founder of Habitat for Humanity? Fred -7.106390988271183 Who 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)
Who was the founder of Habitat for Humanity? 6:30 -7.136871630607802 Who 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)
Who was the founder of Habitat for Humanity? 09:14 -7.178493539311841 Who 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)
Who was the founder of Habitat for Humanity? DeepSouthCon 49 -7.31394978842049 Who 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)
Who was the founder of Habitat for Humanity? river blindness -7.380544355429805 Who 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)
Who was the founder of Habitat for Humanity? support -7.3855882859134185 Who 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)
Who was the founder of Habitat for Humanity? Humanity Project -7.440968067954371 Who 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)
Who was the founder of Habitat for Humanity? service -7.518610184344347 Who 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)
Who was the founder of Habitat for Humanity? private -7.5381271168072015 Who 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)
Who was the founder of Habitat for Humanity? Volunteers -7.541040909290787 Who 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)
Who was the founder of Habitat for Humanity? attendance -7.588764985491936 Who 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)
Who was the founder of Habitat for Humanity? the earth -7.699631468988689 Who 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)
Who was the founder of Habitat for Humanity? The carpenters -7.757536132195305 Who 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)
Who was the founder of Habitat for Humanity? Country Cares -7.787433273637458 Who 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)
Who was the founder of Habitat for Humanity? Heart Plates -7.836855393453165 Who 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)
Who was the founder of Habitat for Humanity? social architecture -7.950868202721202 Who 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)
Who was the founder of Habitat for Humanity? to -7.987784271121729 Who 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)
Who was the founder of Habitat for Humanity? New Orleans -7.989102523082121 Who 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)
Who was the founder of Habitat for Humanity? the region -8.003108601168343 Who 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)
Who was the founder of Habitat for Humanity? the site -8.011130952310058 Who 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)
Who was the founder of Habitat for Humanity? mind -8.078291579838952 Who 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)
Who was the founder of Habitat for Humanity? regional projects -8.133434724698274 Who 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)
Who was the founder of Habitat for Humanity? The event -8.198051197753612 Who 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)
Who was the founder of Habitat for Humanity? The cause -8.201523427933038 Who 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)
Who was the founder of Habitat for Humanity? The winner -8.229325774373805 Who 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)
Who was the founder of Habitat for Humanity? 100 % of the proceeds -8.262658630836347 Who 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)
Who was the founder of Habitat for Humanity? freewill donations -8.272288797018525 Who 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)
Who was the founder of Habitat for Humanity? December 2011 , 9:04 -8.29317643295689 Who 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)
Who was the founder of Habitat for Humanity? painted houses -8.299206957058194 Who 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)
Who was the founder of Habitat for Humanity? The other two -8.310799476511235 Who 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)
Who was the founder of Habitat for Humanity? The following businesses -8.334773139630961 Who 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)
Who was the founder of Habitat for Humanity? 20 Aug 1995 Q -8.339090137411901 Who 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)
Who was the founder of Habitat for Humanity? the benefiting charity -8.343769977298168 Who 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)
Who was the founder of Habitat for Humanity? The company -8.363097125257088 Who 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)
Who was the founder of Habitat for Humanity? Gentrycustom ? Mon Jan 02 , 2012 3:06 -8.38985697661693 Who 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)
Who was the founder of Habitat for Humanity? REALTORS ? -8.394792392769972 Who 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)
Who was the founder of Habitat for Humanity? The first place -8.410969039720522 Who 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)
Who was the founder of Habitat for Humanity? the ArcelorMittal Foundation -8.47163791318666 Who 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)
Who was the founder of Habitat for Humanity? The bands -8.471949040055637 Who 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)
Who was the founder of Habitat for Humanity? The currently supported charity -8.480334189550934 Who 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)
Who was the founder of Habitat for Humanity? The Foundation?s projects -8.619946926106199 Who 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)
Who was the founder of Habitat for Humanity? a warehouse -8.677494715826452 Who 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)
Who was the founder of Habitat for Humanity? The Healthy Homes Partnership -8.693446382111444 Who 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)
Who was the founder of Habitat for Humanity? Man-made Disasters -8.693474849982627 Who 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)
Who was the founder of Habitat for Humanity? a Friend -8.805340678620793 Who 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)
Who was the founder of Habitat for Humanity? a great idea -8.820333941938264 Who 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)
Who was the founder of Habitat for Humanity? Search Form Main Content -8.825313261292695 Who 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)
Who was the founder of Habitat for Humanity? ECHO -8.840549552289614 Who 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)
Who was the founder of Habitat for Humanity? a successful service network -8.854360865981427 Who 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)
Who was the founder of Habitat for Humanity? Car donations -8.899855767608752 Who 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)
Who was the founder of Habitat for Humanity? Surplus County-Owned Real Property -8.943860335533447 Who 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)
Who was the founder of Habitat for Humanity? target Carter -8.964923606173038 Who 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)
Who was the founder of Habitat for Humanity? ?Fund ? Run/ Walk -8.995180437594435 Who 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)
Who was the founder of Habitat for Humanity? ?This online campaign -8.999172564841658 Who 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)
Who was the founder of Habitat for Humanity? LOCATION RACE INFO -9.00221737583795 Who 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)
Who was the founder of Habitat for Humanity? Area residents -9.00752259964912 Who 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)
Who was the founder of Habitat for Humanity? a pay-what-you-please yard sale -9.041383388136335 Who 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)
Who was the founder of Habitat for Humanity? Community service programs -9.067648012755816 Who 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)
Who was the founder of Habitat for Humanity? Millard Fuller -9.099745885435524 Who 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)
Who was the founder of Habitat for Humanity? the cause -9.206531611921502 Who 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)
Who was the founder of Habitat for Humanity? Jars -9.213500346016069 Who 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)
Who was the founder of Habitat for Humanity? part -9.423600704395259 Who 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)
Who was the founder of Habitat for Humanity? Haiti -9.434472279893303 Who 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)
Who was the founder of Habitat for Humanity? vehicle sales -9.439042754086307 Who 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)
Who was the founder of Habitat for Humanity? ticket sales -9.448598745437709 Who 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)
Who was the founder of Habitat for Humanity? the old toilet -9.473377630702831 Who 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)
Who was the founder of Habitat for Humanity? x 301 Providence Place -9.49999754946912 Who 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)
Who was the founder of Habitat for Humanity? work -9.506874336839932 Who 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)
Who was the founder of Habitat for Humanity? localities -9.574565333870378 Who 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)
Who was the founder of Habitat for Humanity? Major partners -9.620842451484531 Who 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)
Who was the founder of Habitat for Humanity? Service projects -9.681125436494018 Who 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)
Who was the founder of Habitat for Humanity? the Year -9.685574632225851 Who 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)
Who was the founder of Habitat for Humanity? the MGRC Foundation -9.780519777262953 Who 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)
Who was the founder of Habitat for Humanity? high energy event -9.850303597721224 Who 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)
Who was the founder of Habitat for Humanity? The proceeds -9.872805145505758 Who 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)
Who was the founder of Habitat for Humanity? CD and DVD releases -9.884580023198186 Who 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)
Who was the founder of Habitat for Humanity? partnerships -9.944868528400503 Who 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)
Who was the founder of Habitat for Humanity? Homes Ball -10.004654933391413 Who 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)
Who was the founder of Habitat for Humanity? the event -10.038742133827123 Who 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)
Who was the founder of Habitat for Humanity? the sale -10.130897539387997 Who 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)
Who was the founder of Habitat for Humanity? HOMES furniture -10.141233501889927 Who 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)
Who was the founder of Habitat for Humanity? the city -10.152674831963433 Who 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)
Who was the founder of Habitat for Humanity? the tournament -10.166657668843222 Who 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)
Who was the founder of Habitat for Humanity? Organizations -10.175346580575344 Who 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)
Who was the founder of Habitat for Humanity? Past concerts -10.196780463790644 Who 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)
Who was the founder of Habitat for Humanity? RESTORE proceeds -10.20915923151288 Who 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)
Who was the founder of Habitat for Humanity? Wegmans ticket sales -10.221072615661704 Who 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)
Who was the founder of Habitat for Humanity? Women -10.222432664381657 Who 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)
Who was the founder of Habitat for Humanity? the auction -10.228616075581662 Who 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)
Who was the founder of Habitat for Humanity? the local Boyscouts -10.268068738858428 Who 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)
Who was the founder of Habitat for Humanity? Americus -10.302010494526247 Who 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)
Who was the founder of Habitat for Humanity? Examples -10.346220341604026 Who 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)
Who was the founder of Habitat for Humanity? The initiative -10.399128820388206 Who 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)
Who was the founder of Habitat for Humanity? the event proceeds -10.403549805095984 Who 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)
Who was the founder of Habitat for Humanity? Habitat program -10.427857140976338 Who 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)
Who was the founder of Habitat for Humanity? 5k race -10.58570052269828 Who 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)
Who was the founder of Habitat for Humanity? proceeds -10.642827565296312 Who 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)
Who was the founder of Habitat for Humanity? the program -10.774354411792384 Who 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)
Who was the founder of Habitat for Humanity? event -10.945595436523124 Who 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)
Who was the founder of Habitat for Humanity? well -10.969630322455169 Who 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)
Who was the founder of Habitat for Humanity? the competition -11.366683447105286 Who 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)
Who was the founder of Habitat for Humanity? Proceeds -11.378613008215268 Who 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)
Who was the founder of Habitat for Humanity? Kingfest -11.467160329734185 Who 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)
Who was the founder of Habitat for Humanity? The race -11.534154210813751 Who 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)
Who was the founder of Habitat for Humanity? The concert -11.542367123453914 Who 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)
Who was the founder of Habitat for Humanity? the carnival games -11.63469421333713 Who 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)
Who was the founder of Habitat for Humanity? the candy sales -11.725781025170349 Who 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)
Who was the founder of Habitat for Humanity? Fuller -14.877944290958402 Who 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)
Who won the 2004 World Series? Annie Duke 2.540464865319665 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Annie Duke, won, the 2004 World Series) -> Annie Duke (4048ms)
Who won the 2004 World Series? the Yankees 2.0985221820097104 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the Yankees, win, the 2004 World Series) -> the Yankees (4048ms)
Who won the 2004 World Series? The Sox 2.036101783014887 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Sox, won, the 2004 World Series) -> The Sox (4049ms)
Who won the 2004 World Series? Greg Raymer 2.025970131441441 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Greg Raymer, won, the 2004 World Series) -> Greg Raymer (4049ms)
Who won the 2004 World Series? The Red Sox 1.7081372622664177 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Red Sox, won, the 2004 World Series) -> The Red Sox (4135ms)
Who won the 2004 World Series? poker 1.5929427528849804 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (poker, is winning, the 2004 World Series) -> poker (4134ms)
Who won the 2004 World Series? The Boston Red Sox 1.488468905477379 Who 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)
Who won the 2004 World Series? Phil Hellmuth jr 1.4475128580027263 Who 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)
Who won the 2004 World Series? the Red Sox 1.2716517179880524 Who 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)
Who won the 2004 World Series? a Boston Red Sox player 1.1169297403736964 Who 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)
Who won the 2004 World Series? Boston 0.5023992490487297 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Boston, won, the 2004 World Series) -> Boston (4158ms)
Who won the 2004 World Series? the team 0.3311585833685322 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the team, win, the 2004 World Series) -> the team (4174ms)
Who won the 2004 World Series? the unexpected and -0.19905387561325893 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the unexpected and, won, the 2004 World Series) -> the unexpected and (4188ms)
Who won the 2004 World Series? Raymer -1.6637039643249292 Who 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)
Who won the 2004 World Series? David Ortiz -8.466289633683378 Who 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)
Who won the 2004 World Series? 98 -8.807857681619092 Who 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)
Who won the 2004 World Series? the Boston Red sox -9.492228296211348 Who 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)
Who won the 2004 World Series? the Sox -9.743741892459648 Who 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)
Who won the 2004 World Series? Toronto -10.166474613016781 Who 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)
Who won the 2004 World Series? a nervous wreck -10.224707371283957 Who 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)
Who won the 2004 World Series? A player -10.436229469359422 Who 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)
Who won the 2004 World Series? ESPN -10.495535264192277 Who 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)
Who won the 2004 World Series? the Boston Red Sox -10.569886894703398 Who 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)
Who won the 2004 World Series? the Red Soxs -10.637536479383085 Who 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)
Who won the 2004 World Series? a 4 game sweep -10.809140958462605 Who 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)
Who won the 2004 World Series? October 23 -11.151264471507876 Who 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)
Who won the 2004 World Series? Columbus -11.756124254271839 Who 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)
Who won the 2004 World Series? the baseball -11.760251529350692 Who 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)
Who won the 2004 World Series? Ramirez -11.791228756112762 Who 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)
Who won the 2004 World Series? 1967 -11.805788218711111 Who 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)
Who won the 2004 World Series? the history -11.996133494780244 Who 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)
Who won the 2004 World Series? the juice -12.053991293769823 Who 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)
Who won the 2004 World Series? the best part -12.110941758485573 Who 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)
Who won the 2004 World Series? the cover -12.203406292470273 Who 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)
Who won the 2004 World Series? The team -12.820027585151497 Who 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)
Who won the 2004 World Series? the spring 2005 edition -13.560639996731776 Who 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)
What are pomegranates? highly-valued fruit -5.3648011674571325 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, highly-valued fruit) -> highly-valued fruit (2817ms)
What are pomegranates? fresh fruit and vegetable -5.456127488674752 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, fresh fruit and vegetable) -> fresh fruit and vegetable (2818ms)
What are pomegranates? source of bioactive compound -5.491241115315688 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, source of bioactive compound) -> source of bioactive compound (2817ms)
What are pomegranates? biblical oil -5.503205202781131 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, biblical oil) -> biblical oil (2817ms)
What are pomegranates? Iranian ancient fruit -5.630742673532389 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, Iranian ancient fruit) -> Iranian ancient fruit (2817ms)
What are pomegranates? fruit of the Prophet Muhammad -5.640612914994527 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruit of the Prophet Muhammad) -> fruit of the Prophet Muhammad (2817ms)
What are pomegranates? native plant of Northern Africa -5.670119247914347 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, native plant of Northern Africa) -> native plant of Northern Africa (2973ms)
What are pomegranates? rich source of polyphenols -5.675284981082676 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of polyphenols) -> rich source of polyphenols (2973ms)
What are pomegranates? fresh new fashion label -5.681805606210265 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fresh new fashion label) -> fresh new fashion label (2973ms)
What are pomegranates? source of polyphenols -5.6962091085986 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, source of polyphenols) -> source of polyphenols (2974ms)
What are pomegranates? symbol of righteousness -5.7008827070031725 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, symbol of righteousness) -> symbol of righteousness (2973ms)
What are pomegranates? burnt pink shade -5.703067714680569 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, burnt pink shade) -> burnt pink shade (2973ms)
What are pomegranates? rich source of anthocyanins -5.71060379129246 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of anthocyanins) -> rich source of anthocyanins (3036ms)
What are pomegranates? handsome deciduous and somewhat thorny large shrub or small tree -5.712188473527705 What 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)
What are pomegranates? juicy kind of fruit -5.712188473527705 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, juicy kind of fruit) -> juicy kind of fruit (3036ms)
What are pomegranates? exotic fruit flavor -5.719518779740909 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, exotic fruit flavor) -> exotic fruit flavor (3037ms)
What are pomegranates? tropical fruit -5.742253898268431 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, tropical fruit) -> tropical fruit (3036ms)
What are pomegranates? passion-red fruit -5.752960842084011 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, passion-red fruit) -> passion-red fruit (3036ms)
What are pomegranates? round, delectable fruit -5.752960842084011 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, round, delectable fruit) -> round, delectable fruit (3337ms)
What are pomegranates? natural antifungal agent -5.752979563757859 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural antifungal agent) -> natural antifungal agent (3338ms)
What are pomegranates? rich source of antioxidant compound -5.780379284259812 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of antioxidant compound) -> rich source of antioxidant compound (3338ms)
What are pomegranates? fruit containing seed -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, fruit containing seed) -> fruit containing seed (3337ms)
What are pomegranates? famous traditional product -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, famous traditional product) -> famous traditional product (3360ms)
What are pomegranates? extremely invaluable fruit -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, extremely invaluable fruit) -> extremely invaluable fruit (3338ms)
What are pomegranates? fruity pink shade -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruity pink shade) -> fruity pink shade (3338ms)
What are pomegranates? native and traditional species -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, native and traditional species) -> native and traditional species (3361ms)
What are pomegranates? lovely little deciduous tree -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, lovely little deciduous tree) -> lovely little deciduous tree (3588ms)
What are pomegranates? fantastic and cheap persian restaurant -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fantastic and cheap persian restaurant) -> fantastic and cheap persian restaurant (3588ms)
What are pomegranates? symbol of Abundance prosperity & Wealth -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, symbol of Abundance prosperity & Wealth) -> symbol of Abundance prosperity & Wealth (3567ms)
What are pomegranates? fantastic and tasty fruit -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fantastic and tasty fruit) -> fantastic and tasty fruit (3615ms)
What are pomegranates? not-so-common variety -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, not-so-common variety) -> not-so-common variety (3567ms)
What are pomegranates? great sweet smelling scent -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, great sweet smelling scent) -> great sweet smelling scent (3361ms)
What are pomegranates? impressive symbol of Jewish life and commitment -5.797854797519154 What 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)
What are pomegranates? delicious and uncommon food -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, delicious and uncommon food) -> delicious and uncommon food (3566ms)
What are pomegranates? rich source of folic acid and anti oxidant -5.797854797519154 What 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)
What are pomegranates? symbol of both fertility and immortality -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, symbol of both fertility and immortality) -> symbol of both fertility and immortality (3567ms)
What are pomegranates? small tree of thorny shrub -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, small tree of thorny shrub) -> small tree of thorny shrub (3567ms)
What are pomegranates? naturally occurring mystical and miraculous superfood -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, naturally occurring mystical and miraculous superfood) -> naturally occurring mystical and miraculous superfood (3588ms)
What are pomegranates? So-called superfruits -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, So-called superfruits) -> So-called superfruits (3566ms)
What are pomegranates? natural source of Vitamin C and Iron -5.797854797519154 What 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)
What are pomegranates? red-colored fruit -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, red-colored fruit) -> red-colored fruit (3361ms)
What are pomegranates? millenary fruit growing species -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, millenary fruit growing species) -> millenary fruit growing species (3588ms)
What are pomegranates? real rock star food -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, real rock star food) -> real rock star food (3360ms)
What are pomegranates? reasonably common backyard or dooryard plant -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, reasonably common backyard or dooryard plant) -> reasonably common backyard or dooryard plant (3361ms)
What are pomegranates? rich source of anti oxidant -5.80533255447619 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of anti oxidant) -> rich source of anti oxidant (3615ms)
What are pomegranates? rich source of flavonoid antioxidant -5.809605558626739 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of flavonoid antioxidant) -> rich source of flavonoid antioxidant (3615ms)
What are pomegranates? frozen yoghurt flavor -5.816152480847817 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, frozen yoghurt flavor) -> frozen yoghurt flavor (3615ms)
What are pomegranates? SJ Creations -5.817190806275082 What 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)
What are pomegranates? agricultural product -5.825699453190995 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, agricultural product) -> agricultural product (3631ms)
What are pomegranates? luscious conditioning ingredient -5.829861700710017 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, luscious conditioning ingredient) -> luscious conditioning ingredient (3631ms)
What are pomegranates? citrus fruit -5.837102618990824 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, citrus fruit) -> citrus fruit (3632ms)
What are pomegranates? specialty crop -5.938928434119336 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, specialty crop) -> specialty crop (3630ms)
What are pomegranates? nutritious fruit -5.983926891522968 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, nutritious fruit) -> nutritious fruit (3631ms)
What are pomegranates? fruit crop -6.0495970055194785 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruit crop) -> fruit crop (3648ms)
What are pomegranates? auspicious pattern -6.074082687223527 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, auspicious pattern) -> auspicious pattern (3648ms)
What are pomegranates? beautiful ingredient -6.088339387939531 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, beautiful ingredient) -> beautiful ingredient (3648ms)
What are pomegranates? exotic ingredient -6.092527904599894 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, exotic ingredient) -> exotic ingredient (3648ms)
What are pomegranates? private company -6.103343190750323 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, private company) -> private company (3648ms)
What are pomegranates? natural superfruit -6.110129758537861 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural superfruit) -> natural superfruit (3648ms)
What are pomegranates? common object -6.116793055721799 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, common object) -> common object (3668ms)
What are pomegranates? famous fruit -6.11835529106803 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, famous fruit) -> famous fruit (3669ms)
What are pomegranates? wonderful antioxidant -6.120160895859461 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, wonderful antioxidant) -> wonderful antioxidant (3668ms)
What are pomegranates? orange fruit -6.123838979625761 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, orange fruit) -> orange fruit (3669ms)
What are pomegranates? common fruit -6.125085272451933 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, common fruit) -> common fruit (3668ms)
What are pomegranates? good food -6.1427681425663 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, good food) -> good food (3668ms)
What are pomegranates? teasing fruit -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, teasing fruit) -> teasing fruit (3701ms)
What are pomegranates? tropical type -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, tropical type) -> tropical type (3701ms)
What are pomegranates? oriental fruit -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, oriental fruit) -> oriental fruit (3700ms)
What are pomegranates? complicated fruit -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, complicated fruit) -> complicated fruit (3701ms)
What are pomegranates? powerful fruit -6.158600032477704 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, powerful fruit) -> powerful fruit (3701ms)
What are pomegranates? alkaline fruit -6.159352941588205 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, alkaline fruit) -> alkaline fruit (3701ms)
What are pomegranates? superior ingredient -6.161351046829945 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, superior ingredient) -> superior ingredient (3724ms)
What are pomegranates? yogurt flavor -6.162501470930039 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, yogurt flavor) -> yogurt flavor (3724ms)
What are pomegranates? crop species -6.164620168489392 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, crop species) -> crop species (3724ms)
What are pomegranates? minor crop -6.164764476260421 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, minor crop) -> minor crop (3724ms)
What are pomegranates? fresh fruit -6.166240349408557 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fresh fruit) -> fresh fruit (3724ms)
What are pomegranates? traditional crop -6.170691395041217 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, traditional crop) -> traditional crop (3724ms)
What are pomegranates? good treatment -6.171160608875257 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, good treatment) -> good treatment (3763ms)
What are pomegranates? lovely fruit -6.171474779033343 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, lovely fruit) -> lovely fruit (3762ms)
What are pomegranates? traditional fruit -6.175587544992003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, traditional fruit) -> traditional fruit (3762ms)
What are pomegranates? desert fruit -6.175587544992003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, desert fruit) -> desert fruit (3762ms)
What are pomegranates? subtropical species -6.189657534894624 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, subtropical species) -> subtropical species (3762ms)
What are pomegranates? dried fruit -6.192412498758184 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, dried fruit) -> dried fruit (3762ms)
What are pomegranates? jewish symbol -6.196151376011002 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, jewish symbol) -> jewish symbol (3780ms)
What are pomegranates? bold color -6.198612007668438 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, bold color) -> bold color (3780ms)
What are pomegranates? cozy restaurant -6.198893222434842 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, cozy restaurant) -> cozy restaurant (3780ms)
What are pomegranates? Avon Products -6.434848595403138 What 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)
What are pomegranates? Roccos Old School -6.48993797883984 What 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)
What are pomegranates? Unique Holding Group -6.530798978475009 What 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)
What are pomegranates? Topical Pharmaceuticals -6.678190441444729 What 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)
What are pomegranates? Insight Pharmaceuticals -6.678190441444729 What 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)
What are pomegranates? Duane Reade -6.678190441444729 What 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)
What are pomegranates? Greenbrier International -6.678190441444729 What 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)
What are pomegranates? anti-oxidants -6.754679129882165 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be great source of, $x) -> (pomegranates, are great sources of, anti-oxidants) -> anti-oxidants (3865ms)
What are pomegranates? Apollo Health And Beauty Care -6.762466253192266 What 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)
What are pomegranates? Rite Aid -6.762466253192266 What 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)
What are pomegranates? Bath & Body Works -6.762466253192266 What 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)
What are pomegranates? FDA OTC monograph part 333a -7.155023713973003 What 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)
What are pomegranates? FDA OTC monograph part 356 -7.155023713973003 What 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)
What are pomegranates? FDA OTC monograph part 333 -7.155023713973003 What 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)
What are pomegranates? FDA OTC monograph part 333e -7.155023713973003 What 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)
What are pomegranates? FDA OTC monograph part 352 -7.155023713973003 What 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)
What are pomegranates? Ulta -7.39946005107625 What 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)
What are pomegranates? Safeway -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Safeway, Drugs manufactured, Fresh Decor CITRUS POMEGRANATE 65 liquid) -> Safeway (4483ms)
What are pomegranates? Fruit -7.4541846041590665 What 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)
What are pomegranates? Pomegranate -7.4541846041590665 What 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)
What are pomegranates? Circle -7.4541846041590665 What 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)
What are pomegranates? Cherry -7.4541846041590665 What 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)
What are pomegranates? Fragaria -7.4541846041590665 What 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)
What are pomegranates? Papermates -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Papermates, Drugs manufactured, Pomegranate Rose Hand Sanitizer 62 liquid) -> Papermates (4483ms)
What are pomegranates? Vanilla -7.4541846041590665 What 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)
What are pomegranates? Melaleuca -7.4541846041590665 What 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)
What are pomegranates? Raspberry -7.4541846041590665 What 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)
What are pomegranates? Autumn Harp -7.69168916453849 What 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)
What are pomegranates? Vitamin C -7.786624329397652 What 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)
What are pomegranates? vitamin C -7.807970282912123 What 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)
What are pomegranates? vitamins C , B , K and E. -8.067059278303386 What 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)
What are pomegranates? dietary fiber -8.098019691642612 What 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)
What are pomegranates? season -8.140353629490905 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, season) -> season (4674ms)
What are pomegranates? flavoring -8.193336403045627 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, flavoring) -> flavoring (4674ms)
What are pomegranates? vitamin C. One pomegranate -8.202318536665933 What 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)
What are pomegranates? host -8.211667315001506 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, host) -> host (5559ms)
What are pomegranates? agriculture -8.22908329428514 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, agriculture) -> agriculture (5560ms)
What are pomegranates? leader -8.294330233095735 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, leader) -> leader (5560ms)
What are pomegranates? item -8.307394526471485 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, item) -> item (5560ms)
What are pomegranates? delicacy -8.32301510630241 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, delicacy) -> delicacy (5560ms)
What are pomegranates? ingredient -8.324506542774305 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, ingredient) -> ingredient (6715ms)
What are pomegranates? folic acid and antioxidants -8.343626313979948 What 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)
What are pomegranates? vitamins C and B -8.360112600568357 What 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)
What are pomegranates? blueberry -8.377205399489238 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, blueberry) -> blueberry (6715ms)
What are pomegranates? refreshment -8.400685280747979 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, refreshment) -> refreshment (6914ms)
What are pomegranates? establishment -8.41223788173623 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranates, Instance Of, establishment) -> establishment (6914ms)
What are pomegranates? shade -8.417128485395224 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, shade) -> shade (6914ms)
What are pomegranates? project -8.420989751228777 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, project) -> project (7057ms)
What are pomegranates? operation -8.421860944357665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, operation) -> operation (7056ms)
What are pomegranates? woman -8.42257354173245 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, woman) -> woman (7056ms)
What are pomegranates? potassium and vitamin C -8.466137553008217 What 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)
What are pomegranates? vitamin C and potassium -8.47448758781568 What 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)
What are pomegranates? the B vitamin -8.495531928576868 What 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)
What are pomegranates? vitamin K and folate -8.589031636232988 What 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)
What are pomegranates? dietary antioxidants -8.663406225449897 What 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)
What are pomegranates? Vitamin C and potassium -9.064231689863632 What 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)
What are pomegranates? ancient healing benefits -9.14047293412552 What 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)
What are pomegranates? antioxidants and flavonoids -9.14710749835895 What 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)
What are pomegranates? oil -9.299907331143988 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, grapeseed, $x) -> (Contains pomegranate oil, grapeseed, oil) -> oil (7388ms)
What are pomegranates? delicious choices -9.508530982228699 What 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)
What are pomegranates? jewel-boxes -10.014069612871872 What 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)
What are pomegranates? potassium -10.09089593640525 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are good sources of, potassium) -> potassium (7616ms)
What are pomegranates? fiber -10.130167383307864 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be also high in, $x) -> (Pomegranates, are also high in, fiber) -> fiber (7616ms)
What are pomegranates? black dot -10.148250810970003 What 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)
What are pomegranates? antioxidants -10.250940914238027 What 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)
What are pomegranates? iron -10.256558916094686 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranate, is a good source of, iron) -> iron (7637ms)
What are pomegranates? quercetin -10.320201377158849 What 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)
What are pomegranates? phytoestrogens -10.321714620335335 What 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)
What are pomegranates? Male Excess -10.329058511305075 What 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)
What are pomegranates? Greece -10.452954322687681 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Greece, is, pomegranates) -> Greece (8289ms)
What are pomegranates? Ellagic acid -10.502193239654272 What 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)
What are pomegranates? Third Millennium Publishing -10.572211721328264 What 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)
What are pomegranates? Tweak Extreme -10.609536660513374 What 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)
What are pomegranates? Real Grenadine -10.610338342674318 What 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)
What are 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 -10.625201272150983 What 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)
What are pomegranates? A House of Pomegranates -10.625201272150983 What 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)
What are pomegranates? Azerbaijan?s trademark -10.658379973769138 What 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)
What are pomegranates? Morocco -10.687331343838636 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Morocco, are, pomegranates) -> Morocco (8603ms)
What are pomegranates? Thorndike Press -10.719603184297982 What 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)
What are pomegranates? Wildside Press -10.719603184297982 What 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)
What are pomegranates? George Tooker -10.719603184297982 What 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)
What are pomegranates? Borgo Press -10.719603184297982 What 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)
What are pomegranates? Romare Bearden -10.719603184297982 What 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)
What are pomegranates? Turker Korkmaz -10.720771821655251 What 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)
What are pomegranates? Massoud Bakhshi -10.720771821655251 What 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)
What are pomegranates? a superfood -10.721134546688361 What 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)
What are pomegranates? a producer -10.72784529224585 What 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)
What are pomegranates? a name -10.72784529224585 What 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)
What are pomegranates? ?a little pricey ? -10.769039016967481 What 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)
What are pomegranates? much Vitamin K -10.772183616183455 What 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)
What are pomegranates? Pomegranates from an English garden -10.80387899604552 What 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)
What are pomegranates? Susan Seddon Boulet: the goddess paintings -10.80387899604552 What 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)
What are pomegranates? The Yosemite handbook: an insider's guide to the park, as related by Bruinhilda -10.80387899604552 What 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)
What are pomegranates? Taking tea with Mackintosh: the story of Miss Cranston's tea rooms -10.80387899604552 What 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)
What are pomegranates? Pomegranates from the Punjab. Indian stories -10.80387899604552 What 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)
What are pomegranates? The Alphabet Book Mobile (Book Mobiles) -10.80387899604552 What 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)
What are pomegranates? David Roberts: travels in Egypt & the Holy Land -10.80387899604552 What 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)
What are pomegranates? Ice-covered Rose Hips, Sierra Club Boxed Holiday Cards -10.80387899604552 What 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)
What are pomegranates? Shaman: the paintings of Susan Seddon Boulet. -10.80387899604552 What 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)
What are pomegranates? Bartles & Jaymes -10.80387899604552 What 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)
What are pomegranates? Mother Goose Post Card Book -10.80387899604552 What 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)
What are pomegranates? The Numbers Book Mobile (Book Mobiles) -10.80387899604552 What 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)
What are pomegranates? A Garden of Pomegranates -10.80387899604552 What 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)
What are pomegranates? Dial Books for Young Readers -10.80387899604552 What 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)
What are pomegranates? Shelter: Human Habitats from Around the World -10.80387899604552 What 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)
What are pomegranates? Bells and Pomegranates. No. V -10.80387899604552 What 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)
What are pomegranates? The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter -10.80387899604552 What 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)
What are pomegranates? Porcelain Moon and Pomegranates -10.80387899604552 What 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)
What are pomegranates? Edward Hopper's New England -10.80387899604552 What 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)
What are pomegranates? Cows: a book of postcards. -10.80387899604552 What 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)
What are pomegranates? Parrish and Poetry: A Gift of Words and Art -10.80387899604552 What 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)
What are pomegranates? Jane Morris: the Pre-Raphaelite model of beauty -10.80387899604552 What 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)
What are pomegranates? Bells and Pomegranates. No. V (Collected Works of Robert Browning) -10.80387899604552 What 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)
What are pomegranates? Meinrad Craighead: Crow Mother and the Dog God -10.80387899604552 What 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)
What are pomegranates? Contemporary architectural drawings: donations to the Avery Library centennial drawings archive -10.80387899604552 What 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)
What are pomegranates? Mills & Boon -10.80387899604552 What 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)
What are pomegranates? The Shadow of the Pomegranate -10.80387899604552 What 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)
What are pomegranates? Gustave Baumann's Southwest -10.80387899604552 What 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)
What are pomegranates? Pomegranates: a poem -10.80387899604552 What 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)
What are pomegranates? The Muir Woods handbook: an insider's guide to the park -10.80387899604552 What 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)
What are pomegranates? American Paintings: A Book of Postcards -10.80387899604552 What 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)
What are pomegranates? Women of the West: A Book of Postcards -10.80387899604552 What 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)
What are pomegranates? The Art of Arthur & Lucia Mathews -10.80387899604552 What 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)
What are pomegranates? Percival Pea and Polly Pomegranate -10.80387899604552 What 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)
What are pomegranates? Saw-whet Owl, Sierra Club Boxed Holiday Cards -10.80387899604552 What 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)
What are pomegranates? Isle of Pomegranates -10.80387899604552 What 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)
What are pomegranates? Cafe Babilonia/ Pomegranate Soup -10.80387899604552 What 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)
What are pomegranates? Black velvet: the art we love to hate -10.80387899604552 What 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)
What are pomegranates? Under the Pomegranate Tree -10.80387899604552 What 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)
What are pomegranates? Homecoming: The Paintings of William H. Johnson: A Book of Postcards -10.80387899604552 What 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)
What are pomegranates? Pomegranate Soup: A Novel -10.80387899604552 What 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)
What are pomegranates? Pomegranate: Fruits of Paradise (Woodland Health Series) -10.80387899604552 What 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)
What are pomegranates? Under the Pomegranate Tree: The Best New Latino Erotica -10.80387899604552 What 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)
What are pomegranates? The Grand Canyon handbook: an insider's guide to the park, as related by Ranger Jack -10.80387899604552 What 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)
What are pomegranates? Stuart Davis's abstract argot -10.80387899604552 What 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)
What are pomegranates? Crazy Dervish and the Pomegranate Tree -10.80387899604552 What 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)
What are pomegranates? Charles Rennie Mackintosh: textile designs -10.80387899604552 What 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)
What are pomegranates? CatChristmas -10.80387899604552 What 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)
What are pomegranates? Pastures in the Sky -10.80387899604552 What 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)
What are pomegranates? A garden of pomegranates; an outline of the Qabalah -10.80387899604552 What 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)
What are pomegranates? Domes of America -10.80387899604552 What 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)
What are pomegranates? The Pomegranates of Kandahar -10.80387899604552 What 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)
What are pomegranates? The Hastings Hours (Illuminated Gift) -10.80387899604552 What 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)
What are pomegranates? Doves and pomegranates -10.80387899604552 What 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)
What are pomegranates? The Crazy Clothes Book Mobile (Book Mobiles) -10.80387899604552 What 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)
What are pomegranates? Behind the doors of San Miguel de Allende -10.80387899604552 What 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)
What are pomegranates? Marshall Field's (A Building Book) -10.80387899604552 What 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)
What are pomegranates? Maxfield Parrish: A Retrospective -10.80387899604552 What 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)
What are pomegranates? Seed of the pomegranate -10.80387899604552 What 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)
What are pomegranates? Shadows of the pomegranate tree -10.80387899604552 What 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)
What are pomegranates? Outhouses by famous architects -10.80387899604552 What 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)
What are pomegranates? Golden Bells & Pomegranates -10.80387899604552 What 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)
What are pomegranates? The Yellowstone handbook: an insider's guide to the park, as related by Ranger Norm -10.80387899604552 What 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)
What are pomegranates? The Pomegranate: Love and Peace Poems -10.80387899604552 What 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)
What are pomegranates? Bells and pomegranates : first series -10.80387899604552 What 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)
What are pomegranates? Pomegranates from an English garden: a selection from the poems of Robert Browning -10.80387899604552 What 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)
What are pomegranates? A House of Pomegranates (Collected Works of Oscar Wilde) -10.80387899604552 What 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)
What are pomegranates? White Wolf Publishing -10.80387899604552 What 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)
What are pomegranates? Pomegranates Full and Fine -10.80387899604552 What 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)
What are pomegranates? Dinosaurs and pink pomegranates -10.80387899604552 What 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)
What are pomegranates? The Gutenberg Bible (Illuminated Gift) -10.80387899604552 What 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)
What are pomegranates? Thoughts from Walden Pond by Henry David Thoreau -10.80387899604552 What 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)
What are pomegranates? Red Fox, Sierra Club Boxed Holiday Cards -10.80387899604552 What 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)
What are pomegranates? The Narcissus and the pomegranate -10.80387899604552 What 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)
What are pomegranates? Winter Wildlife Boxed Assorted Sierra Club Holiday Cards -10.80387899604552 What 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)
What are pomegranates? Doves and pomegranates: poems for young readers -10.80387899604552 What 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)
What are pomegranates? Surfing: a history of the ancient Hawaiian sport -10.80387899604552 What 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)
What are pomegranates? Digireads.com -10.80387899604552 What 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)
What are pomegranates? Yasuo Kuniyoshi's women -10.80387899604552 What 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)
What are pomegranates? The Art of Whitfield Lovell -10.80387899604552 What 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)
What are pomegranates? Charles Bragg, the works!: a retrospective -10.80387899604552 What 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)
What are pomegranates? Sears Tower: A Building Book from the Chicago Architecture Foundation -10.80387899604552 What 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)
What are pomegranates? Pomegranates: A Selection from the Poems of Robert Browning -10.80387899604552 What 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)
What are pomegranates? Altered English: surprising meanings of familiar words -10.80387899604552 What 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)
What are pomegranates? OverTime: the jazz photographs of Milt Hinton -10.80387899604552 What 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)
What are pomegranates? Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey -10.80387899604552 What 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)
What are pomegranates? Floating Worlds: The Letters of Edward Gorey and Peter F. Neumeyer -10.80387899604552 What 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)
What are pomegranates? Talking Jazz: An Illustrated Oral History -10.80387899604552 What 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)
What are pomegranates? Heart of the circle: photographs of Native American women -10.80387899604552 What 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)
What are pomegranates? Seed of the pomegranate: and other poems. -10.80387899604552 What 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)
What are pomegranates? Pomegranate seed: a novel -10.80387899604552 What 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)
What are pomegranates? Cryptorunes: codes and secret writing -10.80387899604552 What 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)
What are pomegranates? The Magic Pomegranate: A Jewish Folktale (On My Own Folklore) -10.80387899604552 What 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)
What are pomegranates? Burne-Jones -10.80387899604552 What 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)
What are pomegranates? The Pomegranate Princess: And Other Tales From India -10.80387899604552 What 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)
What are pomegranates? The Wuggly Ump -10.80387899604552 What 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)
What are pomegranates? M.C. Escher kaleidocycles -10.80387899604552 What 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)
What are pomegranates? BookSurge Classics -10.80387899604552 What 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)
What are pomegranates? Women of the civil rights movement -10.80387899604552 What 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)
What are pomegranates? A view from the river: the Chicago Architecture Foundation river cruise -10.80387899604552 What 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)
What are pomegranates? The Other Side of Color: African American Art in the Collection of Camille O. and William H. Cosby, Jr. -10.80387899604552 What 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)
What year was the program first broadcast? the growing interest -7.655613962172634 What 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)
What is the average weight of a Yellow Labrador? Mr Deeley -9.34379171774577 What 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)
What is the average weight of a Yellow Labrador? CA Sonny -9.833179391518463 What 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)
What is the average weight of a Yellow Labrador? 14 years -10.200768528714997 What 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)
What is the average weight of a Yellow Labrador? Kentucky Fried Chicken -10.333583203170573 What 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)
What is the average weight of a Yellow Labrador? breeder Gretchen -10.75979900558966 What 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)
What is the average weight of a Yellow Labrador? ME Max -10.814908069138104 What 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)
What is the average weight of a Yellow Labrador? a Christmas puppy -10.887211136030196 What 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)
What is the average weight of a Yellow Labrador? Number three -10.903619688460138 What 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)
What is the average weight of a Yellow Labrador? Butch -10.904069241759359 What 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)
What is the average weight of a Yellow Labrador? an older brother Jake -10.905096241500443 What 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)
What is the average weight of a Yellow Labrador? loud noises -10.909208314185255 What 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)
What is the average weight of a Yellow Labrador? Maddie -10.941568395981946 What 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)
What is the average weight of a Yellow Labrador? Old Yeller -10.970168638246038 What 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)
What is the average weight of a Yellow Labrador? Texas USA My dog -11.056926970777358 What 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)
What is the average weight of a Yellow Labrador? Kura -11.082959039988976 What 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)
What is the average weight of a Yellow Labrador? 16451 Cosmo -11.167239248460104 What 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)
What is the average weight of a Yellow Labrador? Mom -11.170819545522487 What 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)
What is the average weight of a Yellow Labrador? Naomi -11.235799965683746 What 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)
What is the average weight of a Yellow Labrador? Tennessee -11.243705874731297 What 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)
What is the average weight of a Yellow Labrador? Libby -11.271484401604056 What 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)
What is the average weight of a Yellow Labrador? a small child -11.278527368073064 What 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)
What is the average weight of a Yellow Labrador? three years -11.339677256038776 What 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)
What is the average weight of a Yellow Labrador? Sunshine -11.345950399334141 What 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)
What is the average weight of a Yellow Labrador? Badge # 17 -11.389374963145531 What 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)
What is the average weight of a Yellow Labrador? Dakota -11.443410976003888 What 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)
What is the average weight of a Yellow Labrador? Hubbell -11.472524928028884 What 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)
What is the average weight of a Yellow Labrador? Millie -11.501375817217683 What 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)
What is the average weight of a Yellow Labrador? Stellablue -11.516773967779216 What 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)
What is the average weight of a Yellow Labrador? Salty -11.552042109924052 What 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)
What is the average weight of a Yellow Labrador? Digger -11.595492986977412 What 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)
What is the average weight of a Yellow Labrador? Duster -11.635773889360095 What 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)
What is the average weight of a Yellow Labrador? Hooper -11.67949180182978 What 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)
What is the average weight of a Yellow Labrador? Jjurgens -11.751664704583453 What 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)
What is the average weight of a Yellow Labrador? Rudy -11.783224754622584 What 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)
What is the average weight of a Yellow Labrador? 2012 Hooch -11.928461898000364 What 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)
What is the average weight of a Yellow Labrador? Happy Jack -11.990621034591127 What 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)
What is the average weight of a Yellow Labrador? the dogs -12.393707633945597 What 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)
What is the average weight of a Yellow Labrador? The puppy -12.489044314421129 What 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)
What is the average weight of a Yellow Labrador? the tracking dog -12.502363468231827 What 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)
What is the average weight of a Yellow Labrador? the floor -12.878562986316025 What 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)
What is the average weight of a Yellow Labrador? Marley -12.881939428757894 What 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)
What is the average weight of a Yellow Labrador? back -13.347144930428215 What 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)
What is the average weight of a Yellow Labrador? the water -14.213157156445009 What 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)
What is the average weight of a Yellow Labrador? adventure -17.20007746720335 What 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)
What birthstone is turquoise? December -4.647319943408512 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone for, December) -> December (1886ms)
What birthstone is turquoise? Sagittarius Nov. 22nd -4.858085034081475 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone for, Sagittarius Nov. 22nd) -> Sagittarius Nov. 22nd (1887ms)
What birthstone is turquoise? Sagittarius -4.953839169482679 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone of, Sagittarius) -> Sagittarius (1896ms)
What birthstone is turquoise? Capricorns -5.183409034160624 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Lapis and Turquoise, are the birthstones for, Capricorns) -> Capricorns (2008ms)
What birthstone is turquoise? the month -6.3276831049908715 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (December Birthstone Turquoise, is the birthstone of, the month) -> the month (2094ms)
What birthstone is turquoise? green -18.16447444782939 What 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)
How many events are part of the LPGA tour? LPGA -6.922071525236562 How 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)
How many events are part of the LPGA tour? earnings -7.862104924911893 How 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)
How many events are part of the LPGA tour? charity event -7.884543676030734 How 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)
How many events are part of the LPGA tour? major -8.448235075358184 How 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)
How many events are part of the LPGA tour? major championship -8.802358805461004 How 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)
How many events are part of the LPGA tour? Mrs Singapore -8.82802662875108 How 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)
How many events are part of the LPGA tour? Wie -8.952658071305228 How 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)
How many events are part of the LPGA tour? WIE -8.976694174762882 How 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)
How many events are part of the LPGA tour? South Koreans -9.095732954335679 How 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)
How many events are part of the LPGA tour? Hawaii -9.19587657176861 How 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)
How many events are part of the LPGA tour? Waterloo -9.317980565418344 How 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)
What was Sammy Sosa's team? Right Field -2.9894681182655822 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays the athletic team position, Right Field) -> Right Field (2654ms)
What was Sammy Sosa's team? Cubs -3.650761988408028 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays for the team, Cubs) -> Cubs (2654ms)
What was Sammy Sosa's team? Outfielder -3.7379734003807603 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays the athletic team position, Outfielder) -> Outfielder (2654ms)
What was Sammy Sosa's team? PEDs -4.901012727818765 What 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)
What was Sammy Sosa's team? positive tests -5.270440459116543 What 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)
What was Sammy Sosa's team? Chicago -5.312460267813953 What 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)
What was Sammy Sosa's team? Vegas -5.444983939960528 What 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)
What was Sammy Sosa's team? home runs -5.545688944087041 What 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)
What was Sammy Sosa's team? Mlb -5.5858221854164185 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, league, $x) -> (sammy sosa, plays in the league, Mlb) -> Mlb (4697ms)
What was Sammy Sosa's team? the Dominican Republic -6.177545213766242 What 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)
What was Sammy Sosa's team? 42 home runs -6.239493656224374 What 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)
What was Sammy Sosa's team? Thursday -6.808585411637017 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, train, $x) -> (Sammy Sosa, began training, Thursday) -> Thursday (4718ms)
What was Sammy Sosa's team? the lead -7.221086610070968 What 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)
What was Sammy Sosa's team? homers -7.652190409012987 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, paired, $x) -> (Sammy Sosa, hits a pair of, homers) -> homers (4608ms)
What was Sammy Sosa's team? players -7.738688186743293 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, stick, $x) -> (a bleached Sammy Sosa, is sticking, players) -> players (4518ms)
What was Sammy Sosa's team? inside-the-park jobs -11.673655151126203 What 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)
What was Sammy Sosa's team? the ?Mendoza line -11.697891199305387 What 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)
What was Sammy Sosa's team? the news and everyone -13.79649063519231 What 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)
Which film won three awards at the festival? The Film -3.2260548419903303 Which 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)
Which film won three awards at the festival? the film -7.9823076092128105 Which 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)
What organization investigated the disaster? BAT-MAN -4.90778286770008 What 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)
What organization investigated the disaster? Congress -5.011972323068232 What 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)
What organization investigated the disaster? scientist -7.257903452655609 What 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)
What organization investigated the disaster? local authority -7.766159809358351 What 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)
What organization investigated the disaster? Dow -7.869075654191582 What 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)
What organization investigated the disaster? Specialists -7.956645888881363 What 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)
What organization investigated the disaster? DOW -7.995702986831747 What 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)
What organization investigated the disaster? Scientists -8.305251595484723 What 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)
What organization investigated the disaster? prosecutor -8.365790390666163 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (prosecutor, Instance Of, organization) (prosecutors, investigating, the Concordia disaster) -> prosecutor (2740ms)
What organization investigated the disaster? Investigators -9.007330364076713 What 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)
What organization investigated the disaster? emergency service -9.138346976716427 What 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)
What organization investigated the disaster? participant -9.191962794824398 What 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)
What organization investigated the disaster? specialist -9.449083139055926 What 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)
What organization investigated the disaster? children's -9.62729415155656 What 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)
What organization investigated the disaster? Materials -9.664211851210853 What 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)
What organization investigated the disaster? WHS -9.745990802361321 What 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)
What organization investigated the disaster? Talk -9.757172855942773 What 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)
What organization investigated the disaster? PFD Donations -10.04191971596455 What 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)
What organization investigated the disaster? middle school -10.068950443730952 What 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)
What organization investigated the disaster? Children's -10.074017817966476 What 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)
What organization investigated the disaster? Children -10.274926419956985 What 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)
What organization investigated the disaster? coyote skin -10.285209982799593 What 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)
What organization investigated the disaster? Bank -10.430937450157193 What 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)
What organization investigated the disaster? Coyotes -10.481626312120763 What 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)
What organization investigated the disaster? TALK -10.55002529142498 What 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)
What organization investigated the disaster? COST -10.63645243528175 What 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)
What organization investigated the disaster? PAPERS -10.706759780593572 What 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)
What organization investigated the disaster? CLAIM -10.71488180912704 What 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)
What organization investigated the disaster? COYOTE -10.716984884768102 What 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)
What organization investigated the disaster? Surprise -10.812752364959604 What 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)
What organization investigated the disaster? investigator -10.927908308059948 What 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)
What organization investigated the disaster? cost -11.328227236673143 What 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)
What organization investigated the disaster? Citizens -11.578976376766143 What 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)
What organization investigated the disaster? claim -11.617748227494129 What 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)
What organization investigated the disaster? Problems -11.748561767344446 What 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)
What organization investigated the disaster? Citizen -12.089835502418765 What 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)
What organization investigated the disaster? bank -12.23794569080217 What 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)
What organization investigated the disaster? donations -12.248553729856742 What 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)
What organization investigated the disaster? teams -12.428227811428872 What 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)
What organization investigated the disaster? victim -12.450316197620888 What 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)
What organization investigated the disaster? AREA -12.75943299597878 What 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)
What organization investigated the disaster? issue -13.25274106366205 What 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)
What organization investigated the disaster? event -13.459200632994825 What 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)
What organization investigated the disaster? citizen -13.546656447304667 What 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)
What organization investigated the disaster? expense -13.98356487910971 What 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)
What organization investigated the disaster? Investigators Forum -16.890223311589924 What 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)
What is the birthstone of October? Tourmaline 1.7331874295615455 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Tourmaline, is the birthstone of, October) -> Tourmaline (1275ms)
What is the birthstone of October? Opal 1.529273898587693 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Opal, is also the birthstone of, October) -> Opal (1275ms)
What is the birthstone of October? Coral 1.2883807580584818 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Coral, is the birthstone of, October and November) -> Coral (1275ms)
What is the birthstone of October? the 8th year 1.099940177611417 What 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)
What is the birthstone of October? the 14th and 18th years 0.944003254939821 What 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)
What is the birthstone of October? The opal 0.8072976893795745 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (The opal, is the birthstone of, October) -> The opal (1306ms)
When is the summer solstice? 21 June 1.6184507269723438 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is on, 21 June) -> 21 June (1383ms)
When is the summer solstice? June 21 0.9682293069479933 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, was on, June 21) -> June 21 (1383ms)
When is the summer solstice? June 25 0.9154401328045738 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the summer solstice, was celebrated on, June 25) -> June 25 (1383ms)
When is the summer solstice? June 21st 0.4305562099882727 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, was on, June 21st) -> June 21st (2942ms)
When is the summer solstice? June 20th 0.4196181841047766 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is on, June 20th) -> June 20th (2942ms)
When is the summer solstice? May 2017 0.4074805201201803 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is passed in, May 2017) -> May 2017 (2942ms)
When is the summer solstice? December 22 0.324598866157114 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Southern Summer Solstice, is on, December 22) -> December 22 (2942ms)
When is the summer solstice? July 31st 0.2598762525591325 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is celebrated on, July 31st) -> July 31st (2999ms)
When is the summer solstice? June 0.1941846346447016 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The Summer solstice, is in, June) -> June (2999ms)
When is the summer solstice? December -0.5052220994464331 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, December) -> December (2999ms)
When is the summer solstice? 2016 -0.828170997137732 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Northern summer solstice, is in, 2016) -> 2016 (3092ms)
When is the summer solstice? 21st June -0.8485091319260403 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is on, 21st June) -> 21st June (3091ms)
When is the summer solstice? 1974 -0.877646567328247 When 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)
When is the summer solstice? 2000 -0.9137396273981655 When 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)
When is the summer solstice? Tuesday -1.103017362517389 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, be celebrated on, Tuesday) -> Tuesday (3130ms)
When is the summer solstice? 1o Virgo -1.2958773334962617 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was in, 1o Virgo) -> 1o Virgo (3156ms)
When is the summer solstice? December in Peru -1.4104500282169052 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, December in Peru) -> December in Peru (3156ms)
When is the summer solstice? theory -1.5082903188873176 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is in, theory) -> theory (3180ms)
When is the summer solstice? the 21st -1.5122387595702307 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is always on, the 21st) -> the 21st (3180ms)
When is the summer solstice? June 20 -1.5944447680235583 When 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)
When is the summer solstice? 525.5 Seasons and zones -1.6979952639229254 When 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)
When is the summer solstice? the 21st June -1.7517955989354497 When 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)
When is the summer solstice? time -1.8055155375088872 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is an instant in, time) -> time (3230ms)
When is the summer solstice? June 21 , 1:45 am -2.0372640168803624 When 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)
When is the summer solstice? June 21 marks -2.149297633190841 When 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)
When is the summer solstice? June 21 or 22 -2.271223986537776 When 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)
When is the summer solstice? Leo -2.2836392146535447 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was in, Leo) -> Leo (3346ms)
When is the summer solstice? June 21 , 2009 -2.332233638747864 When 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)
When is the summer solstice? the 4th July -2.3413734706057583 When 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)
When is the summer solstice? December 21st -2.3910476508926966 When 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)
When is the summer solstice? June 21/June 22 -2.4109272297890634 When 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)
When is the summer solstice? meaning -2.465629538716618 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The summer solstice, is very similar in, meaning) -> meaning (3387ms)
When is the summer solstice? June 20th or 21st -2.492273432735847 When 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)
When is the summer solstice? places -2.5442287931094483 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is celebrated in, places) -> places (3410ms)
When is the summer solstice? balance -2.5452073688612087 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer and winter solstices, are in, balance) -> balance (3410ms)
When is the summer solstice? The Winter -2.711436520359163 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Winter and Summer Solstices, are unfolded in, The Winter) -> The Winter (3431ms)
When is the summer solstice? Jun 21 2011 -2.7534152420943716 When 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)
When is the summer solstice? modern society -2.7854303226198884 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is still celebrated in, modern society) -> modern society (3451ms)
When is the summer solstice? a long valley -2.79227138786633 When 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)
When is the summer solstice? March 30 -2.8179492690516192 When 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)
When is the summer solstice? June 21 , 2010 -2.819580339093418 When 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)
When is the summer solstice? June 21st and winter solstice -2.8496288805249215 When 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)
When is the summer solstice? June 20th/21st -2.854869536208835 When 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)
When is the summer solstice? a separate post -2.898439694384844 When 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)
When is the summer solstice? Damanhur -3.1144819048581005 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the first summer solstice, was celebrated in, Damanhur) -> Damanhur (3469ms)
When is the summer solstice? France -3.2234768138473386 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is a big deal in, France) -> France (3488ms)
When is the summer solstice? Authorities Concept Scheme -3.28270077853546 When 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)
When is the summer solstice? Topical Terms Concept Scheme -3.3216850092033585 When 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)
When is the summer solstice? late June -3.3937001075839666 When 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)
When is the summer solstice? Gemini -3.411781513534758 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, Gemini) -> Gemini (3510ms)
When is the summer solstice? a Saturday -3.490897255730118 When 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)
When is the summer solstice? Taurus -3.4910368965606917 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is located in, Taurus) -> Taurus (3535ms)
When is the summer solstice? the 20th -3.5938526494609926 When 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)
When is the summer solstice? the 21st of June -3.713438653483691 When 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)
When is the summer solstice? June 20 or 21 -3.762000349616894 When 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)
When is the summer solstice? Sunday -3.764228678315804 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, arrives on, Sunday) -> Sunday (3804ms)
When is the summer solstice? a Wednesday -3.7694747757352265 When 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)
When is the summer solstice? 1983 -3.8049629804244898 When 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)
When is the summer solstice? the time -3.8410498724422393 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was located in, the time) -> the time (3824ms)
When is the summer solstice? Monday -3.848848554047886 When 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)
When is the summer solstice? 1996 -3.882931441760288 When 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)
When is the summer solstice? the middle -3.929808359383856 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, the middle) -> the middle (3824ms)
When is the summer solstice? 2002 -4.002882920738439 When 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)
When is the summer solstice? 1969 -4.002882920738439 When 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)
When is the summer solstice? the reversal -4.006935215215122 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is in, the reversal) -> the reversal (3903ms)
When is the summer solstice? 1988 -4.050006716051284 When 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)
When is the summer solstice? 1943 -4.126582883434657 When 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)
When is the summer solstice? summer -4.151047399272452 When 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)
When is the summer solstice? 2001 -4.186142124732836 When 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)
When is the summer solstice? Saturday -4.253474058685651 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice events, abound on, Saturday) -> Saturday (3942ms)
When is the summer solstice? the hundreds -4.301633447518312 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice Parade, was in, the hundreds) -> the hundreds (3942ms)
When is the summer solstice? Friday -4.354853908953768 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, falls on, Friday) -> Friday (3943ms)
When is the summer solstice? the day -4.484210848605629 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, am most active early in, the day) -> the day (3971ms)
When is the summer solstice? 112 years?or -4.492909272413171 When 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)
When is the summer solstice? the mid-point -4.516558051631373 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is celebrated on, the mid-point) -> the mid-point (3972ms)
When is the summer solstice? mid-summer -4.5984073776328875 When 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)
When is the summer solstice? full force -4.813953042625662 When 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)
When is the summer solstice? Mid -5.166789399598218 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, Mid) -> Mid (4237ms)
When is the summer solstice? Mid-year -5.284525951742066 When 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)
When is the summer solstice? the UK today -5.2859705507734525 When 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)
When is the summer solstice? the Northern Hemisphere -5.300117744000178 When 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)
When is the summer solstice? Cancer -5.306482043352654 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, falls in, Cancer) -> Cancer (4279ms)
When is the summer solstice? a full moon -5.375004227541533 When 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)
When is the summer solstice? seasons -5.378479731497796 When 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)
When is the summer solstice? mid-July -5.431263238205988 When 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)
When is the summer solstice? the Kimmel Center -5.454252400848269 When 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)
When is the summer solstice? a few days -5.458309417491254 When 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)
When is the summer solstice? one scandal -5.459100652819109 When 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)
When is the summer solstice? Beltaine -5.518257767643734 When 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)
When is the summer solstice? service -5.519383637828597 When 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)
When is the summer solstice? an ATV -5.524923640747753 When 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)
When is the summer solstice? Latvia -5.5520904676010705 When 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)
When is the summer solstice? 2001-04-01 -5.563376710650385 When 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)
When is the summer solstice? Argentina -5.706984147175875 When 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)
When is the summer solstice? Texas -5.777719955202615 When 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)
When is the summer solstice? Squamish -5.823698227784883 When 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)
When is the summer solstice? two weeks -5.857278159653893 When 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)
When is the summer solstice? 1991 -5.888668074082154 When 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)
When is the summer solstice? 1971 -5.888668074082154 When 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)
When is the summer solstice? 1980 -5.888668074082154 When 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)
When is the summer solstice? 1972 -5.888668074082154 When 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)
When is the summer solstice? 2003 -5.936315467120697 When 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)
When is the summer solstice? 1976 -5.975299697788596 When 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)
When is the summer solstice? Austin -6.052536999375797 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, officially arrives in, Austin) -> Austin (4467ms)
When is the summer solstice? 2005 -6.09712541862578 When 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)
When is the summer solstice? Southern California -6.2604897466108245 When 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)
When is the summer solstice? the longest day -6.260676581209465 When 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)
When is the summer solstice? the birth -6.331020190145496 When 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)
When is the summer solstice? the observer -6.371499649922308 When 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)
When is the summer solstice? the sign -6.525935927187609 When 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)
When is the summer solstice? the running -6.540073594212938 When 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)
When is the summer solstice? the belief -6.554220734737367 When 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)
When is the summer solstice? the sky -6.68242944936981 When 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)
When is the summer solstice? the earth -6.712660738820249 When 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)
When is the summer solstice? the desert -6.808224110789062 When 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)
When is the summer solstice? the home page -6.862805794094489 When 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)
When is the summer solstice? the beginnings -6.961960576915631 When 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)
When is the summer solstice? the sixth month -6.971552743465411 When 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)
When is the summer solstice? the date -7.049560705499642 When 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)
When is the summer solstice? the night -7.1088019322052425 When 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)
When is the summer solstice? the following days -7.264222184091319 When 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)
When is the summer solstice? 1997-05-20 -7.2659026599997025 When 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)
When is the summer solstice? 2001-02-19 -7.2659026599997025 When 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)
When is the summer solstice? 2009-12-08 -7.2659026599997025 When 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)
When is the summer solstice? the balance -7.282949418721518 When 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)
When is the summer solstice? 2006-02-01 -7.313550053038245 When 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)
When is the summer solstice? 1999-06-01 -7.352534283706144 When 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)
When is the summer solstice? 2011 -7.354645331696682 When 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)
When is the summer solstice? the ice -7.36753296733515 When 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)
When is the summer solstice? 2011-06-21 -7.38502114259606 When 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)
When is the summer solstice? 2004-06-19 -7.41251002319522 When 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)
When is the summer solstice? 2005-06-19 -7.41251002319522 When 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)
When is the summer solstice? 2008-11-01 -7.41251002319522 When 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)
When is the summer solstice? 2005-06-21 -7.436071920851642 When 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)
When is the summer solstice? 2006-06-24 -7.436071920851642 When 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)
When is the summer solstice? 1998-06-16 -7.436071920851642 When 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)
When is the summer solstice? 2004-06-20 -7.456492232153876 When 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)
When is the summer solstice? 2004-06-21 -7.456492232153876 When 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)
When is the summer solstice? 2005-06-20 -7.456492232153876 When 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)
When is the summer solstice? 2006-06-26 -7.456492232153876 When 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)
When is the summer solstice? 2006-06-25 -7.456492232153876 When 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)
When is the summer solstice? father -7.570361959578433 When 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)
When is the summer solstice? any full moon -7.607519461253842 When 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)
When is the summer solstice? a variety -7.727611441753165 When 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)
When is the summer solstice? the northern hemisphere -7.913921945154181 When 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)
When is the summer solstice? noon -8.943175668748866 When 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)
When is the summer solstice? daylight -8.957994125973293 When 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)
When is the summer solstice? sunlight -9.071296677354592 When 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)
When is the summer solstice? 1998-06 -9.280297873636826 When 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)
When is the summer solstice? the Season -9.461208959828886 When 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)
When is the summer solstice? Bulgaria ns -9.4892149573391 When 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)
When is the summer solstice? heathen rejoicing -9.65522110963838 When 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)
When is the summer solstice? Ash Today -9.679140455377748 When 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)
When is the summer solstice? Bulgarians -10.237707694124328 When 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)
When is the summer solstice? the year -11.27327887133778 When 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)
When is the summer solstice? the Owl and children -11.350082455589583 When 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)
When is the summer solstice? the Verdehr Trio -11.539340991613166 When 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)
When is the summer solstice? The shortest night -11.542943117773834 When 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)
When is the summer solstice? such a holiday -11.629410198949683 When 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)
When is the summer solstice? the sun -11.657970822457251 When 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)
When is the summer solstice? six month -11.746903204870412 When 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)
When is the summer solstice? celebration -11.763115509800818 When 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)
When is the summer solstice? renewal -11.867706005015586 When 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)
When is the summer solstice? the season -11.926278002603897 When 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)
When is the summer solstice? The B family -12.284623146604511 When 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)
When is the summer solstice? Wendy Pfeffer -12.320467769032327 When 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)
Who is Paul Newman married to? British author Roald Dahl -1.6944690349482352 Who 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)
Who is Paul Newman married to? acclaimed actress Joanne Woodward -1.8360052191289717 Who 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)
Who is Paul Newman married to? Joanne Woodward -4.620681447423999 Who 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)
Who is Paul Newman married to? Woodward -4.850240531736532 Who 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)
Who is Paul Newman married to? 50 years -6.343133241802484 Who 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)
Who is Paul Newman married to? the effect -6.7983700055555945 Who 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)
Who is Paul Newman married to? ty murray -7.186135317499513 Who 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)
Who is Paul Newman married to? January 29 , 1958 -8.208999464962039 Who 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)
Who is Paul Newman married to? joanne-woodward -9.586234061162951 Who 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)
Who is Paul Newman married to? 50 year -10.11726244826487 Who 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)
Who is Paul Newman married to? one time -10.342955307239336 Who 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)
Who is Paul Newman married to? BTW-50 years -11.293168029679446 Who 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)
Who is Paul Newman married to? 1569 -14.736627429411211 Who 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)
Where did the Hindenburg disaster occur? May -4.9165768336175475 Where 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)
Where did the Hindenburg disaster occur? Mays -8.956404352081279 Where 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)
Where did the Hindenburg disaster occur? two months -10.021420878544962 Where 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)
Where did the Hindenburg disaster occur? Thursday -10.443547914493033 Where 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)
Where did the Hindenburg disaster occur? may -11.155500098672524 Where 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)
Where did the Hindenburg disaster occur? two month -11.746625014358102 Where 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)
Where did the Hindenburg disaster occur? Thursday's -12.147987882086873 Where 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)
Where did the Hindenburg disaster occur? Two months -12.277868378837944 Where 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)
Where did the Hindenburg disaster occur? May 6 , 1937 -13.381173183638516 Where 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)
Where did the Hindenburg disaster occur? Thursday DL -13.663966138322847 Where 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)
Where did the Hindenburg disaster occur? Thursday TL -13.67930187658525 Where 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)
Where did the Hindenburg disaster occur? Thursday LL -13.68306112374376 Where 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)
When was the telegraph invented? 1837 2.6017828011117756 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The telegraph, was invented in, 1837) -> 1837 (5988ms)
When was the telegraph invented? 1844 2.4824108720500937 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The telegraph key, was invented in, 1844) -> 1844 (5988ms)
When was the telegraph invented? 1794 2.446981236908129 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The OG telegraph system, was invented in, 1794) -> 1794 (5988ms)
When was the telegraph invented? 1832 2.4230106878665745 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The first electromagnetic telegraph, was invented in, 1832) -> 1832 (6651ms)
When was the telegraph invented? 1855 -0.5839732430580167 When 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)
When was the telegraph invented? the 1830s -0.6239046327104831 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the 1830s) -> the 1830s (7978ms)
When was the telegraph invented? 1861 -1.2737433975599122 When 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)
When was the telegraph invented? the 1830 -1.2828846481580172 When 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)
When was the telegraph invented? 1865 -1.5993568660947233 When 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)
When was the telegraph invented? 1842 -2.001140079727559 When 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)
When was the telegraph invented? 1866 -2.0106980747069247 When 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)
When was the telegraph invented? 2008 -2.171309707208366 When 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)
When was the telegraph invented? France -2.3463740722377233 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The optical telegraph, was invented in, France) -> France (7978ms)
When was the telegraph invented? England -2.3806205493059327 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The electric telegraph, was originally invented in, England) -> England (7978ms)
When was the telegraph invented? 2006 -2.580707621415294 When 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)
When was the telegraph invented? 2007 -2.6007421212656068 When 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)
When was the telegraph invented? 1873 -2.7162726155359795 When 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)
When was the telegraph invented? the 1830?s -2.8922655101870487 When 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)
When was the telegraph invented? 1905 -2.9904347016246806 When 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)
When was the telegraph invented? 2012 -3.031128805366357 When 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)
When was the telegraph invented? Toronto -3.17306386434748 When was the telegraph invented? -> $x: (the telegraph invented, be in, $x) -> (The newly invented magnetic telegraph, was installed in, Toronto) -> Toronto (8010ms)
When was the telegraph invented? the eighteen hundreds people -3.6400430311822896 When 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)
When was the telegraph invented? revolutionary France -3.7722222284011715 When 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)
When was the telegraph invented? the nineteenth century -3.7924229045981526 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the nineteenth century) -> the nineteenth century (8010ms)
When was the telegraph invented? the U.S. -4.155523133051378 When 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)
When was the telegraph invented? the University -4.264115179703579 When 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)
When was the telegraph invented? May -4.290779386850126 When 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)
When was the telegraph invented? the 1840s -4.500504749584907 When 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)
When was the telegraph invented? the USA -4.502592393794892 When 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)
When was the telegraph invented? a large-scale war -4.717393178733049 When 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)
When was the telegraph invented? Morris County -4.723115008327262 When 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)
When was the telegraph invented? the 1820s -4.850716848788568 When 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)
When was the telegraph invented? the 1800s , money -4.95563853833639 When 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)
When was the telegraph invented? Australia -4.978602254834286 When 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)
When was the telegraph invented? Morse -5.134062633043072 When 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)
When was the telegraph invented? February -5.357342758807931 When 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)
When was the telegraph invented? reporting -5.395532830877789 When 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)
When was the telegraph invented? America -5.440948600266088 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> (a telegraph, is invented in, America) -> America (8047ms)
When was the telegraph invented? Morse code -6.367868918014849 When 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)
When was the telegraph invented? India -6.373874151242235 When 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)
When was the telegraph invented? maximum 3.6 megabyte -6.391871230742517 When 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)
When was the telegraph invented? Celtic FC -6.547361076338431 When 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)
When was the telegraph invented? telegraphy -6.581248917439403 When 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)
When was the telegraph invented? investigation -6.598665298223054 When 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)
When was the telegraph invented? Kolkata -6.6025489331191825 When 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)
When was the telegraph invented? the mid-19 th century -6.90659341932221 When 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)
When was the telegraph invented? one family -7.003821529149065 When 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)
When was the telegraph invented? a link -7.029132293552051 When 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)
When was the telegraph invented? away -7.077274517208647 When 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)
When was the telegraph invented? Liverpool -7.129675567259983 When 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)
When was the telegraph invented? turn -7.145516822727792 When 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)
When was the telegraph invented? Japan -7.198707570611786 When 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)
When was the telegraph invented? the Titanic disaster -7.199478486198075 When 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)
When was the telegraph invented? Soth -7.223186666615843 When 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)
When was the telegraph invented? a series -7.225675589201392 When 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)
When was the telegraph invented? Canada -7.386530310209013 When 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)
When was the telegraph invented? a boat -7.575355628794075 When 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)
When was the telegraph invented? Germany -7.648399520707466 When 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)
When was the telegraph invented? Grafton -8.010755045707006 When 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)
When was the telegraph invented? the colony -8.182940425919693 When 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)
When was the telegraph invented? the survey -8.273008646282666 When 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)
When was the telegraph invented? the wording -8.33377973980036 When 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)
When was the telegraph invented? Coventry -8.37664892214439 When 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)
When was the telegraph invented? the capture -8.794843985954216 When 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)
When was the telegraph invented? telegraph offices -10.447661394314387 When 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)
When was the telegraph invented? faxes -10.457019542544959 When 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)
When was the telegraph invented? 15 year -10.56568765764988 When 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)
When was the telegraph invented? a distinction -10.759549957663106 When 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)
When was the telegraph invented? Similar claims -10.826162643424407 When 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)
When was the telegraph invented? Quantum leaps -11.019504079830082 When 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)
When was the telegraph invented? a race -11.100204655068165 When 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)
When was the telegraph invented? Andres West?s comments -11.108162438082623 When 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)
When was the telegraph invented? Co -11.11189804408335 When 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)
When was the telegraph invented? sales forces -11.160528928571201 When 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)
When was the telegraph invented? Cornell University -11.21903813866085 When 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)
When was the telegraph invented? Marconi -11.254318564967894 When 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)
When was the telegraph invented? Marconi's -11.276214579324705 When 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)
When was the telegraph invented? the telegraph -11.421890359854526 When 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)
When was the telegraph invented? Springer -11.869050414305622 When 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)
When was the telegraph invented? FRANCE -11.89693144916952 When 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)
When was the telegraph invented? Suleiman -11.928291641011223 When 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)
When was the telegraph invented? Frances -11.999560678221481 When 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)
When was the telegraph invented? Alexander Bain -12.009788636620296 When 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)
When was the telegraph invented? Samuel Morse -12.025604679579445 When 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)
When was the telegraph invented? first -12.243032404964659 When 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)
When was the telegraph invented? the deportations -12.600039366597539 When 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)
When was the telegraph invented? the same claim -12.647786064684293 When 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)
When was the telegraph invented? The cable -12.684922367851005 When 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)
When was the telegraph invented? the current level -12.882039161255754 When 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)
What food companies have been acquired by Heinz? Weight Watchers -5.881294667674578 What 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)
When did he die? 1990 -8.015283034047856 When 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)
When did he die? 1996 -9.684835867862652 When 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)
When did he die? prison -12.279499405285428 When 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)
When did he die? leukemia -12.363562735562757 When 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)
When did he die? the unenviable position -15.365185392270849 When 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)
When did he die? the net -16.255047808592128 When 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)
When was the Hoover Dam constructed? 1931 3.121346797184852 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> (The Hoover Dam, was constructed in, 1931) -> 1931 (2798ms)
When was the Hoover Dam constructed? 1937 0.9650817321652423 When 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)
When was the Hoover Dam constructed? 1935 0.9641170329427564 When 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)
When was the Hoover Dam constructed? 2008 0.9380041841784776 When 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)
When was the Hoover Dam constructed? 1928 0.9031233254268005 When 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)
When was the Hoover Dam constructed? 2010 0.7009762408880973 When 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)
When was the Hoover Dam constructed? 1936 -0.2631159907361904 When 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)
When was the Hoover Dam constructed? 2001 -0.37611822420461305 When 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)
When was the Hoover Dam constructed? the 1930 's -1.6070926090499955 When 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)
When was the Hoover Dam constructed? October 9 , 1936 -2.161137065363349 When 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)
When was the Hoover Dam constructed? the 1930s -2.413369431742569 When 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)
When was the Hoover Dam constructed? the 1930?s and , -2.520770289746152 When 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)
When was the Hoover Dam constructed? ?blocks -3.3348347421827507 When 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)
When was the Hoover Dam constructed? part -3.555884188380822 When 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)
When was the Hoover Dam constructed? the 30s -3.7342631094339067 When 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)
When was the Hoover Dam constructed? a peak -3.7933362195183578 When 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)
When was the Hoover Dam constructed? five years -3.9483889557888574 When 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)
When was the Hoover Dam constructed? upper Black Canyon -4.181093100755118 When 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)
When was the Hoover Dam constructed? the Great Depression -4.45397398435394 When 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)
When was the Hoover Dam constructed? concrete -4.489521686167469 When 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)
When was the Hoover Dam constructed? Nevada -4.529714745190676 When 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)
When was the Hoover Dam constructed? the Colorado River -4.540740561731354 When 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)
When was the Hoover Dam constructed? the Colorado river -4.642413745140478 When 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)
When was the Hoover Dam constructed? workers -4.676690888319532 When 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)
When was the Hoover Dam constructed? a civilization -4.68253034387852 When 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)
When was the Hoover Dam constructed? the depression -4.690440228300883 When 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)
When was the Hoover Dam constructed? Black Canyon -4.756543199039429 When 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)
When was the Hoover Dam constructed? any one company -5.134766607831 When 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)
When was the Hoover Dam constructed? the depths -5.289087810080561 When 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)
Who was Picasso? international artist -3.444794674761426 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, international artist) -> international artist (4120ms)
Who was Picasso? great painter -3.509644851549561 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, great painter) -> great painter (4119ms)
Who was Picasso? household name -3.579729373455441 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, household name) -> household name (4119ms)
Who was Picasso? influential artist -3.5852341895980966 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, influential artist) -> influential artist (4119ms)
Who was Picasso? spanish master -3.6153580450228473 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, spanish master) -> spanish master (4119ms)
Who was Picasso? modernist master -3.641453510252504 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, modernist master) -> modernist master (4119ms)
Who was Picasso? french master -3.7370990680985727 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, french master) -> french master (4140ms)
Who was Picasso? male artist -3.7386657798142227 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, male artist) -> male artist (4140ms)
Who was Picasso? gifted artist -3.741828157786684 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, gifted artist) -> gifted artist (4141ms)
Who was Picasso? respected artist -3.743748760801644 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, respected artist) -> respected artist (4140ms)
Who was Picasso? large artist -3.745600676989916 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, large artist) -> large artist (4140ms)
Who was Picasso? greatest painter -3.7480487522717345 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, greatest painter) -> greatest painter (4140ms)
Who was Picasso? historical figure -3.7609081089039176 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historical figure) -> historical figure (4177ms)
Who was Picasso? pioneering artist -3.7633769665756507 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, pioneering artist) -> pioneering artist (4177ms)
Who was Picasso? master painter -3.7771075487580497 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master painter) -> master painter (4177ms)
Who was Picasso? catalan artist -3.807105010755878 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, catalan artist) -> catalan artist (4177ms)
Who was Picasso? accomplished artist -3.827629954530151 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, accomplished artist) -> accomplished artist (4177ms)
Who was Picasso? eminent painter -3.8401779948110706 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, eminent painter) -> eminent painter (4177ms)
Who was Picasso? emblematic artist -3.857750723537536 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, emblematic artist) -> emblematic artist (4192ms)
Who was Picasso? competent artist -3.8837643606124814 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, competent artist) -> competent artist (4192ms)
Who was Picasso? famed painter -3.8850631293260376 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famed painter) -> famed painter (4192ms)
Who was Picasso? continental artist -3.8850631293260376 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, continental artist) -> continental artist (4192ms)
Who was Picasso? common name -3.885632992728394 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, common name) -> common name (4192ms)
Who was Picasso? particular favorite -3.8873817354655524 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, particular favorite) -> particular favorite (4192ms)
Who was Picasso? versatile artist -3.896397306925146 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, versatile artist) -> versatile artist (4214ms)
Who was Picasso? crap artist -3.9135060197008396 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, crap artist) -> crap artist (4214ms)
Who was Picasso? historic master -3.9135060197008396 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historic master) -> historic master (4214ms)
Who was Picasso? historic great -3.9184911910055304 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historic great) -> historic great (4214ms)
Who was Picasso? notable friend -3.920983776657876 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, notable friend) -> notable friend (4214ms)
Who was Picasso? celebrity artist -3.926550916376574 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, celebrity artist) -> celebrity artist (4214ms)
Who was Picasso? trained artist -3.9316410517130294 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, trained artist) -> trained artist (4311ms)
Who was Picasso? born artist -3.9364609950017697 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, born artist) -> born artist (4311ms)
Who was Picasso? true master -3.936671003961488 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, true master) -> true master (4311ms)
Who was Picasso? perennial favorite -3.936926331947206 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, perennial favorite) -> perennial favorite (4311ms)
Who was Picasso? revolutionary artist -3.941547607676876 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, revolutionary artist) -> revolutionary artist (4311ms)
Who was Picasso? living artist -3.942447707710862 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, living artist) -> living artist (4311ms)
Who was Picasso? realist painter -3.9456247658293937 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, realist painter) -> realist painter (4336ms)
Who was Picasso? superior painter -3.9464081498215196 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, superior painter) -> superior painter (4336ms)
Who was Picasso? art master -4.058469326739851 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, art master) -> art master (4336ms)
Who was Picasso? world famous artist -4.1815380954060055 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world famous artist) -> world famous artist (4336ms)
Who was Picasso? twentieth-century artist -4.31412478608904 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, twentieth-century artist) -> twentieth-century artist (4336ms)
Who was Picasso? famous spanish master -4.383095927357559 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous spanish master) -> famous spanish master (4336ms)
Who was Picasso? world's most renowned artist -4.416993978231135 Who 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)
Who was Picasso? world's greatest painter -4.4460973169178954 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world's greatest painter) -> world's greatest painter (4421ms)
Who was Picasso? name in the art world -4.45131494859238 Who 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)
Who was Picasso? famous and fabulous artist -4.466661147936896 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous and fabulous artist) -> famous and fabulous artist (4422ms)
Who was Picasso? like-minded artist -4.48883492003177 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, like-minded artist) -> like-minded artist (4422ms)
Who was Picasso? well-known international artist -4.492288574747843 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known international artist) -> well-known international artist (4422ms)
Who was Picasso? famous and referenced international artist -4.4924426106303805 Who 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)
Who was Picasso? world-class artist from modern master -4.496208904027522 Who 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)
Who was Picasso? popular spanish artist -4.497138561537416 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, popular spanish artist) -> popular spanish artist (4474ms)
Who was Picasso? eminently creative individual -4.513919794109173 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, eminently creative individual) -> eminently creative individual (4474ms)
Who was Picasso? world-renown artist -4.519343213923897 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world-renown artist) -> world-renown artist (4474ms)
Who was Picasso? world class master -4.522488056829473 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world class master) -> world class master (4474ms)
Who was Picasso? well-known artist -4.52737396497635 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known artist) -> well-known artist (4545ms)
Who was Picasso? renowned japanese and international artist -4.529111034148203 Who 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)
Who was Picasso? groundbreaking and incredibly prolific artist -4.536981272583829 Who 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)
Who was Picasso? solid delivery, neighborhood pizza joint -4.536981272583829 Who 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)
Who was Picasso? artist of good caliber -4.536981272583829 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, artist of good caliber) -> artist of good caliber (4545ms)
Who was Picasso? superbly skilled classical artist -4.536981272583829 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, superbly skilled classical artist) -> superbly skilled classical artist (4545ms)
Who was Picasso? small house museum -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, small house museum) -> small house museum (4600ms)
Who was Picasso? very skilled artist -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very skilled artist) -> very skilled artist (4599ms)
Who was Picasso? really good painter -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, really good painter) -> really good painter (4601ms)
Who was Picasso? hugely important artist -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, hugely important artist) -> hugely important artist (4599ms)
Who was Picasso? opportunistic white artist -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, opportunistic white artist) -> opportunistic white artist (4599ms)
Who was Picasso? master of technique -4.55486286418806 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of technique) -> master of technique (4599ms)
Who was Picasso? well-established artist -4.5599232334038255 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-established artist) -> well-established artist (4621ms)
Who was Picasso? ground breaking artist -4.563709900107951 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, ground breaking artist) -> ground breaking artist (4621ms)
Who was Picasso? very talented artist -4.5687375884887995 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very talented artist) -> very talented artist (4621ms)
Who was Picasso? cri -4.56988340270451 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, cri) -> cri (4621ms)
Who was Picasso? very productive artist -4.5725229700193655 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very productive artist) -> very productive artist (4621ms)
Who was Picasso? great trompe l'oeil artist -4.581875228018972 Who 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)
Who was Picasso? influential and renowned artist -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, influential and renowned artist) -> influential and renowned artist (4621ms)
Who was Picasso? silent and live auction fundraiser -4.581875228018972 Who 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)
Who was Picasso? renowned artist of the world -4.581875228018972 Who 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)
Who was Picasso? tasty haven serving gourmet breakfast and lunch -4.581875228018972 Who 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)
Who was Picasso? well-renowned Spanish painter -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-renowned Spanish painter) -> well-renowned Spanish painter (4638ms)
Who was Picasso? inventive and protean artist -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, inventive and protean artist) -> inventive and protean artist (4638ms)
Who was Picasso? well-known great -4.587016185773722 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known great) -> well-known great (4657ms)
Who was Picasso? commercially ruthless artist -4.593086801038365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, commercially ruthless artist) -> commercially ruthless artist (4658ms)
Who was Picasso? high-profile artist -4.593812508774482 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, high-profile artist) -> high-profile artist (4658ms)
Who was Picasso? master of evasion -4.595584449106871 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of evasion) -> master of evasion (4658ms)
Who was Picasso? master of public relation -4.597027524365756 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of public relation) -> master of public relation (4658ms)
Who was Picasso? flemish and dutch master -4.599192138479782 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, flemish and dutch master) -> flemish and dutch master (4658ms)
Who was Picasso? painting by artist -4.601459829047815 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, painting by artist) -> painting by artist (4673ms)
Who was Picasso? artist of international renown -4.613325793683654 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, artist of international renown) -> artist of international renown (4673ms)
Who was Picasso? famous sculptor and artist -4.616148278900171 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous sculptor and artist) -> famous sculptor and artist (4673ms)
Who was Picasso? great provider of banquet hall -4.633954042583609 Who 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)
Who was Picasso? painter -4.64049894273171 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, painter) -> painter (4673ms)
Who was Picasso? 20th-century painter -4.812246026378941 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, 20th-century painter) -> 20th-century painter (4673ms)
Who was Picasso? luminary -4.887359052289491 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, luminary) -> luminary (4692ms)
Who was Picasso? pleasure -5.189211126623183 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, pleasure) -> pleasure (4693ms)
Who was Picasso? reference -5.204046539380576 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, reference) -> reference (4692ms)
Who was Picasso? threat -5.303247574485111 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, threat) -> threat (4692ms)
Who was Picasso? participant -5.305802048173935 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, participant) -> participant (4692ms)
Who was Picasso? idol -5.336528684559014 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, idol) -> idol (4693ms)
Who was Picasso? anchor -5.342942525472333 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, anchor) -> anchor (4722ms)
Who was Picasso? figure -5.348636487128098 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, figure) -> figure (4722ms)
Who was Picasso? treat -5.348782220388044 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (PICASSO, Instance Of, treat) -> treat (4722ms)
Who was Picasso? candidate -5.352240010347242 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, candidate) -> candidate (4722ms)
Who was Picasso? painting -5.9554626337630046 Who 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)
Who was Picasso? Picasso -6.192481667593315 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (Picasso, be a by, $x) -> (Pablo Picasso, is a painting by, Picasso) -> Picasso (4722ms)
Who was Picasso? the Spanish character -6.426024243592406 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: ($x, element, Picasso) -> (the Spanish character, were a vital element in, Picasso) -> the Spanish character (4738ms)
Who was Picasso? Georges Braque -8.166510218443678 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Georges Braque, was, Picasso) -> Georges Braque (5955ms)
Who was Picasso? Mus?e Picasso -8.238832039867894 Who 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)
Who was Picasso? Torre Picasso -8.238832039867894 Who 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)
Who was Picasso? Museu Picasso -8.238832039867894 Who 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)
Who was Picasso? Pablo Picasso -8.238832039867894 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (4221 Picasso, Named after, Pablo Picasso) -> Pablo Picasso (6304ms)
Who was Picasso? The style -8.737404299710274 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: ($x, element, Picasso) -> (The style, has elements of, Picasso and Matisse) -> The style (4738ms)
Who was Picasso? fairground performers -9.20573207125295 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (fairground performers, was, Picasso) -> fairground performers (5955ms)
Who was Picasso? reduction printing -9.273690103699721 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (reduction printing, was, Picasso) -> reduction printing (5954ms)
Who was Picasso? Daniel-Henry Kahnweiler -9.33564373172765 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Daniel-Henry Kahnweiler, was, Picasso) -> Daniel-Henry Kahnweiler (5955ms)
Who was Picasso? Museo Picasso M?laga -9.373089610097738 Who 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)
Who was Picasso? Rosa 'Picasso' -9.373089610097738 Who 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)
Who was Picasso? The Source -9.44326696366239 Who 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)
Who was Picasso? Goya -9.503172183768532 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Goya, was, Picasso) -> Goya (5955ms)
Who was Picasso? Carlos Casagemas -9.622435519556829 Who 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)
Who was Picasso? art -9.689701548098348 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (art, is, Picasso) -> art (5954ms)
Who was Picasso? Les Demoiselles d'Avignon -9.705673486385356 Who 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)
Who was Picasso? Master Sachin Tendulkar -9.763111172898633 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Master Sachin Tendulkar, is, Picasso) -> Master Sachin Tendulkar (6044ms)
Who was Picasso? Arte Reina Sof?a -9.85582674078988 Who 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)
Who was Picasso? ?one language -9.88520360909922 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (?one language, is, Picasso) -> ?one language (6044ms)
Who was Picasso? wealth -9.88621280698715 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (wealth, was, Picasso) -> wealth (6044ms)
Who was Picasso? An example -9.909404589106048 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (An example, is, Picasso) -> An example (6044ms)
Who was Picasso? Dutch painter Kees van Dongen -9.939919683053578 Who 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)
Who was Picasso? a broader sense -9.986813178299995 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (a broader sense, was, Picasso) -> a broader sense (6366ms)
Who was Picasso? Pablo Diego Jos? Francisco de Paula Juan Nepomuceno Mar?a de los Remedios Cipriano de la Sant?sima Trinidad Ruiz y Picasso -9.997314345595731 Who 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)
Who was Picasso? Anne Paloma Picasso -9.997314345595731 Who 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)
Who was Picasso? the Michael Mina -10.02388491333945 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (the Michael Mina, is, Picasso) -> the Michael Mina (6366ms)
Who was Picasso? One whole rack -10.068794305011924 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (One whole rack, was, Picasso ?) -> One whole rack (6455ms)
Who was Picasso? Sept. 11 -10.20273835346923 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Sept. 11, is, Picasso) -> Sept. 11 (6455ms)
How did John Quincy Adams die? age 80 -5.790228617519927 How 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)
How did John Quincy Adams die? John Adams II -6.460946902290606 How 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)
How did John Quincy Adams die? George Washington Adams -6.639624626185142 How 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)
How did John Quincy Adams die? Louisa Catherine Adams -6.639624626185142 How 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)
How did John Quincy Adams die? 1848 -6.854811490728415 How 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)
How did John Quincy Adams die? Charles Francis Adams, Sr. -6.899519497304469 How 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)
How did John Quincy Adams die? Charles Francis Adams III -6.899519497304469 How 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)
How did John Quincy Adams die? a stroke -7.046939780670995 How 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)
How did John Quincy Adams die? an alcohol related death -7.467746628511599 How 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)
How did John Quincy Adams die? different ways -7.503939106103617 How 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)
How did John Quincy Adams die? the Speaker?s room -7.654670078489849 How 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)
How did John Quincy Adams die? February 23 -8.450471285752979 How 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)
How did John Quincy Adams die? the Revolution -8.957943061812404 How 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)
How did John Quincy Adams die? two days later -9.363885551202802 How 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)
How did John Quincy Adams die? Different Way -10.050458627208656 How 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)
How did John Quincy Adams die? one habit -10.199217019851435 How 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)
Who invented the game bowling? color -3.2229992147086453 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> (color, invent, new bowling games) -> color (3648ms)
Who invented the game bowling? You?d -3.560047056105086 Who 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)
Who invented the game bowling? Boston College -5.263970818652567 Who 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)
Who invented the game bowling? Series organizers -5.576033399553981 Who 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)
Who invented the game bowling? The Alamodome -6.099032442221873 Who 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)
Who invented the game bowling? the organizers -6.741840298729207 Who 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)
Who invented the game bowling? a former USC player -7.0070200853630755 Who 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)
Who invented the game bowling? Dave Bauer -7.204829803241422 Who 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)
Who invented the game bowling? Tempe -7.515827965393663 Who 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)
Who invented the game bowling? The goal -7.681475846001355 Who 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)
Who invented the game bowling? Baylor -8.408443388354721 Who 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)
Who invented the game bowling? The Orange -9.636733825161215 Who 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)
Who invented the game bowling? the University -9.746435795846143 Who 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)
Who invented the game bowling? any home or office -10.381511763816647 Who 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)
Who invented the game bowling? the Cardinal -11.108564533610116 Who 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)
Who invented the game bowling? tourism -11.118138483721605 Who 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)
Who invented the game bowling? football teams -11.230948269172883 Who 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)
Who invented the game bowling? the AP Poll -11.72837609562964 Who 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)
Who invented the game bowling? an intricate design -11.789510362996936 Who 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)
Who invented the game bowling? Penn State -11.862458514602672 Who 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)
Who invented the game bowling? the Illinois football team -11.864000386441061 Who 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)
Who invented the game bowling? Rice -11.876464493675543 Who 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)
Who invented the game bowling? PK Michael Cklamovski -11.965465723013837 Who 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)
Who invented the game bowling? Centre and TCU -12.485745570870417 Who 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)
Who invented the game bowling? Navy -12.56565868838453 Who 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)
Who invented the game bowling? numerous -12.673310551463342 Who 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)
Who invented the game bowling? p.s -12.821455004499997 Who 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)
Who invented the game bowling? Bob -12.824246827727563 Who 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)
Who invented the game bowling? I?ve -12.893631123896304 Who 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)
Who invented the game bowling? teams -12.897727319298962 Who 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)
Who invented the game bowling? Bert and Nan -13.074410779668288 Who 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)
Who invented the game bowling? not everybody -13.210202704395236 Who 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)
Who invented the game bowling? deviantART Details -13.287810096806599 Who 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)
Who invented the game bowling? a cell -13.322358356194982 Who 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)
Who invented the game bowling? the sidelines -13.35853099334424 Who 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)
Who invented the game bowling? 53.5 Everyone -13.361067504295427 Who 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)
Who invented the game bowling? the teams -13.406328260780656 Who 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)
Who invented the game bowling? Hot peppers -13.500082141716371 Who 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)
Who invented the game bowling? TN -13.53096446654356 Who 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)
Who invented the game bowling? Buffalo -13.54607241929649 Who 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)
Who invented the game bowling? NJ -13.551365585407511 Who 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)
Who invented the game bowling? Erik Anstine -13.553853549067629 Who 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)
Who invented the game bowling? treatments -13.653273612501714 Who 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)
Who invented the game bowling? the school -13.66359211937538 Who 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)
Who invented the game bowling? guys -13.673312876973299 Who 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)
Who invented the game bowling? the experts -14.663874448067851 Who 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)
Who invented the game bowling? the final Seinfeld episode -14.789065468574101 Who 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)
Who invented the game bowling? the only one -14.794584112680253 Who 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)
Who invented the game bowling? the place?s name -14.991760209834947 Who 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)
Who invented the game bowling? The club -15.0468397737076 Who 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)
What do penguins eat? twenty-five species -1.879816032475612 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguin, is known to eat, twenty-five species) -> twenty-five species (11222ms)
What do penguins eat? snow and ice -1.9732582082293668 What do penguins eat? -> $x: (penguins, eat, $x) -> (the Antarctic penguins, eat, snow and ice) -> snow and ice (11222ms)
What do penguins eat? Mr. Popper?s goldfish -2.052980108497914 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin Captain Cook, eats, Mr. Popper?s goldfish) -> Mr. Popper?s goldfish (11222ms)
What do penguins eat? a banana -2.096440872758434 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a banana) -> a banana (11222ms)
What do penguins eat? a shark -2.170475368715964 What do penguins eat? -> $x: (penguins, eat, $x) -> (the Penguin, was eaten by, a shark) -> a shark (11222ms)
What do penguins eat? the V&A Waterfront -2.189658291102125 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat along, the V&A Waterfront) -> the V&A Waterfront (11222ms)
What do penguins eat? an Apple ?? -2.1909347292962247 What do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eat, an Apple ??) -> an Apple ?? (11343ms)
What do penguins eat? an ice cream cone -2.2274305707516984 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, came back eating, an ice cream cone) -> an ice cream cone (11344ms)
What do penguins eat? an Orca or other sea mammal -2.2418210054968144 What 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)
What do penguins eat? Patrick?s head -2.2643230965262546 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, was eating, Patrick?s head) -> Patrick?s head (11344ms)
What do penguins eat? a tub -2.323432903942467 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a tub) -> a tub (11343ms)
What do penguins eat? krill and surface fish -2.3464542335282186 What do penguins eat? -> $x: (penguins, eat, $x) -> (Most penguins, eat, krill and surface fish) -> krill and surface fish (11343ms)
What do penguins eat? 9 fish -2.3806186700203904 What do penguins eat? -> $x: (penguins, eat, $x) -> (Six penguins, can eat, 9 fish) -> 9 fish (11359ms)
What do penguins eat? one pound -2.4074694376531385 What do penguins eat? -> $x: (penguins, eat, $x) -> (A penguin, may eat up to, one pound) -> one pound (11360ms)
What do penguins eat? delicious treats -2.465107578314278 What do penguins eat? -> $x: (penguins, eat, $x) -> (polar bears , seals and penguins, eat, delicious treats) -> delicious treats (11360ms)
What do penguins eat? a wider variety -2.4894255552076867 What do penguins eat? -> $x: (penguins, eat, $x) -> (Chinstrap penguins, will eat, a wider variety) -> a wider variety (11360ms)
What do penguins eat? small fish -2.538030074603715 What do penguins eat? -> $x: (penguins, eat, $x) -> (King penguins, eat, small fish) -> small fish (11360ms)
What do penguins eat? Panda -2.5751934975177617 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguin, eats, Panda) -> Panda (11382ms)
What do penguins eat? seven fish -2.645201541550308 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, eat five to, seven fish) -> seven fish (11382ms)
What do penguins eat? small amounts -2.6585439976703418 What do penguins eat? -> $x: (penguins, eat, $x) -> (King penguins, mainly eat fish with, small amounts) -> small amounts (11382ms)
What do penguins eat? leopard seals -2.7557908327766 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, may be eaten by, leopard seals) -> leopard seals (11383ms)
What do penguins eat? fish and squid -2.770615361953876 What do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eats, fish and squid) -> fish and squid (11383ms)
What do penguins eat? a fish -2.8347578993974185 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a fish) -> a fish (11399ms)
What do penguins eat? fish and krill -2.918967829107113 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish and krill) -> fish and krill (11399ms)
What do penguins eat? a turtle -2.9596910189087637 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, can eat, a turtle) -> a turtle (11399ms)
What do penguins eat? fish , squid , and krill -3.011570364482954 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish , squid , and krill) -> fish , squid , and krill (11399ms)
What do penguins eat? any given month -3.032924259432889 What do penguins eat? -> $x: (penguins, eat, $x) -> (How many penguins, will eat in, any given month) -> any given month (11399ms)
What do penguins eat? as much as they can -3.4866170520819306 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat, as much as they can) -> as much as they can (11465ms)
What do penguins eat? mostly small fish -3.6076571008693588 What do penguins eat? -> $x: (penguins, eat, $x) -> (Galapagos penguins, eat, mostly small fish) -> mostly small fish (11503ms)
What do penguins eat? fish -3.8454729720441554 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish) -> fish (11548ms)
What do penguins eat? the local fish -3.8542867293703207 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, must eat, the local fish) -> the local fish (11554ms)
What do penguins eat? sardines -3.868388950203731 What do penguins eat? -> $x: (penguins, eat, $x) -> (These penguins, eat, sardines) -> sardines (11555ms)
What do penguins eat? the Apple -3.878080021090935 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguin, ate, the Apple) -> the Apple (11610ms)
What do penguins eat? apples -3.9228601940482157 What do penguins eat? -> $x: (penguins, eat, $x) -> (A snowboarding penguin, eats, apples) -> apples (11708ms)
What do penguins eat? lunch -3.9432181119747973 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat for, lunch) -> lunch (11708ms)
What do penguins eat? krill -3.952662534428769 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, krill) -> krill (11708ms)
What do penguins eat? fishes -4.0178440717133155 What do penguins eat? -> $x: (penguins, eat, $x) -> (afrv3 Big penguins, have eaten, fishes) -> fishes (11708ms)
What do penguins eat? the absence -4.031590533838761 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat in, the absence) -> the absence (11750ms)
What do penguins eat? breakfast -4.054670222412299 What do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eat for, breakfast) -> breakfast (11750ms)
What do penguins eat? the poor halibut -4.068922296633531 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, are gonna eat, the poor halibut) -> the poor halibut (11751ms)
What do penguins eat? the wife -4.0902966249988975 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, eat, the wife) -> the wife (11771ms)
What do penguins eat? Sidney Crosby -4.097235775952878 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, play the game, $x) -> (the Penguins, played the game without, Sidney Crosby) -> Sidney Crosby (11770ms)
What do penguins eat? crustaceans -4.101468113268407 What do penguins eat? -> $x: (penguins, eat, $x) -> (Emperor Penguins, mainly eat, crustaceans) -> crustaceans (11770ms)
What do penguins eat? the same basic foods -4.106271663586992 What do penguins eat? -> $x: (penguins, eat, $x) -> (a less-efficient penguin, probably ate, the same basic foods) -> the same basic foods (11770ms)
What do penguins eat? the leopard seals -4.137085047453682 What do penguins eat? -> $x: (penguins, eat, $x) -> (the adult penguins, were eaten by, the leopard seals) -> the leopard seals (11770ms)
What do penguins eat? the ocean -4.204327110141562 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, only eat in, the ocean) -> the ocean (11790ms)
What do penguins eat? the llamas -4.207040317594273 What do penguins eat? -> $x: (penguins, eat, $x) -> (My penguins, are eating, the llamas) -> the llamas (11790ms)
What do penguins eat? the camera -4.2264945211573295 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, kept trying to eat, the camera) -> the camera (11790ms)
What do penguins eat? Antarctica -4.537354362460615 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (penguin, actually live in, Antarctica) -> Antarctica (11970ms)
What do penguins eat? Staal back today -4.569469619337094 What 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)
What do penguins eat? worms -4.624392677802755 What do penguins eat? -> $x: (penguins, eat, $x) -> (the little blue penguin, eat, worms) -> worms (11970ms)
What do penguins eat? piranhas -4.723924475964206 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, ate meat of, piranhas) -> piranhas (12014ms)
What do penguins eat? a lead -4.751552943919967 What 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)
What do penguins eat? Penguin USA -4.768724834377071 What 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)
What do penguins eat? the snow -4.936818161412075 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat, the snow) -> the snow (12033ms)
What do penguins eat? the krill -4.939206832408897 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, eat, the krill) -> the krill (12033ms)
What do penguins eat? crazy penguins -5.053290345905257 What 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)
What do penguins eat? a Monday -5.090282173032863 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (Penguin, Have fun on, a Monday) -> a Monday (12058ms)
What do penguins eat? true lovers -5.115115258602573 What 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)
What do penguins eat? themselves -5.208849603075105 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do something, $x) -> (The penguins, need to do something to protect, themselves) -> themselves (12094ms)
What do penguins eat? snow -5.290024886549944 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, snow) -> snow (12103ms)
What do penguins eat? food -5.4149162329218825 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, eat, food) -> food (12133ms)
What do penguins eat? humans -5.4597284615114425 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do thing, $x) -> (2010 Websites Penguins, much do the same things as, humans) -> humans (12145ms)
What do penguins eat? the years -5.544943962950373 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do thing, $x) -> (the Penguins, have done amazing things over, the years) -> the years (12156ms)
What do penguins eat? the animators -5.6197383778175904 What 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)
What do penguins eat? the anonymity -5.926103356909502 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do something, $x) -> (?penguin?, have something to do with, the anonymity) -> the anonymity (12185ms)
What do penguins eat? usually -6.186903675812421 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, like a swim after they eat, usually) -> usually (12194ms)
What do penguins eat? the same sex -6.35013947279956 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (penguin, actually live at almost, the same sex) -> the same sex (12224ms)
What do penguins eat? airplanes -6.369350197373375 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be fascinate, $x) -> (the local penguins, are fascinated by, airplanes) -> airplanes (12233ms)
What do penguins eat? the southern hemisphere -6.4093011975084595 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (Penguins, actually live in, the southern hemisphere) -> the southern hemisphere (12233ms)
What do penguins eat? the hot sauces -6.434138287651929 What 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)
What do penguins eat? the hot lights -6.484457990242978 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, get sick, $x) -> (the penguins, got sick under, the hot lights) -> the hot lights (12245ms)
What do penguins eat? the new ideas -6.52329815078692 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (the penguins, were excited by, the new ideas) -> the new ideas (12256ms)
What do penguins eat? the mes -6.603675777887547 What 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)
What do penguins eat? the winbers -6.912284087160978 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (Penguins, must have been very excited for, the winbers) -> the winbers (12291ms)
What do penguins eat? collectively -7.1361161694828725 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (the penguins, have fun with, collectively) -> collectively (12299ms)
What do penguins eat? death -7.2962007812488965 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be starve, $x) -> (Whales and penguins, are literally starving to, death) -> death (12299ms)
What do penguins eat? Apple's -11.367202981248914 What 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)
What do penguins eat? crustacean s -11.493653502610421 What 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)
What do penguins eat? Apple OSX -11.497072291871902 What 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)
What do penguins eat? Fish -11.508248898829326 What 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)
What do penguins eat? fish's -11.590682945599312 What 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)
What do penguins eat? small feeder fish -11.639194446864455 What 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)
What do penguins eat? small bait fish -11.748655754833697 What 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)
What do penguins eat? Sardines -12.133536649985812 What 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)
What do penguins eat? Krill -12.144557197336564 What 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)
What do penguins eat? Breakfast Club -12.684149778540098 What 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)
What do penguins eat? FISH -12.768486414107574 What 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)
What do penguins eat? sardine -13.106809581623871 What 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)
What do penguins eat? apple -13.214525884827962 What 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)
What do penguins eat? worm -13.31309023438164 What 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)
What do penguins eat? crustacean -13.428090145519253 What 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)
What do penguins eat? Food -13.480134188947048 What 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)
How many non-permanent members are in the Security Council? Sri Lanka -1.5379237521036204 How 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)
How many non-permanent members are in the Security Council? Syria -1.9868836842743227 How 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)
How many non-permanent members are in the Security Council? South Africa -2.0560186112265213 How 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)
How many non-permanent members are in the Security Council? India -2.120789769106347 How 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)
How many non-permanent members are in the Security Council? Singapore -2.137288598192443 How 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)
How many non-permanent members are in the Security Council? Austria -2.297328392180426 How 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)
How many non-permanent members are in the Security Council? Brazil -2.3754422493762344 How 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)
How many non-permanent members are in the Security Council? Germany -3.9178687624000026 How 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)
How many non-permanent members are in the Security Council? Iran -3.9254369759270267 How 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)
How many non-permanent members are in the Security Council? Zimbabwe -3.991820128952078 How 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)
How many non-permanent members are in the Security Council? Qatar -4.145205181856678 How 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)
How many non-permanent members are in the Security Council? Lebanon -4.1745541406137265 How 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)
What is Ursa Major? well-known constellation -1.8004875097544475 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, well-known constellation) -> well-known constellation (5980ms)
What is Ursa Major? seven-star constellation -1.969821718222199 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, seven-star constellation) -> seven-star constellation (5980ms)
What is Ursa Major? easy-to-find constellation -2.2895924242246073 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, easy-to-find constellation) -> easy-to-find constellation (5980ms)
What is Ursa Major? good starting point -2.358162689384028 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, good starting point) -> good starting point (5981ms)
What is Ursa Major? Canadian public company -2.359922429234964 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canadian public company) -> Canadian public company (5980ms)
What is Ursa Major? Regular School -2.366246929575226 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Elementary School, Instance Of, Regular School) -> Regular School (6135ms)
What is Ursa Major? Canadian mining company -2.3710553334371363 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canadian mining company) -> Canadian mining company (6135ms)
What is Ursa Major? extreme northern constellation -2.3968633205221783 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, extreme northern constellation) -> extreme northern constellation (6136ms)
What is Ursa Major? constellation's name -2.399109054887078 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation's name) -> constellation's name (6135ms)
What is Ursa Major? constellation of star -2.421857346242197 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation of star) -> constellation of star (6135ms)
What is Ursa Major? others popular constellation -2.437635689078485 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, others popular constellation) -> others popular constellation (6163ms)
What is Ursa Major? fancy latin name -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, fancy latin name) -> fancy latin name (6163ms)
What is Ursa Major? prominent northern constellation -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, prominent northern constellation) -> prominent northern constellation (6163ms)
What is Ursa Major? small eclectic gallery -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Gallery, Instance Of, small eclectic gallery) -> small eclectic gallery (6163ms)
What is Ursa Major? bright large constellation -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bright large constellation) -> bright large constellation (6163ms)
What is Ursa Major? place of kind School -2.4505227413227635 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major School, Instance Of, place of kind School) -> place of kind School (6182ms)
What is Ursa Major? pretty cool character -2.456972949697721 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, pretty cool character) -> pretty cool character (6182ms)
What is Ursa Major? large and sprawling constellation -2.47203145873132 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large and sprawling constellation) -> large and sprawling constellation (6182ms)
What is Ursa Major? provider of value-added service -2.4775151466761995 What 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)
What is Ursa Major? constellation in the sky -2.4895069719906626 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation in the sky) -> constellation in the sky (6199ms)
What is Ursa Major? constellation for the ceiling -2.4895069719906626 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation for the ceiling) -> constellation for the ceiling (6182ms)
What is Ursa Major? classic North Sea Trawler -2.4895069719906626 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA MAJOR'S, Instance Of, classic North Sea Trawler) -> classic North Sea Trawler (6182ms)
What is Ursa Major? TSX-listed Canadian public company -2.504944049526289 What 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)
What is Ursa Major? circumpolar constellation -2.51783803828278 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, circumpolar constellation) -> circumpolar constellation (6199ms)
What is Ursa Major? prominent constellation -2.5204702430178862 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, prominent constellation) -> prominent constellation (6199ms)
What is Ursa Major? large and reasonably bright constellation -2.521993830880578 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large and reasonably bright constellation) -> large and reasonably bright constellation (6199ms)
What is Ursa Major? constellation from the northern sky -2.521993830880578 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation from the northern sky) -> constellation from the northern sky (6199ms)
What is Ursa Major? sign of the greatness and infinity of bear wisdom -2.528150653701018 What 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)
What is Ursa Major? cluster of star -2.529216438025194 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Great Bear, Ursa Major, Instance Of, cluster of star) -> cluster of star (6216ms)
What is Ursa Major? correspondent of BOLLYWOOD FANTASTIC trademark -2.5494827114797376 What 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)
What is Ursa Major? spiral-rich galaxy cluster of the Virgo Supercluster -2.5494827114797376 What 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)
What is Ursa Major? crossword puzzle clue -2.5545885159798054 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Constellation near Ursa Major, Instance Of, crossword puzzle clue) -> crossword puzzle clue (6216ms)
What is Ursa Major? Canada-based company -2.558641816610103 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canada-based company) -> Canada-based company (6216ms)
What is Ursa Major? woman-owned small business -2.5619118546462136 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Consulting, LLC, Instance Of, woman-owned small business) -> woman-owned small business (6237ms)
What is Ursa Major? constellation up close and personal -2.5631214929185786 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation up close and personal) -> constellation up close and personal (6237ms)
What is Ursa Major? Winter & Fall & Spirng and Summer Season Constellation -2.593464920438393 What 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)
What is Ursa Major? Canadian mining and exploration company -2.611174204536738 What 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)
What is Ursa Major? mineral exploration and development company -2.6140683711314807 What 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)
What is Ursa Major? Latin name -2.6252110641260575 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, Latin name) -> Latin name (6237ms)
What is Ursa Major? northern constellation -2.641396861848917 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, northern constellation) -> northern constellation (6254ms)
What is Ursa Major? large constellation -2.643459262669773 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large constellation) -> large constellation (6254ms)
What is Ursa Major? bright constellation -2.651684795812793 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bright constellation) -> bright constellation (6254ms)
What is Ursa Major? star pattern -2.6571684837576734 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star pattern) -> star pattern (6254ms)
What is Ursa Major? custom design -2.6572212574114635 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, custom design) -> custom design (6254ms)
What is Ursa Major? huge disappointment -2.669226859289079 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, huge disappointment) -> huge disappointment (6270ms)
What is Ursa Major? common constellation -2.6888935865322967 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, common constellation) -> common constellation (6271ms)
What is Ursa Major? ola constellation -2.6929154796231476 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, ola constellation) -> ola constellation (6271ms)
What is Ursa Major? key constellation -2.709366544683488 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, key constellation) -> key constellation (6271ms)
What is Ursa Major? set of 220 star -2.710731784788501 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Group, Instance Of, set of 220 star) -> set of 220 star (6271ms)
What is Ursa Major? mythology name -2.715150309302927 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, mythology name) -> mythology name (6286ms)
What is Ursa Major? spectacular constellation -2.71550560278462 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, spectacular constellation) -> spectacular constellation (6286ms)
What is Ursa Major? fan favorite -2.715957168285178 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, fan favorite) -> fan favorite (6286ms)
What is Ursa Major? Public school -2.72312766686637 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Elementary School, Instance Of, Public school) -> Public school (6286ms)
What is Ursa Major? private company -2.7560111345539315 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Constellation, Instance Of, private company) -> private company (6286ms)
What is Ursa Major? polar constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, polar constellation) -> polar constellation (6370ms)
What is Ursa Major? interesting constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, interesting constellation) -> interesting constellation (6370ms)
What is Ursa Major? northerly constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, northerly constellation) -> northerly constellation (6387ms)
What is Ursa Major? bear constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bear constellation) -> bear constellation (6370ms)
What is Ursa Major? beautiful constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, beautiful constellation) -> beautiful constellation (6286ms)
What is Ursa Major? astral constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, astral constellation) -> astral constellation (6369ms)
What is Ursa Major? amazing constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, amazing constellation) -> amazing constellation (6370ms)
What is Ursa Major? star constellation -2.7687027199684744 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star constellation) -> star constellation (6385ms)
What is Ursa Major? spring constellation -2.7764953297984087 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, spring constellation) -> spring constellation (6385ms)
What is Ursa Major? popular constellation -2.7776704057865977 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, popular constellation) -> popular constellation (6385ms)
What is Ursa Major? winter constellation -2.7847208629414286 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, winter constellation) -> winter constellation (6401ms)
What is Ursa Major? cool design -2.788559443522285 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, cool design) -> cool design (6401ms)
What is Ursa Major? famous constellation -2.7920324468679354 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, famous constellation) -> famous constellation (6401ms)
What is Ursa Major? famous group -2.7935556927021583 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, famous group) -> famous group (6401ms)
What is Ursa Major? profit group -2.8011719267760693 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, profit group) -> profit group (6401ms)
What is Ursa Major? good place -2.8017357585094977 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, good place) -> good place (6401ms)
What is Ursa Major? excellent tool -2.8392166724497647 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major MSP-126, Instance Of, excellent tool) -> excellent tool (6418ms)
What is Ursa Major? administration company -2.848819319814613 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Investments, Instance Of, administration company) -> administration company (6417ms)
What is Ursa Major? double star -2.891432460396806 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Mizar in Ursa Major, Instance Of, double star) -> double star (6433ms)
What is Ursa Major? star and constellation -3.1553381019957687 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star and constellation) -> star and constellation (6433ms)
What is Ursa Major? North Polar constellation -3.19521680781573 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, North Polar constellation) -> North Polar constellation (6433ms)
What is Ursa Major? constellation -4.366234301479 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation) -> constellation (6601ms)
What is Ursa Major? album -4.835553847147453 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, album) -> album (6616ms)
What is Ursa Major? design -4.841463570506495 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, design) -> design (6616ms)
What is Ursa Major? beauty -4.945775024210227 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, beauty) -> beauty (6616ms)
What is Ursa Major? pattern -4.950442160725227 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, pattern) -> pattern (6626ms)
What is Ursa Major? boat -4.952573441932019 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, boat) -> boat (6626ms)
What is Ursa Major? degree -4.9572423630659905 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, degree) -> degree (6626ms)
What is Ursa Major? club -4.959930026202566 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, club) -> club (6626ms)
What is Ursa Major? figure -4.9631768388991695 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, figure) -> figure (6626ms)
What is Ursa Major? group -4.965671442053457 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, group) -> group (6626ms)
What is Ursa Major? company -4.981640143971839 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, company) -> company (6637ms)
What is Ursa Major? a woman -7.960787425813683 What 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)
What is Ursa Major? El Alcola -8.005246808465884 What 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)
What is Ursa Major? Pole Star -8.007597408109543 What 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)
What is Ursa Major? the ?Big Dipper -8.016647086742774 What 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)
What is Ursa Major? a poor man -8.049121103835182 What 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)
What is Ursa Major? 65 feet -8.25154818349118 What 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)
What is Ursa Major? Ursa Minor -8.3856324719942 What 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)
What is Ursa Major? White Lotus -8.386088859685948 What 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)
What is Ursa Major? the Fire Falls -8.508840966119738 What 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)
What is Ursa Major? the Web -8.510464670924767 What 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)
What is Ursa Major? a tank -8.531076105714952 What 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)
What is Ursa Major? ?Deal -8.544789931114476 What 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)
What is Ursa Major? Cancer ] -8.605477754107262 What 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)
What is Ursa Major? a constellation -8.651707823068044 What 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)
What is Ursa Major? ICU -8.68231952150128 What 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)
What is Ursa Major? a handprint -8.68763225616791 What 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)
What is Ursa Major? PSP -8.719083283577884 What 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)
What is Ursa Major? Cepheus -8.74049220851343 What 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)
What is Ursa Major? a bear -8.760967521328578 What 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)
What is Ursa Major? Leo Minor -8.77869751051788 What 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)
What is Ursa Major? the Big Dipper -8.826548981350522 What 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)
What is Ursa Major? Ms Perfect Mom -8.84412935590744 What 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)
What is Ursa Major? M?htyw -8.857402064063098 What 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)
What is Ursa Major? The Big Dipper -8.897284842079555 What 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)
What is Ursa Major? a shape-shifting kleptomaniac -8.913233849243769 What 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)
What is Ursa Major? the Fire Nation -8.914687741750267 What 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)
What is Ursa Major? a boil-free bush -8.96003179280217 What 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)
What is Ursa Major? NGC2366 -9.002778028813077 What 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)
What is Ursa Major? a Radiant?s Agility hero -9.006480744492613 What 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)
What is Ursa Major? 4,000 feet -9.009349633518736 What 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)
What is Ursa Major? the Great Bear -9.011785915601488 What 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)
What is Ursa Major? John Little -9.012695904087607 What 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)
What is Ursa Major? Ursa -9.013873650363653 What 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)
What is Ursa Major? a loud yet irresistibly cute little brat -9.025390163181253 What 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)
What is Ursa Major? Superman -9.030462509190318 What 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)
What is Ursa Major? a great -9.033439967864187 What 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)
What is Ursa Major? BruinAlert -9.04083921937706 What 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)
What is Ursa Major? Cancer -9.060540736428997 What 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)
What is Ursa Major? La Grande Ourse -9.062185172891532 What 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)
What is Ursa Major? a true trawler yacht -9.083093131983835 What 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)
What is Ursa Major? Hospice care -9.119316941852341 What 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)
What is Ursa Major? a project -9.119966125543167 What 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)
What is Ursa Major? Tampa Bay Library Consortium -9.13115260811608 What 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)
What is Ursa Major? visible smudges -9.137993092648488 What 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)
What is Ursa Major? 130 miles -9.138897893011956 What 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)
What is Ursa Major? the Assyrian name -9.140847883760916 What 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)
What is Ursa Major? a perfect twist -9.175727321601663 What 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)
What is Ursa Major? UCLA?s student record access system -9.195386280587359 What 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)
What is Ursa Major? a go fast sailing machine -9.19613642501929 What 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)
What is Ursa Major? Ursa Major -9.210339036056727 What 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)
What is Ursa Major? the Lesser Flock -9.210837607377197 What 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)
What is Ursa Major? First Woman -9.235450546575414 What 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)
What is Ursa Major? a variety -9.242548065428757 What 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)
What is Ursa Major? the URSA Web site -9.261765672033578 What 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)
What is Ursa Major? Vermont ?We -9.264578432659384 What 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)
What is Ursa Major? Draco -9.26965101972334 What 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)
What is Ursa Major? Polaris -9.28778391634986 What 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)
What is Ursa Major? a very mellow and sweet lady -9.290681066664446 What 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)
What is Ursa Major? two megalithic sites -9.292566916492275 What 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)
What is Ursa Major? Cygnus -9.305938338972231 What 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)
What is Ursa Major? library consortial borrowing -9.30664120360212 What 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)
What is Ursa Major? Rockets in Ursa Major -9.331790089352157 What 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)
What is Ursa Major? Artemis -9.357221782663373 What 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)
What is Ursa Major? the Bear -9.358608049033712 What 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)
What is Ursa Major? Asterisms -9.361578199243894 What 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)
What is Ursa Major? Dubhe -9.363346624748383 What 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)
What is Ursa Major? a play -9.370169174546048 What 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)
What is Ursa Major? Asteroid belt -9.37787655754244 What 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)
What is Ursa Major? Ursa Major The Greater Bear -9.391349330650337 What 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)
What is Ursa Major? 47 Ursae Majoris -9.394679602963055 What 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)
What is Ursa Major? a fine physick -9.413576520229748 What 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)
What is Ursa Major? a vague affliction -9.420295475339092 What 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)
What is Ursa Major? Leo -9.421736206602706 What 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)
What is Ursa Major? Fawcett Crest -9.426192001499157 What 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)
What is Ursa Major? fearful determination -9.433501282572106 What 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)
What is Ursa Major? a small constellation -9.441172752269638 What 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)
What is Ursa Major? Vanguards -9.445114392429854 What 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)
What is Ursa Major? Regulus -9.450062566931297 What 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)
What is Ursa Major? a dignified family -9.460232864812234 What 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)
What is Ursa Major? Callisto -9.461492580125181 What 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)
What is Ursa Major? a lot -9.474909888551215 What 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)
What is Ursa Major? Rockets in Ursa Major; a novel -9.477980954356779 What 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)
What is Ursa Major? an amazing craft -9.485578074096836 What 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)
What is Ursa Major? a distance -9.49458590854381 What 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)
What is Ursa Major? Polaris?s right -9.497700796661428 What 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)
What is Ursa Major? Teddy Roosevelt and the treasure of Ursa Major -9.510467813246695 What 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)
What is Ursa Major? Aladdin Paperbacks -9.515530863446426 What 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)
What is Ursa Major? a circumpolar constellation -9.527763530778168 What 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)
What is Ursa Major? Michael Joseph -9.531296544966532 What 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)
What is Ursa Major? Ursa Major: A Tale of the Old South -9.537956693845855 What 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)
What is Ursa Major? harbor black holes -9.562405824133059 What 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)
What is Ursa Major? Comet NEAT -9.57084100667552 What 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)
What is Ursa Major? Harper & Row / SFBC -9.58193890280451 What 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)
What is Ursa Major? Saturday -9.588366284811642 What 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)
What is Ursa Major? a dog -9.588906789127382 What 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)
What is Ursa Major? Thuban -9.591720320376902 What 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)
What is Ursa Major? subtle evolutionary currents -9.612119505118429 What 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)
What is Ursa Major? the Plough -9.655548139970026 What 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)
What is Ursa Major? Kara -9.65673749649993 What 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)
What is Ursa Major? the Most noticeable -9.660830568941437 What 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)
What is Ursa Major? Na'ash or Nash -9.685722146355078 What 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)
What is Ursa Major? late degrees -9.735503020600685 What 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)
What is Ursa Major? Tala -9.746041482461175 What 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)
What is Ursa Major? High above Leo -9.756323965114946 What 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)
What is Ursa Major? the Black Thunder mine -9.760164368110035 What 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)
What is Ursa Major? 28 years -9.780657006469355 What 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)
What is Ursa Major? Examples -9.786020859129632 What 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)
What is Ursa Major? top left -9.786731525222581 What 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)
What is Ursa Major? Libra -9.786969613657984 What 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)
What is Ursa Major? a master firebender -9.788931279714348 What 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)
What is Ursa Major? the 2:00 p.m. -9.790979853043742 What 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)
What is Ursa Major? 10-40 million light years -9.797104695128752 What 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)
What is Ursa Major? Truck -9.806625576360736 What 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)
What is Ursa Major? The Big Dip -9.855293049432891 What 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)
What is Ursa Major? the Delaware Diamond -9.860865321697279 What 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)
What is Ursa Major? the First Year Experience program -9.865666586668251 What 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)
What is Ursa Major? Mars -9.9054934185182 What 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)
What is Ursa Major? the NASA/ESA Hubble Space Telescope -9.91076067284942 What 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)
What is Ursa Major? the 7 rays -9.917221584777568 What 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)
What is Ursa Major? ?Kevin & Kell ? -9.924907866076147 What 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)
What is Ursa Major? the Waggon -9.92681863419537 What 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)
What is Ursa Major? interesting galaxies -9.927945355002112 What 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)
What is Ursa Major? personal will -9.934000723245212 What 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)
What is Ursa Major? amateur astronomers -9.939797881664475 What 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)
What is Ursa Major? 10 * children -9.944918755366622 What 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)
What is Ursa Major? 41 Lyn -9.969587824966228 What 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)
What is Ursa Major? N?hookos -9.990223972151961 What 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)
What is Ursa Major? low -10.003860699002146 What 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)
What is Ursa Major? normal stars -10.007548199873233 What 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)
What is Ursa Major? one star -10.021765617705094 What 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)
What is Ursa Major? Kranj -10.057500581937404 What 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)
What is Ursa Major? stellar cosmology -10.064072246545992 What 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)
What is Ursa Major? a Bear -10.086084131647103 What 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)
What is Ursa Major? M82 These Galaxies -10.121079026752621 What 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)
What is Ursa Major? Bootes -10.14786185975374 What 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)
What is Ursa Major? Mayflower -10.16969930532358 What 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)
What is Ursa Major? Heinemann -10.16969930532358 What 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)
What is Ursa Major? trademarks -10.172474151480817 What 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)
What is Ursa Major? MS 81 -10.263986190398192 What 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)
What is Ursa Major? a constellation visible -10.292415741265646 What 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)
What is Ursa Major? GEORGE -10.305606860151263 What 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)
What is Ursa Major? a cart -10.337710193031551 What 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)
What is Ursa Major? 2610.4 -10.349740922988158 What 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)
What is Ursa Major? 2859.093 -10.349740922988158 What 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)
What is Ursa Major? The nearest open cluster -10.354975541074307 What 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)
What is Ursa Major? Zeta Tucanae -10.528560709511565 What 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)
What is Ursa Major? almost overhead -10.545713432228235 What 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)
What is Ursa Major? the Arcturus -10.568473893800386 What 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)
What is Ursa Major? 9780583119122 -10.617033936384976 What 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)
What is Ursa Major? 9780434349227 -10.617033936384976 What 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)
What is Ursa Major? the Dipper -10.619573695700549 What 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)
What is Ursa Major? 9781425321079 -10.656018167052874 What 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)
What is Ursa Major? the North -10.682312220014397 What 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)
What is Ursa Major? the Saptarishis -10.685496319928804 What 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)
What is Ursa Major? a group of the first importance -10.705892045102694 What 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)
What is Ursa Major? 9780934870931 -10.739555804198373 What 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)
What is Ursa Major? 9781416948575 -10.739555804198373 What 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)
What is Ursa Major? August 17 , 2009 -10.739900653840277 What 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)
What is Ursa Major? M101 -10.77432956152001 What 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)
What is Ursa Major? the star Dubheh -10.784878187890909 What 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)
What is Ursa Major? treason -10.824114659898877 What 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)
What is Ursa Major? Beta Ursae Majoris -10.833133759728549 What 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)
What is Ursa Major? Ursula Major -10.834006981888182 What 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)
What is Ursa Major? Joyce Gauthier -10.834006981888182 What 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)
What is Ursa Major? Megrez Alkaid -10.850963007801148 What 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)
What is Ursa Major? the only members -10.878056603027888 What 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)
What is Ursa Major? the dragon Draco -10.882924407750322 What 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)
What is Ursa Major? the best known constellation -10.887981368940963 What 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)
What is Ursa Major? Venetian Plaster Art-This -10.89079391303656 What 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)
What is Ursa Major? the masque -10.902658518894988 What 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)
What is Ursa Major? literature and art -10.904090087451175 What 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)
What is Ursa Major? Winter Guard -10.90456632496951 What 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)
What is Ursa Major? the right items -10.92485454658629 What 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)
What is Ursa Major? male -10.930405207440888 What 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)
What is Ursa Major? Mr. H. Ross Arnold, III. -10.98013277498383 What 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)
What is Ursa Major? Hubble Deep Field -10.98013277498383 What 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)
What is Ursa Major? the most brutal and unrelenting story -11.03383446900379 What 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)
What is Ursa Major? the center -11.039711645841837 What 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)
What is Ursa Major? The big dipper -11.051143423845941 What 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)
What is Ursa Major? Picture shown -11.061517561260835 What 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)
What is Ursa Major? 1974 -11.067985413410891 What 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)
What is Ursa Major? the outfit -11.118715705447034 What 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)
What is Ursa Major? the whale -11.126986266506982 What 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)
What is Ursa Major? Rob -11.12774962527174 What 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)
What is Ursa Major? the great ?W? -11.134526888488857 What 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)
What is Ursa Major? the first two galaxies -11.14620198242859 What 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)
What is Ursa Major? 20,000 t -11.204347902360718 What 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)
What is Ursa Major? a double meaning -11.234168249762025 What 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)
What is Ursa Major? a mystic significance -11.237685297719489 What 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)
What is Ursa Major? the most recognizable constellation -11.245687588070757 What 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)
What is Ursa Major? similar names -11.251974628734597 What 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)
What is Ursa Major? a full-time Captain -11.259085851813161 What 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)
What is Ursa Major? the stellar constellations -11.260510357696553 What 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)
What is Ursa Major? the teddy bear -11.273281377211791 What 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)
What is Ursa Major? course -11.277106730459181 What 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)
What is Ursa Major? a rampage -11.285919858808057 What 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)
What is Ursa Major? the ox thigh constellation M?htyw -11.286162079447726 What 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)
What is Ursa Major? The system -11.293260568777656 What 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)
What is Ursa Major? Sirius -11.299028974490646 What 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)
What is Ursa Major? the video image -11.315787419614633 What 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)
What is Ursa Major? the naked eye -11.31659563295263 What 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)
What is Ursa Major? the asterism -11.317000705850303 What 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)
What is Ursa Major? The hounds -11.318902290623226 What 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)
What is Ursa Major? 1.4 % Ni -11.323466384957076 What 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)
What is Ursa Major? Big Dipper -11.330848128994035 What 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)
What is Ursa Major? the first cycle -11.331577769266874 What 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)
What is Ursa Major? the most conspicuous asterism -11.334107334928609 What 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)
What is Ursa Major? the two most obvious -11.335677150336673 What 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)
What is Ursa Major? The official name -11.351090781851894 What 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)
What is Ursa Major? Messier 101 -11.353886250246559 What 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)
What is Ursa Major? galaxy M82 -11.366425302517829 What 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)
What is Ursa Major? the northern hemisphere -11.37113956926963 What 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)
What is Ursa Major? the trees -11.37139767360652 What 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)
What is Ursa Major? the lion -11.392549750377823 What 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)
What is Ursa Major? Seven Woods Audio's SST-206 Space Station -11.402469856413655 What 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)
What is Ursa Major? the beautiful Goddess Artemis -11.403894388426995 What 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)
What is Ursa Major? Trixie -11.41495293117234 What 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)
What is Ursa Major? the zodiac -11.434991277355703 What 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)
What is Ursa Major? the most prominent constellations -11.437295335892898 What 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)
What is Ursa Major? the northeast -11.440231880337322 What 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)
What is Ursa Major? the sky -11.448168856334325 What 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)
What is Ursa Major? the northern sky -11.452589841042103 What 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)
What is Ursa Major? The radio source -11.4545870756333 What 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)
What is Ursa Major? the most conspicuous galaxies -11.468073654579586 What 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)
What is Ursa Major? the most spectacular galaxies -11.482548478769763 What 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)
What is Ursa Major? the northern horizon -11.490049342646188 What 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)
What is Ursa Major? NGC4051 -11.497678775444268 What 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)
What is Ursa Major? the constellation -11.501180884297987 What 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)
What is Ursa Major? The full constellation -11.515303350629424 What 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)
What is Ursa Major? Alcor -11.52433482061107 What 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)
What is Ursa Major? dancing -11.537709664386984 What 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)
What is Ursa Major? the veteran character -11.542579456010316 What 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)
What is Ursa Major? the horizon -11.555428293663518 What 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)
What is Ursa Major? the largest -11.559849278371296 What 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)
What is Ursa Major? the deceased?s spirit -11.56219087704161 What 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)
What is Ursa Major? midnight -11.564871549116514 What 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)
What is Ursa Major? binoculars -11.5794711762529 What 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)
What is Ursa Major? the brightest stars -11.609545323335361 What 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)
What is Ursa Major? the ox thigh -11.63292668506835 What 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)
What is Ursa Major? Dipper -11.633563042258942 What 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)
What is Ursa Major? Alkaid -11.653983353561175 What 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)
What is Ursa Major? operations -11.656502586362182 What 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)
What is Ursa Major? the photo -11.659763606550285 What 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)
What is Ursa Major? the oldest -11.694818758869314 What 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)
What is Ursa Major? over -11.704664571214616 What 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)
What is Ursa Major? NGC 4088 -11.738269353824064 What 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)
What is Ursa Major? the left -11.747050957088808 What 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)
What is Ursa Major? the home -11.752032407129171 What 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)
What is Ursa Major? the most well known constellations -11.753637134070917 What 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)
What is peyote? mind-altering substance -4.797327701396938 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, mind-altering substance) -> mind-altering substance (2788ms)
What is peyote? mind-expanding drug -5.036798857406887 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, mind-expanding drug) -> mind-expanding drug (2788ms)
What is peyote? hallu-cinogenic substance -5.081692812842029 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallu-cinogenic substance) -> hallu-cinogenic substance (2788ms)
What is peyote? vision-inducing plant -5.081692812842029 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, vision-inducing plant) -> vision-inducing plant (2788ms)
What is peyote? hallucination-producing substance -5.102256643861029 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucination-producing substance) -> hallucination-producing substance (2789ms)
What is peyote? powerful indigenous plant -5.240998106640499 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful indigenous plant) -> powerful indigenous plant (2789ms)
What is peyote? type of small cactus -5.254602578676496 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, type of small cactus) -> type of small cactus (2803ms)
What is peyote? species of small cactus -5.254602578676496 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, species of small cactus) -> species of small cactus (2804ms)
What is peyote? hallucinogenic or entheogenic drug -5.299496534111638 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogenic or entheogenic drug) -> hallucinogenic or entheogenic drug (2803ms)
What is peyote? hallucinogenic cactus plant -5.319840410528823 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic cactus plant) -> hallucinogenic cactus plant (2803ms)
What is peyote? small, fleshy, spineless cactus -5.3603358568064365 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, fleshy, spineless cactus) -> small, fleshy, spineless cactus (2803ms)
What is peyote? woolen Mexican cactus -5.384186163477459 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, woolen Mexican cactus) -> woolen Mexican cactus (2803ms)
What is peyote? pretty heavy duty plant -5.4290801189126014 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, pretty heavy duty plant) -> pretty heavy duty plant (2817ms)
What is peyote? small button shaped cactus -5.4290801189126014 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small button shaped cactus) -> small button shaped cactus (2817ms)
What is peyote? species of cactus -5.446365777056725 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, species of cactus) -> species of cactus (2817ms)
What is peyote? natural hallucinogenic drug -5.460731728621772 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural hallucinogenic drug) -> natural hallucinogenic drug (2818ms)
What is peyote? supremely potent medicine -5.460731728621772 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, supremely potent medicine) -> supremely potent medicine (2817ms)
What is peyote? arounders CHAPTER OVERVIEW psychedelic drug -5.469852487468907 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, arounders CHAPTER OVERVIEW psychedelic drug) -> arounders CHAPTER OVERVIEW psychedelic drug (2817ms)
What is peyote? hallucinogen or psychedelic -5.469852487468907 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogen or psychedelic) -> hallucinogen or psychedelic (2839ms)
What is peyote? instantly accessable drug -5.479713726579749 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, instantly accessable drug) -> instantly accessable drug (2840ms)
What is peyote? hallucinogenic and mind-altering drug -5.490416318487908 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic and mind-altering drug) -> hallucinogenic and mind-altering drug (2839ms)
What is peyote? plant from the old world -5.493354009684079 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, plant from the old world) -> plant from the old world (2839ms)
What is peyote? bead weaving technique -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, bead weaving technique) -> bead weaving technique (2856ms)
What is peyote? synaesthetes hallucinogenic compound -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, synaesthetes hallucinogenic compound) -> synaesthetes hallucinogenic compound (2856ms)
What is peyote? small brown cactus -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small brown cactus) -> small brown cactus (2840ms)
What is peyote? hallucinogenic plant substance -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogenic plant substance) -> hallucinogenic plant substance (2839ms)
What is peyote? plant with powerful hallucinogenic property -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant with powerful hallucinogenic property) -> plant with powerful hallucinogenic property (2886ms)
What is peyote? spinelss dome-shaped cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, spinelss dome-shaped cactus) -> spinelss dome-shaped cactus (2870ms)
What is peyote? psychoactive effect of herb -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive effect of herb) -> psychoactive effect of herb (2870ms)
What is peyote? alkaloid-producing hallucinogenic plant -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, alkaloid-producing hallucinogenic plant) -> alkaloid-producing hallucinogenic plant (2886ms)
What is peyote? massively powerful psychedelic plant -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, massively powerful psychedelic plant) -> massively powerful psychedelic plant (2856ms)
What is peyote? small, carrot-shaped cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, carrot-shaped cactus) -> small, carrot-shaped cactus (2870ms)
What is peyote? vibrant, versatile stitch -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, vibrant, versatile stitch) -> vibrant, versatile stitch (2886ms)
What is peyote? interesting conscious-alternating product -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, interesting conscious-alternating product) -> interesting conscious-alternating product (2856ms)
What is peyote? small mescaline-containing cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small mescaline-containing cactus) -> small mescaline-containing cactus (2886ms)
What is peyote? small, spineless, cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, spineless, cactus) -> small, spineless, cactus (2870ms)
What is peyote? small low spineless cactus of the southwestern United States and Mexico -5.51474644290405 What 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)
What is peyote? non-habit forming drug -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, non-habit forming drug) -> non-habit forming drug (2856ms)
What is peyote? abusable drug of illicit origin -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, abusable drug of illicit origin) -> abusable drug of illicit origin (2886ms)
What is peyote? Hallucinogenic or Psychedelic type drug -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, Hallucinogenic or Psychedelic type drug) -> Hallucinogenic or Psychedelic type drug (2871ms)
What is peyote? small spineless globe-shaped cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small spineless globe-shaped cactus) -> small spineless globe-shaped cactus (2870ms)
What is peyote? natural psychoactive substance -5.515907599566414 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural psychoactive substance) -> natural psychoactive substance (2903ms)
What is peyote? illegal and prescription drug -5.5198874006588 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, illegal and prescription drug) -> illegal and prescription drug (2903ms)
What is peyote? thread bead technique -5.5330441262327135 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, thread bead technique) -> thread bead technique (2903ms)
What is peyote? off-loom technique -5.53531027392305 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, off-loom technique) -> off-loom technique (2903ms)
What is peyote? sacred plant -5.626487939959162 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, sacred plant) -> sacred plant (2903ms)
What is peyote? controlled substance -5.633406554893984 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, controlled substance) -> controlled substance (2903ms)
What is peyote? psychoactive plant -5.6395590779924305 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive plant) -> psychoactive plant (3108ms)
What is peyote? illegal drug -5.6439015975436035 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, illegal drug) -> illegal drug (3108ms)
What is peyote? psychotropic drug -5.660099528384556 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychotropic drug) -> psychotropic drug (3108ms)
What is peyote? basic technique -5.666683563027491 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, basic technique) -> basic technique (3108ms)
What is peyote? common drug -5.7011864441038185 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, common drug) -> common drug (3108ms)
What is peyote? psychedelic drug -5.716296592274157 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychedelic drug) -> psychedelic drug (3108ms)
What is peyote? Ritualistic drugs -5.717956950018242 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, Ritualistic drugs) -> Ritualistic drugs (3120ms)
What is peyote? soft drug -5.719253954455338 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, soft drug) -> soft drug (3120ms)
What is peyote? American plant -5.748261542711811 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, American plant) -> American plant (3120ms)
What is peyote? hallucinatory drug -5.759987754927845 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinatory drug) -> hallucinatory drug (3120ms)
What is peyote? spiritual plant -5.759987754927845 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, spiritual plant) -> spiritual plant (3120ms)
What is peyote? hallucinogenic substance -5.761918910950308 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic substance) -> hallucinogenic substance (3120ms)
What is peyote? psychoactive drug -5.81709478189495 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive drug) -> psychoactive drug (3135ms)
What is peyote? powerful psychedelic -5.827021403922757 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful psychedelic) -> powerful psychedelic (3136ms)
What is peyote? shamanistic plant -5.827021403922757 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, shamanistic plant) -> shamanistic plant (3135ms)
What is peyote? hardcore hallucinogen -5.827021403922757 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hardcore hallucinogen) -> hardcore hallucinogen (3135ms)
What is peyote? entheogenic drug -5.833876014466707 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, entheogenic drug) -> entheogenic drug (3135ms)
What is peyote? basic stitch -5.834010189858153 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, basic stitch) -> basic stitch (3135ms)
What is peyote? othe drug -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, othe drug) -> othe drug (3148ms)
What is peyote? shamanic herb -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, shamanic herb) -> shamanic herb (3148ms)
What is peyote? unpretentious plant -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, unpretentious plant) -> unpretentious plant (3148ms)
What is peyote? useda hallucinogen -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, useda hallucinogen) -> useda hallucinogen (3162ms)
What is peyote? scared substance -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, scared substance) -> scared substance (3148ms)
What is peyote? organic hallucinogen -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, organic hallucinogen) -> organic hallucinogen (3162ms)
What is peyote? political drug -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, political drug) -> political drug (3162ms)
What is peyote? narcotic plant -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, narcotic plant) -> narcotic plant (3148ms)
What is peyote? safe drug -5.874801511101367 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, safe drug) -> safe drug (3162ms)
What is peyote? drug substance -5.874961852864893 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, drug substance) -> drug substance (3162ms)
What is peyote? powerful drug -5.882197274867399 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful drug) -> powerful drug (3162ms)
What is peyote? divination technique -5.886097312038388 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, divination technique) -> divination technique (3175ms)
What is peyote? healing herb -5.888117166098144 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, healing herb) -> healing herb (3175ms)
What is peyote? natural substance -5.8908698464828975 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural substance) -> natural substance (3175ms)
What is peyote? recreational drug -5.890897357315875 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, recreational drug) -> recreational drug (3175ms)
What is peyote? plant psychedelic -5.892479190376899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant psychedelic) -> plant psychedelic (3175ms)
What is peyote? protected plant -5.903365925022581 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, protected plant) -> protected plant (3186ms)
What is peyote? stimulant drug -5.906917625652358 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, stimulant drug) -> stimulant drug (3185ms)
What is peyote? versatile stitch -5.93173741501419 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, versatile stitch) -> versatile stitch (3186ms)
What is peyote? plant and substance -6.265202480846407 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant and substance) -> plant and substance (3186ms)
What is peyote? American Indian stitch -6.371368113827071 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, American Indian stitch) -> American Indian stitch (3185ms)
What is peyote? hallucinogen -7.4483058378733356 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogen) -> hallucinogen (3185ms)
What is peyote? drug -7.778307832991054 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, drug) -> drug (3200ms)
What is peyote? narcotic -7.907687486031319 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, narcotic) -> narcotic (3200ms)
What is peyote? psychedelic -7.940883404856131 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychedelic) -> psychedelic (3200ms)
What is peyote? stitch -7.96812988754332 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, stitch) -> stitch (3200ms)
What is peyote? style -7.998198145964087 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, style) -> style (3200ms)
What is peyote? classic -8.086011953954603 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, classic) -> classic (3200ms)
What is peyote? stitches -8.094097044874134 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, stitches) -> stitches (3218ms)
What is peyote? drugs -8.105064421989594 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, drugs) -> drugs (3218ms)
What is peyote? intoxicant -8.106949439261008 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, intoxicant) -> intoxicant (3218ms)
What is peyote? challenge -8.12892988267928 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, challenge) -> challenge (3218ms)
What is peyote? El Peyote Asesino -11.730977946938447 What 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)
What is peyote? Don Peyote & Marcell Cellier -11.730977946938447 What 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)
What is peyote? Ione Skye -11.730977946938447 What 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)
What is peyote? The Peyote Cowboys -11.7747575894047 What 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)
What is peyote? root-plowing -11.854828935254545 What 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)
What is peyote? native Americans -12.093743078388679 What 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)
What is peyote? Harvard Medical School -12.103383146807491 What 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)
What is peyote? veterinarian-husband -12.144018002534157 What 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)
What is peyote? exact what -12.16894681612815 What 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)
What is peyote? Bolo cord -12.17314737194995 What 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)
What is peyote? Canadian law -12.195063900601838 What 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)
What is peyote? European-Americans -12.199014317891407 What 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)
What is peyote? Don Peyote -12.25669848688737 What 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)
What is peyote? Los Peyotes -12.25669848688737 What 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)
What is peyote? American Indians -12.313651939837705 What 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)
What is peyote? widespread use -12.326765096506602 What 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)
What is peyote? Native Americans -12.362942542004056 What 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)
What is peyote? the Native American Church -12.501851115032087 What 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)
What is peyote? Peyote And Mescaline -12.609959242703859 What 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)
What is peyote? Peyote Stitch Primer -12.650820242339028 What 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)
What is peyote? Chelsea House Publications -12.650820242339028 What 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)
What is peyote? Cornell University Press -12.650820242339028 What 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)
What is peyote? Syracuse University Press -12.650820242339028 What 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)
What is peyote? a crime -12.665474131811223 What 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)
What is peyote? a guardian -12.669338561081355 What 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)
What is peyote? a quill -12.695338490207483 What 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)
What is peyote? an outward physical act distinguishable -12.724052658971774 What 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)
What is peyote? an entheogen containing mescaline -12.740367149612565 What 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)
What is peyote? an alkaloid called mescaline -12.74773320979925 What 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)
What is peyote? Stella -12.752400890725646 What 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)
What is peyote? a type -12.764366573681452 What 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)
What is peyote? a plant -12.765780711783217 What 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)
What is peyote? a cactus -12.794441816468082 What 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)
What is peyote? Warner Books -12.798211705308747 What 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)
What is peyote? Peyote Religion -12.798211705308747 What 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)
What is peyote? Schocken Books -12.798211705308747 What 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)
What is peyote? Archon Books -12.798211705308747 What 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)
What is peyote? Ronin Publishing -12.798211705308747 What 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)
What is peyote? Atlantic Books -12.798211705308747 What 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)
What is peyote? Grabhorn Press -12.798211705308747 What 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)
What is peyote? William -12.813880635101906 What 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)
What is peyote? Chris Prussing -12.823815206632275 What 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)
What is peyote? a very powerful sacrament -12.825542614439353 What 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)
What is peyote? Distinct Judge McConnell -12.844459790527194 What 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)
What is peyote? Psychedelic kinds -12.863959703925739 What 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)
What is peyote? a hallucinogen -12.875421248481157 What 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)
What is peyote? University of Arizona Press -12.882487517056285 What 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)
What is peyote? Half moon way -12.882487517056285 What 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)
What is peyote? The Peyote cult -12.882487517056285 What 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)
What is peyote? Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork) -12.882487517056285 What 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)
What is peyote? Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe -12.882487517056285 What 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)
What is peyote? Peyote and Other Psychoactive Cacti -12.882487517056285 What 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)
What is peyote? University of Tennessee Press -12.882487517056285 What 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)
What is peyote? Sculptural Peyote Projects Primer -12.882487517056285 What 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)
What is peyote? The Secret of the Cicadas' Song -12.882487517056285 What 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)
What is peyote? Rock Crystals & Peyote Dreams -12.882487517056285 What 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)
What is peyote? Peyote: The Divine Cactus -12.882487517056285 What 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)
What is peyote? Peyote: the divine cactus -12.882487517056285 What 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)
What is peyote? Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References -12.882487517056285 What 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)
What is peyote? Contemporary Beadwork I -12.882487517056285 What 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)
What is peyote? In the magic land of Peyote -12.882487517056285 What 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)
What is peyote? Farrar, Straus and Giroux -12.882487517056285 What 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)
What is peyote? Peyote And Mescaline (Drugs: the Straight Facts) -12.882487517056285 What 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)
What is peyote? Peyote & Mescaline -12.882487517056285 What 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)
What is peyote? Pipe, Bible, and peyote among the Oglala Lakota -12.882487517056285 What 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)
What is peyote? Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity -12.882487517056285 What 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)
What is peyote? University of Oklahoma Press -12.882487517056285 What 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)
What is peyote? Peyote Religion: A History (Civilization of the American Indian Series) -12.882487517056285 What 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)
What is peyote? Peyote religion : a history -12.882487517056285 What 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)
What is peyote? The Peyote cult: ritual equipment -12.882487517056285 What 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)
What is peyote? Peyote and magic mushrooms -12.882487517056285 What 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)
What is peyote? Peyote, the divine cactus -12.882487517056285 What 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)
What is peyote? Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual) -12.882487517056285 What 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)
What is peyote? Festival day -12.90747467322416 What 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)
What is peyote? loom bead weaving -12.924293966785669 What 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)
What is peyote? Mescaline -12.955717054922264 What 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)
What is peyote? Dr. Hoffman -12.959275157022741 What 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)
What is peyote? a small , spineless cactus -12.97621079064938 What 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)
What is peyote? sure i -12.979742049070705 What 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)
What is peyote? a spirit -12.980645984316112 What 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)
What is peyote? medicine men -12.988699290028958 What 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)
What is peyote? a jet engine -12.990003393135114 What 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)
What is peyote? C13 -12.993470629777969 What 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)
What is peyote? an entheogen -13.002460293621073 What 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)
What is peyote? Citrus candies -13.020795338539086 What 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)
What is peyote? modern american culture -13.023642123156142 What 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)
What is peyote? particularly their religion -13.029831533368409 What 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)
What is peyote? Design -13.030906532229999 What 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)
What is peyote? pan-Indianism -13.034531254805472 What 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)
What is peyote? a small gray-green desert cactus -13.059163626575561 What 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)
What is peyote? One such example -13.060416754043198 What 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)
What is peyote? Ligusticum porteri -13.072855252268992 What 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)
What is peyote? Christ -13.080486171246202 What 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)
What is peyote? Peyote paraphernalia -13.085698024170476 What 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)
What is peyote? Peyote music -13.085698024170476 What 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)
What is peyote? Students -13.115779811708 What 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)
What is peyote? a god-powerful medicine -13.124654859040556 What 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)
What is peyote? 2n = 22 -13.125608341807798 What 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)
What is peyote? dream-like -13.125685173239415 What 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)
What is peyote? a sacrament -13.146865466740898 What 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)
What is peyote? added height and delight -13.162576096262447 What 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)
What is peyote? an introspective experience -13.166989556322859 What 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)
What is peyote? great importance -13.169766538660152 What 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)
What is peyote? Prem Das -13.185709329028683 What 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)
What is peyote? a plant sacrament -13.203110819168604 What 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)
What is peyote? a great Rock / Kosmische / Psychedelic band -13.20958267807206 What 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)
What is peyote? a small cactus -13.21614587784587 What 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)
What is peyote? a flowering plant -13.234998709931139 What 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)
What is peyote? peyote cult -13.239656433510135 What 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)
What is peyote? Schedule -13.266251706748344 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, Schedule) -> Schedule (8526ms)
What is peyote? a classic stitch -13.316288154173224 What 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)
What is peyote? a holy medicine -13.31914827066082 What 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)
What is peyote? a dangerous hallucinogen -13.33049986282491 What 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)
What is peyote? religious ceremonies -13.34691717996326 What 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)
What is peyote? Sanapia -13.353912483581777 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was, Sanapia) -> Sanapia (8526ms)
What is peyote? a different genus -13.369875158914315 What 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)
What is peyote? a controversial plant -13.375237141430183 What 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)
What is peyote? a controlled substance -13.387972769430611 What 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)
What is peyote? Delica beads -13.410061071283968 What 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)
What is peyote? a healing herb -13.411453866680986 What 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)
What is peyote? capsicum peppers -13.435810818693477 What 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)
What is peyote? a different drug -13.446329809735115 What 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)
What is peyote? Sunday -13.469278792432196 What 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)
What is peyote? Parker -13.531338353958532 What 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)
What is peyote? Peyote -13.574205868023085 What 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)
What is peyote? Indians -13.59001859270041 What 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)
What is peyote? a Schedule 1 narcotic -13.590566055534957 What 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)
What is peyote? Examples -13.621526526320872 What 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)
What is peyote? Prerequisite -13.629554061307383 What 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)
What is peyote? The drug -13.634229258230686 What 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)
What is peyote? Whalen -13.638745081578572 What 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)
What is peyote? Feather Fan -13.658171173805115 What 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)
What is peyote? indigenous peoples -13.659805194045731 What 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)
What is peyote? LSD. -13.66013571455343 What 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)
What is peyote? the Toilet Bowl -13.685703394772643 What 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)
What is peyote? Castaneda -13.707855453257874 What 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)
What is peyote? Peyotists -13.751499128527135 What 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)
What is peyote? Peyote Hunt -13.81171042840251 What 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)
What is peyote? Nevada -13.822263697811913 What 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)
What is peyote? the Chichimeca and Toltec -13.82784348280347 What 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)
What is peyote? anyplace ? slurs -13.82807459600184 What 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)
What is peyote? long as inhabitants -13.835232098888794 What 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)
What is peyote? Rose Boutonniere -13.855564217164373 What 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)
What is peyote? beaded bag -13.864202155799337 What 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)
What is peyote? amulet bag -13.864202155799337 What 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)
What is peyote? a sacrament of the Native American Church -13.866305769146717 What 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)
What is peyote? a lifeline -13.877222701888188 What 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)
What is peyote? 1518.133 -13.900438350692282 What 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)
What is peyote? 2630.267 -13.900438350692282 What 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)
What is peyote? a treatment -13.915779996544424 What 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)
What is peyote? the 1870 -13.933522910124266 What 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)
What is peyote? a source -13.93652854942334 What 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)
What is peyote? a rather peculiar man -13.943034213103033 What 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)
What is peyote? Marcellus Bearheart Williams -13.951514600236244 What 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)
What is peyote? least five different genera -13.986738216278336 What 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)
What is peyote? Marquee Bracelet -14.013239739214514 What 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)
What is peyote? Easter Egg earrings -14.022244521537427 What 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)
What is peyote? Gerald Wayne Primeaux, Sr. -14.047403963852425 What 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)
What is peyote? Peyote Cultivation -14.054012107770822 What 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)
What is peyote? 9780806122144 -14.06052472975238 What 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)
What is peyote? 9780816506804 -14.06052472975238 What 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)
What is peyote? 9780208014566 -14.06052472975238 What 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)
What is peyote? 9780446893060 -14.06052472975238 What 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)
What is peyote? 9780801491375 -14.06052472975238 What 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)
What is peyote? 9780805204933 -14.06052472975238 What 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)
What is peyote? 9780964607705 -14.06052472975238 What 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)
What is peyote? 9780874808698 -14.06052472975238 What 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)
What is peyote? 9780451620347 -14.06052472975238 What 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)
What is peyote? 9780965584210 -14.06052472975238 What 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)
What is peyote? 9780816516544 -14.06052472975238 What 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)
What is peyote? 9781889789019 -14.06052472975238 What 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)
What is peyote? 9789122017127 -14.06052472975238 What 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)
What is peyote? 9780914171959 -14.06052472975238 What 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)
What is peyote? 9780791085455 -14.06052472975238 What 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)
What is peyote? 9780816506132 -14.06052472975238 What 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)
What is peyote? 9789122004523 -14.06052472975238 What 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)
What is peyote? 9780892302109 -14.06052472975238 What 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)
What is peyote? 9780806120683 -14.06052472975238 What 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)
What is peyote? 9780374230906 -14.06052472975238 What 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)
What is peyote? 9781889789057 -14.06052472975238 What 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)
What is peyote? 9780870496233 -14.06052472975238 What 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)
What is peyote? 9780597835735 -14.06052472975238 What 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)
What is peyote? 9780823917006 -14.06052472975238 What 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)
What is peyote? 9780806124575 -14.06052472975238 What 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)
What is peyote? 9780815605577 -14.06052472975238 What 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)
What is peyote? 9780816516537 -14.06052472975238 What 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)
What is peyote? Lone Tree -14.071254270523447 What 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)
What is peyote? P. aselliformis -14.093393964083216 What 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)
What is peyote? ancient cultural significance -14.09840014478629 What 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)
What is peyote? Tooty Frooty -14.098906063205964 What 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)
What is peyote? Kimberly House -14.098906063205964 What 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)
What is peyote? Danny Trejo -14.098906063205964 What 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)
What is peyote? Dutch Spiral -14.098906063205964 What 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)
What is peyote? an outstanding job -14.135690021007902 What 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)
What is peyote? Gerald Primeaux, Sr. -14.138287919518358 What 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)
What is peyote? Rev. Anne Zapf -14.138287919518358 What 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)
What is peyote? N-methylmescaline -14.138287919518358 What 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)
What is peyote? Tim's Grandfather -14.138287919518358 What 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)
What is peyote? The hills -14.171064638272295 What 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)
What is peyote? large taproots and care -14.171942137773517 What 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)
What is peyote? The strips -14.173503354701834 What 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)
What is peyote? a narcotic -14.182366842215801 What 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)
What is peyote? stitch on the BRACELET -14.183181874953501 What 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)
What is peyote? Bangle Bracelet or Necklace by Isabee Thiebaut Demski -14.183181874953501 What 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)
What is peyote? Santa Fe -14.183181874953501 What 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)
What is peyote? Peyote Church of God -14.183181874953501 What 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)
What is peyote? Flat Peyote Banner Pin by Judi Wood -14.183181874953501 What 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)
What is peyote? Available now on e-Bay -14.183181874953501 What 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)
What is peyote? highlight of the book -14.183181874953501 What 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)
What is peyote? Part II of Allen Ginsberg's Howl'' -14.183181874953501 What 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)
What is peyote? Seed Bead Strip Tease by Kathie Schroeder -14.183181874953501 What 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)
What is peyote? S. disciformis -14.183181874953501 What 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)
What is peyote? 500 B.C. -14.183559909540241 What 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)
What is peyote? a take-no-prisoners -14.243295149487324 What 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)
What is peyote? an Easter Egg -14.245508944100063 What 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)
What is peyote? the military -14.246035815583143 What 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)
What is peyote? use -14.293077255792596 What 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)
What is peyote? Oregon law -14.307741371759313 What 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)
What is peyote? Beauty -14.30944690751491 What 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)
What is peyote? Bead Patterns Boutique -14.332361762869168 What 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)
What is peyote? the Mescalero Apache -14.34712004953051 What 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)
What is peyote? religious rights -14.36529176131174 What 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)
What is peyote? 10,000 years -14.367458065999863 What 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)
What is peyote? The N-acetyl analogue -14.383443814549157 What 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)
What is peyote? a ritual setting -14.384999003429439 What 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)
What is peyote? Dutch spiral -14.386392382067694 What 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)
What is peyote? a type of beading stitch -14.3918115904052 What 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)
What is peyote? hallucinogenic properties -14.396542003136567 What 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)
What is peyote? the US and Canada -14.396653598654947 What 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)
What is peyote? a cross or rosette -14.423949104702956 What 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)
What is peyote? The Cellini spiral -14.426859854355671 What 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)
What is peyote? mescaline -14.430461780576799 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, mescaline) -> mescaline (13398ms)
What is peyote? a resounding success -14.44053955865289 What 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)
What is peyote? beneficial effects -14.441636089317738 What 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)
What is peyote? Dis -14.446204738197672 What 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)
What is peyote? dreadlocks -14.464055886567813 What 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)
What is peyote? a teacher of the right path to walk -14.539893786415941 What 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)
What is peyote? Native people -14.54592799747012 What 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)
What is peyote? long roots -14.55222538054403 What 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)
What is peyote? a long time -14.557169355221426 What 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)
What is peyote? a sacrament for all the children of the Earth -14.557893306588756 What 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)
What is peyote? peyote-induced -14.562448538611408 What 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)
What is peyote? cacti -17.5305696966461 What 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)
What is peyote? beaders -18.16395614638265 What 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)
Where was the Andersonville Prison? Emigranten -2.1020298020173454 Where was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> (the dreaded Andersonville prison, was told in, Emigranten) -> Emigranten (1201ms)
Where was the Andersonville Prison? operation -6.297804841599822 Where was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> $x: (andersonville prison, in, $x) -> (Andersonville Prison, was in, operation) -> operation (2133ms)
Where was the Andersonville Prison? the National Cemetery -6.6962931040007945 Where 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)
Where was the Andersonville Prison? Boston -9.951373094071212 Where 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)
Where was the Andersonville Prison? Cushman -10.108125827805473 Where 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)
Where was the Andersonville Prison? Georgia -10.403388629289317 Where 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)
Where was the Andersonville Prison? Knapp -10.44773276863618 Where 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)
Where was the Andersonville Prison? war crimes -10.561376641201235 Where 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)
Where was the Andersonville Prison? New York City -11.131767675084298 Where 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)
Where was the Andersonville Prison? Chauncey -11.74979558009105 Where 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)
Where was the Andersonville Prison? prisoner -12.139713558411234 Where 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)
Where was the Andersonville Prison? FOX -12.221092762887519 Where 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)
Where was the Andersonville Prison? Earthworks -12.346420898696175 Where 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)
Where was the Andersonville Prison? the Civil war -12.439027675914417 Where 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)
Where was the Andersonville Prison? Thomas Eston -12.496914403074117 Where 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)
Where was the Andersonville Prison? the most dreaded -12.687437835878399 Where 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)
Where was the Andersonville Prison? HOLLINGSHEAD -12.810833754422092 Where 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)
Where was the Andersonville Prison? the leading horseman -12.879378513896269 Where 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)
Where was the Andersonville Prison? Belle Isle -13.00356271281014 Where 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)
Where was the Andersonville Prison? the Union army -13.201490408681156 Where 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)
Where was the Andersonville Prison? variety -13.271307266775601 Where 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)
Where was the Andersonville Prison? a Union prisoner -13.379125238577629 Where 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)
Where was the Andersonville Prison? Union sailors -13.52662720814768 Where 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)
Where was the Andersonville Prison? Ira DeForest WARREN -13.64916826839936 Where 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)
Where was the Andersonville Prison? alive -14.24479260600296 Where 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)
Where was the Andersonville Prison? the Union Army -14.255796797851385 Where 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)
Where was the Andersonville Prison? a stone -14.341237662108936 Where 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)
Where was the Andersonville Prison? The carpenter -14.461858170429114 Where 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)
Where was the Andersonville Prison? the bright drummer boy -14.563092387319097 Where 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)
Where was the Andersonville Prison? The above Flag -14.869844453044475 Where 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)
Where was the Andersonville Prison? 45,000 Union soldiers -15.093380398340713 Where 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)
Where was the Andersonville Prison? Variety for a dog -15.460626523135316 Where 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)
When was the company founded? 1909 2.1800845556126975 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1909) -> 1909 (4195ms)
When was the company founded? 1914 2.148172135158499 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1914) -> 1914 (4195ms)
When was the company founded? 1990 1.867184593101853 When was the company founded? -> $x: (the company, was founded on, $x) -> (The company, was founded on, 1990) -> 1990 (4195ms)
When was the company founded? 1974 1.6111368820327852 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1974) -> 1974 (4195ms)
When was the company founded? 1975 1.5885194226547186 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1975) -> 1975 (5664ms)
When was the company founded? 1946 1.586034208878376 When was the company founded? -> $x: (the company, was founded in, $x) -> (the Company, was founded in, 1946) -> 1946 (5664ms)
When was the company founded? 1994 1.575418172337002 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1994) -> 1994 (5664ms)
When was the company founded? 1912 1.572658425816333 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1912) -> 1912 (5664ms)
When was the company founded? 1964 1.5620022112680565 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1964) -> 1964 (5664ms)
When was the company founded? 2000 1.5550170534730499 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 2000) -> 2000 (7941ms)
When was the company founded? 2001 1.5550170534730499 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 2001) -> 2001 (7940ms)
When was the company founded? 1896 1.5499335254409297 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 1896) -> 1896 (7940ms)
When was the company founded? 1873 1.5466862471555687 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1873) -> 1873 (7940ms)
When was the company founded? 1954 1.5405422292828725 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1954) -> 1954 (7940ms)
When was the company founded? 1867 1.539486078109539 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1867) -> 1867 (7940ms)
When was the company founded? 1932 1.5320150962334798 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1932) -> 1932 (8805ms)
When was the company founded? 1849 1.5310806933556615 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 1849) -> 1849 (8805ms)
When was the company founded? 1920 1.5239473996605057 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1920) -> 1920 (8805ms)
When was the company founded? 2004 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 2004) -> 2004 (9255ms)
When was the company founded? 1895 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1895) -> 1895 (8804ms)
When was the company founded? 1848 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1848) -> 1848 (9254ms)
When was the company founded? 1997 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1997) -> 1997 (9254ms)
When was the company founded? 1919 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1919) -> 1919 (8804ms)
When was the company founded? 1922 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1922) -> 1922 (8804ms)
When was the company founded? 1869 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1869) -> 1869 (9254ms)
When was the company founded? 1921 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1921) -> 1921 (9255ms)
When was the company founded? 1870 1.508338903618823 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1870) -> 1870 (10150ms)
When was the company founded? 1943 1.4952402353643621 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1943) -> 1943 (10150ms)
When was the company founded? 1840 1.4914091852374871 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1840) -> 1840 (10150ms)
When was the company founded? 1776 1.4914091852374871 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1776) -> 1776 (10151ms)
When was the company founded? 1828 1.4657068151424943 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1828) -> 1828 (10150ms)
When was the company founded? 1735 1.4657068151424943 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1735) -> 1735 (10150ms)
When was the company founded? 1775 1.4453056962785422 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1775) -> 1775 (10733ms)
When was the company founded? 1816 1.4453056962785422 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1816) -> 1816 (10733ms)
When was the company founded? 2009 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 2009) -> 2009 (10733ms)
When was the company founded? 1996 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1996) -> 1996 (10733ms)
When was the company founded? 1983 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (the Company, was founded in, 1983) -> 1983 (10733ms)
When was the company founded? 1987 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1987) -> 1987 (10733ms)
When was the company founded? 1998 1.2666279723840055 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, has been founded in, 1998) -> 1998 (11424ms)
When was the company founded? 1871 1.2666279723840055 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, had been founded in, 1871) -> 1871 (11424ms)
When was the company founded? 1773 0.6889272881571258 When 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)
When was the company founded? 2003 0.5317071063827705 When 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)
When was the company founded? 1898 0.5202823297359758 When 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)
When was the company founded? 1831 0.5202823297359758 When 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)
When was the company founded? 2008 0.4936866168149625 When 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)
When was the company founded? 1992 0.4636936622336649 When 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)
When was the company founded? 2006 0.4537952695618803 When 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)
When was the company founded? January 2010 0.44937389633329783 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, January 2010) -> January 2010 (12135ms)
When was the company founded? 1989 0.44689390980365085 When 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)
When was the company founded? 2005 0.44515735300549464 When 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)
When was the company founded? 1988 0.44488867931677367 When 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)
When was the company founded? 1927 0.4359207165300254 When 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)
When was the company founded? 2010 0.42662192719421066 When 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)
When was the company founded? 1852 0.4195483305808483 When 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)
When was the company founded? 1638 0.4185995760524954 When 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)
When was the company founded? 1984 0.41646443231659225 When 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)
When was the company founded? July 2006 0.4144979532791684 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2006) -> July 2006 (13235ms)
When was the company founded? July 2008 0.4144979532791684 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2008) -> July 2008 (13235ms)
When was the company founded? January 2012 0.41350020482036154 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, January 2012) -> January 2012 (13235ms)
When was the company founded? 1977 0.40887342023584283 When 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)
When was the company founded? 1928 0.40179982362248046 When 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)
When was the company founded? November 2000 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2000) -> November 2000 (15842ms)
When was the company founded? July 2007 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2007) -> July 2007 (16230ms)
When was the company founded? August 2000 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, August 2000) -> August 2000 (15842ms)
When was the company founded? February 2004 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, February 2004) -> February 2004 (15842ms)
When was the company founded? 1995 0.39851820764379875 When 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)
When was the company founded? 1913 0.38777784677243377 When 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)
When was the company founded? 1886 0.38777784677243377 When 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)
When was the company founded? 1986 0.38412369421392656 When 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)
When was the company founded? 1864 0.38323164568797763 When 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)
When was the company founded? 1970 0.3815884892624628 When 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)
When was the company founded? April 1994 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, April 1994) -> April 1994 (18542ms)
When was the company founded? November 2005 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2005) -> November 2005 (18542ms)
When was the company founded? November 2001 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2001) -> November 2001 (18004ms)
When was the company founded? October 1998 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, October 1998) -> October 1998 (18004ms)
What is pastrami made of? a cut -4.930307002358361 What 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)
What is pastrami made of? brisket or beef navel -4.93832352081483 What 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)
What is pastrami made of? beef brisket -4.944086305493759 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Pastrami, is made from, beef brisket) -> beef brisket (5606ms)
What is pastrami made of? beef -5.056377718745544 What is pastrami made of? -> $x: (pastrami, made of, $x) -> (True pastrami, is made of, beef) -> beef (5120ms)
What is pastrami made of? gourmet meats -5.369594754078334 What 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)
What is pastrami made of? 100 % brisket -5.47439750094213 What 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)
What is pastrami made of? a secret recipe -6.305867859602824 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, make from, $x) -> (pastrami, made from, a secret recipe) -> a secret recipe (5987ms)
What is pastrami made of? a brisket -6.485505249794368 What 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)
What is pastrami made of? the forequarter -6.974620170026348 What 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)
What is pastrami made of? the deli section -8.016273421530002 What 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)
What is pastrami made of? a pound -8.28451057392602 What 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)
What is pastrami made of? 6 ounces -8.825015628604053 What 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)
What is pastrami made of? the premises -10.63771781511945 What 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)
What is pastrami made of? order -11.600442685230906 What 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)
Where are the National Archives? Prague -0.32765848764642924 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is in, Prague) -> Prague (1175ms)
Where are the National Archives? Paris -0.5805442497471331 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The French National Archives, are in, Paris) -> Paris (1175ms)
Where are the National Archives? Canberra -0.6996777006489356 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are also based in, Canberra) -> Canberra (1176ms)
Where are the National Archives? Florida -0.7721818814778691 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives Workshop, was held in, Florida) -> Florida (1176ms)
Where are the National Archives? Records -0.8776106168110016 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are in, Records) -> Records (1175ms)
Where are the National Archives? Sucre -1.0464923802145405 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Sucre) -> Sucre (2059ms)
Where are the National Archives? Washington -1.0562185887334876 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Washington) -> Washington (2059ms)
Where are the National Archives? Parkes -1.2667273919835662 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is located in, Parkes) -> Parkes (2059ms)
Where are the National Archives? English -1.2823450955701454 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the Hungarian National Archives, is available in, English) -> English (2059ms)
Where are the National Archives? the USA -1.388130224243659 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are made in, the USA) -> the USA (2059ms)
Where are the National Archives? Washington DC -1.5894715526906364 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Washington DC) -> Washington DC (2059ms)
Where are the National Archives? Tripoli -1.9118418425832342 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are located in, Tripoli) -> Tripoli (2087ms)
Where are the National Archives? Dar es Salaam -2.062664704110177 Where 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)
Where are the National Archives? research guides -2.1161444661931452 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are described in, research guides) -> research guides (2087ms)
Where are the National Archives? much better condition -2.1391336288354257 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are in, much better condition) -> much better condition (2087ms)
Where are the National Archives? negotiations -2.18365847264968 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is currently in, negotiations) -> negotiations (2087ms)
Where are the National Archives? cooperative projects -2.2261478012446663 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archive, are involved in, cooperative projects) -> cooperative projects (2132ms)
Where are the National Archives? essence -2.2384141465202463 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives Experience, is in, essence) -> essence (2132ms)
Where are the National Archives? Kew -2.2862082784401196 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are based in, Kew) -> Kew (2132ms)
Where are the National Archives? court -2.3144551783581555 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Security Archive, is in, court) -> court (2132ms)
Where are the National Archives? an extremely poor state -2.329410119941897 Where 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)
Where are the National Archives? early censuses -2.3672566189445647 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was included in, early censuses) -> early censuses (2132ms)
Where are the National Archives? a constant battle -2.370776846317937 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is engaged in, a constant battle) -> a constant battle (2281ms)
Where are the National Archives? an area -2.376918259336256 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is located in, an area) -> an area (2281ms)
Where are the National Archives? an accessible style -2.406399906308159 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is written in, an accessible style) -> an accessible style (2281ms)
Where are the National Archives? PDF. -2.432622687735175 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archives, are particularly interested in, PDF.) -> PDF. (2281ms)
Where are the National Archives? two different buildings -2.5761659088150894 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is housed in, two different buildings) -> two different buildings (2281ms)
Where are the National Archives? an iconic building -2.5807857012169126 Where 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)
Where are the National Archives? R. J. Whitwell -2.6709093054519966 Where 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)
Where are the National Archives? jeopardy -2.8361077899267775 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archive, was in, jeopardy) -> jeopardy (2466ms)
Where are the National Archives? accordance -2.844466466544046 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, shall be authenticated in, accordance) -> accordance (2466ms)
Where are the National Archives? a project -2.9212832677242773 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The Dutch National Archives, are involved in, a project) -> a project (2466ms)
Where are the National Archives? progress -2.9276773198453974 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is now in, progress) -> progress (2503ms)
Where are the National Archives? a series -2.95285984369329 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is the latest in, a series) -> a series (2503ms)
Where are the National Archives? charge -2.957312659917908 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Music Archives, was in, charge) -> charge (2503ms)
Where are the National Archives? Authorities Concept Scheme -2.9648978804975066 Where 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)
Where are the National Archives? Topical Terms Concept Scheme -2.992386761096666 Where 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)
Where are the National Archives? scandal -2.9988053796651406 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was embroiled in, scandal) -> scandal (2534ms)
Where are the National Archives? the Regional Archives -3.031980358560286 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are kept in, the Regional Archives) -> the Regional Archives (2534ms)
Where are the National Archives? absentia -3.170990647060278 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Security Archive, was cited in, absentia) -> absentia (2534ms)
Where are the National Archives? a fire -3.177381520070787 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archive, was destroyed in, a fire) -> a fire (2563ms)
Where are the National Archives? the Gelman Library -3.187539916792843 Where 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)
Where are the National Archives? memory -3.207242763825892 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives award, is named in, memory) -> memory (2564ms)
Where are the National Archives? Belmopan -3.2621566844095 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (Its national archives, are in, Belmopan) -> Belmopan (2713ms)
Where are the National Archives? the business -3.5440066019675136 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, be in, the business) -> the business (2789ms)
Where are the National Archives? the possession -3.722187154706867 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was in, the possession) -> the possession (2788ms)
Where are the National Archives? the process -3.7414489048417225 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is in, the process) -> the process (2815ms)
Where are the National Archives? Boulevard 9 -3.83256019784913 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are situated in, Boulevard 9) -> Boulevard 9 (2849ms)
Where are the National Archives? the 60s -3.8475915774769516 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Film Archive, was created in, the 60s) -> the 60s (2849ms)
Where are the National Archives? Record Group 59 -3.9668046295932307 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are contained in, Record Group 59) -> Record Group 59 (2849ms)
Where are the National Archives? Fact Sheet 1 -3.967688815994327 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are given in, Fact Sheet 1) -> Fact Sheet 1 (2849ms)
Where are the National Archives? the centre -3.9792308386791513 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are located in, the centre) -> the centre (2849ms)
Where are the National Archives? the form -3.9928859918931923 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, have been in, the form) -> the form (2904ms)
Where are the National Archives? January -3.9965329826369125 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, made in, January) -> January (2904ms)
Where are the National Archives? Record Group 127 -4.004825119161038 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are found in, Record Group 127) -> Record Group 127 (2904ms)
Where are the National Archives? the classroom -4.0120404937864524 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, might be useful in, the classroom) -> the classroom (2904ms)
Where are the National Archives? the Squadron -4.062054077226282 Where 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)
Where are the National Archives? the database -4.064506039023325 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is found in, the database) -> the database (2972ms)
Where are the National Archives? the development -4.06988011862357 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archive, is currently involved in, the development) -> the development (2972ms)
Where are the National Archives? an 18th century mansion -4.077627895903698 Where 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)
Where are the National Archives? the north-east -4.088379388066701 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archive, is located in, the north-east) -> the north-east (2971ms)
Where are the National Archives? the article -4.106063326897813 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is mentioned in, the article) -> the article (3001ms)
Where are the National Archives? the same building -4.106947513298909 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were in, the same building) -> the same building (3001ms)
Where are the National Archives? the middle -4.110061232786573 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is hidden away in, the middle) -> the middle (3001ms)
Where are the National Archives? the cellar -4.138778645356746 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are housed in, the cellar) -> the cellar (3001ms)
Where are the National Archives? the theft -4.1658909302644656 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, has been charged in, the theft) -> the theft (3001ms)
Where are the National Archives? July -4.180240868871634 Where 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)
Where are the National Archives? the Archives -4.181678648732274 Where 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)
Where are the National Archives? the some premises -4.403978687584948 Where 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)
Where are the National Archives? College Park -4.440305249930798 Where 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)
Where are the National Archives? April 2003 -4.73840630325841 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was formed in, April 2003) -> April 2003 (3117ms)
Where are the National Archives? October 2000 -4.761634024593087 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Obituary Archive?, was launched in, October 2000) -> October 2000 (3118ms)
Where are the National Archives? CAC -4.786495613849455 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, presented in, CAC) -> CAC (3140ms)
Where are the National Archives? force -4.803804487883996 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, remain in, force) -> force (3140ms)
Where are the National Archives? partnership -4.832983008036248 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, works in, partnership) -> partnership (3197ms)
Where are the National Archives? the 2001 Census -4.836790817327605 Where 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)
Where are the National Archives? a news release -4.886305873202758 Where 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)
Where are the National Archives? categories -4.908532052563768 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National archives, were valued in, categories) -> categories (3197ms)
Where are the National Archives? new information -4.917317386986754 Where 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)
Where are the National Archives? common -4.928868603300464 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, have in, common) -> common (3289ms)
Where are the National Archives? multiple locations -4.9578314317644505 Where 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)
Where are the National Archives? 1970 -4.965420481690385 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was in, 1970) -> 1970 (3289ms)
Where are the National Archives? every capital city -4.985860205897086 Where 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)
Where are the National Archives? Rio -4.997620346836746 Where 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)
Where are the National Archives? quantity -5.009822554454246 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the national archives, grew in, quantity) -> quantity (3360ms)
Where are the National Archives? 1992 -5.029277714154787 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was established in, 1992) -> 1992 (3360ms)
Where are the National Archives? countless attics -5.049787976928984 Where 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)
Where are the National Archives? William Preston?s Classic book -5.084858044851163 Where 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)
Where are the National Archives? a very long time -5.122413150845557 Where 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)
Where are the National Archives? 2003 -5.237948392630621 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were created in, 2003) -> 2003 (3477ms)
Where are the National Archives? 1838 -5.29264347095406 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was created in, 1838) -> 1838 (3496ms)
Where are the National Archives? 1988 -5.323715580285183 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was established in, 1988) -> 1988 (3496ms)
Where are the National Archives? 1936 -5.331310932730047 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives building, was erected in, 1936) -> 1936 (3496ms)
Where are the National Archives? 1922 -5.345820503824072 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archives, were burnt in, 1922) -> 1922 (3496ms)
Where are the National Archives? 1934 -5.34733374700056 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was established in, 1934) -> 1934 (3496ms)
Where are the National Archives? 1997 -5.350176920404595 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was established in, 1997) -> 1997 (3496ms)
Where are the National Archives? 1985 -5.368745098339097 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives building, was built in, 1985) -> 1985 (3518ms)
Where are the National Archives? 1998 -5.380890571746251 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Photographic Archive, was opened in, 1998) -> 1998 (3539ms)
Where are the National Archives? 1935 -5.396806137775169 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The BFI National Archive, was founded in, 1935) -> 1935 (3539ms)
Where are the National Archives? 1882 -5.425398333968664 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were founded in, 1882) -> 1882 (3562ms)
Where are the National Archives? terms -5.48714523371091 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, established in, terms) -> terms (3593ms)
Where are the National Archives? microfilm -5.515072796528356 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, published in, microfilm) -> microfilm (3593ms)
Where are the National Archives? 1953 -5.5727614977920705 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Literary Archives, were opened in, 1953) -> 1953 (3593ms)
Where are the National Archives? Pune -5.731264048796603 Where 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)
Where are the National Archives? a statement -6.088990208338516 Where 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)
Where are the National Archives? historic documents -6.314870504074284 Where 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)
Where are the National Archives? the framing -6.415363922662426 Where 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)
Where are the National Archives? the Roll -6.442364763335165 Where 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)
Where are the National Archives? Chapter 1 -6.497566673698133 Where 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)
Where are the National Archives? the study -6.557655209692041 Where 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)
Where are the National Archives? the spring -6.674235301034177 Where 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)
Where are the National Archives? the planning -6.799066274055632 Where 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)
Where are the National Archives? touch -7.023024216467026 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, Getting in, touch) -> touch (6180ms)
Where are the National Archives? the 1980 's -7.140190168418899 Where 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)
Where are the National Archives? Jan 2008 -7.204407608198808 Where 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)
Where are the National Archives? head -7.225270253403793 Where 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)
Where are the National Archives? formats -7.296137124713871 Where 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)
Where are the National Archives? previous censuses -7.330025436442511 Where 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)
Where are the National Archives? the October 17 -7.3352350417155225 Where 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)
Where are the National Archives? 1972 -7.742264460954731 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, began in, 1972) -> 1972 (6829ms)
Where are the National Archives? 1968 -7.8265909067705515 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, occurred in, 1968) -> 1968 (6900ms)
Where are the National Archives? 2006 -8.10668307498239 Where 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)
Where are the National Archives? maps -8.27595588573629 Where 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)
Where are the National Archives? the series -9.041421997045699 Where 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)
Where are the National Archives? 1918 -9.240131221291534 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, closed in, 1918) -> 1918 (7542ms)
Where are the National Archives? Constitution Avenue -9.26441112988176 Where 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)
Where are the National Archives? Tumblr Welcome -9.41605219341385 Where 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)
Where are the National Archives? August -9.428133157757367 Where 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)
Where are the National Archives? Kennedy -9.450991088136899 Where 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)
Where are the National Archives? Windhoek -9.486754439300142 Where 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)
Where are the National Archives? History -9.503978389205272 Where 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)
Where are the National Archives? Discovery -9.563029054412421 Where 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)
Where are the National Archives? Stockholm -9.588855995811306 Where 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)
Where are the National Archives? the Internet -9.637502386013495 Where 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)
Where are the National Archives? Seattle -9.696963526234892 Where 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)
Where are the National Archives? Kolkata -9.696963526234892 Where 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)
Where are the National Archives? United Kingdom -9.79977613882833 Where 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)
Where are the National Archives? Edmonton -9.8116230281993 Where 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)
Where are the National Archives? London -9.8116230281993 Where 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)
Where are the National Archives? Delhi -9.85840410500078 Where 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)
Where are the National Archives? Cambridge -9.883816047954669 Where 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)
Where are the National Archives? Syracuse -9.895160665344799 Where 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)
Where are the National Archives? Leipzig -9.987052066204846 Where 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)
Where are the National Archives? Chapel Hill -10.137905301378193 Where 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)
Where are the National Archives? Dallas -10.199071179592535 Where 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)
Where are the National Archives? the National Mall -10.20576751078457 Where 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)
Where are the National Archives? military service -10.224520953912421 Where 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)
Where are the National Archives? Sound Archive -10.269541977357765 Where 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)
Where are the National Archives? Probate Records -10.271310350159958 Where 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)
Where are the National Archives? Processing -10.322923477644453 Where 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)
Where are the National Archives? C-SPAN?s website -10.348080685827101 Where 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)
Where are the National Archives? Temple Bar -10.399661879500277 Where 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)
Where are the National Archives? William Spencer -10.407049428623727 Where 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)
Where are the National Archives? public display -10.407560523927392 Where 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)
Where are the National Archives? the Mall -10.41970068025494 Where 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)
Where are the National Archives? information -10.441236414129207 Where 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)
Where are the National Archives? a crash course -10.452396597882348 Where 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)
Where are the National Archives? a single terminal -10.455307169311851 Where 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)
Where are the National Archives? onion skin paper -10.462380765925214 Where 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)
Where are the National Archives? World Vital Records -10.474367281854448 Where 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)
Where are the National Archives? Australia -10.493107445706302 Where 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)
Where are the National Archives? Solsis Berhad -10.502547955939736 Where 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)
Where are the National Archives? a wide range -10.528502197847514 Where 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)
Where are the National Archives? telephone -10.549302650190707 Where 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)
Where are the National Archives? officers papers -10.58611347447856 Where 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)
Where are the National Archives? wheelchair -10.599064541751446 Where 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)
Where are the National Archives? Morton Halperin -10.605179464151568 Where 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)
Where are the National Archives? Philadelphia -10.613815144542249 Where 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)
Where are the National Archives? sector responsible -10.619738460197883 Where 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)
Where are the National Archives? D.C. -10.620785612764783 Where 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)
Where are the National Archives? one month -10.659627110787564 Where 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)
Where are the National Archives? Washington, D.C. -10.694271591053495 Where 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)
Where are the National Archives? NGDC -10.704784374914857 Where 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)
Where are the National Archives? view -10.706904252163168 Where 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)
Where are the National Archives? one box -10.732031608801407 Where 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)
Where are the National Archives? New Year -10.735595895911082 Where 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)
Where are the National Archives? the U.S. Government -10.736944528117279 Where 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)
Where are the National Archives? DC -10.742804864482665 Where 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)
Where are the National Archives? the UK government -10.753779500639718 Where 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)
Where are the National Archives? Friedman -10.765236737228363 Where 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)
Where are the National Archives? display -10.773541522600787 Where 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)
Where are the National Archives? Control Commission for Germany (British Element), Political Division -10.780625139499124 Where 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)
Where are the National Archives? Melbourne -10.803192515378178 Where 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)
Where are the National Archives? a national treasure -10.805294812357054 Where 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)
Where are the National Archives? cost prohibitive -10.809026579012464 Where 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)
Where are the National Archives? political culture -10.813377811748191 Where 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)
Where are the National Archives? each entry -10.818557766480387 Where 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)
Where are the National Archives? The State Papers -10.818682982857066 Where 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)
Where are the National Archives? Allied Commission for Austria (British Element): Headquarters and Regional Files -10.828272532537666 Where 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)
Where are the National Archives? a public trust -10.83220967461501 Where 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)
Where are the National Archives? government research -10.834598548885984 Where 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)
Where are the National Archives? Control Commission for Germany (British Element), Military Sections and Headquarters Secretariat -10.848692843839899 Where 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)
Where are the National Archives? Control Commission for Germany (British Element), Prisoners of War/Displaced Persons Division -10.848692843839899 Where 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)
Where are the National Archives? nation?s pride -10.851398301316 Where 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)
Where are the National Archives? China -10.8587284135823 Where 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)
Where are the National Archives? a living document -10.862898066481934 Where 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)
Where are the National Archives? heaven -10.869262287904755 Where 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)
Where are the National Archives? Contents INTRODUCTION -10.887650418081613 Where 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)
Where are the National Archives? one source -10.89656213946922 Where 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)
Where are the National Archives? a chilling read -10.896691696210013 Where 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)
Where are the National Archives? a government department -10.89850280182884 Where 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)
Where are the National Archives? the Rotunda -10.90268174500714 Where 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)
Where are the National Archives? The Public Record Office -10.902751549681485 Where 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)
Where are the National Archives? a joint project -10.90805672079036 Where 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)
Where are the National Archives? ways -10.909842340346994 Where 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)
Where are the National Archives? a major institution -10.912477705498137 Where 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)
Where are the National Archives? Control Commission for Germany (British Element), Combined Travel Security Board, later Combined Travel Board, and Zonal Travel Directorate and Bureaux -10.914037840007044 Where 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)
Where are the National Archives? a small map -10.91555768388456 Where 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)
Where are the National Archives? an annual event -10.92141941043108 Where 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)
Where are the National Archives? the ONLY time tours -10.93104588343264 Where 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)
Where are the National Archives? open seven days -10.93104588343264 Where 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)
Where are the National Archives? President Clinton -10.932629517261327 Where 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)
Where are the National Archives? The Presbyterian Historical Society -10.938810885688868 Where 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)
Where are the National Archives? Brief -10.940074616529085 Where 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)
Where are the National Archives? a UK government department -10.94135836320805 Where 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)
Where are the National Archives? census records -10.950428443093895 Where 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)
Where are the National Archives? a minute-by-minute time line -10.952852944529191 Where 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)
Where are the National Archives? full color scans -10.97260317130713 Where 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)
Where are the National Archives? The NFSA -10.98225957515173 Where 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)
Where are the National Archives? any Roswell files -10.983148945397621 Where 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)
Where are the National Archives? Gaston County -10.983177051354597 Where 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)
Where are the National Archives? a real bonus -10.991171296539337 Where 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)
Where are the National Archives? a mammoth task -10.997360706751603 Where 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)
Where are the National Archives? the US Capitol building -10.998180325025443 Where 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)
Where are the National Archives? research genealogy -11.000827700383939 Where 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)
Where are the National Archives? National -11.003464288648964 Where 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)
Where are the National Archives? The British Library -11.003550064261574 Where 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)
Where are the National Archives? the U.S. Government?s collection -11.008790719945488 Where 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)
Where are the National Archives? foreign policy -11.020841804001977 Where 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)
Where are the National Archives? a government agency -11.03538119631941 Where 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)
Where are the National Archives? the Natural History Museum -11.041570606531677 Where 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)
Where are the National Archives? a Crown asset -11.066914465934907 Where 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)
Where are the National Archives? Army Medical Services research -11.081945845562728 Where 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)
Where are the National Archives? an Executive Agency -11.092789482095561 Where 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)
Where are the National Archives? Michael?s -11.094614666304748 Where 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)
Where are the National Archives? material -11.098990790054874 Where 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)
Where are the National Archives? a secondary find -11.115545350422758 Where 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)
Where are the National Archives? ADA compliant -11.123800995879556 Where 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)
Where are the National Archives? the UK government?s official archive -11.148433314947352 Where 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)
Where are the National Archives? schedule -11.158004071452785 Where 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)
Where are the National Archives? an amazing resource -11.15936299840983 Where 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)
Where are the National Archives? request -11.162425056160563 Where 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)
Where are the National Archives? Upper Canada Land Petition -11.173018204326166 Where 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)
Where are the National Archives? Professor Howard Newby -11.194174373336702 Where 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)
Where are the National Archives? a Senior Reader Adviser -11.195942746138895 Where 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)
What countries supplied aid? America -4.7906221848151125 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (America, Instance Of, country) (America, supplied, military aid) -> America (6222ms)
What countries supplied aid? Israel -4.855447144721803 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Israel, Instance Of, country) (Israel, has supplied, enough aid) -> Israel (6222ms)
What countries supplied aid? America's -5.2101862344715 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (America's, Instance Of, country) (America, supplied, military aid) -> America's (6222ms)
What countries supplied aid? Food -6.152068526313819 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Food, Instance Of, country) (Food, supplied by, international aid groups) -> Food (6419ms)
What countries supplied aid? Britain -6.326339828711551 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Britain, Instance Of, country) (Britain, will supply, vital aid) -> Britain (8885ms)
What countries supplied aid? France -6.704906185402016 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (France, Instance Of, country) (France, has supplied, economic aid and troops) -> France (9509ms)
What countries supplied aid? Britain's -6.899585622825403 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Britain's, Instance Of, country) (Britain, will supply, vital aid) -> Britain's (9509ms)
What countries supplied aid? state -6.97837541929851 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (state, Instance Of, country) (states, routinely supply, aid) -> state (9509ms)
What countries supplied aid? Ankara -7.212157417756265 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Ankara, Instance Of, country) (Ankara, wants to begin supplying, aid) -> Ankara (9604ms)
What countries supplied aid? France 18 -7.259558903042546 What 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)
What countries supplied aid? USA -7.2696019041176285 What 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)
What countries supplied aid? 6 France -7.326196906311518 What 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)
What countries supplied aid? third world country -7.454004171499524 What 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)
What countries supplied aid? the U.S. -7.621525276861821 What 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)
What countries supplied aid? The United States -7.713038077864789 What 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)
What countries supplied aid? China -7.757723611859106 What 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)
What countries supplied aid? the United States -7.779329309923347 What 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)
What countries supplied aid? North America -7.807206842562621 What 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)
What countries supplied aid? China. -7.88010024066536 What 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)
What countries supplied aid? The U.S. -7.958357444573487 What 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)
What countries supplied aid? the Unite States -8.04315056546983 What 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)
What countries supplied aid? Sweden -8.186813955781703 What 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)
What countries supplied aid? European country -8.20098165983822 What 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)
What countries supplied aid? USA. -8.211102521975803 What 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)
What countries supplied aid? 44 employer -8.218218203872429 What 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)
What countries supplied aid? Europe -8.273443971730082 What 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)
What countries supplied aid? Intel -8.468145599521895 What 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)
What countries supplied aid? North and South America -8.549525677335401 What 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)
What countries supplied aid? North-America -8.620412145544893 What 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)
What countries supplied aid? North & South America -8.77823139095236 What 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)
What companies has BAT owned? Brown & Williamson -4.395408431499474 What 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)
What companies has BAT owned? Bats Global Markets -4.762102273907678 What 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)
What companies has BAT owned? School -5.075291185799822 What 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)
What companies has BAT owned? Kelly's -6.767597540510904 What 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)
What companies has BAT owned? a group -6.976292809752059 What 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)
What companies has BAT owned? Hardware Store -6.997229779605754 What 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)
What companies has BAT owned? Last night I -7.069950036982564 What 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)
What companies has BAT owned? B&W -7.088133191007337 What 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)
What companies has BAT owned? hardware store -7.088532120687972 What 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)
What companies has BAT owned? Kelly -7.134406325974645 What 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)
What companies has BAT owned? insect -7.267730069114185 What 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)
What companies has BAT owned? Ceramics -7.470130815946483 What 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)
What companies has BAT owned? Flamingo -7.5365667816289 What 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)
What companies has BAT owned? CASA -8.262971311983895 What 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)
What companies has BAT owned? The school -8.572169074435621 What 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)
What companies has BAT owned? school -14.612202425147844 What 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)
Where does chocolate come from? the Gallery Room -6.695205452232306 Where 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)
Where does chocolate come from? France -8.1831657056829 Where 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)
Where does chocolate come from? Belgium -8.312288026138823 Where 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)
Where does chocolate come from? State -8.353629671312921 Where 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)
Where does chocolate come from? Europe -8.383480654085822 Where 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)
Where does chocolate come from? London -8.3879016387936 Where 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)
Where does chocolate come from? Spain -8.417080158945852 Where 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)
Where does chocolate come from? Cleveland -8.470286169558593 Where 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)
Where does chocolate come from? England -8.47470715426637 Where 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)
Where does chocolate come from? Carpet -8.581527180181734 Where 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)
Where does chocolate come from? the cold -8.795993502026532 Where 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)
Where does chocolate come from? Blood -8.993174233613265 Where 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)
Who was the captain of the Titanic? Edward Smith 3.377083714006817 Who 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)
Who was the captain of the Titanic? Dick Clark 2.183322146133709 Who 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)
Who was the captain of the Titanic? Edward J. Smith 2.0061330826638555 Who 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)
Who was the captain of the Titanic? ugly ;A 1.4690517085319095 Who 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)
Who was the captain of the Titanic? deviantART More 1.4266748023835802 Who 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)
Who was the captain of the Titanic? deviantART Details 1.4062736835196281 Who 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)
Who was the captain of the Titanic? Captain Edward John Smith 1.367433522975685 Who 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)
Who was the captain of the Titanic? Rosenthal 0.45691291107455667 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Rosenthal, is the captain of, the Titanic) -> Rosenthal (2698ms)
Who was the captain of the Titanic? Obama -0.13813636208227065 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Obama, was the captain of, the Titanic) -> Obama (2698ms)
Who was the captain of the Titanic? The most famous -0.28482106326782075 Who 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)
Who was the captain of the Titanic? RMS Carpathia -0.8026183004194172 Who 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)
Who was the captain of the Titanic? SS Californian -0.8026183004194172 Who 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)
Who was the captain of the Titanic? ?Full -0.9090921019002856 Who 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)
Who was the captain of the Titanic? Bush -1.867887275738954 Who 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)
Who was the captain of the Titanic? he?s -1.8793440615325863 Who 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)
Who was the captain of the Titanic? Green Gables -1.9373279863696498 Who 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)
Who was the captain of the Titanic? Christopher -1.971366610640017 Who 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)
Who was the captain of the Titanic? ? Stephen Cox -2.1800141462258886 Who 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)
Who was the captain of the Titanic? Lukes Lane Primary School -2.267891843418174 Who 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)
Who was the captain of the Titanic? 18 -2.3655405543682675 Who 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)
Who was the captain of the Titanic? international waters -2.411647708150931 Who 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)
Who was the captain of the Titanic? Arthur Peuchen -2.4395184835780226 Who 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)
Who was the captain of the Titanic? One such example -2.572625184408663 Who 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)
Who was the captain of the Titanic? unreachable depths -2.628410766266079 Who 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)
Who was the captain of the Titanic? NY -2.8771463898268554 Who 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)
Who was the captain of the Titanic? three boys -2.8962521789801703 Who 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)
Who was the captain of the Titanic? Building C -2.9091485821390894 Who 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)
Who was the captain of the Titanic? Woody -2.9426774982854695 Who 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)
Who was the captain of the Titanic? New York -2.9468811502530037 Who 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)
Who was the captain of the Titanic? New York City -2.969083184642172 Who 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)
Who was the captain of the Titanic? a family -3.1297777935913134 Who 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)
Who was the captain of the Titanic? Leonardo DiCaprio -3.1332509356416605 Who 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)
Who was the captain of the Titanic? the Mauretania -3.2361807386771675 Who 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)
Who was the captain of the Titanic? Anna -3.26807898482676 Who 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)
Who was the captain of the Titanic? Oscar Rudolph Theg -3.3492693112998135 Who 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)
Who was the captain of the Titanic? a leather worker -3.362532318125442 Who 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)
Who was the captain of the Titanic? Dr. Robert Ballard -3.3660494606951423 Who 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)
Who was the captain of the Titanic? Babler -3.3671072871929346 Who 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)
Who was the captain of the Titanic? only the wealthy -3.4339418155383616 Who 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)
Who was the captain of the Titanic? very wealthy people -3.434954709622395 Who 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)
Who was the captain of the Titanic? real-life children -3.442869118294451 Who 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)
Who was the captain of the Titanic? Spanish domestic Encarnacion Reynaldo -3.448071046210987 Who 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)
Who was the captain of the Titanic? the Manitobans -3.4598629937293124 Who 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)
Who was the captain of the Titanic? exactly the same number -3.4649059660311314 Who 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)
Who was the captain of the Titanic? The New Republican party -3.4710781187050728 Who 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)
Who was the captain of the Titanic? the Jesuit master -3.4724561511802627 Who 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)
Who was the captain of the Titanic? ?People -3.494198223663275 Who 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)
Who was the captain of the Titanic? Soto y Vallejo -3.524340484915619 Who 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)
Who was the captain of the Titanic? Mr Smith -3.5286173994994403 Who 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)
Who was the captain of the Titanic? six year old daughter -3.5478601580133007 Who 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)
Who was the captain of the Titanic? Co Cork -3.549018518363392 Who 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)
Who was the captain of the Titanic? a minister -3.5605130996845324 Who 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)
Who was the captain of the Titanic? William Ali -3.573776053807866 Who 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)
Who was the captain of the Titanic? Andrick -3.574509221137475 Who 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)
Who was the captain of the Titanic? Mahala?s French maid -3.5933079201401656 Who 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)
Who was the captain of the Titanic? ?the same number -3.6077529056844377 Who 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)
Who was the captain of the Titanic? The Laroche family -3.6090793633428326 Who 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)
Who was the captain of the Titanic? Anna Sophia Turja -3.612760284475765 Who 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)
Who was the captain of the Titanic? a companion -3.6127954518658947 Who 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)
Who was the captain of the Titanic? passengers -3.620217585571267 Who 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)
Who was the captain of the Titanic? Washington A. Roebling II -3.620489607921207 Who 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)
Who was the captain of the Titanic? The MS Balmoral -3.6309510452689335 Who 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)
Who was the captain of the Titanic? crew-- -3.6356698924190503 Who 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)
Who was the captain of the Titanic? peace -3.6567147669206803 Who 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)
Who was the captain of the Titanic? Eleanore and George -3.6684647128746835 Who 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)
Who was the captain of the Titanic? Bridget Delia Bradley -3.6684647128746835 Who 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)
Who was the captain of the Titanic? William and Marie -3.6684647128746835 Who 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)
Who was the captain of the Titanic? several Philadelphia-area families -3.6722004707954805 Who 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)
Who was the captain of the Titanic? Dattilo -3.674423549316467 Who 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)
Who was the captain of the Titanic? very few children -3.6761940363201258 Who 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)
Who was the captain of the Titanic? dogs -3.6835451126599446 Who 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)
Who was the captain of the Titanic? no mummy -3.7011154632063605 Who 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)
Who was the captain of the Titanic? an Englishwoman -3.704363206396897 Who 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)
Who was the captain of the Titanic? Three Widener family members -3.760699003604728 Who 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)
Who was the captain of the Titanic? Lucy Ridsdale -3.763321707013021 Who 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)
Who was the captain of the Titanic? a poor choice -3.7849645517388133 Who 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)
Who was the captain of the Titanic? Francis Browne -3.828357277377947 Who 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)
Who was the captain of the Titanic? John Harper -3.8564901222443972 Who 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)
Who was the captain of the Titanic? Michael Dunnagan -3.8649524238816326 Who 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)
Who was the captain of the Titanic? Elna Strom -3.8786596139105423 Who 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)
Who was the captain of the Titanic? Mary -3.8923037203247532 Who 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)
Who was the captain of the Titanic? Rood -3.8923037203247532 Who 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)
Who was the captain of the Titanic? Behr -3.8923037203247532 Who 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)
Who was the captain of the Titanic? the tour guides -3.920055112089393 Who 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)
Who was the captain of the Titanic? 111 other passengers -3.921944994038315 Who 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)
Who was the captain of the Titanic? 705 survivors -3.925010038555293 Who 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)
Who was the captain of the Titanic? 123 people -3.9819263370210556 Who 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)
Who was the captain of the Titanic? 100 Irish passengers -3.988751804667666 Who 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)
Who was the captain of the Titanic? 497 third-class passengers -4.0183225766129205 Who 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)
Who was the captain of the Titanic? 710 steerage passengers -4.023627747721795 Who 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)
Who was the captain of the Titanic? 12 honeymoon couples -4.0438355744068595 Who 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)
Who was the captain of the Titanic? 2,228 passengers -4.0553793250806365 Who 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)
Who was the captain of the Titanic? 2,224 passengers -4.0553793250806365 Who 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)
Who was the captain of the Titanic? An Irish 19 year-old man -4.09130608789733 Who 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)
Who was the captain of the Titanic? dock -4.133362865597988 Who 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)
Who was the captain of the Titanic? 88-year-old Edwina Mackenzie -4.195012396711002 Who 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)
Who was the captain of the Titanic? She and her husband -4.2059285570894795 Who 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)
Who was the captain of the Titanic? Guntur -4.230058696004661 Who 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)
Who was the captain of the Titanic? death -4.263785729968738 Who 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)
Who was the captain of the Titanic? The ship -4.298630289753185 Who 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)
Who was the captain of the Titanic? relatives -4.32443253112295 Who 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)
Who was the captain of the Titanic? Bernanke -4.340217078639161 Who 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)
Who was the captain of the Titanic? Saalfeld -4.342869207373276 Who 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)
Who was the captain of the Titanic? Twelve dogs -4.344919121239284 Who 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)
Who was the captain of the Titanic? an iceberg -4.376358189830235 Who 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)
Who was the captain of the Titanic? Mrs -4.391982174281123 Who 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)
Who was the captain of the Titanic? State residents -4.406464326618732 Who 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)
Who was the captain of the Titanic? How many black people -4.440637493314109 Who 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)
Who was the captain of the Titanic? a ship -4.702623226285961 Who 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)
Who was the captain of the Titanic? Ireland -4.778953800794691 Who 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)
Who was the captain of the Titanic? a museum -4.819040972819179 Who 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)
Who was the captain of the Titanic? Syrians -4.867964548747457 Who 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)
Who was the captain of the Titanic? Gumoshtnik -4.905200104260085 Who 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)
Who was the captain of the Titanic? Browne -4.911816880953188 Who 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)
Who was the captain of the Titanic? Newcastle -4.935262863515728 Who 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)
Who was the captain of the Titanic? the kind -4.951605033141349 Who 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)
Who was the captain of the Titanic? Francisco -4.967093942871269 Who 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)
Who was the captain of the Titanic? Harper -4.967093942871269 Who 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)
Who was the captain of the Titanic? Ellen -4.9759359649891195 Who 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)
Who was the captain of the Titanic? the survivors -4.994190630243185 Who 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)
Who was the captain of the Titanic? the famous fashion designer -5.020304081948491 Who 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)
Who was the captain of the Titanic? Thieves -5.032524579789135 Who 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)
Who was the captain of the Titanic? the passengers -5.065747067368456 Who 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)
Who was the captain of the Titanic? the icy waters -5.081910710319433 Who 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)
Who was the captain of the Titanic? the chance -5.099266059407095 Who 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)
Who was the captain of the Titanic? the two -5.127199207587674 Who 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)
Who was the captain of the Titanic? the couple -5.173702538915984 Who 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)
Who was the captain of the Titanic? the bankers -5.18422856265726 Who 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)
Who was the captain of the Titanic? the full No one -5.200955491815343 Who 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)
Who was the captain of the Titanic? the guy -5.215614369999377 Who 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)
Who was the captain of the Titanic? the coronation -5.25944997622133 Who 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)
Who was the captain of the Titanic? The family -5.328728492932731 Who 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)
Who was the captain of the Titanic? the real people -5.358278105770486 Who 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)
Who was the captain of the Titanic? the same number -5.402427357301136 Who 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)
Who was the captain of the Titanic? The two -5.422908874763728 Who 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)
Who was the captain of the Titanic? the children?s dogs -5.43084690742897 Who 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)
Who was the captain of the Titanic? The three ladies -5.450155148938318 Who 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)
Who was the captain of the Titanic? The wealthy and glamorous passengers -5.462324363541111 Who 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)
Who was the captain of the Titanic? The two ladies -5.4705562678022694 Who 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)
Who was the captain of the Titanic? the same ship -5.615656636009668 Who 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)
Who was the captain of the Titanic? the troubled Massey family -5.6243365326593615 Who 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)
Who was the captain of the Titanic? the son -5.643788844292667 Who 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)
Who was the captain of the Titanic? Margaret -6.273859603155181 Who 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)
Who was the captain of the Titanic? Michael -6.294260722019132 Who 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)
Who was the captain of the Titanic? the families -6.589629613226503 Who 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)
Who was the captain of the Titanic? typical captain -8.129499733902783 Who 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)
Who was the captain of the Titanic? positive thinker -8.148955027001767 Who 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)
Who was the captain of the Titanic? experienced captain -8.149562008545981 Who 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)
Who was the captain of the Titanic? strong captain -8.156918176078582 Who 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)
Who was the captain of the Titanic? Eastern Europe -8.23307470357156 Who 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)
Who was the captain of the Titanic? great commander -8.294637795246707 Who 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)
Who was the captain of the Titanic? The Britannic -8.573313594345763 Who 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)
Who was the captain of the Titanic? great guy -8.932772643782048 Who 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)
Who was the captain of the Titanic? The Olympic -9.075756660102778 Who 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)
Who was the captain of the Titanic? Millvina Dean -9.080327618047185 Who 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)
Who was the captain of the Titanic? Jesuit tempore co-adjutor -9.125763427377413 Who 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)
Who was the captain of the Titanic? countertop installation -9.128402062275745 Who 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)
Who was the captain of the Titanic? Maury Yeston -9.14545776853348 Who 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)
Who was the captain of the Titanic? Mrs. Harrison -9.19110415093588 Who 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)
Who was the captain of the Titanic? Cobh -9.209088380165525 Who 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)
Who was the captain of the Titanic? R.M.S. Olympic -9.290555942807506 Who 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)
Who was the captain of the Titanic? expert -9.371547832437557 Who 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)
Who was the captain of the Titanic? Sinking of the Titanic -9.46332685527264 Who 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)
Who was the captain of the Titanic? woman -9.466442643113242 Who 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)
Who was the captain of the Titanic? Edward John Smith -9.510886912362619 Who 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)
Who was the captain of the Titanic? character -9.536367345425294 Who 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)
Who was the captain of the Titanic? fact -9.550636336339203 Who 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)
Who was the captain of the Titanic? dummy -9.552554133355594 Who 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)
Who was the captain of the Titanic? the Olympic -9.579738670032174 Who 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)
Who was the captain of the Titanic? Benjamin Guggenheim -9.590116635574178 Who 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)
Who was the captain of the Titanic? careerist -9.69301614438399 Who 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)
Who was the captain of the Titanic? Thomas Andrews -9.759123615354396 Who 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)
Who was the captain of the Titanic? Eleven-year-old John Payne -10.075827243991494 Who 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)
Who was the captain of the Titanic? TPS -10.084397793567321 Who 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)
Who was the captain of the Titanic? Captain Smith -10.110448584351424 Who 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)
Who was the captain of the Titanic? James Cameron -10.231885729591399 Who 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)
Who was the captain of the Titanic? Isador Straus -10.257792248125533 Who 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)
Who was the captain of the Titanic? Downton Abbey -10.260444860031116 Who 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)
Who was the captain of the Titanic? Englishman -10.314911257566326 Who 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)
Who was the captain of the Titanic? they?d -10.349005295007437 Who 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)
Who was the captain of the Titanic? help -10.454134073888634 Who 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)
Who was the captain of the Titanic? Jesuit -10.47980550225487 Who 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)
Who was the captain of the Titanic? call -10.483446078492022 Who 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)
Who was the captain of the Titanic? Gaelic Storm -10.490857338706284 Who 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)
Who was the captain of the Titanic? a 46-year-old auditor -10.574455108579816 Who 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)
Who was the captain of the Titanic? Click here -10.700265067209662 Who 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)
Who was the captain of the Titanic? crew members -10.739218142097299 Who 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)
Who was the captain of the Titanic? Ballmer -10.753205586950017 Who 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)
Who was the captain of the Titanic? Ida Straus -10.83989905907479 Who 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)
Who was the captain of the Titanic? ?My grandfather -10.84441466532725 Who 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)
Who was the captain of the Titanic? The FISTS club -10.882749904842395 Who 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)
Who was the captain of the Titanic? Mr Ismay -10.91105796740624 Who 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)
Who was the captain of the Titanic? J.P. Morgan -10.91335435129117 Who 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)
Who was the captain of the Titanic? The engineer -10.942401543052933 Who 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)
Who was the captain of the Titanic? John Jacob Astor -11.034620136202161 Who 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)
Who was the captain of the Titanic? John Jacob Astor IV -11.055776305212698 Who 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)
Who was the captain of the Titanic? Shine -11.075390719376518 Who 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)
Who was the captain of the Titanic? Michigan Senator -11.088298551672402 Who 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)
Who was the captain of the Titanic? God -11.10662108625905 Who 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)
Who was the captain of the Titanic? popular movies -11.205279528530266 Who 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)
Who was the captain of the Titanic? Eloise Smith -11.246732330211403 Who 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)
Who was the captain of the Titanic? Payne -11.33719299129196 Who 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)
Who was the captain of the Titanic? Leonardo Di Caprio -11.346741774800208 Who 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)
Who was the captain of the Titanic? three Jewish men -11.387186231551478 Who 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)
Who was the captain of the Titanic? an artist -11.397549690509528 Who 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)
Who was the captain of the Titanic? the matter -11.422624915749703 Who 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)
Who was the captain of the Titanic? the Major Archibald Willingham Butt -11.443100596610957 Who 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)
Who was the captain of the Titanic? Len -11.462043914761368 Who 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)
Who was the captain of the Titanic? a mess steward -11.462864412333511 Who 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)
Who was the captain of the Titanic? the White Star Line -11.468462746694595 Who 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)
Who was the captain of the Titanic? there?s Isidor and Ida Straus -11.491815241664344 Who 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)
Who was the captain of the Titanic? a British journalist -11.504421700208 Who 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)
Who was the captain of the Titanic? the Titanic -11.522666147376793 Who 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)
Who was the captain of the Titanic? Alfred S. Allsop -11.537137018666932 Who 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)
Who was the captain of the Titanic? White Star Lines -11.554333177541496 Who 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)
Who was the captain of the Titanic? Feburary?s ride -11.562740638859216 Who 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)
Who was the captain of the Titanic? the Oceanic Steam Navigation Company -11.567100636679488 Who 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)
Who was the captain of the Titanic? the building -11.596853971134383 Who 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)
Who was the captain of the Titanic? Mary Eloise Faulkland-Herne -11.60048783139565 Who 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)
Who was the captain of the Titanic? Switzerland Henry Bond -11.645009129860384 Who 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)
Who was the captain of the Titanic? National Geographic magazine -11.64677628641768 Who 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)
Who was the captain of the Titanic? The Mighty Mo -11.684160439161197 Who 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)
Who was the captain of the Titanic? The White Star Line -11.687875026959018 Who 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)
Who was the captain of the Titanic? Europe and America -11.701702867769903 Who 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)
Who was the captain of the Titanic? Over-confidence -11.727986250543482 Who 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)
Who was the captain of the Titanic? Capricorn ? -11.730283061257365 Who 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)
Who was the captain of the Titanic? A discovery -11.735333080664194 Who 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)
Who was the captain of the Titanic? students -11.744794872621728 Who 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)
Who was the captain of the Titanic? the 8 Musicians -11.75825061460337 Who 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)
Who was the captain of the Titanic? More than 1,500 people -11.75935890278687 Who 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)
Who was the captain of the Titanic? Jack Astor -11.771141469366512 Who 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)
Who was the captain of the Titanic? a shipbuilder -11.795411965727457 Who 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)
Who was the captain of the Titanic? Cha -11.81498870673337 Who 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)
Who was the captain of the Titanic? carpet -11.815218213321787 Who 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)
Who was the captain of the Titanic? the 8 musicians -11.827674817045878 Who 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)
Who was the captain of the Titanic? Jack Phillips -11.853436426841649 Who 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)
Who was the captain of the Titanic? the Belfast boat-builders -11.856382395788216 Who 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)
Who was the captain of the Titanic? Windy City -11.876161352197318 Who 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)
Who was the captain of the Titanic? Jeromy and Ron -11.934755062175999 Who 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)
Who was the captain of the Titanic? Kate Winslet -11.936071964157186 Who 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)
Who was the captain of the Titanic? New plans -11.970155455677514 Who 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)
Who was the captain of the Titanic? A lifetime highlight -11.9785242320971 Who 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)
Who was the captain of the Titanic? mention -11.99886318985874 Who 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)
Who was the captain of the Titanic? Orlando -12.06583019377046 Who 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)
Who was the captain of the Titanic? the Dordogne -12.084544001015312 Who 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)
Who was the captain of the Titanic? Count Alexander Bismarck -12.118301807255083 Who 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)
Who was the captain of the Titanic? Policies Michigan Senator -12.147399329167726 Who 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)
Who was the captain of the Titanic? A Buckley -12.15041871200702 Who 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)
Who was the captain of the Titanic? CIE Tours -12.16190241062836 Who 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)
Who was the captain of the Titanic? the museum -12.1639116350281 Who 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)
Who was the captain of the Titanic? n't teen-aged boys -12.168826280921806 Who 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)
Who was the captain of the Titanic? automatist -12.172997514495119 Who 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)
Who was the captain of the Titanic? Information Act -12.179357889890454 Who 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)
Who was the captain of the Titanic? a long time -12.198745686098796 Who 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)
Who was the captain of the Titanic? Lightoller -12.254208155282981 Who 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)
Who was the captain of the Titanic? lucky readers -12.284175178112488 Who 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)
Who was the captain of the Titanic? Vermont -12.285551843676643 Who 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)
Who was the captain of the Titanic? Odysseus ? crew -12.304108539465314 Who 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)
Who was the captain of the Titanic? The British company -12.332542383439975 Who 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)
Who was the captain of the Titanic? a dressing table -12.335055485122055 Who 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)
Who was the captain of the Titanic? a rare lunar event -12.347826871631082 Who 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)
Who was the captain of the Titanic? drinkers -12.361727933530341 Who 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)
Who was the captain of the Titanic? Commander -12.363753447407454 Who 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)
Who was the captain of the Titanic? A cigar box -12.375818853627633 Who 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)
Who was the captain of the Titanic? small factors -12.381111952423232 Who 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)
Who was the captain of the Titanic? Dancing -12.398990693457565 Who 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)
Who was the captain of the Titanic? the crew -12.451879537338675 Who 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)
Who was the captain of the Titanic? wireless telegraph -12.467827894606147 Who 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)
Who was the captain of the Titanic? particular numerals -12.48639607254065 Who 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)
Who was the captain of the Titanic? Glasgow -12.57282688469041 Who 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)
Who was the captain of the Titanic? Every effort -12.621254332746378 Who 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)
Who was the captain of the Titanic? Mark -12.654368085694124 Who 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)
Who was the captain of the Titanic? Engine room -12.695003308925974 Who 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)
Who was the captain of the Titanic? seven passengers -12.70675763378766 Who 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)
Who was the captain of the Titanic? Clash -12.734595360873273 Who 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)
Who was the captain of the Titanic? Nova Scotia -12.788580838918383 Who 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)
Who was the captain of the Titanic? Belfast -12.858187359943246 Who 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)
Who was the captain of the Titanic? America -12.920150579321156 Who 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)
Who was the captain of the Titanic? Smith -12.953239309316324 Who 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)
Who was the captain of the Titanic? the S.O.S. signals -12.975441219843502 Who 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)
Who was the captain of the Titanic? Minnesota -12.983743892781316 Who 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)
Who was the captain of the Titanic? 2012 Many famous names -12.984777087096013 Who 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)
Who was the captain of the Titanic? the dogs -13.023936590042137 Who 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)
Who was the captain of the Titanic? Gracie -13.035496421423186 Who 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)
Who was the captain of the Titanic? Polar -13.039917406130964 Who 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)
Who was the captain of the Titanic? the progenitor -13.095492069045012 Who 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)
Who was the captain of the Titanic? the men passengers -13.1147981649173 Who 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)
Who was the captain of the Titanic? The Park Inn Belfast -13.12206915483813 Who 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)
Who was the captain of the Titanic? the way women and children -13.167350961558157 Who 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)
Who was the captain of the Titanic? 2009 -13.1740359035162 Who 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)
Who was the captain of the Titanic? the wreck -13.180604059098364 Who 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)
Who was the captain of the Titanic? the image -13.19072246670802 Who 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)
Who was the captain of the Titanic? the firm -13.204704581617342 Who 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)
Who was the captain of the Titanic? postcards -13.210350850346618 Who 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)
Who was the captain of the Titanic? Kevin -13.234515554318568 Who 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)
Who was the captain of the Titanic? the crucial missing heir -13.265035469257798 Who 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)
Who was the captain of the Titanic? the matter ? -13.299440427269824 Who 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)
Who was the captain of the Titanic? The question -13.340341988312233 Who 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)
Who was the captain of the Titanic? a love story -13.386929078969677 Who 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)
Who was the captain of the Titanic? Distress calls -13.400082260060364 Who 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)
Who was the captain of the Titanic? the routes -13.411812245455758 Who 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)
Who was the captain of the Titanic? the shipping line -13.421096346660235 Who 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)
Who was the captain of the Titanic? The left boots -13.440027856922207 Who 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)
Who was the captain of the Titanic? the prospective groom -13.475788039079728 Who 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)
Who was the captain of the Titanic? The chair -13.497514928649755 Who 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)
Who was the captain of the Titanic? Disney -13.722030274960503 Who 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)
Who was the captain of the Titanic? Savage -13.73084794779373 Who 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)
Who was the captain of the Titanic? The same inversions -13.838880628084546 Who 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)
Who was the captain of the Titanic? The sets -13.845380464424235 Who 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)
Who was the captain of the Titanic? the film -13.858310313304695 Who 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)
Who was the captain of the Titanic? the company -13.874389721059726 Who 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)
Who was the captain of the Titanic? the analyst community -13.893779913360707 Who 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)
Who was the captain of the Titanic? the fruity -13.898655058359585 Who 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)
Who was the captain of the Titanic? land -13.90935080827355 Who 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)
Who was the captain of the Titanic? the accident HBO -13.917334351270569 Who 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)
Who was the captain of the Titanic? the errors -13.926046299260072 Who 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)
Who was the captain of the Titanic? the necklace -13.926846148918402 Who 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)
Who was the captain of the Titanic? The beardy Canadian -14.140684554401627 Who 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)
Who was the captain of the Titanic? The movie -14.223812358804434 Who 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)
Who was the captain of the Titanic? The only reason people -14.22648667074451 Who 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)
Who was the captain of the Titanic? Edvard -14.33741304104294 Who 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)
Who was the captain of the Titanic? the lifeboats -14.350179952318747 Who 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)
Who was the captain of the Titanic? The morning show -14.355653802821323 Who 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)
Who was the captain of the Titanic? a telegram -14.42320244710411 Who 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)
Who was the captain of the Titanic? Halifax -14.556700670615147 Who 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)
Who was the captain of the Titanic? the items -14.593099063699837 Who 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)
Who was the captain of the Titanic? the site -14.670618875151806 Who 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)
Who was the captain of the Titanic? the same line -14.85306084863009 Who 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)
Who was the captain of the Titanic? the same company -14.85306084863009 Who 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)
Who was the captain of the Titanic? the city ?s locals -14.930020613246826 Who 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)
Who was the captain of the Titanic? The dramatic images -15.205102069192343 Who 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)
Who was the captain of the Titanic? The maiden voyage -15.39075381173706 Who 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)
Who was the captain of the Titanic? the role -16.091273728270682 Who 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)
Who was the captain of the Titanic? the distress message -16.242975377570353 Who 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)
Who was the captain of the Titanic? the shipping company -16.495862991559925 Who 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)
What is the tallest statue in the world? Giza -10.91053803294247 What 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)
What is the tallest statue in the world? the Sam Houston Statue/Visitor Center -11.329393150439248 What 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)
What is the tallest statue in the world? Disabled access -11.498939584566154 What 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)
What is the tallest statue in the world? Vulcan -11.719434757082944 What 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)
What is a stratocaster? separate piece -5.028795776966302 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> (neck of a Fender Stratocaster, Instance Of, separate piece) -> separate piece (4431ms)
What is a stratocaster? solid-body guitar -6.306428310835462 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, solid-body guitar) -> solid-body guitar (5585ms)
What is a stratocaster? double-cutaway guitar -6.306428310835462 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double-cutaway guitar) -> double-cutaway guitar (5585ms)
What is a stratocaster? iconic fender instrument -6.347303498898952 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic fender instrument) -> iconic fender instrument (5584ms)
What is a stratocaster? model of electric guitar -6.358607981801314 What 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)
What is a stratocaster? fender's original guitar -6.4956769410008715 What 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)
What is a stratocaster? top quality instrument -6.540570896436014 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, top quality instrument) -> top quality instrument (5584ms)
What is a stratocaster? type of electric guitar -6.5571341622257515 What 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)
What is a stratocaster? fender's successful and modern guitar -6.570618729254677 What 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)
What is a stratocaster? fender's iconic instrument -6.58507135479987 What 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)
What is a stratocaster? fender and gibson model -6.603704029796408 What 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)
What is a stratocaster? great electric guitar -6.644694858058898 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great electric guitar) -> great electric guitar (5691ms)
What is a stratocaster? comfortable guitar design -6.644694858058898 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, comfortable guitar design) -> comfortable guitar design (5691ms)
What is a stratocaster? timeless electric guitar design -6.650049323508892 What 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)
What is a stratocaster? fender style electric guitar -6.653815616906034 What 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)
What is a stratocaster? solid body electric guitar -6.681234059081834 What 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)
What is a stratocaster? innovative electric model -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, innovative electric model) -> innovative electric model (5704ms)
What is a stratocaster? standard type guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, standard type guitar) -> standard type guitar (5719ms)
What is a stratocaster? three pickup guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, three pickup guitar) -> three pickup guitar (5704ms)
What is a stratocaster? fender model guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender model guitar) -> fender model guitar (5718ms)
What is a stratocaster? iconic electric guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic electric guitar) -> iconic electric guitar (5704ms)
What is a stratocaster? type of guitar -6.693768202955845 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, type of guitar) -> type of guitar (5719ms)
What is a stratocaster? famous guitar in the world -6.694587985462341 What 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)
What is a stratocaster? lady boudoir guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, lady boudoir guitar) -> lady boudoir guitar (5745ms)
What is a stratocaster? basic electric guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, basic electric guitar) -> basic electric guitar (5732ms)
What is a stratocaster? popular model guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model guitar) -> popular model guitar (5732ms)
What is a stratocaster? iconic electric model -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic electric model) -> iconic electric model (5719ms)
What is a stratocaster? signature fender guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, signature fender guitar) -> signature fender guitar (5732ms)
What is a stratocaster? popular guitar model -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular guitar model) -> popular guitar model (5732ms)
What is a stratocaster? double cutaway guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double cutaway guitar) -> double cutaway guitar (5732ms)
What is a stratocaster? extreemely versatile instrument -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, extreemely versatile instrument) -> extreemely versatile instrument (5745ms)
What is a stratocaster? standard shape guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, standard shape guitar) -> standard shape guitar (5745ms)
What is a stratocaster? fender electric guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender electric guitar) -> fender electric guitar (5745ms)
What is a stratocaster? original fender guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original fender guitar) -> original fender guitar (5732ms)
What is a stratocaster? solid electric guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, solid electric guitar) -> solid electric guitar (5719ms)
What is a stratocaster? type of Fender guitar -6.73571564750034 What 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)
What is a stratocaster? pretty distinct sounding guitar -6.739481940897483 What 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)
What is a stratocaster? famous type of guitar -6.739481940897483 What 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)
What is a stratocaster? guitar of standard -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, guitar of standard) -> guitar of standard (5759ms)
What is a stratocaster? fender's instrument -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's instrument) -> fender's instrument (5773ms)
What is a stratocaster? double cutaway type guitar -6.739481940897483 What 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)
What is a stratocaster? FENDER design -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, FENDER design) -> FENDER design (5773ms)
What is a stratocaster? icon of mid-century modernism and industrial design -6.739481940897483 What 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)
What is a stratocaster? original design of interest -6.739481940897483 What 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)
What is a stratocaster? guitar and bass model -6.739481940897483 What 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)
What is a stratocaster? pro quality instrument -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, pro quality instrument) -> pro quality instrument (5772ms)
What is a stratocaster? registered trademark of Fender guitar -6.739481940897483 What 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)
What is a stratocaster? fender's most popular model -6.739481940897483 What 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)
What is a stratocaster? classic solid body guitar -6.739481940897483 What 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)
What is a stratocaster? top notch electric guitar -6.739481940897483 What 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)
What is a stratocaster? great rhythm instrument -6.750925013069347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great rhythm instrument) -> great rhythm instrument (5786ms)
What is a stratocaster? famous fender guitar -6.757779624226147 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, famous fender guitar) -> famous fender guitar (5786ms)
What is a stratocaster? popular model of electric guitar -6.766900383073283 What 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)
What is a stratocaster? well known guitar -6.771488844088347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, well known guitar) -> well known guitar (5786ms)
What is a stratocaster? electric guitar -6.776842366154001 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, electric guitar) -> electric guitar (5800ms)
What is a stratocaster? MyCams model -6.785995087808933 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (STRATOCASTER, Instance Of, MyCams model) -> MyCams model (5800ms)
What is a stratocaster? guitar model -6.813614810140651 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, guitar model) -> guitar model (5800ms)
What is a stratocaster? Fender model -6.942692448011675 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, Fender model) -> Fender model (5800ms)
What is a stratocaster? classic design -6.997449548533994 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic design) -> classic design (5800ms)
What is a stratocaster? modern design -7.006369391610141 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, modern design) -> modern design (5812ms)
What is a stratocaster? fender instrument -7.010984533359883 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender instrument) -> fender instrument (5812ms)
What is a stratocaster? fender guitar -7.015709830601856 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender guitar) -> fender guitar (5813ms)
What is a stratocaster? fender model -7.016859913913676 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender model) -> fender model (5813ms)
What is a stratocaster? popular guitar -7.019210065890053 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular guitar) -> popular guitar (5812ms)
What is a stratocaster? real guitar -7.02092746227634 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, real guitar) -> real guitar (5813ms)
What is a stratocaster? traditional design -7.02430206245172 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, traditional design) -> traditional design (5825ms)
What is a stratocaster? popular model -7.039980142357403 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model) -> popular model (5825ms)
What is a stratocaster? great guitar -7.048060813713066 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great guitar) -> great guitar (5825ms)
What is a stratocaster? flagship model -7.066350588010877 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, flagship model) -> flagship model (5825ms)
What is a stratocaster? iconic model -7.075258424131361 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic model) -> iconic model (5825ms)
What is a stratocaster? sexy guitar -7.096650857351332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, sexy guitar) -> sexy guitar (5839ms)
What is a stratocaster? bright guitar -7.096650857351332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, bright guitar) -> bright guitar (5838ms)
What is a stratocaster? original guitar -7.096650857351332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original guitar) -> original guitar (5839ms)
What is a stratocaster? percussion instrument -7.107377170259915 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, percussion instrument) -> percussion instrument (5839ms)
What is a stratocaster? classic model -7.110651763133696 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic model) -> classic model (5839ms)
What is a stratocaster? modern guitar -7.111606371265404 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, modern guitar) -> modern guitar (5839ms)
What is a stratocaster? complicated instrument -7.1118031536981166 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, complicated instrument) -> complicated instrument (5851ms)
What is a stratocaster? signature design -7.114276998399861 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, signature design) -> signature design (5851ms)
What is a stratocaster? electrical guitar -7.117214688370332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, electrical guitar) -> electrical guitar (5851ms)
What is a stratocaster? classic guitar -7.120152379566504 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic guitar) -> classic guitar (5851ms)
What is a stratocaster? iconic instrument -7.120152379566504 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic instrument) -> iconic instrument (5851ms)
What is a stratocaster? excellent guitar -7.123090068311275 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, excellent guitar) -> excellent guitar (5851ms)
What is a stratocaster? popular brand -7.128758260853538 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular brand) -> popular brand (5862ms)
What is a stratocaster? good guitar -7.130649724080428 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, good guitar) -> good guitar (5862ms)
What is a stratocaster? guitar -7.332781055565015 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> (old-style Stratocaster with a three-position selector switch, Instance Of, guitar) -> guitar (4431ms)
What is a stratocaster? high end guitar -7.48993797883984 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, high end guitar) -> high end guitar (5862ms)
What is a stratocaster? 2006 American Vintage Series Stratocaster -7.491012647994264 What 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)
What is a stratocaster? variation -9.058072771444778 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, variation) -> variation (5875ms)
What is a stratocaster? model -9.070280922255296 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, model) -> model (5875ms)
What is a stratocaster? reference -9.26622605979561 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, reference) -> reference (5875ms)
What is a stratocaster? design -9.302027234928238 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, design) -> design (5875ms)
What is a stratocaster? manufacturer -9.331036569312602 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, manufacturer) -> manufacturer (5887ms)
What is a stratocaster? classic -9.355641407383178 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic) -> classic (5887ms)
What is a stratocaster? Stellas & Stratocasters: an anthology of articles, interviews, and columns from the pages of Vintage guitar magazine plus new essays -11.714041994281752 What 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)
What is a stratocaster? Stevie Ray -12.783745690593214 What 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)
What is a stratocaster? Jimi Hendrix -12.904234521924247 What 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)
What is a stratocaster? Dick Dale -13.01404615460802 What 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)
What is a stratocaster? Charley -13.26638029761037 What 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)
What is a stratocaster? Guitar -13.515598861182918 What 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)
What is a stratocaster? Mexico -13.602481539926433 What 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)
What is a stratocaster? Fender -13.654972996491772 What 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)
What is a stratocaster? PA system -13.67316094098447 What 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)
What is a stratocaster? an auction -13.720743653177069 What 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)
What is a stratocaster? The Jimi Hendrix Gibson -13.738870847291974 What 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)
What is a stratocaster? Dimensions -13.799981410851935 What 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)
What is a stratocaster? SECOND FAVORITE -13.807637625848662 What 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)
What is a stratocaster? Claude V. Lucas -13.93928588031101 What 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)
What is a stratocaster? quite small -14.00477371058351 What 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)
What is a stratocaster? a '60 NoNeck -14.008524817251438 What 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)
What is a stratocaster? a jazz guitarist -14.103050671865208 What 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)
What is a stratocaster? Ritchie Blackmore -14.15713880904903 What 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)
What is a stratocaster? Dweezil -14.273648783488735 What 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)
What is a stratocaster? ChoicePt -14.300006216912083 What 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)
What is a stratocaster? The GK-2 MIDI pickup -14.417545960619053 What 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)
What is a stratocaster? a 1954 Strat -14.479228598153087 What 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)
What is a stratocaster? Townshend -14.486293626657693 What 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)
What is a stratocaster? Bruce -14.545534906065587 What 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)
What is a stratocaster? a humbucker -14.773990909878256 What 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)
What is a stratocaster? the Affinity -14.788487775420393 What 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)
What is a stratocaster? the Author -15.191394895536698 What 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)
What is a stratocaster? choice -15.30185965956923 What 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)
What is a stratocaster? magnets -15.308933256182591 What 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)
What is a stratocaster? the guitar player -15.403107033767165 What 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)
What is a stratocaster? the end -15.420453341729221 What 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)
What is a stratocaster? the other vital component part -15.553579728634192 What 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)
What is a stratocaster? The guitar -15.581944122397648 What 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)
What is a stratocaster? the looks -15.6060583719617 What 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)
What is a stratocaster? The bridge -15.648651197509613 What 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)
What is a stratocaster? the instrument -15.678906118402468 What 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)
What is a stratocaster? The black guitar -15.7099236676198 What 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)
What is a stratocaster? The pinball machine -15.712576279525383 What 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)
What is a stratocaster? the auction -15.71810331064699 What 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)
What is a stratocaster? the first Van Halen record -15.771519643788645 What 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)
What is a stratocaster? the track -15.782649708461463 What 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)
What is a stratocaster? The other addition -15.796734098371154 What 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)
What is a stratocaster? the electric -15.807967709238524 What 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)
What is a stratocaster? the bass -15.816741200631881 What 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)
What is a stratocaster? The first two guitar solos -15.83695028070651 What 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)
What is a stratocaster? the raffle -15.928537876696645 What 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)
What is a stratocaster? the body -16.05729630962029 What 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)
What is a stratocaster? a local pawnshop -16.289776183496716 What 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)
What is a stratocaster? the sea change I needed -17.132802665838895 What 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)
What is a stratocaster? the exact same tools -17.963739937750574 What 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)
What is a stratocaster? recently -18.89054687835976 What 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)
Which terrorist organization claimed responsibility for the massacre? Islamic Group -3.1325584319941533 Which 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)
Which terrorist organization claimed responsibility for the massacre? Islamic Jihad Group -3.4878549061741753 Which 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)
Which terrorist organization claimed responsibility for the massacre? Al Qaeda -7.053598525508242 Which 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)
Which terrorist organization claimed responsibility for the massacre? organized crime -7.166039522065161 Which 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)
Which terrorist organization claimed responsibility for the massacre? Los Zetas -7.394949043079736 Which 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)
Which terrorist organization claimed responsibility for the massacre? Al-Qaeda -7.400417851264347 Which 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)
Which terrorist organization claimed responsibility for the massacre? al-qaeda -7.50668480254942 Which 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)
Which terrorist organization claimed responsibility for the massacre? BushCo -7.544328979421882 Which 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)
Which terrorist organization claimed responsibility for the massacre? Al- Qaeda -7.59125962375064 Which 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)
Which terrorist organization claimed responsibility for the massacre? Iraq -7.59433919137836 Which 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)
Which terrorist organization claimed responsibility for the massacre? End of History -7.692393506672573 Which 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)
Which terrorist organization claimed responsibility for the massacre? Amnesty International -7.7202460622290054 Which 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)
Which terrorist organization claimed responsibility for the massacre? Ordine Nuovo -7.728289236775908 Which 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)
Which terrorist organization claimed responsibility for the massacre? AlQaeda -7.7687849887567415 Which 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)
Which terrorist organization claimed responsibility for the massacre? People's Will -7.784315429413306 Which 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)
Which terrorist organization claimed responsibility for the massacre? al-fatah -7.790743570462085 Which 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)
Which terrorist organization claimed responsibility for the massacre? LTTE -7.867360300767774 Which 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)
Which terrorist organization claimed responsibility for the massacre? Al Fatah -7.897249876382546 Which 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)
Which terrorist organization claimed responsibility for the massacre? Bush -7.928893632955793 Which 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)
Which terrorist organization claimed responsibility for the massacre? Human Rights Watch -7.928915793740094 Which 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)
Which terrorist organization claimed responsibility for the massacre? Israel -7.958837853396858 Which 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)
Which terrorist organization claimed responsibility for the massacre? CAIR -7.961211826617671 Which 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)
Which terrorist organization claimed responsibility for the massacre? Iran -7.985608525919254 Which 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)
Which terrorist organization claimed responsibility for the massacre? Hama's -8.006827273751586 Which 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)
Which terrorist organization claimed responsibility for the massacre? terrorist -8.201793474716391 Which 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)
Which terrorist organization claimed responsibility for the massacre? Hamas -8.239020032636681 Which 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)
Which terrorist organization claimed responsibility for the massacre? group -8.335179366454142 Which 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)
Which terrorist organization claimed responsibility for the massacre? Islamic Jihad -8.369280730929898 Which 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)
Which terrorist organization claimed responsibility for the massacre? government -8.52315743801942 Which 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)
Which terrorist organization claimed responsibility for the massacre? Government -8.635943079801082 Which 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)
Which terrorist organization claimed responsibility for the massacre? loyalist -8.641946454847218 Which 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)
Which terrorist organization claimed responsibility for the massacre? Haganah -8.829336558864952 Which 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)
Which terrorist organization claimed responsibility for the massacre? Mossad -8.841353022740204 Which 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)
Which terrorist organization claimed responsibility for the massacre? MOSSAD -8.843426728357096 Which 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)
Which terrorist organization claimed responsibility for the massacre? Indonesia -8.932222850966753 Which 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)
Which terrorist organization claimed responsibility for the massacre? German -9.004542282884165 Which 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)
Which terrorist organization claimed responsibility for the massacre? Irgun -9.040610920999695 Which 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)
Which terrorist organization claimed responsibility for the massacre? Advance -9.115011607852328 Which 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)
Which terrorist organization claimed responsibility for the massacre? America -9.232745539250764 Which 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)
Which terrorist organization claimed responsibility for the massacre? man -9.525131208358793 Which 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)
Which terrorist organization claimed responsibility for the massacre? military police -9.635347352058666 Which 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)
Which terrorist organization claimed responsibility for the massacre? Islam -10.118953866774905 Which 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)
What is the richest country in the world? lux 0.6837586975726548 What 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)
What is the richest country in the world? Great Britain 0.6129766880037093 What 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)
What is the richest country in the world? The Vatican 0.27426030362464404 What 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)
What is the richest country in the world? The USA 0.1961572269395262 What 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)
What is the richest country in the world? India 0.1810591897113184 What 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)
What is the richest country in the world? Luxembourg 0.1795548560711523 What 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)
What is the richest country in the world? the US today 0.1687867322079707 What 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)
What is the richest country in the world? The U.S. 0.16838751236968108 What 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)
What is the richest country in the world? Qatar 0.11457706649341726 What 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)
What is the richest country in the world? Russia 0.11307567640525351 What 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)
What is the richest country in the world? Australia 0.0876589064537473 What 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)
What is the richest country in the world? Argentina 0.0764313605489314 What 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)
What is the richest country in the world? New Zealand 0.04630063338884194 What 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)
What is the richest country in the world? Canada -0.012380638101923025 What 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)
What is the richest country in the world? Bermuda -0.012380638101923025 What 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)
What is the richest country in the world? The United States -0.023637911144806067 What 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)
What is the richest country in the world? Brazil -0.03133658260105576 What 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)
What is the richest country in the world? The UAE -0.062480857117141464 What 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)
What is the richest country in the world? Singapore -0.1224089413644921 What 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)
What is the richest country in the world? Kazakhstan -0.1357716310052114 What 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)
What is the richest country in the world? The Dutch Republic -0.1523758416306643 What 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)
What is the richest country in the world? Austria -0.15505969169616896 What 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)
What is the richest country in the world? Japan -0.17546081056012108 What 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)
What is the richest country in the world? Economy Austria -0.18760102289927627 What 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)
What is the richest country in the world? England -0.19491317489572046 What 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)
What is the richest country in the world? up all -0.20802400903269236 What 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)
What is the richest country in the world? Kuwait -0.24177563387908352 What 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)
What is the richest country in the world? Norway -0.2506176032946392 What 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)
What is the richest country in the world? Scotland -0.2987619167694846 What 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)
What is the richest country in the world? the Soviet Union -0.3148769343640968 What 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)
What is the richest country in the world? the USA -0.4120944047935071 What 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)
What is the richest country in the world? the Vatican -0.4184136799149275 What 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)
What is the richest country in the world? Congo -0.43140244007513484 What 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)
What is the richest country in the world? America -0.450373068981722 What 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)
What is the richest country in the world? The Scandinavians -0.4538078101520252 What 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)
What is the richest country in the world? the United States -0.46601560710665113 What 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)
What is the richest country in the world? China -0.5386962232055068 What 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)
What is the richest country in the world? Britain -0.5477933749490621 What 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)
What is the richest country in the world? Britain today -0.6154812807989514 What 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)
What is the richest country in the world? Amercia -0.6277634041843609 What 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)
What is the richest country in the world? the 20th century America -0.6901405854003769 What 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)
What is the richest country in the world? EverQuest -0.7313108019992971 What 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)
What is the richest country in the world? the UK -0.7313108019992971 What 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)
What is the richest country in the world? 2005 america -0.9202428555248994 What 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)
What is the richest country in the world? U.A.E -1.010595409815087 What 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)
What is the richest country in the world? the U.S. -1.0620215103864938 What 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)
What is the richest country in the world? We?ve -1.1172985723045745 What 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)
What is the richest country in the world? Haiti -1.1847921877733816 What 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)
What is the richest country in the world? the nation -1.380158156939404 What 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)
What is the richest country in the world? Nepal -1.3881532099119687 What 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)
What is the richest country in the world? Barbados -1.4230291529660977 What 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)
What is the richest country in the world? Iceland -1.4230291529660977 What 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)
What is the richest country in the world? the question -1.9654782164684939 What 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)
What is the richest country in the world? amerca -2.331482512156284 What 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)
What is the richest country in the world? 2000 Ireland -2.7367236600476983 What 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)
What is the richest country in the world? RSA -7.221216499308602 What 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)
What is the richest country in the world? South Africa -7.358647063302024 What 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)
What is the richest country in the world? inhabitants Angola -7.866409228252671 What 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)
What is the richest country in the world? Burma -7.9567752428358425 What 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)
What is the richest country in the world? sooner..the Philippines -7.9595308643807705 What 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)
What is the richest country in the world? Uganda -8.121407672630154 What 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)
What is the richest country in the world? Nigeria -8.402970351201846 What 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)
What is the richest country in the world? New York city -8.585315623041751 What 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)
What is the richest country in the world? Ethiopia -8.61001508993558 What 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)
What is the richest country in the world? Zambia -8.610762206871673 What 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)
What is the richest country in the world? a good track record -8.696368981828794 What 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)
What is the richest country in the world? 1962 Myanmar -8.801049613093863 What 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)
What is the richest country in the world? Philadelphia -8.805247833868023 What 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)
What is the richest country in the world? the Arab world -8.999537649893465 What 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)
What is the richest country in the world? Babylon -9.025594137591385 What 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)
What is the richest country in the world? Zimbabwe -9.077302093900729 What 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)
What is the richest country in the world? Melbourne -9.08140792448434 What 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)
What is the richest country in the world? Abu Dhabi -9.1326843193116 What 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)
What is the richest country in the world? Timbuktu -9.1627189073387 What 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)
What is the richest country in the world? Baghdad -9.173329302258743 What 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)
What is the richest country in the world? Economy S?o Paulo -9.229906263089827 What 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)
What is the richest country in the world? London -9.274381414805262 What 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)
What is the richest country in the world? THE BUZZ Abu Dhabi -9.445656100617922 What 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)
What is the richest country in the world? Sao Paulo Brazil -9.503833353882342 What 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)
What is the richest country in the world? S?o Paulo -9.881188468204506 What 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)
What is the richest country in the world? Sao Paulo -9.942133552287338 What 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)
What is the richest country in the world? America and China -10.333429559042877 What 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)
What is the richest country in the world? China and India -10.345808326765113 What 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)
What is the richest country in the world? India & China -10.35818709448735 What 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)
What is the richest country in the world? Amsterdam -10.3648009644728 What 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)
What is the richest country in the world? Madagascar -10.366154096724534 What 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)
What is the richest country in the world? India and China -10.519539850115551 What 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)
What store does Martha Stewart advertise for? year -9.52837686564407 What 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)
What is Britney Spears' middle name? Britney Spears -10.107564249071503 What 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)
What is Britney Spears' middle name? Svetlana Svetikova -10.191101886217002 What 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)
What is Britney Spears' middle name? The Circus: Starring Britney Spears -10.295798009266772 What 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)
What is Britney Spears' middle name? Britney Spears: In the Zone -10.295798009266772 What 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)
What is Britney Spears' middle name? Britney Spears: Greatest Hits: My Prerogative -10.313665781656226 What 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)
What is Britney Spears' middle name? Oops! I Did It Again: The Best Of Britney Spears -10.367269098824586 What 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)
What is Britney Spears' middle name? Britney Spears doll -11.048461731742062 What 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)
What is Britney Spears' middle name? the West -11.855484163754525 What 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)
What is Britney Spears' middle name? the Lindsay Lohan -13.71137586212592 What 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)
What is Britney Spears' middle name? The lass -14.069143350975917 What 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)
What is Britney Spears' middle name? the next county -14.43227232759724 What 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)
What is Britney Spears' middle name? the students -14.563013549972922 What 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)
What is Britney Spears' middle name? the train wreck -15.285417646976379 What 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)
Who is Anubis? egyptian deity -2.4730515156282245 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian deity) -> egyptian deity (3229ms)
Who is Anubis? infernal deity -2.544856315900308 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, infernal deity) -> infernal deity (3229ms)
Who is Anubis? intriguing character -2.6637353514532114 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, intriguing character) -> intriguing character (3229ms)
Who is Anubis? awesome character -2.6638419787596628 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, awesome character) -> awesome character (3229ms)
Who is Anubis? great leader -2.667844523659931 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great leader) -> great leader (3229ms)
Who is Anubis? protective deity -2.6791288483693214 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, protective deity) -> protective deity (3229ms)
Who is Anubis? removable figure -2.6887705217074065 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, removable figure) -> removable figure (3378ms)
Who is Anubis? cynocephalic deity -2.6887705217074065 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, cynocephalic deity) -> cynocephalic deity (3378ms)
Who is Anubis? primary character -2.6997378988228666 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, primary character) -> primary character (3378ms)
Who is Anubis? minor deity -2.703286167493083 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, minor deity) -> minor deity (3378ms)
Who is Anubis? dark deity -2.7112037925785155 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dark deity) -> dark deity (3378ms)
Who is Anubis? leaved plant -2.7118597356551537 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, leaved plant) -> leaved plant (3378ms)
Who is Anubis? great ride -2.7145761144876532 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great ride) -> great ride (3393ms)
Who is Anubis? great tool -2.730549755976404 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great tool) -> great tool (3393ms)
Who is Anubis? egyptian god -2.981268084477934 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian god) -> egyptian god (3393ms)
Who is Anubis? low light plant -3.177563617256066 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, low light plant) -> low light plant (3393ms)
Who is Anubis? ancient egyptian god -3.196031054700807 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient egyptian god) -> ancient egyptian god (3393ms)
Who is Anubis? ancient god -3.213696521043385 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient god) -> ancient god (3393ms)
Who is Anubis? god -3.235275317733835 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god) -> god (3410ms)
Who is Anubis? extremely ancient deity -3.2415573170154834 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, extremely ancient deity) -> extremely ancient deity (3410ms)
Who is Anubis? egytian god -3.2574251971274473 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egytian god) -> egytian god (3410ms)
Who is Anubis? animal-headed god of ancient egypt -3.2714734060340893 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal-headed god of ancient egypt) -> animal-headed god of ancient egypt (3410ms)
Who is Anubis? malwarebinary analysis platform -3.2823296855717903 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, malwarebinary analysis platform) -> malwarebinary analysis platform (3410ms)
Who is Anubis? hieroglyph egyptian god -3.2920372370530897 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, hieroglyph egyptian god) -> hieroglyph egyptian god (3425ms)
Who is Anubis? principal egyptian god -3.2920372370530897 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, principal egyptian god) -> principal egyptian god (3410ms)
Who is Anubis? dog-headed human figure -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog-headed human figure) -> dog-headed human figure (3425ms)
Who is Anubis? fate and underworld deity -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fate and underworld deity) -> fate and underworld deity (3425ms)
Who is Anubis? deity of Egyptian cult and religion -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, deity of Egyptian cult and religion) -> deity of Egyptian cult and religion (3425ms)
Who is Anubis? Egyptian Lord of the Dead -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian Lord of the Dead) -> Egyptian Lord of the Dead (3425ms)
Who is Anubis? goldfish safe aquarium plant -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, goldfish safe aquarium plant) -> goldfish safe aquarium plant (3425ms)
Who is Anubis? comic book character -3.3177695242588396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, comic book character) -> comic book character (3447ms)
Who is Anubis? false god -3.3270095510523117 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, false god) -> false god (3447ms)
Who is Anubis? dynamicmalware analysis platform -3.327223641006932 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dynamicmalware analysis platform) -> dynamicmalware analysis platform (3447ms)
Who is Anubis? fairly small character -3.327223641006932 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fairly small character) -> fairly small character (3447ms)
Who is Anubis? amazingly young band -3.327223641006932 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, amazingly young band) -> amazingly young band (3447ms)
Who is Anubis? well rounded character -3.3387682479808056 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, well rounded character) -> well rounded character (3461ms)
Who is Anubis? ancient Egyptian deity -3.339664216766196 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient Egyptian deity) -> ancient Egyptian deity (3461ms)
Who is Anubis? great aquatic plant -3.354642083182732 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great aquatic plant) -> great aquatic plant (3461ms)
Who is Anubis? middle kingdom deity -3.354642083182732 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, middle kingdom deity) -> middle kingdom deity (3461ms)
Who is Anubis? house band with name -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, house band with name) -> house band with name (3492ms)
Who is Anubis? fate and the underworld deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fate and the underworld deity) -> fate and the underworld deity (3491ms)
Who is Anubis? lord of the land of death -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, lord of the land of death) -> lord of the land of death (3476ms)
Who is Anubis? principal egyptian-greco-roman god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, principal egyptian-greco-roman god) -> principal egyptian-greco-roman god (3507ms)
Who is Anubis? god of the pharoahs -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of the pharoahs) -> god of the pharoahs (3523ms)
Who is Anubis? god with the head of a dog or a jackal -3.357139730025539 Who 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)
Who is Anubis? god of greek mythology -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of greek mythology) -> god of greek mythology (3491ms)
Who is Anubis? Ancient Mysterious Figure -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Ancient Mysterious Figure) -> Ancient Mysterious Figure (3491ms)
Who is Anubis? anthropomorphic egyptian god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, anthropomorphic egyptian god) -> anthropomorphic egyptian god (3523ms)
Who is Anubis? god of antiquity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of antiquity) -> god of antiquity (3507ms)
Who is Anubis? Egyptian-themed character -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian-themed character) -> Egyptian-themed character (3536ms)
Who is Anubis? dog-like deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog-like deity) -> dog-like deity (3524ms)
Who is Anubis? god by mortal -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god by mortal) -> god by mortal (3476ms)
Who is Anubis? god with astonishing power -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god with astonishing power) -> god with astonishing power (3524ms)
Who is Anubis? famous figure from historical egypt -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, famous figure from historical egypt) -> famous figure from historical egypt (3524ms)
Who is Anubis? giant stones of these deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, giant stones of these deity) -> giant stones of these deity (3536ms)
Who is Anubis? animal-shaped or animal-headed deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal-shaped or animal-headed deity) -> animal-shaped or animal-headed deity (3507ms)
Who is Anubis? funerary and protective deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, funerary and protective deity) -> funerary and protective deity (3507ms)
Who is Anubis? egyptian god of lore -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian god of lore) -> egyptian god of lore (3476ms)
Who is Anubis? religious or mythological figure -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, religious or mythological figure) -> religious or mythological figure (3491ms)
Who is Anubis? common egyptian tattoo show god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, common egyptian tattoo show god) -> common egyptian tattoo show god (3461ms)
Who is Anubis? egypt too god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egypt too god) -> egypt too god (3536ms)
Who is Anubis? egyptians god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptians god) -> egyptians god (3524ms)
Who is Anubis? dog deity of the Egyptians -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog deity of the Egyptians) -> dog deity of the Egyptians (3476ms)
Who is Anubis? second order Egyptian deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, second order Egyptian deity) -> second order Egyptian deity (3506ms)
Who is Anubis? god in the afterlife -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god in the afterlife) -> god in the afterlife (3507ms)
Who is Anubis? egyption god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyption god) -> egyption god (3491ms)
Who is Anubis? progressive rock band -3.3587919008219496 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, progressive rock band) -> progressive rock band (3536ms)
Who is Anubis? animal god -3.3630151105793313 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal god) -> animal god (3536ms)
Who is Anubis? sun god -3.3727015486240033 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, sun god) -> sun god (3536ms)
Who is Anubis? god of egypt -3.3735907950858786 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of egypt) -> god of egypt (3991ms)
Who is Anubis? solar god -3.3754186910675053 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, solar god) -> solar god (3991ms)
Who is Anubis? low-light plant -3.38266724337958 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, low-light plant) -> low-light plant (3991ms)
Who is Anubis? MyCams model -3.403652876936989 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (ANUBIS, Instance Of, MyCams model) -> MyCams model (3991ms)
Who is Anubis? hieroglyphic egyptian god -3.404142774455881 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, hieroglyphic egyptian god) -> hieroglyphic egyptian god (3991ms)
Who is Anubis? deity -3.7385169927980977 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, deity) -> deity (4251ms)
Who is Anubis? Egyptian deity -3.8594282487293414 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian deity) -> Egyptian deity (4251ms)
Who is Anubis? tool -3.8792911934571457 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, tool) -> tool (4251ms)
Who is Anubis? symbol -3.895933846981114 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, symbol) -> symbol (4251ms)
Who is Anubis? good plant -3.9003857807912157 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, good plant) -> good plant (4251ms)
Who is Anubis? character -3.9091037781199436 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, character) -> character (4271ms)
Who is Anubis? private company -3.947491820469608 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus Software, Instance Of, private company) -> private company (4271ms)
Who is Anubis? figure -4.051238285935138 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, figure) -> figure (4271ms)
Who is Anubis? warlord -4.080078800350735 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, warlord) -> warlord (4271ms)
Who is Anubis? candidate -4.082610556918667 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, candidate) -> candidate (4271ms)
Who is Anubis? woman -4.092747079912777 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, woman) -> woman (4271ms)
Who is Anubis? factor -4.097401106342255 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, factor) -> factor (4283ms)
Who is Anubis? female -4.117497859612275 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, female) -> female (4283ms)
Who is Anubis? matter -4.121663356403885 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, matter) -> matter (4283ms)
Who is Anubis? monster -4.121921400540455 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, monster) -> monster (4283ms)
Who is Anubis? creature -4.122014752291906 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, creature) -> creature (4283ms)
Who is Anubis? gift -4.124195524806964 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, gift) -> gift (4283ms)
Who is Anubis? work -4.127841702380648 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, work) -> work (4296ms)
Who is Anubis? name -4.131457156562065 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, name) -> name (4296ms)
Who is Anubis? girl -4.133281608327132 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, girl) -> girl (4296ms)
Who is Anubis? platform -4.137230494539669 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, platform) -> platform (4296ms)
Who is Anubis? material -4.149840166038013 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (ANUBIS, Instance Of, material) -> material (4296ms)
Who is Anubis? two-pieces-band -4.2199635169646115 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, two-pieces-band) -> two-pieces-band (4307ms)
Who is Anubis? improved lollo rosso -4.551959139000365 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, improved lollo rosso) -> improved lollo rosso (4307ms)
Who is Anubis? sound pug -4.581875228018972 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, sound pug) -> sound pug (4307ms)
Who is Anubis? sexy part of this Egyptian breakfast -4.581875228018972 Who 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)
Who is Anubis? set of portfolio management tool -4.581875228018972 Who 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)
Who is Anubis? improved lollo rosso type -4.581875228018972 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, improved lollo rosso type) -> improved lollo rosso type (4307ms)
Who is Anubis? WAY better name -4.607184559446741 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, WAY better name) -> WAY better name (4323ms)
Who is Anubis? net.label -4.618890122872612 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus Music, Instance Of, net.label) -> net.label (4323ms)
Who is Anubis? 4 year entire male -5.04182813631746 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, 4 year entire male) -> 4 year entire male (4323ms)
Who is Anubis? leader -5.3699111358057126 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, leader) -> leader (4323ms)
Who is Anubis? the donate button -10.02087966425503 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (Anubis, modelling, $x) -> (an Anubis plushie, modeled after, the donate button) -> the donate button (4323ms)
Who is Anubis? The face -11.805365560375574 Who 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)
Who is Anubis? Xylophanes anubus -11.855263317291634 Who is Anubis? -> who be [ anubi ] ? -> what s the name of anubi ? -> $x: (anubi, name, $x) -> (Xylophanes anubus, Scientific name, Xylophanes anubus) -> Xylophanes anubus (5686ms)
Who is Anubis? the genus Xylophanes -12.017784186859425 Who is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (the genus Xylophanes, is, Xylophanes anubus) -> the genus Xylophanes (5255ms)
Who is Anubis? the black fox -12.21309217569454 Who is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (the black fox, is, Anubi) -> the black fox (5255ms)
Who is Anubis? 1987-03-03 -13.387515100112395 Who 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)
When did Hawaii become a state? 1978 -5.070058624713676 When 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)
When did Hawaii become a state? 1963 -6.394324438141158 When 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)
When did Hawaii become a state? 1893 -6.404934780358907 When 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)
When did Hawaii become a state? 1900 -6.4288081294022845 When 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)
When did Hawaii become a state? 1959 -6.497283577316443 When 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)
When did Hawaii become a state? 2005 -6.607765749645945 When 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)
When did Hawaii become a state? 1918 -6.746885474927543 When 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)
When did Hawaii become a state? 2000 -6.771703605919145 When 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)
When did Hawaii become a state? 1970 -6.82563966151587 When 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)
When did Hawaii become a state? 1898 -6.846040780379823 When 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)
When did Hawaii become a state? 1894 -7.054671958157225 When 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)
When did Hawaii become a state? 2001 -7.063724986551965 When 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)
When did Hawaii become a state? 1957 -7.18295426170441 When 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)
When did Hawaii become a state? 2010 -7.290121527935911 When 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)
When did Hawaii become a state? 1961 -7.411932104437973 When 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)
When did Hawaii become a state? August 1959 -7.8849304312290815 When 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)
When did Hawaii become a state? June 1900 -8.036759066286908 When 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)
When did Hawaii become a state? August 21 , 1959 -8.546669640953473 When 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)
When did Hawaii become a state? Aug. 21 , 1959 -8.603931941834329 When 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)
When did Hawaii become a state? 1916 D -8.901292924518023 When 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)
When did Hawaii become a state? August 25 , 2010 -9.157147495811838 When 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)
When did Hawaii become a state? August -9.279918241199637 When 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)
When did Hawaii become a state? August of 1959 -9.363010828191173 When 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)
When did Hawaii become a state? 1941 -9.54113162293297 When 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)
When did Hawaii become a state? July 4 -9.75389569368812 When 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)
When did Hawaii become a state? 1979 -9.773882542340456 When 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)
When did Hawaii become a state? 1898. -9.845030747326321 When 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)
When did Hawaii become a state? August 21 -9.876556593516419 When 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)
When did Hawaii become a state? the Union -10.021293173956021 When 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)
When did Hawaii become a state? hips -10.035753686776495 When 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)
When did Hawaii become a state? Japan 1894.7.4 Dole -10.156241555777315 When 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)
When did Hawaii become a state? 16 years -10.20817290949549 When 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)
When did Hawaii become a state? 2. Prince Kamehameha V -10.213350441615928 When 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)
When did Hawaii become a state? John -10.243140749355359 When 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)
When did Hawaii become a state? July 4th -10.296572142448923 When 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)
When did Hawaii become a state? the Republic -10.383799136063912 When 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)
When did Hawaii become a state? the Pacific -10.546715114078136 When 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)
When did Hawaii become a state? August 21st 1959 -10.625955358598905 When 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)
When did Hawaii become a state? righteousness ? -10.651934666068296 When 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)
When did Hawaii become a state? a company -10.716312533687974 When 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)
When did Hawaii become a state? Chow -10.718357892678132 When 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)
When did Hawaii become a state? a Ph.D -10.768355000105828 When 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)
When did Hawaii become a state? Aug. 21 , -10.827563501241835 When 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)
When did Hawaii become a state? real estate -10.83303191720934 When 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)
When did Hawaii become a state? the United States -10.852717590027272 When 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)
When did Hawaii become a state? marine debris -10.865059900158187 When 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)
When did Hawaii become a state? Oahu -10.878770484242064 When 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)
When did Hawaii become a state? a small local drive-inn -10.941336197281462 When 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)
When did Hawaii become a state? the West -10.944702298430034 When 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)
When did Hawaii become a state? a nice Jewish republican woman -10.946641368390337 When 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)
When did Hawaii become a state? 5 hour -11.00113307175845 When 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)
When did Hawaii become a state? Land -11.008250750303482 When 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)
When did Hawaii become a state? usa... -11.029100195849988 When 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)
When did Hawaii become a state? Us -11.029100195849988 When 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)
When did Hawaii become a state? Hana -13.594969541979744 When 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)
When did Hawaii become a state? sugar -14.378224614440597 When 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)
When did Hawaii become a state? coffee -14.411250398430981 When 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)
When did Hawaii become a state? Schofield Barracks -15.002202048804207 When 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)
When did Hawaii become a state? Haleiwa -15.104781528222693 When 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)
When did Hawaii become a state? hotel -15.278160565544436 When 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)
When did Hawaii become a state? Coffee -15.283749280098094 When 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)
When did Hawaii become a state? Skye -15.51255030437358 When 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)
When did Hawaii become a state? Maui -15.54753327044663 When 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)
Why is the sun yellow? Canonical -10.575314772880931 Why 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)
Why is the sun yellow? God -10.786534737574172 Why 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)
Why is the sun yellow? helium -10.82619421934224 Why 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)
Why is the sun yellow? the Moon -10.851249081906376 Why 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)
Why is the sun yellow? man -11.28692343765034 Why 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)
Why is the sun yellow? a very high frequency -11.316101957802593 Why 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)
Why is the sun yellow? Hydrogen -11.31875682753605 Why 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)
Why is the sun yellow? Museum -11.407622692174176 Why 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)
Why is the sun yellow? Nuclear fusion -11.454152428395277 Why 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)
Why is the sun yellow? a wheel or spring -11.491903794067323 Why 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)
Why is the sun yellow? Fusion -11.517026294434812 Why 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)
Why is the sun yellow? day -11.605185197897631 Why 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)
Why is the sun yellow? extracts -11.623303183312789 Why 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)
Why is the sun yellow? a CLIENT -11.64722320340999 Why 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)
Why is the sun yellow? an administrative and political centre -11.685642729214946 Why 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)
Why is the sun yellow? Two questions -11.69570401832935 Why 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)
Why is the sun yellow? G-d -11.71523612932584 Why 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)
Why is the sun yellow? very hot conditions -11.743637778067237 Why 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)
Why is the sun yellow? service -11.757163140045467 Why 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)
Why is the sun yellow? Sun Visor Removal -11.785911341805452 Why 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)
Why is the sun yellow? enormous amounts -11.813496410207502 Why 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)
Why is the sun yellow? north -11.851154364352212 Why 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)
Why is the sun yellow? USA -11.879175607561463 Why 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)
Why is the sun yellow? a confirmation -11.912755739390075 Why 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)
Why is the sun yellow? two signs -11.927888968390475 Why 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)
Why is the sun yellow? fusion -11.937914950617566 Why 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)
Why is the sun yellow? disease -11.983008720195249 Why 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)
Why is the sun yellow? the Earth -12.01084628672844 Why 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)
Why is the sun yellow? a long time -12.013871837674603 Why 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)
Why is the sun yellow? RedHat -12.024440844395354 Why 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)
Why is the sun yellow? no greater delight -12.064573198553328 Why 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)
Why is the sun yellow? Fusion energy -12.06573136075471 Why 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)
Why is the sun yellow? the Skopjeans -12.07649080599119 Why 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)
Why is the sun yellow? ?Showtime? -12.078502116368757 Why 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)
Why is the sun yellow? climate change -12.08263042247899 Why 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)
Why is the sun yellow? ?We?ll -12.092604929414236 Why 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)
Why is the sun yellow? 4194326 uninstall -12.097910153225405 Why 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)
Why is the sun yellow? Earl -12.116890566622759 Why 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)
Why is the sun yellow? ice ages -12.125136464881832 Why 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)
Why is the sun yellow? efforts -12.13497606841879 Why 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)
Why is the sun yellow? Saturn -12.135195703233249 Why 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)
Why is the sun yellow? solar activity -12.145645714386484 Why 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)
Why is the sun yellow? gas -12.182907181227579 Why 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)
Why is the sun yellow? Baltimore -12.193453008020366 Why 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)
Why is the sun yellow? a rough calendar -12.195472439770548 Why 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)
Why is the sun yellow? sunscreen -12.196152204314393 Why 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)
Why is the sun yellow? grammar -12.200526604633728 Why 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)
Why is the sun yellow? fuel -12.20166948403013 Why 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)
Why is the sun yellow? MODERATION -12.210317328577636 Why 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)
Why is the sun yellow? The Oakley terroir -12.22635736552401 Why 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)
Why is the sun yellow? gardening -12.235661187980869 Why 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)
Why is the sun yellow? players -12.246643679707391 Why 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)
Why is the sun yellow? climate changes -12.250627999481434 Why 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)
Why is the sun yellow? acrylic paint -12.25338328328648 Why 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)
Why is the sun yellow? utility -12.273344160079873 Why 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)
Why is the sun yellow? sport -12.279284763802183 Why 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)
Why is the sun yellow? global warming -12.283407886067623 Why 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)
Why is the sun yellow? Perihelion -12.286937755528013 Why 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)
Why is the sun yellow? photons -12.288108749478925 Why 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)
Why is the sun yellow? Skin moisture -12.293213756049923 Why 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)
Why is the sun yellow? A reader -12.296710974365645 Why 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)
Why is the sun yellow? Peace -12.298414297018416 Why 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)
Why is the sun yellow? better lighting -12.301410743357483 Why 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)
Why is the sun yellow? choice -12.312131829484956 Why 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)
Why is the sun yellow? energy -12.320479621107078 Why 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)
Why is the sun yellow? Allah -12.335362439546412 Why 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)
Why is the sun yellow? gold -12.345154236901493 Why 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)
Why is the sun yellow? UK -12.358564678802141 Why 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)
Why is the sun yellow? Blue light -12.35956364754124 Why 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)
Why is the sun yellow? god -12.388349740614785 Why 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)
Why is the sun yellow? vandalism -12.39828902574718 Why 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)
Why is the sun yellow? ingredients -12.403938643686836 Why 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)
Why is the sun yellow? defense Fish -12.408418335027859 Why 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)
Why is the sun yellow? Gold -12.42763974016666 Why 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)
Why is the sun yellow? Dennis Erickson -12.43587184889833 Why 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)
Why is the sun yellow? Bingo -12.45204185814688 Why 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)
Why is the sun yellow? Re -12.471399080403165 Why 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)
Why is the sun yellow? 450Mhz -12.482561592069775 Why 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)
Why is the sun yellow? Shawn Marion -12.499552560497975 Why 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)
Why is the sun yellow? Superman -12.509245600089447 Why 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)
Why is the sun yellow? production -12.516161096929805 Why 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)
Why is the sun yellow? home appliances -12.524640242604077 Why 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)
Why is the sun yellow? Gordon Brown -12.541638802728137 Why 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)
Why is the sun yellow? changes -12.559556562280832 Why 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)
Why is the sun yellow? wrinkles -12.562958987785912 Why 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)
Why is the sun yellow? Oklahoma -12.57082235197819 Why 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)
Why is the sun yellow? Johnny Cash -12.577691679852405 Why 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)
Why is the sun yellow? London -12.578084363592708 Why 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)
Why is the sun yellow? Fos -12.609726149942968 Why 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)
Why is the sun yellow? Sunday -12.61339644555189 Why 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)
Why is the sun yellow? two -12.6151912387077 Why 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)
Why is the sun yellow? life -12.616175213328479 Why 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)
Why is the sun yellow? solar energy -12.619217796223998 Why 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)
Why is the sun yellow? the Wanted -12.62105820180131 Why 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)
Why is the sun yellow? bad contracts -12.63206079581206 Why 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)
Why is the sun yellow? Colbie -12.635533025991487 Why 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)
Why is the sun yellow? Lindsay Lohan -12.64240035026294 Why 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)
Why is the sun yellow? Sodam Yat -12.649535167299492 Why 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)
Why is the sun yellow? room -12.65167159121908 Why 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)
Why is the sun yellow? 50 % -12.653710308188975 Why 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)
Why is the sun yellow? SunOS 3.2 -12.658516952086677 Why 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)
Why is the sun yellow? climate -12.667233705125554 Why 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)
Why is the sun yellow? recent warming -12.669132530851517 Why 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)
Why is the sun yellow? Vitamin D -12.671123902852383 Why 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)
Why is the sun yellow? bingo games -12.675972833149796 Why 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)
Why is the sun yellow? blue light -12.682067470010688 Why 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)
Why is the sun yellow? zone -12.697193570287588 Why 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)
Why is the sun yellow? The Secret -12.700973195666556 Why 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)
Why is the sun yellow? injuries -12.717763415339368 Why 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)
Why is the sun yellow? spot -12.722053724420288 Why 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)
Why is the sun yellow? the Brethren -12.723063402603447 Why 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)
Why is the sun yellow? recent changes -12.726307522312585 Why 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)
Why is the sun yellow? a Phoenix Suns player -12.730440339073454 Why 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)
Why is the sun yellow? topography -12.743626288607572 Why 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)
Why is the sun yellow? today?s climate -12.747006503618875 Why 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)
Why is the sun yellow? scientists -12.759588187461045 Why 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)
Why is the sun yellow? 10 percent -12.766394299827219 Why 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)
Why is the sun yellow? such symptoms -12.766394299827219 Why 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)
Why is the sun yellow? 90 percent -12.766394299827219 Why 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)
Why is the sun yellow? an AP story -12.775887161328788 Why 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)
Why is the sun yellow? full swing and life -12.78176664381753 Why 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)
Why is the sun yellow? pieces -12.79347676351153 Why 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)
Why is the sun yellow? skin cancer -12.795637388106726 Why 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)
Why is the sun yellow? a bunch -12.799993804687247 Why 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)
Why is the sun yellow? different skin reactions -12.804181495079943 Why 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)
Why is the sun yellow? two astronomers -12.806383974245398 Why 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)
Why is the sun yellow? any significant amount -12.808448839389408 Why 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)
Why is the sun yellow? surface features -12.810668715032252 Why 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)
Why is the sun yellow? QB Dwight Dasher -12.812171487106408 Why 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)
Why is the sun yellow? depression -12.814205513338933 Why 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)
Why is the sun yellow? full force -12.818062583365794 Why 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)
Why is the sun yellow? each other -12.827163676173639 Why 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)
Why is the sun yellow? future affairs -12.833657877674533 Why 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)
Why is the sun yellow? free agent -12.83754789645176 Why 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)
Why is the sun yellow? much more -12.838963048783407 Why 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)
Why is the sun yellow? four men -12.839484804614909 Why 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)
Why is the sun yellow? Weezer -12.839653387512001 Why 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)
Why is the sun yellow? a story -12.841551092561737 Why 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)
Why is the sun yellow? freckles -12.844897276667673 Why 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)
Why is the sun yellow? drought -12.845928733049226 Why 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)
Why is the sun yellow? four/3 odds -12.850918790388922 Why 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)
Why is the sun yellow? a significant part -12.851282565457996 Why 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)
Why is the sun yellow? Mercury -12.85884283230214 Why 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)
Why is the sun yellow? light -12.860127678320513 Why 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)
Why is the sun yellow? a TV campaign -12.876293476818168 Why 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)
Why is the sun yellow? 10 % -12.877867777454606 Why 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)
Why is the sun yellow? such wonders -12.884876753238418 Why 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)
Why is the sun yellow? Midlands football -12.8901872414269 Why 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)
Why is the sun yellow? same management ,journalists -12.894369667442282 Why 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)
Why is the sun yellow? The Earth -12.896253729218841 Why 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)
Why is the sun yellow? premature aging -12.899580501902788 Why 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)
Why is the sun yellow? reception -12.900013185463234 Why 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)
Why is the sun yellow? Summersgill -12.900856887394593 Why 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)
Why is the sun yellow? wallflowers -12.90201264986075 Why 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)
Why is the sun yellow? epoxy -12.9022362746837 Why 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)
Why is the sun yellow? history -12.904095823258935 Why 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)
Why is the sun yellow? Phoenix -12.908516807966713 Why 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)
Why is the sun yellow? millions -12.909698909512443 Why 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)
Why is the sun yellow? A typical scenario -12.910807918149516 Why 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)
Why is the sun yellow? a 7-man rotation -12.91293779267449 Why 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)
Why is the sun yellow? plants and flowers -12.916656827741908 Why 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)
Why is the sun yellow? a vague brightness -12.9171405688567 Why 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)
Why is the sun yellow? Earth -12.918072018889836 Why 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)
Why is the sun yellow? non-melanoma skin cancers -12.918178448358404 Why 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)
Why is the sun yellow? noon -12.923051905882643 Why 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)
Why is the sun yellow? cholesterol -12.925758247865355 Why 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)
Why is the sun yellow? such a deal -12.930621784207897 Why 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)
Why is the sun yellow? a corner -12.931474322409148 Why 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)
Why is the sun yellow? telescopic observers -12.93262876840478 Why 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)
Why is the sun yellow? recent global climate changes -12.93627384211652 Why 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)
Why is the sun yellow? more carp movement -12.93641894262716 Why 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)
Why is the sun yellow? weather -12.937928622434047 Why 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)
Why is the sun yellow? 99.86 -12.941904256922173 Why 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)
Why is the sun yellow? the Earths -12.944718624890566 Why 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)
Why is the sun yellow? pressure -12.945602811291662 Why 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)
Why is the sun yellow? early 20th century -12.945653111133423 Why 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)
Why is the sun yellow? several trips -12.949125341312849 Why 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)
Why is the sun yellow? SPARC processors -12.950566083151589 Why 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)
Why is the sun yellow? tubing -12.953463406370568 Why 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)
Why is the sun yellow? emotions -12.956172330280426 Why 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)
Why is the sun yellow? media veterans -12.957967310728405 Why 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)
Why is the sun yellow? a great many -12.965989661870118 Why 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)
Why is the sun yellow? a copper kettle -12.966614142303378 Why 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)
Why is the sun yellow? more like 99.9 % -12.967996646067002 Why 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)
Why is the sun yellow? the Archaeological Survey -12.969243683523976 Why 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)
Why is the sun yellow? The Eagles -12.970460895673725 Why 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)
Why is the sun yellow? PartyPoker -12.972179072082385 Why 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)
Why is the sun yellow? Steve Nash -12.977107097828277 Why 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)
Why is the sun yellow? leadership -12.978166180596443 Why 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)
Why is the sun yellow? familiar elements -12.978342458377616 Why 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)
Why is the sun yellow? pleasure -12.98065796361069 Why 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)
Why is the sun yellow? two windows -12.993438406132695 Why 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)
Why is the sun yellow? will , honesty and focus -12.993816664361782 Why 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)
Why is the sun yellow? magnetic storms -13.004894390541319 Why 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)
Why is the sun yellow? a business -13.007785561139299 Why 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)
Why is the sun yellow? Hakim Warrick -13.012454300290159 Why 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)
Why is the sun yellow? Middle Earth -13.016631094488098 Why 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)
Why is the sun yellow? Red -13.017175753292612 Why 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)
Why is the sun yellow? front -13.017309782535637 Why 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)
Why is the sun yellow? god yellow star -13.019280142460438 Why 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)
Why is the sun yellow? Various members -13.030586460700492 Why 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)
Why is the sun yellow? the Netbeans IDE -13.034500329876701 Why 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)
Why is the sun yellow? solar flare -13.038644292095414 Why 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)
Why is the sun yellow? the Bridge deck -13.044219556847064 Why 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)
Why is the sun yellow? Doomsaying pundits -13.046074607546277 Why 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)
Why is the sun yellow? narration -13.046302675172337 Why 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)
Why is the sun yellow? geological reckoning -13.048657470306736 Why 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)
Why is the sun yellow? four stories -13.049142887233907 Why 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)
Why is the sun yellow? the United States -13.051921794137645 Why 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)
Why is the sun yellow? Scorpio -13.053528923821052 Why 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)
Why is the sun yellow? the Phoenix metropolitan area -13.05649537592726 Why 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)
Why is the sun yellow? Capricorn -13.0568009251665 Why 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)
Why is the sun yellow? short periods -13.056997505208594 Why 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)
Why is the sun yellow? town -13.058341341998496 Why 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)
Why is the sun yellow? the Principalities -13.059567144761827 Why 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)
Why is the sun yellow? 6.02 times -13.061521654956145 Why 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)
Why is the sun yellow? a hypocrite -13.064876479006617 Why 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)
Why is the sun yellow? a lav tank -13.066635966468656 Why 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)
Why is the sun yellow? the magnitude and direction -13.070461748512868 Why 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)
Why is the sun yellow? warm but temporary periods -13.070563586151579 Why 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)
Why is the sun yellow? millions of?years -13.071144645733025 Why 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)
Why is the sun yellow? good days -13.073653880294916 Why 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)
Why is the sun yellow? skin cancer worldwide -13.074299192152306 Why 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)
Why is the sun yellow? OOXML. -13.079117729148654 Why 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)
Why is the sun yellow? one coach -13.079405555567135 Why 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)
Why is the sun yellow? a supernova 20,000 light years -13.079411213555229 Why 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)
Why is the sun yellow? Japanese prints -13.088122361308308 Why 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)
Why is the sun yellow? G Steve Nash -13.091545764596976 Why 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)
Why is the sun yellow? gases -13.091858315811091 Why 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)
Why is the sun yellow? a warning -13.095056591688918 Why 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)
Why is the sun yellow? Bulgarian yoghurt -13.099051905565295 Why 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)
Why is the sun yellow? Cancer -13.099762378731317 Why 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)
Why is the sun yellow? blotchy pigmentation -13.10215615951702 Why 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)
Why is the sun yellow? 99.86 percent -13.110636664629533 Why 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)
Why is the sun yellow? a fact -13.114325261531246 Why 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)
Why is the sun yellow? The Lobos -13.119890294741666 Why 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)
Why is the sun yellow? skin cells -13.131920356310374 Why 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)
Why is the sun yellow? Meursault -13.133128285491148 Why 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)
Why is the sun yellow? Grant Hill -13.133555577990222 Why 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)
Why is the sun yellow? infinite knowledge -13.133961267657822 Why 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)
Why is the sun yellow? a geocentric chart -13.136896798771957 Why 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)
Why is the sun yellow? sun damage -13.137872699848234 Why 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)
Why is the sun yellow? 99.85 % -13.150370177053118 Why 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)
Why is the sun yellow? 99.86 % -13.150370177053118 Why 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)
Why is the sun yellow? harmful chemicals -13.16320435593733 Why 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)
Why is the sun yellow? 25 CDs -13.165608757924682 Why 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)
Why is the sun yellow? 99.9 % -13.1682543974205 Why 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)
Why is the sun yellow? a light source -13.170392593688337 Why 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)
Why is the sun yellow? cataracts -13.170909970668546 Why 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)
Why is the sun yellow? moral lessons -13.17405852824953 Why 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)
Why is the sun yellow? 99.8 percent -13.1760105428427 Why 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)
Why is the sun yellow? 99.8 % -13.181517351543834 Why 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)
Why is the sun yellow? materials -13.181772533871833 Why 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)
Why is the sun yellow? huge rivers -13.185184115801835 Why 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)
Why is the sun yellow? a very light green -13.187663588501449 Why 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)
Why is the sun yellow? seven colors -13.202536503791661 Why 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)
Why is the sun yellow? seven different colours -13.205005421203975 Why 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)
Why is the sun yellow? T.J. Simpson -13.216360775687217 Why 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)
Why is the sun yellow? 99.9 percent -13.23128760476078 Why 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)
Why is the sun yellow? visible light -13.243164510542503 Why 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)
Why is the sun yellow? similar chemical constituents -13.246006206343113 Why 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)
Why is the sun yellow? occupants -13.259699198663828 Why 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)
Why is the sun yellow? each reed -13.259761095074541 Why 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)
Why is the sun yellow? the Spring Lake Outdoor Club -13.261970480906012 Why 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)
Why is the sun yellow? considerable interesting material -13.267226943480905 Why 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)
Why is the sun yellow? four groups -13.282689609467399 Why 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)
Why is the sun yellow? Iron Composer -13.286641991822574 Why 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)
Why is the sun yellow? one million -13.287628062344858 Why 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)
Why is the sun yellow? a nuclear fusion reactor -13.295387235262893 Why 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)
Why is the sun yellow? vision work -13.301914266375373 Why 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)
Why is the sun yellow? a kid -13.31248885393989 Why 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)
Why is the sun yellow? invisible ultraviolet rays -13.321227567204888 Why 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)
Why is the sun yellow? 99 percent -13.326140539223054 Why 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)
Why is the sun yellow? the center -13.359525503295295 Why 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)
Why is the sun yellow? a blood red orange -13.36032076160636 Why 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)
Why is the sun yellow? a minimal number -13.36412152809243 Why 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)
Why is the sun yellow? freezes -13.375125644589652 Why 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)
Why is the sun yellow? leather -13.382117027405114 Why 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)
Why is the sun yellow? a morning sun -13.386782101725771 Why 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)
Why is the sun yellow? one or more loops -13.388228019530818 Why 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)
Why is the sun yellow? UVA and UVB -13.406994754859449 Why 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)
Why is the sun yellow? a very powerful wind -13.41750102825151 Why 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)
Why is the sun yellow? a view -13.418857079552751 Why 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)
Why is the sun yellow? competitive teams -13.425299754570274 Why 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)
Why is the sun yellow? red -13.425751398524225 Why 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)
Why is the sun yellow? The program -13.466411461804986 Why 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)
Why is the sun yellow? two decillion grams -13.468690036076506 Why 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)
Why is the sun yellow? more GLA -13.484764658801119 Why 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)
Why is the sun yellow? the independent power source -13.486380493932497 Why 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)
Why is the sun yellow? a letter -13.49167914601649 Why 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)
Why is the sun yellow? the fog -13.501922555208338 Why 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)
Why is the sun yellow? native C interfaces -13.502448597632231 Why 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)
Why is the sun yellow? PDT -13.503806229978748 Why 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)
Why is the sun yellow? a statue -13.504708957744812 Why 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)
Why is the sun yellow? a Skull -13.51221430684961 Why 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)
Why is the sun yellow? positive development -13.517363025615644 Why 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)
Why is the sun yellow? significant safety concerns -13.518507412988104 Why 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)
Why is the sun yellow? TDateTime -13.529927553383178 Why 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)
Why is the sun yellow? a silvery gray -13.540578749968997 Why 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)
Why is the sun yellow? the system -13.541146295726715 Why 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)
Why is the sun yellow? the Ptolemaic system -13.585059622953306 Why 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)
Why is the sun yellow? creatures -13.59590180270923 Why 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)
Why is the sun yellow? a gas fireplace -13.603023540091662 Why 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)
Why is the sun yellow? misuse -13.613393510105187 Why 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)
Why is the sun yellow? a rainbow -13.63771086298613 Why 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)
Why is the sun yellow? SunOS 4 -13.650337389776787 Why 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)
Why is the sun yellow? dark amber -13.6517934880856 Why 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)
Why is the sun yellow? night -13.65444604728889 Why 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)
Why is the sun yellow? two pools -13.658559394222825 Why 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)
Why is the sun yellow? sunrise -13.664096427990955 Why 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)
Why is the sun yellow? the night -13.672891755963542 Why 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)
Why is the sun yellow? eye strains -13.68870333681183 Why 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)
Why is the sun yellow? a smoggy or hazy sky -13.698944408585382 Why 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)
Why is the sun yellow? a buffet and BBQ set-up -13.714134587149456 Why 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)
Why is the sun yellow? cities -13.731386674271358 Why 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)
Why is the sun yellow? a catalyst -13.737212709923902 Why 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)
Why is the sun yellow? Microdermabrasion -13.744154668680318 Why 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)
Why is the sun yellow? UPDATE -13.769868433617997 Why 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)
Why is the sun yellow? Romney and Huntsman -13.773821070657801 Why 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)
Why is the sun yellow? a carrying case -13.7824592116424 Why 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)
Why is the sun yellow? non-UTF-8 characters -13.813609933027802 Why 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)
Why is the sun yellow? on-board computers -13.83776309553724 Why 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)
Why is the sun yellow? five radiant tracks -13.880796322990081 Why 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)
Why is the sun yellow? ?Lasers -13.893955729475856 Why 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)
Why is the sun yellow? several factual errors and implications -13.901788600558856 Why 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)
Why is the sun yellow? a laser -13.940999826966383 Why 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)
Why is the sun yellow? two errors -13.993009916894609 Why 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)
Why is the sun yellow? IPLs -14.005576584370946 Why 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)
Why is the sun yellow? UVA radiation -14.02218843704686 Why 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)
Why is the sun yellow? Falmer -14.028841991496403 Why 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)
Why is the sun yellow? a national distributor -14.038779339868997 Why 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)
Why is the sun yellow? the ND protocol -14.039909028358933 Why 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)
Why is the sun yellow? comments -14.05382811111537 Why 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)
Why is the sun yellow? 4 Heat Sun God -14.070493543446078 Why 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)
Why is the sun yellow? 2-4 months -14.10464511851538 Why 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)
Why is the sun yellow? Vehicles -14.12498615448045 Why 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)
Why is the sun yellow? Dermafile ? Exfoliation -14.137161396408715 Why 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)
Why is the sun yellow? the blond nut -14.143623346451282 Why 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)
Why is the sun yellow? 4E , divine -14.162514656737867 Why 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)
Why is the sun yellow? particular those -14.178817989331415 Why 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)
Why is the sun yellow? The story -14.182036187029869 Why 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)
Why is the sun yellow? a dermatologist -14.187305524073055 Why 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)
Why is the sun yellow? editors -14.191042410079582 Why 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)
Why is the sun yellow? summer months -14.214985787620558 Why 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)
Why is the sun yellow? care -14.229937612549383 Why 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)
Why is the sun yellow? Resurface -14.237349055056022 Why 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)
Why is the sun yellow? the thinker -14.265052967814762 Why 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)
Why is the sun yellow? an innovative way -14.273899383362705 Why 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)
Why is the sun yellow? Cosmetic procedures -14.278633065164492 Why 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)
Why is the sun yellow? Make eye contact -14.305010068541137 Why 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)
Why is the sun yellow? less costly ray -14.323513625646088 Why 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)
Why is the sun yellow? Chemical peeling -14.330800747959023 Why 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)
Why is the sun yellow? 10 & 2 -14.37670884892037 Why 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)
Why is the sun yellow? Bell -14.379138685702083 Why 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)
Why is the sun yellow? Q-switched lasers -14.391889902165811 Why 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)
Why is the sun yellow? evens -14.395446450821709 Why 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)
Why is the sun yellow? 99.8 percent of the total material -14.404408640698858 Why 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)
Why is the sun yellow? more than a million Earths -14.405424793646318 Why 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)
Why is the sun yellow? The fill flash -14.432936261788447 Why 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)
Why is the sun yellow? percent of all the mass in our solar system -14.484382295470567 Why 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)
Why is the sun yellow? early spring -14.486349332916014 Why 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)
Why is the sun yellow? A peel -14.487224323438904 Why 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)
Why is the sun yellow? the penguins -14.487870786815026 Why 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)
Why is the sun yellow? A power washer -14.528414840379682 Why 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)
Why is the sun yellow? as many as 5,000 former mortgagors -14.532327658200575 Why 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)
Why is the sun yellow? Tom -14.548239426797238 Why 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)
Why is the sun yellow? 0 / 5 Fraxel laser treatment -14.550011597031686 Why 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)
Why is the sun yellow? out there -14.574120041017105 Why 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)
Why is the sun yellow? whats -14.57826813821212 Why 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)
Why is the sun yellow? laser facials -14.589861282798982 Why 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)
Why is the sun yellow? the hills -14.593037922806287 Why 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)
Why is the sun yellow? pages -14.596934701650248 Why 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)
Why is the sun yellow? out -14.659744224133753 Why 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)
Why is the sun yellow? the teams -14.675660236642091 Why 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)
Why is the sun yellow? Removal -14.706774887145055 Why 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)
Why is the sun yellow? the soap -14.75511307524734 Why 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)
Why is the sun yellow? pictures free -14.764561860607172 Why 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)
Why is the sun yellow? the dog -14.76457229811541 Why 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)
Why is the sun yellow? the clouds -14.786478664260173 Why 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)
Why is the sun yellow? the reality -14.804265347782707 Why 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)
Why is the sun yellow? Mayfield fund -14.824048519446002 Why 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)
Why is the sun yellow? the sun -14.847478790268863 Why 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)
Why is the sun yellow? important safeguards -14.88392588101213 Why 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)
Why is the sun yellow? 99.85 % of the mass -14.885691197081222 Why 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)
Why is the sun yellow? Apr 07 -14.916959584033648 Why 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)
Why is the sun yellow? 99.8 % of all matter -14.942807573831868 Why 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)
Why is the sun yellow? about 98 % of the mass -14.942807573831868 Why 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)
Why is the sun yellow? 99 % of the matter -14.942807573831868 Why 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)
Why is the sun yellow? the sky -14.949412825648954 Why 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)
Why is the sun yellow? more than 99.8 % of the mass -15.02863337619685 Why 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)
Why is the sun yellow? 99.8 % of the mass of the solar system -15.02863337619685 Why 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)
Why is the sun yellow? the cimi or sign -15.030557892563545 Why 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)
Why is the sun yellow? the paper -15.047446582271334 Why 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)
Why is the sun yellow? the oven -15.100516187367731 Why 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)
Why is the sun yellow? the ocean -15.104134778226143 Why 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)
Why is the sun yellow? the direct channels -15.149621014868195 Why 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)
Why is the sun yellow? the shorts -15.220796297931754 Why 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)
Why is the sun yellow? the encumbrances -15.253447048263432 Why 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)
Why is the sun yellow? the sands -15.272967139405495 Why 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)
Why is the sun yellow? the leaves -15.295655280926228 Why 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)
Why is the sun yellow? the townsite -15.299489941675247 Why 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)
Why is the sun yellow? the sky change -15.345764750150689 Why 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)
Why is the sun yellow? the lake -15.353364535121631 Why 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)
Why is the sun yellow? the private swimming pool -15.36163574124196 Why 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)
Why is the sun yellow? the tea -15.390701857085082 Why 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)
Why is the sun yellow? the coral and fish -15.390888604852972 Why 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)
Why is the sun yellow? the rainbow -15.4239663538815 Why 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)
Why is the sun yellow? the planet -15.441166788176613 Why 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)
Why is the sun yellow? the solid materials -15.462826507615052 Why 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)
Why is the sun yellow? the scenery -15.46906044006267 Why 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)
Why is the sun yellow? the decoration -15.494702214610534 Why 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)
Why is the sun yellow? the landscape -15.499282256014007 Why 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)
Why is the sun yellow? the story -15.527244799500082 Why 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)
Why is the sun yellow? the door -15.546499822927892 Why 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)
Why is the sun yellow? The abrasion -15.582324520510372 Why 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)
Why is the sun yellow? the day -15.585808413692988 Why 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)
Why is the sun yellow? the mystical runes -15.606946151127968 Why 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)
Why is the sun yellow? the desiccated -15.609499457985342 Why 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)
Why is the sun yellow? the canyon walls -15.612002619178298 Why 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)
Why is the sun yellow? The oil -15.752399653950985 Why 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)
Why is the sun yellow? the water -15.821186979324555 Why 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)
Why is the sun yellow? the room -15.841588098188508 Why 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)
Why is the sun yellow? the practice green -15.852849536898958 Why 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)
Why is the sun yellow? the flowers -15.861405320511519 Why 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)
Why is the sun yellow? the new research -15.951924589724843 Why 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)
Why is the sun yellow? a process -16.16661348191807 Why 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)
Why is the sun yellow? the bulk of solar system material -16.173437111901148 Why 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)
Why is the sun yellow? the horizon -16.445411714822548 Why 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)
Why is the sun yellow? the walls -16.451892418434618 Why 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)
Why is the sun yellow? the mountains -16.465812833686503 Why 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)
Why is the sun yellow? the morning sky -16.618965168453247 Why 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)
Why is the sun yellow? the sky pink -16.936962954290458 Why 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)
In what month is it held? God -13.533145011258897 In 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)
In what month is it held? Business Objects -13.535622046533254 In 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)
In what month is it held? NYC -13.593232696043605 In 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)
In what month is it held? Hold It Up -13.617112095291068 In 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)
In what month is it held? Hold It Against Me -13.656096325958966 In 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)
In what month is it held? business -13.68712266989418 In 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)
In what month is it held? Hold On (live in Japan) -13.688583184848882 In 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)
In what month is it held? What The Future Holds -13.688583184848882 In 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)
In what month is it held? Hold On -13.716072065448042 In 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)
In what month is it held? Holding On (When Love Is Gone) -13.739633963104465 In 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)
In what month is it held? Hold It Against Me (The Alias Radio Edit) -13.760054274406698 In 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)
In what month is it held? Hold It Against Me (Tracy Young Ferosh radio remix) -13.777922046796151 In 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)
In what month is it held? the FederalRegister -13.786732180081252 In 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)
In what month is it held? Washington -13.870783265865162 In 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)
In what month is it held? 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 -13.887113989176147 In 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)
In what month is it held? an upcoming edition -13.916903339681642 In 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)
In what month is it held? VCT shares -13.94600639654465 In 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)
In what month is it held? a CTS operation -13.94624998216944 In 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)
In what month is it held? two -13.981414386739988 In 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)
In what month is it held? honor -14.042937540926586 In 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)
In what month is it held? expertise internet -14.05903809219672 In 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)
In what month is it held? half price -14.089985037853461 In 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)
In what month is it held? a lifetime kind -14.090235909016366 In 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)
In what month is it held? Tandem Computer -14.15542579732347 In 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)
In what month is it held? an executive -14.158560860437285 In 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)
In what month is it held? Europe -14.284025485787714 In 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)
In what month is it held? cooperation -14.3041483603472 In 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)
In what month is it held? business and management experience -14.351073613732158 In 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)
In what month is it held? May 16 -14.382900143376515 In 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)
In what month is it held? PRESIDENT Robert Mugabe -14.451602933420212 In 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)
In what month is it held? experience -14.485045857051102 In 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)
In what month is it held? 11th -14.571279789670013 In 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)
In what month is it held? stress -14.600796053436694 In 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)
In what month is it held? South Korea -14.679757624735224 In 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)
In what month is it held? the Republican debates -14.693528697005398 In 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)
In what month is it held? a Redskins uniform?HTTR! -14.742974354476083 In 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)
In what month is it held? the President -14.748439189917889 In 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)
In what month is it held? November?s general election -14.818066631785639 In 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)
In what month is it held? town -14.845020693628086 In 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)
In what month is it held? 1988 -14.865813277170098 In 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)
In what month is it held? New York -14.92940611757019 In 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)
In what month is it held? Kawasaki -14.979671658319416 In 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)
In what month is it held? a different direction -14.991141525109956 In 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)
In what month is it held? veggies tomorrow -15.003711609826544 In 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)
In what month is it held? data -15.010296443904847 In 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)
In what month is it held? The Contest -15.040913040993214 In 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)
In what month is it held? 08sep 2010.additional -15.070833573415463 In 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)
In what month is it held? the SADC -15.166504596182037 In 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)
In what month is it held? The Match -15.18736765756246 In 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)
In what month is it held? six-party talks -15.251815300196366 In 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)
In what month is it held? John Stott -15.256007825335127 In 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)
In what month is it held? the Executive Committee -15.316595511580227 In 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)
In what month is it held? innovative 30-month program -15.353399274973137 In 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)
In what month is it held? new and innovative 30-month program -15.353399274973137 In 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)
In what month is it held? cloud computing -15.385365709551595 In 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)
In what month is it held? free gay masturbation porn video -15.42188571021813 In 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)
In what month is it held? the years -15.475629968554943 In 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)
In what month is it held? Affiliated College -15.492738443493721 In 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)
In what month is it held? nice elevated plot -15.528124695349822 In 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)
In what month is it held? the Kirkwall Teaching Scroll -15.58852603985741 In 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)
In what month is it held? Five such conferences -15.599136382075159 In 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)
In what month is it held? New York City -15.634300234809563 In 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)
In what month is it held? Palo Alto -15.634300234809563 In 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)
In what month is it held? collection of INTERNET search engine -15.639283633204396 In 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)
In what month is it held? Beed based college -15.639283633204396 In 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)
In what month is it held? tough game of football -15.639283633204396 In 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)
In what month is it held? SEASON yanno -15.639283633204396 In 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)
In what month is it held? newly developed boarding school -15.639283633204396 In 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)
In what month is it held? long tough project -15.639283633204396 In 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)
In what month is it held? growing independentnon-denominational college -15.639283633204396 In 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)
In what month is it held? blast Kia -15.639283633204396 In 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)
In what month is it held? part of Mahatma Gandhi Mission -15.639283633204396 In 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)
In what month is it held? six -15.652337977590705 In 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)
In what month is it held? a meteorological phenomena -15.655332850486761 In 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)
In what month is it held? Thirteen PRO Institutes -15.661030220686344 In 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)
In what month is it held? follow-up workshops -15.675098680663968 In 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)
In what month is it held? web-based project -15.69349737175576 In 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)
In what month is it held? spite -15.714355894847577 In 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)
In what month is it held? the north -15.719168785956592 In 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)
In what month is it held? voluntary society -15.722156289170783 In 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)
In what month is it held? Two Conferences -15.722382170825597 In 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)
In what month is it held? 10 % -15.726382124355109 In 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)
In what month is it held? undergraduate college -15.727639977115663 In 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)
In what month is it held? Only one public hearing -15.730570443627327 In 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)
In what month is it held? the Business office -15.731344512592345 In 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)
In what month is it held? the country -15.794780960333945 In 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)
In what month is it held? 173 -15.79646220554977 In 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)
In what month is it held? Public workshops -15.819386800064795 In 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)
In what month is it held? 1989 and nine conferences -15.838050303027774 In 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)
In what month is it held? June 4 -15.841670239513709 In 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)
In what month is it held? twenty sessions -15.84668499146892 In 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)
In what month is it held? MAPnet -15.853497812950868 In 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)
In what month is it held? A written contract -15.856373376911588 In 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)
In what month is it held? general public -15.903637136693403 In 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)
In what month is it held? 48 hours -15.909425240548462 In 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)
In what month is it held? New Orleans -15.951702047667833 In 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)
In what month is it held? 1928 -15.951880982520585 In 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)
In what month is it held? 1951 -16.012006448329576 In 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)
In what month is it held? 2 weeks -16.01442179333995 In 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)
In what month is it held? 1984 -16.06429929479849 In 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)
In what month is it held? a German refugee camp -16.131300230295892 In 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)
In what month is it held? the UAE -16.14580455444097 In 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)
In what month is it held? 2005 -16.156842216624078 In 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)
In what month is it held? 5-7 business days -16.162796841541542 In 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)
In what month is it held? bonus -16.190047818885308 In 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)
In what month is it held? 21 days -16.219838531531856 In 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)
In what month is it held? ten days -16.23700113501775 In 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)
In what month is it held? Aug. 23 -16.26030768337947 In 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)
In what month is it held? the Office -16.300806085989002 In 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)
In what month is it held? Mystic Music -16.31075590372947 In 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)
In what month is it held? a growing number -16.3121899203024 In 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)
In what month is it held? Mrs. Knight -16.31901839962967 In 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)
In what month is it held? relief -16.32559596094419 In 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)
In what month is it held? 4 business days -16.333588601550616 In 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)
In what month is it held? 14 days -16.33470550608957 In 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)
In what month is it held? 7 days -16.33470550608957 In 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)
In what month is it held? person -16.342097850931864 In 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)
In what month is it held? 72 hours -16.350734972757717 In 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)
In what month is it held? one business day -16.3565777641929 In 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)
In what month is it held? a positive impact -16.359541774783143 In 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)
In what month is it held? December 10 , -16.368816507923793 In 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)
In what month is it held? three years -16.37742737543 In 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)
In what month is it held? Teller Services -16.39340935447387 In 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)
In what month is it held? a power level -16.4151816877571 In 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)
In what month is it held? lengthy negotiations -16.432615359277584 In 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)
In what month is it held? 2 working days -16.437859399012424 In 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)
In what month is it held? Arkansas BioVentures -16.44234495184746 In 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)
In what month is it held? service -16.44315687625427 In 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)
In what month is it held? any objects -16.451186921263016 In 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)
In what month is it held? 4 working days -16.466153680061286 In 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)
In what month is it held? delay -16.49697203045737 In 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)
In what month is it held? four working days -16.498808402973093 In 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)
In what month is it held? project management -16.50327573658997 In 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)
In what month is it held? lipstick -16.505403390326943 In 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)
In what month is it held? gate -16.51519401480723 In 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)
In what month is it held? October 1 , 2010 -16.520029140110886 In 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)
In what month is it held? advantage -16.52447164334468 In 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)
In what month is it held? location -16.524913137976768 In 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)
In what month is it held? 24 hours -16.532844575596755 In 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)
In what month is it held? January 11 , 2010 -16.537157082211905 In 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)
In what month is it held? course -16.539763901130847 In 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)
In what month is it held? October 23 , 1929 -16.54080230590892 In 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)
In what month is it held? Draft and Publish -16.547732601145924 In 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)
In what month is it held? TOURISTS -16.548359900238 In 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)
In what month is it held? FY03 -16.556564577015138 In 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)
In what month is it held? a Muslim reaction -16.571045601087995 In 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)
In what month is it held? a few days -16.576743023989874 In 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)
In what month is it held? 24 hours time -16.58192297872207 In 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)
In what month is it held? August 23rd -16.59371087372819 In 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)
In what month is it held? August -16.59764615987644 In 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)
In what month is it held? a few minutes -16.599159398915717 In 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)
In what month is it held? an English -16.600616320330957 In 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)
In what month is it held? first day -16.60880682148327 In 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)
In what month is it held? program OEHR -16.6114735985107 In 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)
In what month is it held? sexual harassment -16.614745497039962 In 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)
In what month is it held? a second broad fortitude -16.620152445232094 In 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)
In what month is it held? a second click -16.628026467681014 In 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)
In what month is it held? inspection -16.630485916198687 In 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)
In what month is it held? Geneva -16.641856059656515 In 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)
In what month is it held? hold radio -16.66201743209613 In 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)
In what month is it held? Virginia -16.67987654922432 In 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)
In what month is it held? April 11 , 1912 -16.700798242633827 In 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)
In what month is it held? notice -16.70557814080595 In 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)
In what month is it held? market trends -16.747375143677885 In 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)
In what month is it held? payment -16.748019615081535 In 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)
In what month is it held? a income -16.75353686797223 In 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)
In what month is it held? bail -16.763264467706634 In 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)
In what month is it held? fruit -16.772841718653265 In 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)
In what month is it held? April -16.794524394588798 In 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)
In what month is it held? processing -16.79464940862934 In 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)
In what month is it held? 25-knot gusts -16.80567506264928 In 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)
In what month is it held? Tuesday -16.870868821812568 In 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)
In what month is it held? any time -16.892242676139404 In 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)
In what month is it held? a balloon -16.917665770371105 In 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)
In what month is it held? wake -16.968483362945125 In 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)
In what month is it held? John -17.042805762059988 In 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)
In what month is it held? items -17.061563287456764 In 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)
In what month is it held? November 27th -17.071714857454232 In 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)
In what month is it held? 7:01 p.m. tonight -17.096800076564453 In 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)
In what month is it held? March -17.113559965202672 In 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)
In what month is it held? riggers -17.137191065233385 In 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)
In what month is it held? Monday -17.139501074655634 In 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)
In what month is it held? Goals Divorce -17.139950160609907 In 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)
In what month is it held? new policy applications -17.147299069371883 In 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)
In what month is it held? Monday October 26th -17.18479493975838 In 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)
In what month is it held? Sunday -17.195284289005947 In 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)
In what month is it held? February -17.198768883963304 In 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)
In what month is it held? same date -17.215981069895676 In 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)
In what month is it held? Brooklyn -17.21660089165569 In 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)
In what month is it held? readers -17.226644777514544 In 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)
In what month is it held? March 2nd , 2009 Today -17.227661350400187 In 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)
In what month is it held? one to five days -17.2842499652002 In 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)
In what month is it held? 2002 -17.297869329130528 In 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)
In what month is it held? January 2nd -17.312544298951355 In 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)
In what month is it held? sight -17.33561419984505 In 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)
In what month is it held? suspicion -17.335992233813915 In 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)
In what month is it held? 3-7 days -17.337366402523084 In 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)
In what month is it held? life -17.33926172395097 In 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)
In what month is it held? March 5th -17.347584545650125 In 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)
In what month is it held? August 2006 -17.351449027622554 In 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)
In what month is it held? the go -17.72247272749324 In 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)
In what month is it held? December -17.857450313477703 In 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)
In what month is it held? the cardholder -18.0493410025571 In 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)
In what month is it held? the host -18.100410973250963 In 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)
In what month is it held? the Supreme Court in Minor -18.31905217245746 In 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)
What state is the Filenes store located in? Airport Plaza -9.771154428074743 What 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)
What is the population of Venezuela? 26 million -0.07274820127267301 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of over, 26 million) -> 26 million (5241ms)
What is the population of Venezuela? one million people -0.40985396721055123 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of approximately, one million people) -> one million people (5240ms)
What is the population of Venezuela? refugee and asylum seekers -0.5473965858666425 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, hosted a population of, refugee and asylum seekers) -> refugee and asylum seekers (5240ms)
What is the population of Venezuela? 29 million people -0.9513488924511337 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of about, 29 million people) -> 29 million people (5241ms)
What is the population of Venezuela? 23916810 -1.8228952319585927 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has an approximate population of, 23916810) -> 23916810 (5240ms)
What is the population of Venezuela? ignorant Greek -9.057734332076608 What 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)
What is the population of Venezuela? Such a large number -9.755721402034272 What 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)
What is the population of Venezuela? African Americans -9.776433098339671 What 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)
What is the population of Venezuela? One such population -9.807817973150849 What 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)
What is the population of Venezuela? 14 million -10.054405039324926 What 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)
What is the population of Venezuela? 10 million -10.078670587459012 What 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)
What is the population of Venezuela? 15 million -10.084625165860997 What 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)
What is the population of Venezuela? 22 million -10.122382091612842 What 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)
What is the population of Venezuela? 126 million -10.262404899645686 What 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)
What is the population of Venezuela? Central Europe -10.356205975075738 What 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)
What is the population of Venezuela? 23 million -10.366877619591229 What 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)
What is the population of Venezuela? 20 people -10.384933346036135 What 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)
What is the population of Venezuela? 21 inhabitants -10.419809289090265 What 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)
What is the population of Venezuela? 21 people -10.462441377566593 What 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)
What is the population of Venezuela? Clos 17th June 2005 -10.604407914660658 What 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)
What is the population of Venezuela? 379,066 -10.73139822406841 What 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)
What is the population of Venezuela? western Europe -10.734744876662134 What 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)
What is the population of Venezuela? 14.5 million -10.766273236837591 What 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)
What is the population of Venezuela? 28,781 -10.768989938397096 What 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)
What is the population of Venezuela? 65 million -10.799002057641948 What 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)
What is the population of Venezuela? ninety thousand people -10.804082658001644 What 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)
What is the population of Venezuela? 8.9 Millions -10.811777714113362 What 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)
What is the population of Venezuela? wild animals -10.822865058641856 What 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)
What is the population of Venezuela? Great Britain -10.828759475236582 What 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)
What is the population of Venezuela? Crete -10.833168954274774 What 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)
What is the population of Venezuela? Southeast Asia -10.839591404250733 What 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)
What is the population of Venezuela? 11,426,223 people -10.840891666138358 What 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)
What is the population of Venezuela? 11 million -10.86305538387872 What 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)
What is the population of Venezuela? Arab heritage -10.863698978033309 What 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)
What is the population of Venezuela? two million -10.880273220013091 What 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)
What is the population of Venezuela? hundreds of thousands -10.901070085479772 What 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)
What is the population of Venezuela? 63 millions -10.916992728365123 What 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)
What is the population of Venezuela? 14,805,000 -10.919649825306813 What 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)
What is the population of Venezuela? English speaking people -10.928709630630138 What 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)
What is the population of Venezuela? 14,805,358 people -10.932063661201404 What 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)
What is the population of Venezuela? 13.8 million -10.969592163458824 What 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)
What is the population of Venezuela? Western Europe -10.975119653680864 What 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)
What is the population of Venezuela? 9,568,000 -10.97660119194493 What 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)
What is the population of Venezuela? 17 million -10.991401494444274 What 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)
What is the population of Venezuela? nine million -11.009021956008649 What 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)
What is the population of Venezuela? 27,426 -11.012055405211436 What 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)
What is the population of Venezuela? Pelasgians -11.026344543465223 What 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)
What is the population of Venezuela? San Timoteo -11.028978734310574 What 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)
What is the population of Venezuela? south America -11.03740271590654 What 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)
What is the population of Venezuela? 60 million -11.04569337760566 What 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)
What is the population of Venezuela? 8.5 million -11.070809727260244 What 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)
What is the population of Venezuela? 15 million people -11.072651090853789 What 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)
What is the population of Venezuela? more than 14 million -11.075853421050578 What 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)
What is the population of Venezuela? 40 million -11.084855209074671 What 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)
What is the population of Venezuela? 63 million -11.090330544648795 What 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)
What is the population of Venezuela? Muslims -11.09676325842404 What 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)
What is the population of Venezuela? 21,680,974 -11.098384895008847 What 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)
What is the population of Venezuela? European France -11.100851251882592 What 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)
What is the population of Venezuela? 9.35 million -11.102550148050227 What 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)
What is the population of Venezuela? 9,263,872 -11.105375406021473 What 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)
What is the population of Venezuela? the USA -11.117297190722377 What 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)
What is the population of Venezuela? more than nine million people -11.123422520906624 What 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)
What is the population of Venezuela? 2,967,297 -11.141748219573698 What 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)
What is the population of Venezuela? South American Countries -11.152983382421821 What 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)
What is the population of Venezuela? more than 2,200,000 -11.171842223432543 What 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)
What is the population of Venezuela? 2,951,996 -11.173422597557712 What 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)
What is the population of Venezuela? 21,698,181 -11.199610828772068 What 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)
What is the population of Venezuela? Jews and Muslims -11.203203795817846 What 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)
What is the population of Venezuela? Vietnam -11.204951987037818 What 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)
What is the population of Venezuela? 22 million people -11.217945712391488 What 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)
What is the population of Venezuela? 8,400 -11.228619298574474 What 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)
What is the population of Venezuela? 21.7 million -11.229771996473985 What 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)
What is the population of Venezuela? 22,607,620 -11.238282263128184 What 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)
What is the population of Venezuela? 9 million -11.239600832098226 What 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)
What is the population of Venezuela? 21,698,181 inhabitants -11.246696965280677 What 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)
What is the population of Venezuela? 2.8 million -11.261334617033407 What 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)
What is the population of Venezuela? Asians today -11.29710256567582 What 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)
What is the population of Venezuela? eight million -11.314801678215405 What 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)
What is the population of Venezuela? 9 million people -11.316060666763818 What 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)
What is the population of Venezuela? a state -11.320343199872251 What 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)
What is the population of Venezuela? the Yellow Fever zone -11.322989865371426 What 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)
What is the population of Venezuela? 8.7 million -11.323202337301373 What 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)
What is the population of Venezuela? the U.S. State -11.325652684416198 What 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)
What is the population of Venezuela? less than eight million -11.326209187151548 What 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)
What is the population of Venezuela? 45,000 -11.333446499553858 What 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)
What is the population of Venezuela? 10M people -11.348904707396365 What 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)
What is the population of Venezuela? the European Union -11.3526374294199 What 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)
What is the population of Venezuela? 95,000 -11.357356618308826 What 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)
What is the population of Venezuela? 9 million ? -11.360735950117306 What 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)
What is the population of Venezuela? North America -11.389449289385395 What 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)
What is the population of Venezuela? top -11.392905622417492 What 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)
What is the population of Venezuela? less than 10 million -11.39714553338112 What 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)
What is the population of Venezuela? 10 million people -11.398786450001248 What 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)
What is the population of Venezuela? 21.7 million people -11.427500577268418 What 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)
What is the population of Venezuela? 8 millions -11.433697050084273 What 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)
What is the population of Venezuela? 11 million people -11.43845552529312 What 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)
What is the population of Venezuela? 9 Million -11.441197913960696 What 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)
What is the population of Venezuela? 8 million people -11.444889938960191 What 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)
What is the population of Venezuela? homeless dogs -11.44708979413985 What 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)
What is the population of Venezuela? 9.2 million people -11.450039883376252 What 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)
What is the population of Venezuela? any country -11.453253269701657 What 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)
What is the population of Venezuela? greater risk -11.453618132921921 What 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)
What is the population of Venezuela? 23 million citizens -11.471867943546695 What 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)
What is the population of Venezuela? 21 000 000 people -11.47268761452283 What 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)
What is the population of Venezuela? non-believers -11.491567752713198 What 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)
What is the population of Venezuela? 10,964,020 people -11.501945651771436 What 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)
What is the population of Venezuela? Pool A -11.55418711767862 What 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)
What is the population of Venezuela? 10,964,020 -11.568468189328414 What 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)
What is the population of Venezuela? 700,000 -11.571638216701384 What 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)
What is the population of Venezuela? least five million -11.57818926287387 What 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)
What is the population of Venezuela? Europe -11.598680353260916 What 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)
What is the population of Venezuela? ten million people -11.612298208146388 What 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)
What is the population of Venezuela? 54 million people -11.618572378272436 What 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)
What is the population of Venezuela? the UK -11.632804923348333 What 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)
What is the population of Venezuela? 11.082.752 -11.633691112008265 What 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)
What is the population of Venezuela? the US Congress -11.66574555767305 What 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)
What is the population of Venezuela? 11.3m -11.668899985677086 What 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)
What is the population of Venezuela? more than five million -11.67130878387108 What 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)
What is the population of Venezuela? 520,000 inhabitants -11.678263710924144 What 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)
What is the population of Venezuela? 11,000,000 -11.703383676938213 What 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)
What is the population of Venezuela? the United States -11.704654491405359 What 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)
What is the population of Venezuela? 805,000 people -11.716348821321501 What 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)
What is the population of Venezuela? Underprivileged viewers -11.722367196875542 What 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)
What is the population of Venezuela? 57 million people -11.730849529479533 What 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)
What is the population of Venezuela? 10.76 million -11.749883758054276 What 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)
What is the population of Venezuela? sixty million -11.754841821206936 What 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)
What is the population of Venezuela? five million Muslims -11.771846067526276 What 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)
What is the population of Venezuela? 10,623,835 -11.775162780764038 What 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)
What is the population of Venezuela? Northern South America -11.796502685564464 What 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)
What is the population of Venezuela? the ?Axis -11.80102781621656 What 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)
What is the population of Venezuela? 500,000 -11.802935627249905 What 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)
What is the population of Venezuela? the 60 meterband -11.81941057672891 What 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)
What is the population of Venezuela? French law ? -11.829509129595394 What 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)
What is the population of Venezuela? 600,000 -11.832671839809409 What 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)
What is the population of Venezuela? the Perija mountains -11.843857742809764 What 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)
What is the population of Venezuela? 64.3 million -11.852581123283043 What 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)
What is the population of Venezuela? 10m -11.85870462377608 What 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)
What is the population of Venezuela? Texas -11.866846000064072 What 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)
What is the population of Venezuela? 762,000 -11.86947253789662 What 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)
What is the population of Venezuela? 12 million people -11.87919869371327 What 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)
What is the population of Venezuela? the Troncal del Caribe -11.880148727223117 What 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)
What is the population of Venezuela? thirty millions -11.889571596110706 What 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)
What is the population of Venezuela? a mess -11.903795098379467 What 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)
What is the population of Venezuela? 200,000 -11.919780133003101 What 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)
What is the population of Venezuela? Bush?s agenda -11.931571727560655 What 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)
What is the population of Venezuela? more than 30 million -11.95173923160424 What 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)
What is the population of Venezuela? Maracaibo -11.953335280365428 What 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)
What is the population of Venezuela? 10,000 people -11.962806393742246 What 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)
What is the population of Venezuela? 400,000 -11.969295203892049 What 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)
What is the population of Venezuela? 5 million -11.972349602201405 What 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)
What is the population of Venezuela? 63.1 million -11.974300975063386 What 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)
What is the population of Venezuela? 58.7 million -11.979905598812094 What 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)
What is the population of Venezuela? Countries -11.988404590188566 What 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)
What is the population of Venezuela? Moscow -11.999229234471223 What 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)
What is the population of Venezuela? 60 million people -12.002595308814541 What 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)
What is the population of Venezuela? 2.2 million people -12.00347949521564 What 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)
What is the population of Venezuela? Caracas -12.003669969528216 What 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)
What is the population of Venezuela? 65 million people -12.012163998132992 What 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)
What is the population of Venezuela? 12.687 million people -12.019330493117302 What 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)
What is the population of Venezuela? 41,500,000 people -12.023231259488774 What 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)
What is the population of Venezuela? 8 million Muslims -12.044879316591924 What 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)
What is the population of Venezuela? a par -12.04596869643729 What 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)
What is the population of Venezuela? 100,000 -12.047624826868455 What 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)
What is the population of Venezuela? a plan -12.072592472337945 What 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)
What is the population of Venezuela? oil -12.079824064451294 What 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)
What is the population of Venezuela? 64.5 million -12.082015619758636 What 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)
What is the population of Venezuela? a `` social bomb -12.096111292207812 What 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)
What is the population of Venezuela? Facebook -12.10983827604673 What 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)
What is the population of Venezuela? 59 million people -12.11488840471577 What 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)
What is the population of Venezuela? electronic voting machines -12.12404805057599 What 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)
What is the population of Venezuela? England -12.126764723207119 What 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)
What is the population of Venezuela? 300,000 -12.130678807070305 What 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)
What is the population of Venezuela? 6964549 -12.154785578175677 What 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)
What is the population of Venezuela? 8875053 -12.170545917511781 What 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)
What is the population of Venezuela? temporary bilateral agreements -12.172614366936585 What 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)
What is the population of Venezuela? Modern scholars -12.180507735285817 What 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)
What is the population of Venezuela? Colombia -12.186735934513964 What 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)
What is the population of Venezuela? WWII -12.204146562933673 What 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)
What is the population of Venezuela? single digits -12.213732756150007 What 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)
What is the population of Venezuela? good shape -12.226111523872245 What 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)
What is the population of Venezuela? first place -12.236721918792288 What 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)
What is the population of Venezuela? Spanish -12.248969019413956 What 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)
What is the population of Venezuela? Mr. Bush?s list -12.264108869210254 What 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)
What is the population of Venezuela? trade and investment deals -12.269414040319129 What 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)
What is the population of Venezuela? desperate need -12.270321423652318 What 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)
What is the population of Venezuela? fourth place -12.322363890070172 What 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)
What is the population of Venezuela? major sea and air routes -12.326659203401118 What 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)
What is the population of Venezuela? STATES -12.336513427456902 What 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)
What is the population of Venezuela? France -12.337763463788287 What 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)
What is the population of Venezuela? a better situation -12.360859392834369 What 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)
What is the population of Venezuela? 26 February -12.375448817651716 What 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)
What is the population of Venezuela? 1.36 trillion barrels -12.386023026952575 What 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)
What is the population of Venezuela? the Middle East -12.38618170531813 What 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)
What is the population of Venezuela? similar programmes -12.387050490833063 What 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)
What is the population of Venezuela? the 2010 Great Place -12.42208190519514 What 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)
What is the population of Venezuela? a strategic location -12.432871639055207 What 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)
What is the population of Venezuela? Sunday -12.441037423793516 What 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)
What is the population of Venezuela? high alert -12.447588389253449 What 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)
What is the population of Venezuela? Canadian exports -12.456630248155301 What 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)
What is the population of Venezuela? second place -12.46560393162814 What 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)
What is the population of Venezuela? undemanding approval -12.470899579365515 What 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)
What is the population of Venezuela? news bulletins -12.511786922583784 What 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)
What is the population of Venezuela? more than 20 tax treaties -12.5178472731408 What 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)
What is the population of Venezuela? a critical situation -12.54952115153696 What 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)
What is the population of Venezuela? each other -12.551347378087064 What 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)
What is the population of Venezuela? Facebook 60 percent -12.55153193619349 What 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)
What is the population of Venezuela? basic knowledge -12.553279695033313 What 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)
What is the population of Venezuela? a desalination project -12.568496158589191 What 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)
What is the population of Venezuela? Miraflores -12.597504314807114 What 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)
What is the population of Venezuela? a long decline -12.600804647930396 What 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)
What is the population of Venezuela? MI deaths -12.611033723774 What 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)
What is the population of Venezuela? a similar suitation -12.61760440036041 What 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)
What is the population of Venezuela? slaves -12.619910759833626 What 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)
What is the population of Venezuela? an independent path -12.63179723661205 What 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)
What is the population of Venezuela? Britain -12.63856966807351 What 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)
What is the population of Venezuela? South America -12.652659076573588 What 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)
What is the population of Venezuela? a similar principle -12.669543623585925 What 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)
What is the population of Venezuela? Bolivars -12.680946574221839 What 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)
What is the population of Venezuela? the Llanos -12.756368517889555 What 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)
What is the population of Venezuela? 59551227 -12.76260752244519 What 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)
What is the population of Venezuela? Latin America -12.910354791323371 What 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)
What is the population of Venezuela? zero -12.94055830856196 What 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)
What is the population of Venezuela? the edge -12.982573739266572 What 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)
What is the population of Venezuela? January 20 , 1836 -13.08440682808326 What 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)
What is the population of Venezuela? vampires -13.099395667952146 What 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)
What is the population of Venezuela? the country -13.12859357050755 What 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)
What is the population of Venezuela? the EU -13.140400593106142 What 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)
What is the population of Venezuela? a state of political turmoil -13.155813295453818 What 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)
What is the population of Venezuela? the government power -13.186582698596874 What 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)
What is the population of Venezuela? bass -13.188461346672444 What 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)
What is the population of Venezuela? the planning committee -13.22283481536249 What 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)
What is the population of Venezuela? Salonika -13.26220239254417 What 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)
What is the population of Venezuela? the same path -13.2687485198175 What 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)
What is the population of Venezuela? the southern state -13.292686436988133 What 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)
What is the population of Venezuela? the up -13.302611150198913 What 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)
What is the population of Venezuela? 11330700 -13.330436628748924 What 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)
What is the population of Venezuela? the same level -13.332410731230876 What 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)
What is the population of Venezuela? the map -13.333493527728397 What 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)
What is the population of Venezuela? the number -13.333715024428095 What 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)
What is the population of Venezuela? the United Nations -13.34208466326675 What 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)
What is the population of Venezuela? the energy sector -13.35988544670819 What 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)
What is the population of Venezuela? approx -13.37291483682888 What 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)
What is the population of Venezuela? the list -13.411821197091033 What 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)
What is the population of Venezuela? northern South America -13.434751993377224 What 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)
What is the population of Venezuela? an axis -13.44273952754889 What 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)
What is the population of Venezuela? the side -13.453832277389944 What 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)
What is the population of Venezuela? tens -13.455663573752094 What 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)
What is the population of Venezuela? the midst -13.470167400477143 What 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)
What is the population of Venezuela? the thrall -13.47852524470716 What 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)
What is the population of Venezuela? the wings -13.484779170344389 What 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)
What is the population of Venezuela? the process -13.49536408440514 What 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)
What is the population of Venezuela? the receiving end -13.49565969256209 What 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)
What is the population of Venezuela? the provision -13.49981054997221 What 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)
What is the population of Venezuela? the semifinals -13.516610302402224 What 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)
What is the population of Venezuela? the better side -13.521693666200662 What 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)
What is the population of Venezuela? the brink -13.525253714423652 What 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)
What is the population of Venezuela? the hit list -13.526606585516534 What 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)
What is the population of Venezuela? the wrong track -13.530471067488962 What 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)
What is the population of Venezuela? political and social hatred -13.540657623842051 What 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)
What is the population of Venezuela? 2004 -13.542902872078422 What 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)
What is the population of Venezuela? the northern coast -13.550872186352914 What 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)
What is the population of Venezuela? the grip -13.555942397554261 What 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)
What is the population of Venezuela? immigrants -13.562511102600311 What 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)
What is the population of Venezuela? the highest order -13.578441337696374 What 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)
What is the population of Venezuela? the same trajectory -13.590661101425209 What 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)
What is the population of Venezuela? Osaka -13.602479443377783 What 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)
What is the population of Venezuela? the middle -13.611219459472341 What 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)
What is the population of Venezuela? the region -13.621437602599382 What 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)
What is the population of Venezuela? conformity -13.62204930902871 What 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)
What is the population of Venezuela? solidarity -13.628504872258198 What 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)
What is the population of Venezuela? the crapper -13.63591242678956 What 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)
What is the population of Venezuela? the rise -13.65137117289822 What 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)
What is the population of Venezuela? the throes -13.656313545653513 What 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)
What is the population of Venezuela? the Caribbean port city -13.66633041565502 What 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)
What is the population of Venezuela? the verge -13.680549693050471 What 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)
What is the population of Venezuela? Nagasaki -13.695328037068265 What 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)
What is the population of Venezuela? the increase -13.706712802943557 What 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)
What is the population of Venezuela? light -13.709157503004628 What 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)
What is the population of Venezuela? the northern tropical Caribbean coast -13.71872936741122 What 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)
What is the population of Venezuela? the path -13.725216412750804 What 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)
What is the population of Venezuela? the agenda -13.72700985298182 What 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)
What is the population of Venezuela? Recently -13.727492041246558 What 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)
What is the population of Venezuela? the interests -13.732155967394998 What 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)
What is the population of Venezuela? slavery -13.737516404883038 What 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)
What is the population of Venezuela? the field -13.746303160621725 What 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)
What is the population of Venezuela? Osaka city -13.756865220751173 What 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)
What is the population of Venezuela? the family -13.757797689240569 What 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)
What is the population of Venezuela? political turmoil -13.787100044976238 What 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)
What is the population of Venezuela? live television -13.793766400268956 What 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)
What is the population of Venezuela? the list of countries -13.793822032475429 What 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)
What is the population of Venezuela? fifth place -13.798866570138927 What 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)
What is the population of Venezuela? the Himalaya glacier trip -13.809315327587283 What 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)
What is the population of Venezuela? souls -13.836407942638704 What 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)
What is the population of Venezuela? the course -13.845268734272363 What 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)
What is the population of Venezuela? the minds -13.851522659909591 What 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)
What is the population of Venezuela? recessions -13.851577926288755 What 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)
What is the population of Venezuela? the barrios -13.854175271815176 What 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)
What is the population of Venezuela? the U.S. market -13.855777242066566 What 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)
What is the population of Venezuela? the part -13.85594364461737 What 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)
What is the population of Venezuela? 1813 -13.85659524747454 What 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)
What is the population of Venezuela? need -13.87267344704987 What 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)
What is the population of Venezuela? July -13.87989761572882 What 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)
What is the population of Venezuela? preferential terms -13.8978265402959 What 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)
What is the population of Venezuela? fact -13.898932372582507 What 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)
What is the population of Venezuela? the British Parliament -13.905299746554656 What 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)
What is the population of Venezuela? Cuba -13.90867368308307 What 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)
What is the population of Venezuela? a change -13.985641921783229 What 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)
What is the population of Venezuela? the north of South America -14.019410243051604 What 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)
What is the population of Venezuela? a very early morning -14.050211824393056 What 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)
What is the population of Venezuela? the northern coast of South America -14.067000941794955 What 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)
What is the population of Venezuela? a viral encephalitis -14.074225135471274 What 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)
What is the population of Venezuela? 30 April -14.106456640842396 What 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)
What is the population of Venezuela? air -14.113352700461213 What 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)
What is the population of Venezuela? Italy and Paris -14.13028158914574 What 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)
What is the population of Venezuela? Havana -14.160966585113584 What 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)
What is the population of Venezuela? a power hungry tyrant -14.16869433050655 What 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)
What is the population of Venezuela? an amazing dance exhibition -14.169513948780391 What 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)
What is the population of Venezuela? trade -14.174290323118797 What 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)
What is the population of Venezuela? Haiti -14.181367703977536 What 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)
What is the population of Venezuela? an international pageant -14.190204620868844 What 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)
What is the population of Venezuela? Baghdad -14.201704202011936 What 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)
What is the population of Venezuela? the conflict -14.20521030163154 What 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)
What is the population of Venezuela? four trillion barrels -14.208204456147266 What 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)
What is the population of Venezuela? aid missions -14.210673181408797 What 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)
What is the population of Venezuela? Israel -14.22027237994644 What 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)
What is the population of Venezuela? Barcelona -14.221976184621376 What 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)
What is the population of Venezuela? Quito -14.232651147668676 What 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)
What is the population of Venezuela? Plague -14.236089736648212 What 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)
What is the population of Venezuela? oil exports -14.288903891211291 What 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)
What is the population of Venezuela? foreigners -14.289145311684678 What 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)
What is the population of Venezuela? Interpol -14.296313411784348 What 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)
What is the population of Venezuela? second position -14.3578011018307 What 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)
What is the population of Venezuela? Venezuelan television -14.36217868180409 What 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)
What is the population of Venezuela? a news conference -14.374935664508689 What 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)
What is the population of Venezuela? five areas -14.383050624585564 What 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)
What is the population of Venezuela? the side of the people -14.39899857753721 What 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)
What is the population of Venezuela? November 10 -14.401903909750567 What 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)
What is the population of Venezuela? tenth spot -14.416158142135204 What 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)
What is the population of Venezuela? ethnographic fieldwork -14.422412120474727 What 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)
What is the population of Venezuela? contact -14.431592762006677 What 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)
What is the population of Venezuela? life -14.436706829826742 What 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)
What is the population of Venezuela? danger -14.44473049975333 What 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)
What is the population of Venezuela? less than $ 2 -14.476368790033822 What 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)
What is the population of Venezuela? shambles -14.47927483926388 What 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)
What is the population of Venezuela? line -14.492602414216764 What 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)
What is the population of Venezuela? track -14.499675958127831 What 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)
What is the population of Venezuela? Prieto -14.506426406250583 What 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)
What is the population of Venezuela? oil sales -14.507365346333328 What 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)
What is the population of Venezuela? February -14.510962246693005 What 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)
What is the population of Venezuela? discussions -14.51834387157972 What 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)
What is the population of Venezuela? the brink of civil war -14.534999459977119 What 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)
What is the population of Venezuela? September -14.564898354992025 What 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)
What is the population of Venezuela? control -14.580073406546262 What 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)
What is the population of Venezuela? carnival holidays -14.580683488958222 What 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)
What is the population of Venezuela? trouble -14.587638937767718 What 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)
What is the population of Venezuela? board -14.589346715022783 What 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)
What is the population of Venezuela? turmoil -14.600474525410215 What 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)
What is the population of Venezuela? fire -14.601294143684054 What 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)
What is the population of Venezuela? 1991 and 1996 -14.621101487891874 What 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)
What is the population of Venezuela? Page -14.648792880916229 What 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)
What is the population of Venezuela? point -14.654563067512857 What 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)
What is the population of Venezuela? behalf -14.659361317441899 What 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)
What is the population of Venezuela? view -14.66053542309195 What 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)
What is the population of Venezuela? account -14.663252550422495 What 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)
What is the population of Venezuela? Los Angeles -14.676666363497107 What 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)
What is the population of Venezuela? the Report -14.68426516929792 What 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)
What is the population of Venezuela? dozens -14.690498824597086 What 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)
What is the population of Venezuela? charges -14.692411320225531 What 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)
What is the population of Venezuela? race -14.732940351574968 What 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)
What is the population of Venezuela? alert -14.73388910610332 What 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)
What is the population of Venezuela? hold -14.75954581452063 What 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)
What is the population of Venezuela? the Seminar -14.767379797749193 What 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)
What is the population of Venezuela? the state sponsor of terrorism list -14.785612371413613 What 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)
What is the population of Venezuela? Peter -14.786632009748024 What 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)
What is the population of Venezuela? imports -14.788788902800137 What 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)
What is the population of Venezuela? a Moratorium on the Use of the Death -14.821881069305958 What 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)
What is the population of Venezuela? January 23 , 1961 -14.8315405391699 What 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)
What is the population of Venezuela? Asuncion -14.849802286553308 What 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)
What is the population of Venezuela? December 1999 -14.857246881845022 What 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)
What is the population of Venezuela? April 2002 -14.860093426710872 What 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)
What is the population of Venezuela? Sunday 24-hour power cutoffs -14.981918745468489 What 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)
What is the population of Venezuela? June -14.984843869260288 What 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)
What is the population of Venezuela? the global oil market -14.986011410482277 What 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)
What is the population of Venezuela? September 26th -14.997442059704404 What 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)
What is the population of Venezuela? February 27 , 1989 -15.068570119524146 What 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)
What is the population of Venezuela? January 1922 -15.071222731429732 What 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)
What is the population of Venezuela? the news -15.136913436659238 What 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)
What is the population of Venezuela? the road -15.199896462910424 What 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)
What is the population of Venezuela? the tropics -15.214881897995038 What 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)
What is the population of Venezuela? the world community -15.34481709125157 What 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)
What is the population of Venezuela? ruins -15.349176127118625 What 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)
What is the population of Venezuela? the lush valleys -15.352015851539317 What 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)
What is the population of Venezuela? the post-War era -15.359973634553775 What 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)
What is the population of Venezuela? the world stage -15.381129803564313 What 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)
What is the population of Venezuela? 2010 -15.402853827299808 What 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)
What is the population of Venezuela? discounted heating oil -15.470184398364962 What 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)
What is the population of Venezuela? mid September -15.508052370853182 What 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)
What is the population of Venezuela? 2008 -15.510916552694002 What 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)
What is the population of Venezuela? the aftermath -15.534923987961934 What 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)
What is the population of Venezuela? the proletariat -15.536692360764128 What 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)
What is the population of Venezuela? the major sea and air routes -15.544309838981658 What 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)
What is the population of Venezuela? 2005 -15.544580678383582 What 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)
What is the population of Venezuela? the leaves -15.553556681321396 What 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)
What is the population of Venezuela? the responsibility -15.555325106825885 What 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)
What is the population of Venezuela? the achievements and obstacles -15.569235471734434 What 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)
What is the population of Venezuela? the north coast -15.585806916515502 What 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)
What is an Indian flute made of? river cane and cedar -4.736114065153823 What 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)
What is an Indian flute made of? bamboo -6.244394360483471 What 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)
What is an Indian flute made of? Bamboo -11.37234979439026 What 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)
Who is the airport named after? Constantine the Great -0.5041256847490265 Who 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)
Who is the airport named after? Thurgood Marshall -0.6253926755760428 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Thurgood Marshall) -> Thurgood Marshall (4038ms)
Who is the airport named after? Medgar Evers -0.6317726472867575 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Medgar Evers) -> Medgar Evers (4038ms)
Who is the airport named after? Amerigo Vespucci -0.6565947508584875 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, Amerigo Vespucci) -> Amerigo Vespucci (4039ms)
Who is the airport named after? Mother Teresa -0.6959268460105243 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Mother Teresa) -> Mother Teresa (5059ms)
Who is the airport named after? Paul the Apostle -0.7185389534224711 Who 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)
Who is the airport named after? Alexander the Great -0.7185389534224711 Who 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)
Who is the airport named after? Elefth?rios Veniz?los -0.7582775045419674 Who 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)
Who is the airport named after? Kempe Gowda -0.9089996347691145 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, be named after, Kempe Gowda) -> Kempe Gowda (5060ms)
Who is the airport named after? Medger Evers -1.252525152605326 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Medger Evers) -> Medger Evers (7294ms)
Who is the airport named after? Ioannis Daskalogiannis -1.3710076587188207 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Ioannis Daskalogiannis) -> Ioannis Daskalogiannis (7295ms)
Who is the airport named after? Halim Perdanakusuma -1.4059258151383052 Who 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)
Who is the airport named after? Amelia Earhart -1.4059258151383052 Who 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)
Who is the airport named after? Roland Garros -1.4059258151383052 Who 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)
Who is the airport named after? Ferit Melen -1.4059258151383052 Who 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)
Who is the airport named after? Sultan Hasanuddin -1.5012206012153912 Who 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)
Who is the airport named after? Tancredo Neves -1.5012206012153912 Who 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)
Who is the airport named after? Abraham Lincoln -1.5012206012153912 Who 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)
Who is the airport named after? Indira Gandhi -1.5012206012153912 Who 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)
Who is the airport named after? Norman Manley -1.5012206012153912 Who 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)
Who is the airport named after? Nikola Tesla -1.5012206012153912 Who 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)
Who is the airport named after? Aurel Vlaicu -1.5012206012153912 Who 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)
Who is the airport named after? Arnold Palmer -1.5012206012153912 Who 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)
Who is the airport named after? Henri Coand? -1.5012206012153912 Who 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)
Who is the airport named after? Rajiv Gandhi -1.5012206012153912 Who 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)
Who is the airport named after? Sakamoto Ry?ma -1.5012206012153912 Who 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)
Who is the airport named after? Jorge Ch?vez -1.5012206012153912 Who 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)
Who is the airport named after? Federico Fellini -1.5012206012153912 Who 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)
Who is the airport named after? Sim?n Bol?var -1.5012206012153912 Who 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)
Who is the airport named after? S?leyman Demirel -1.5012206012153912 Who 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)
Who is the airport named after? Julius Nyerere -1.5012206012153912 Who 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)
Who is the airport named after? Fr?d?ric Chopin -1.5012206012153912 Who 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)
Who is the airport named after? Benazir Bhutto -1.5791890625511895 Who 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)
Who is the airport named after? Djuanda Kartawidjaja -1.5791890625511895 Who 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)
Who is the airport named after? Galileo Galilei -1.5791890625511895 Who 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)
Who is the airport named after? Ioannis Kapodistrias -1.5791890625511895 Who 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)
Who is the airport named after? Billy Mitchell -1.5791890625511895 Who 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)
Who is the airport named after? ?stor Piazzolla -1.5791890625511895 Who 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)
Who is the airport named after? NASA -1.5884752208682258 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, NASA) -> NASA (7606ms)
Who is the airport named after? Christopher Columbus -1.6441627803310217 Who 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)
Who is the airport named after? Charles Lindbergh -1.6441627803310217 Who 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)
Who is the airport named after? Norman Mineta -1.6441627803310217 Who 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)
Who is the airport named after? Benito Juarez -1.7581776031430096 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, named after, Benito Juarez) -> Benito Juarez (7606ms)
Who is the airport named after? Charles de Gaulle -1.8036649645864242 Who 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)
Who is the airport named after? Hussein of Jordan -1.946607143702054 Who 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)
Who is the airport named after? Muhammad al-Idrisi -1.9725100988279205 Who 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)
Who is the airport named after? Enrique Olaya Herrera -1.9928719064363882 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Enrique Olaya Herrera) -> Enrique Olaya Herrera (7642ms)
Who is the airport named after? the Battle -2.0049824236219442 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the Battle) -> the Battle (7641ms)
Who is the airport named after? John Foster Dulles -2.0255265766458983 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, John Foster Dulles) -> John Foster Dulles (7641ms)
Who is the airport named after? Will Rogers -2.121313087611617 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Will Rogers) -> Will Rogers (7803ms)
Who is the airport named after? Ibn Battuta -2.1330015397492925 Who 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)
Who is the airport named after? George H. W. Bush -2.1722899263583586 Who 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)
Who is the airport named after? Ayatollah Ruhollah Khomeini -2.2107672358464248 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is now named after, Ayatollah Ruhollah Khomeini) -> Ayatollah Ruhollah Khomeini (7802ms)
Who is the airport named after? airplanes -2.220549456552429 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, are named after, airplanes) -> airplanes (7802ms)
Who is the airport named after? Pope John Paul II -2.231987972984217 Who 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)
Who is the airport named after? Queen Alia -2.273423915257548 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Queen Alia) -> Queen Alia (7874ms)
Who is the airport named after? Frank Pa?s -2.338797030023384 Who 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)
Who is the airport named after? Juliana of the Netherlands -2.42106490277179 Who 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)
Who is the airport named after? Lennart Meri -2.4340918161004703 Who 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)
Who is the airport named after? Cyril King -2.4340918161004703 Who 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)
Who is the airport named after? Fiorello LaGuardia -2.435513342840406 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Fiorello LaGuardia) -> Fiorello LaGuardia (7968ms)
Who is the airport named after? former President -2.437673967435602 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, former President) -> former President (7968ms)
Who is the airport named after? an MP -2.4469081886441604 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, an MP) -> an MP (7968ms)
Who is the airport named after? Jos? Joaqu?n -2.4654117457491127 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Jos? Joaqu?n) -> Jos? Joaqu?n (7968ms)
Who is the airport named after? Louis Armstrong -2.5180337003229245 Who 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)
Who is the airport named after? a prominent businessman -2.5207836274870314 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, a prominent businessman) -> a prominent businessman (7968ms)
Who is the airport named after? Robert Mueller -2.541971617493558 Who 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)
Who is the airport named after? Bob Hope -2.556965581646879 Who 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)
Who is the airport named after? Captain Auguste George Airport -2.5693499438476266 Who 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)
Who is the airport named after? a local heroine -2.587098450805994 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a local heroine) -> a local heroine (8023ms)
Who is the airport named after? a prominent politician -2.6348451488927482 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a prominent politician) -> a prominent politician (8023ms)
Who is the airport named after? Wendell H. Ford -2.635478171445235 Who 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)
Who is the airport named after? Henry E. Rohlsen -2.635478171445235 Who 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)
Who is the airport named after? William P. Hobby -2.635478171445235 Who 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)
Who is the airport named after? Rafael Hern?ndez Mar?n -2.635478171445235 Who 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)
Who is the airport named after? Mariana Grajales Coello -2.635478171445235 Who 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)
Who is the airport named after? Fiorello H. LaGuardia -2.635478171445235 Who 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)
Who is the airport named after? Zachary Smith Reynolds -2.635478171445235 Who 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)
Who is the airport named after? Federico Garc?a Lorca -2.635478171445235 Who 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)
Who is the airport named after? King Mohammed V -2.6560013179032853 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, King Mohammed V) -> King Mohammed V (8137ms)
Who is the airport named after? former Prime Minister -2.6631394826439037 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, former Prime Minister) -> former Prime Minister (8137ms)
Who is the airport named after? a freedom fighter -2.6772866231683334 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a freedom fighter) -> a freedom fighter (8136ms)
Who is the airport named after? Hugo Ch?vez -2.6775191424134155 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Hugo Ch?vez) -> Hugo Ch?vez (8137ms)
Who is the airport named after? Philippine hero-senator Beniguo -2.6790550486728217 Who 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)
Who is the airport named after? Franz Josef Strau? -2.679874666946662 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Franz Josef Strau?) -> Franz Josef Strau? (8166ms)
Who is the airport named after? David Ben-Gurion -2.713446632781033 Who 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)
Who is the airport named after? Clyde Edward Pangborn -2.713446632781033 Who 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)
Who is the airport named after? Edward Lawrence Logan -2.713446632781033 Who 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)
Who is the airport named after? Ruben Martin Berta -2.713446632781033 Who 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)
Who is the airport named after? Wolfgang Amadeus Mozart -2.713446632781033 Who 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)
Who is the airport named after? Alia al-Hussein -2.713446632781033 Who 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)
Who is the airport named after? Charles Kingsford Smith -2.713446632781033 Who 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)
Who is the airport named after? Alberto Santos-Dumont -2.713446632781033 Who 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)
Who is the airport named after? Theodore F. Green -2.713446632781033 Who 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)
Who is the airport named after? L?on M'ba -2.713446632781033 Who 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)
Who is the airport named after? Liverpudlian musician John Lennon -2.759835125907605 Who 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)
Who is the airport named after? the Venetian traveller Marco Polo -2.7660597035100007 Who 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)
Who is the airport named after? Milan Rastislav ?tef?nik -2.7784203505608644 Who 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)
Who is the airport named after? James M. Cox -2.7784203505608644 Who 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)
Who is the airport named after? Gustav III of Sweden -2.7784203505608644 Who 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)
Who is the airport named after? Lester B. Pearson -2.7784203505608644 Who 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)
Who is the airport named after? Mohammed V of Morocco -2.7784203505608644 Who 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)
Who is the airport named after? Nilo de Sousa Coelho -2.7784203505608644 Who 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)
Who is the airport named after? the Venetian traveler Marco Polo -2.7787661548979843 Who 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)
Who is the airport named after? Florence native Amerigo Vespucci -2.7885568788418924 Who 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)
Who is the airport named after? Sep? Tiaraju -2.7893625170719063 Who 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)
Who is the airport named after? Bert Mooney -2.7893625170719063 Who 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)
Who is the airport named after? John Wayne -2.7893625170719063 Who 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)
Who is the airport named after? Ibn Saud -2.795202546839595 Who 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)
Who is the airport named after? Norman Y . Mineta -2.805688234815488 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Norman Y . Mineta) -> Norman Y . Mineta (8686ms)
Who is the airport named after? either Judge John Heath -2.8145908524804657 Who 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)
Who is the airport named after? Herkalion native Nikos Kazantzakis -2.8169157807203034 Who 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)
Who is the airport named after? Bologna native Guglielmo Marconi -2.817182816136628 Who 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)
Who is the airport named after? Clarence E. Hancock -2.820452579026985 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The Airport, was originally named after, Clarence E. Hancock) -> Clarence E. Hancock (8686ms)
Who is the airport named after? Gen . Murtala Muhammed -2.8213367654280814 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Gen . Murtala Muhammed) -> Gen . Murtala Muhammed (8686ms)
Who is the airport named after? President Gustavo D?az Ordaz -2.8278538066037995 Who 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)
Who is the airport named after? Italian filmmaker Federico Fellini -2.833158977712674 Who 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)
Who is the airport named after? Fahd of Saudi Arabia -2.833398111759184 Who 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)
Who is the airport named after? Khalid of Saudi Arabia -2.833398111759184 Who 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)
Who is the airport named after? Benigno Aquino, Jr. -2.833398111759184 Who 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)
Who is the airport named after? Aden Abdullah Osman Daar -2.833398111759184 Who 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)
Who is the airport named after? Argentine aviator Jorge Newbery -2.848254925467751 Who 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)
Who is the airport named after? an American WWII pilot -2.849139111868848 Who 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)
Who is the airport named after? Captain Robert A. LaFleur -2.854444335680017 Who 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)
Who is the airport named after? Leo? Jan??ek -2.884657303148993 Who 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)
Who is the airport named after? Jomo Kenyatta -2.884657303148993 Who 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)
Who is the airport named after? Juan Santamar?a -2.884657303148993 Who 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)
Who is the airport named after? Jo?e Pu?nik -2.884657303148993 Who 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)
Who is the airport named after? Luiz Eduardo -2.8981714211209364 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is also named after, Luiz Eduardo) -> Luiz Eduardo (9392ms)
Who is the airport named after? Army aviator Major Harold Geiger -2.917128140690071 Who 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)
Who is the airport named after? Italian polymath Leonardo da Vinci -2.9356356703751514 Who 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)
Who is the airport named after? Reagan -2.936599771404543 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Reagan) -> Reagan (9392ms)
Who is the airport named after? the French writer and pilot Antoine -2.9490238408751632 Who 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)
Who is the airport named after? Israel -2.9697073416564788 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Israel) -> Israel (9566ms)
Who is the airport named after? Shaka -2.981960893002037 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Shaka) -> Shaka (9566ms)
Who is the airport named after? atists -2.9915510319150718 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airports, were named after, atists) -> atists (9566ms)
Who is the airport named after? Cuban patriot and poet Jose Marti -2.9980048784518427 Who 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)
Who is the airport named after? Leonardo da Vinci -3.1440800167069964 Who 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)
Who is the airport named after? Elefthrios Venizlos -3.3166169442033144 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Elefthrios Venizlos) -> Elefthrios Venizlos (9684ms)
Who is the airport named after? an entertainer -3.466450677617058 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the first airport, to be named after, an entertainer) -> an entertainer (9786ms)
Who is the airport named after? the village -3.5746779377980404 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the village) -> the village (10046ms)
Who is the airport named after? politician -3.6096249890609253 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, politician) -> politician (10046ms)
Who is the airport named after? Minister -3.6124356342594246 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Minister) -> Minister (10046ms)
Who is the airport named after? Daskalogiannis -3.631887998595024 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Daskalogiannis) -> Daskalogiannis (10046ms)
Who is the airport named after? Standiford -3.6328367531233763 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Standiford) -> Standiford (10242ms)
Who is the airport named after? Carlos Manuel de C?spedes -3.6408453923578294 Who 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)
Who is the airport named after? Bauerfield -3.6522891174589756 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Bauerfield) -> Bauerfield (10242ms)
Who is the airport named after? the Gipper -3.776868007286519 Who 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)
Who is the airport named after? George W. Bush -3.8048603531391336 Who 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)
Who is the airport named after? Ninoy -3.8400622572343917 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was later named after, Ninoy) -> Ninoy (10389ms)
Who is the airport named after? Nikos Kazantzakis -3.8433262387642504 Who 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)
Who is the airport named after? the close -3.8473385113529996 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the close) -> the close (10591ms)
Who is the airport named after? the hamlet -3.8677396302169513 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the hamlet) -> the hamlet (10591ms)
Who is the airport named after? lesser persons -3.9223843352322287 Who is the airport named after? -> $x: (the airport, named after, $x) -> (airports all over the world, named after, lesser persons) -> lesser persons (10798ms)
Who is the airport named after? Heathrow -3.925444239071177 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (London Heathrow Airport, Named after, Heathrow) -> Heathrow (10874ms)
Who is the airport named after? Franz Josef Strau -3.9408416797013075 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Franz Josef Strau) -> Franz Josef Strau (10874ms)
Who is the airport named after? Coleman Young -3.9632777177424012 Who 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)
Who is the airport named after? Shivaji -4.020739025148263 Who 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)
Who is the airport named after? the small village -4.034219156880347 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the small village) -> the small village (11166ms)
Who is the airport named after? the French writer and pilot -4.083480021498236 Who 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)
Who is the airport named after? Neil Armstrong -4.086754803301823 Who 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)
Who is the airport named after? the area native -4.160659446008301 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, the area native) -> the area native (11328ms)
Who is the airport named after? Preston Smith -4.175629029456129 Who 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)
Who is the airport named after? Habib Bourguiba -4.175629029456129 Who 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)
Who is the airport named after? Joshua Nkomo -4.175629029456129 Who 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)
Who is the airport named after? Jesus Christ -4.222752824768973 Who 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)
Who is the airport named after? the small town -4.250783050243385 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the small town) -> the small town (12331ms)
Who is the airport named after? the former mayor -4.250783050243385 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the former mayor) -> the former mayor (12484ms)
Who is the airport named after? the first President -4.260608994279718 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first President) -> the first President (12484ms)
Who is the airport named after? the archeological site -4.271184169107336 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the archeological site) -> the archeological site (12484ms)
Who is the airport named after? the famous scientist -4.278257765720699 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the famous scientist) -> the famous scientist (12485ms)
Who is the airport named after? The Starship -4.339693401084606 Who 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)
Who is the airport named after? the former ruler -4.387501134928088 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, has been named after, the former ruler) -> the former ruler (12797ms)
Who is the airport named after? a motorway -4.394665965503256 Who 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)
Who is the airport named after? COS -4.429418118158273 Who 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)
Who is the airport named after? the hamlet Heath Row -4.461518611635805 Who 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)
Who is the airport named after? aviator Gerald McClellan -4.487506697068886 Who 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)
Who is the airport named after? Dr Abdus Salam -4.518771756117016 Who 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)
Who is the airport named after? the first Tanzanian President -4.52985699008496 Who 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)
Who is the airport named after? John Munro -4.546096256618471 Who 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)
Who is the airport named after? former Rhode Island governor -4.563740625921508 Who 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)
Who is the airport named after? the most famous Zulu monarch -4.606216082611965 Who 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)
Who is the airport named after? the first Kenyan prime minister -4.624784260546468 Who 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)
Who is the airport named after? an electronic number -4.6266493825143025 Who 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)
Who is the airport named after? the former Jamaican Prime Minister -4.668994160326541 Who 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)
Who is the airport named after? Gonggar County -4.682082820992772 Who 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)
Who is the airport named after? Elrey B Jeppesen -4.747684765327319 Who 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)
Who is the airport named after? Charles McGhee Tyson -5.042557526773925 Who 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)
Who is the airport named after? John F. Kennedy -5.097535287972245 Who 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)
Who is the airport named after? Fernando L. Ribas-Dominicci -5.185499705889555 Who 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)
Who is the airport named after? Luis Mu?oz Mar?n -5.309886599685972 Who 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)
Who is the airport named after? Louise Thaden -5.336940587269504 Who 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)
Who is the airport named after? John Murtha -5.346714419676002 Who 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)
Who is the airport named after? Ben Elbert Douglas, Sr. -5.397851017603283 Who 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)
Who is the airport named after? Muhammad bin Fahd -5.397851017603283 Who 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)
Who is the airport named after? Ian Fleming -5.451150122035584 Who 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)
Who is the airport named after? new members -5.489871153367969 Who 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)
Who is the airport named after? FedEx -5.5852266380950475 Who 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)
Who is the airport named after? Maj -5.588479517666511 Who 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)
Who is the airport named after? Floyd Glass -5.599785932736754 Who 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)
Who is the airport named after? Blaise Diagne -5.660869176264209 Who 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)
Who is the airport named after? the President -5.7413262842297135 Who 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)
Who is the airport named after? a part -5.750025567903653 Who 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)
Who is the airport named after? the great opera composer -5.761545287808763 Who 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)
Who is the airport named after? the first Kenyan president -5.761545287808763 Who 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)
Who is the airport named after? political leaders -5.77123642851807 Who 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)
Who is the airport named after? aviation pioneers -5.834595513111796 Who 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)
Who is the airport named after? a high-speed rail link -5.858396319386857 Who 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)
Who is the airport named after? the LTTE -5.86182208162062 Who 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)
Who is the airport named after? British Airways -5.907364354274458 Who 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)
Who is the airport named after? Manchester Airport -5.916426757497342 Who 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)
Who is the airport named after? the Algerian -6.005698005636285 Who 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)
Who is the airport named after? foreign exchange counters -6.007861352618914 Who 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)
Who is the airport named after? the family -6.025440038517608 Who 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)
Who is the airport named after? the historic city -6.0370691795534315 Who 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)
Who is the airport named after? the nearby village -6.078751631102303 Who 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)
Who is the airport named after? once my luggage -6.103143510428131 Who 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)
Who is the airport named after? the late Secretary -6.117656359773503 Who 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)
Who is the airport named after? pak21 -6.177410189583017 Who 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)
Who is the airport named after? the Chicago & Western Indiana Railroad -6.181076119517506 Who 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)
Who is the airport named after? Pierre Savorgnan de Brazza -6.208193251543438 Who 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)
Who is the airport named after? a shuttle -6.212039364669074 Who 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)
Who is the airport named after? the famous Charles Schulz -6.231949770464062 Who 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)
Who is the airport named after? the nearby suburb -6.23328203620787 Who 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)
Who is the airport named after? I?ll -6.2357425492472025 Who 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)
Who is the airport named after? a small river -6.260008150083582 Who 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)
Who is the airport named after? Hahn -6.288569426999697 Who 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)
Who is the airport named after? a master developer -6.30759732896984 Who 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)
Who is the airport named after? the United States Secretary -6.307949079521993 Who 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)
Who is the airport named after? parking -6.411432159937652 Who 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)
Who is the airport named after? Worcester North9 -6.412947896978714 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, bisect, the airport) -> (Worcester North9, bisects, the airport) -> Worcester North9 (16866ms)
Who is the airport named after? Fuji Television -6.484238005411718 Who 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)
Who is the airport named after? a world war -6.497022116105654 Who 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)
Who is the airport named after? A new report -6.503889239723438 Who 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)
Who is the airport named after? Each traveler -6.563235438493512 Who 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)
Who is the airport named after? an overrated twit -6.563393314058571 Who 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)
Who is the airport named after? a forgettable president -6.617329369655296 Who 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)
Who is the airport named after? Apple -6.6224797538927165 Who 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)
Who is the airport named after? Noir de Noir 72 percent cacao -6.625670588693674 Who 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)
Who is the airport named after? a legendary proto-communist terrorist -6.630664301985366 Who 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)
Who is the airport named after? premier -6.635661112974646 Who 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)
Who is the airport named after? Solidarity -6.640169692190681 Who 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)
Who is the airport named after? former US Secretary -6.659770896633177 Who 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)
Who is the airport named after? Sky Towers -6.665232341140552 Who 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)
Who is the airport named after? 1965 -6.666032453523047 Who 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)
Who is the airport named after? a relatively obscure general -6.714789946325044 Who 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)
Who is the airport named after? Norm Mineta -6.717332478206813 Who 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)
Who is the airport named after? the IEEE 802.11 -6.723237527475801 Who 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)
Who is the airport named after? The Newberry iPhone Case -6.746442603115973 Who 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)
Who is the airport named after? a WWII hero -6.748881438495462 Who 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)
Who is the airport named after? an authentic hero -6.781040201516751 Who 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)
Who is the airport named after? Memphis -6.782605530240314 Who 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)
Who is the airport named after? a World War II battle -6.813931176878153 Who 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)
Who is the airport named after? a legendary Hamilton member -6.820893684716301 Who 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)
Where is the U.S. Mint headquartered? Philadelphia -5.503849162824033 Where 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)
Where is the U.S. Mint headquartered? Denver -7.202585476672536 Where 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)
Where is the U.S. Mint headquartered? Dahlonega -7.599649790452959 Where 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)
Where is the U.S. Mint headquartered? the city -7.70849478153711 Where 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)
Where is the U.S. Mint headquartered? Charlotte -7.727387818599631 Where 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)
Where is the U.S. Mint headquartered? Congress -8.598041283771714 Where 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)
Where is the U.S. Mint headquartered? Kentucky -8.791983762141673 Where 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)
Where is the U.S. Mint headquartered? Coins -8.833819906791152 Where 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)
Where is the U.S. Mint headquartered? David Rittenhouse -9.140453638712948 Where 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)
Where is the U.S. Mint headquartered? authorized dealers -9.174294342250757 Where 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)
Where is the U.S. Mint headquartered? Eagles -9.201502102052174 Where 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)
Where is the U.S. Mint headquartered? Eagle -9.246721404610021 Where 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)
Where is the U.S. Mint headquartered? the Fed -9.27519899824999 Where 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)
Where is the U.S. Mint headquartered? Silver Coin -9.290115463047865 Where 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)
Where is the U.S. Mint headquartered? legal tender -9.368048886240542 Where 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)
Where is the U.S. Mint headquartered? January -9.461446838918606 Where 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)
Where is the U.S. Mint headquartered? law -9.490814898386285 Where 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)
Where is the U.S. Mint headquartered? Dimes -9.537861031126132 Where 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)
Where is the U.S. Mint headquartered? San Francisco -9.548984027318935 Where 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)
Where is the U.S. Mint headquartered? bas-relief -9.710488170872871 Where 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)
Where is the U.S. Mint headquartered? Gold Coin -9.842286377878288 Where 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)
Where is the U.S. Mint headquartered? bullion coins -9.93767240635926 Where 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)
Where is the U.S. Mint headquartered? Platinum Coin -9.947074739700788 Where 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)
Where is the U.S. Mint headquartered? a Palladium Eagle coin -9.991511434128475 Where 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)
Where is the U.S. Mint headquartered? UKW -10.014463385031476 Where 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)
Where is the U.S. Mint headquartered? a Mint -10.047149328140986 Where 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)
Where is the U.S. Mint headquartered? Jefferson Nickels -10.070551570614828 Where 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)
Where is the U.S. Mint headquartered? Daniel Carr -10.076132473344199 Where 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)
Where is the U.S. Mint headquartered? a nickel worth -10.097255906833485 Where 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)
Where is the U.S. Mint headquartered? an unlikely partner -10.120737056786155 Where 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)
Where is the U.S. Mint headquartered? the FBI building -10.178080353948769 Where 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)
Where is the U.S. Mint headquartered? less offers -10.197234855842028 Where 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)
Where is the U.S. Mint headquartered? today Conversal -10.240858378961049 Where 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)
Where is the U.S. Mint headquartered? demand -10.279710437252039 Where 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)
Where is the U.S. Mint headquartered? two products -10.315891352520662 Where 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)
Where is the U.S. Mint headquartered? bags and rolls -10.342680689290926 Where 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)
Where is the U.S. Mint headquartered? a bad precedent -10.357513208522407 Where 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)
Where is the U.S. Mint headquartered? Peppermint -10.361047716496607 Where 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)
Where is the U.S. Mint headquartered? Spearmint -10.361047716496607 Where 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)
Where is the U.S. Mint headquartered? a highly collectible proof version -10.381460201585446 Where 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)
Where is the U.S. Mint headquartered? new quarters -10.405021347916765 Where 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)
Where is the U.S. Mint headquartered? new silver dollars -10.412333503222523 Where 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)
Where is the U.S. Mint headquartered? Tabitha -10.436105240039616 Where 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)
Where is the U.S. Mint headquartered? a low premium -10.440998328990066 Where 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)
Where is the U.S. Mint headquartered? a private company -10.464699993711102 Where 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)
Where is the U.S. Mint headquartered? a pricing grid -10.465385372418153 Where 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)
Where is the U.S. Mint headquartered? silver American eagles -10.465385372418153 Where 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)
Where is the U.S. Mint headquartered? FREE coin boards -10.468037931621444 Where 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)
Where is the U.S. Mint headquartered? a brilliant finish -10.485329671361846 Where 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)
Where is the U.S. Mint headquartered? longer periods -10.509794079892272 Where 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)
Where is the U.S. Mint headquartered? a whole lot -10.527478018723382 Where 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)
Where is the U.S. Mint headquartered? numismatic bags and rolls -10.530622565237062 Where 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)
Where is the U.S. Mint headquartered? two roll sets -10.531243375816857 Where 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)
Where is the U.S. Mint headquartered? sales -10.534131330542147 Where 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)
Where is the U.S. Mint headquartered? an initial ordering limit -10.562845949087901 Where 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)
Where is the U.S. Mint headquartered? Silver Proof Coin -10.568167064890908 Where 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)
Where is the U.S. Mint headquartered? Klaus -10.56896361339207 Where 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)
Where is the U.S. Mint headquartered? Carson City Mint -10.597491700602598 Where 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)
Where is the U.S. Mint headquartered? gold -10.600053902068106 Where 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)
Where is the U.S. Mint headquartered? Platinum Proof Coin -10.600901606045838 Where 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)
Where is the U.S. Mint headquartered? a Fractional coin -10.627628599351972 Where 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)
Where is the U.S. Mint headquartered? excessive premiums -10.629160772406863 Where 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)
Where is the U.S. Mint headquartered? silver -10.629232422220358 Where 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)
Where is the U.S. Mint headquartered? None Silver American Eagles -10.630536946118347 Where 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)
Where is the U.S. Mint headquartered? coin production figures -10.63616980089297 Where 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)
Where is the U.S. Mint headquartered? American currency -10.638002741822419 Where 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)
Where is the U.S. Mint headquartered? the United States congress -10.663579895540733 Where 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)
Where is the U.S. Mint headquartered? Pocket change -10.67595866326297 Where 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)
Where is the U.S. Mint headquartered? the Newest State Quarters -10.681328455201395 Where 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)
Where is the U.S. Mint headquartered? Once more information -10.684865253508077 Where 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)
Where is the U.S. Mint headquartered? Double Eagle Gold Coin -10.703769366707268 Where 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)
Where is the U.S. Mint headquartered? the James K. Polk Dollar -10.70443913440625 Where 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)
Where is the U.S. Mint headquartered? four new Lincoln pennies -10.70608599064587 Where 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)
Where is the U.S. Mint headquartered? ?American Gold Eagles ? -10.722237756422091 Where 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)
Where is the U.S. Mint headquartered? Silver Eagle bullion coins -10.728312483449628 Where 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)
Where is the U.S. Mint headquartered? Shipping charges -10.733496085293632 Where 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)
Where is the U.S. Mint headquartered? American Gold Bullion Coins -10.762846289768227 Where 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)
Where is the U.S. Mint headquartered? Presidential dollar coins -10.764679283399971 Where 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)
Where is the U.S. Mint headquartered? pace -10.772194896357998 Where 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)
Where is the U.S. Mint headquartered? Silver Eagle coins -10.773521252815526 Where 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)
Where is the U.S. Mint headquartered? the same way -10.800420294647694 Where 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)
Where is the U.S. Mint headquartered? A solid customer base -10.880459062550408 Where 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)
Where is the U.S. Mint headquartered? the historic French Quarter -10.93419755621031 Where 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)
Where is the U.S. Mint headquartered? production -10.98940968180705 Where 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)
Where is the U.S. Mint headquartered? purchases -10.994779473745476 Where 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)
Where is the U.S. Mint headquartered? raid -11.00172785398216 Where 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)
Where is the U.S. Mint headquartered? mint -11.020421195591046 Where 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)
Where is the U.S. Mint headquartered? wonderful approach -11.037891783893368 Where 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)
Where is the U.S. Mint headquartered? effective option -11.040263383165598 Where 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)
Where is the U.S. Mint headquartered? The U.S. Silver Eagle -11.042272107877823 Where 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)
Where is the U.S. Mint headquartered? wonderful technique -11.052043579760053 Where 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)
Where is the U.S. Mint headquartered? great approach -11.053445780380569 Where 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)
Where is the U.S. Mint headquartered? fantastic method -11.065099186943668 Where 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)
Where is the U.S. Mint headquartered? excellent technique -11.067153734437483 Where 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)
Where is the U.S. Mint headquartered? good technique -11.067634130331191 Where 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)
Where is the U.S. Mint headquartered? great strategy -11.068816273704675 Where 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)
Where is the U.S. Mint headquartered? popular option -11.069815371063589 Where 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)
Where is the U.S. Mint headquartered? popular method -11.06985035989131 Where 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)
Where is the U.S. Mint headquartered? popular strategy -11.072333806725625 Where 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)
Where is the U.S. Mint headquartered? popular technique -11.072343190683624 Where 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)
Where is the U.S. Mint headquartered? superb approach -11.074174915751561 Where 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)
Where is the U.S. Mint headquartered? excellent strategy -11.084035256970969 Where 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)
Where is the U.S. Mint headquartered? fantastic option -11.084580036426036 Where 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)
Where is the U.S. Mint headquartered? wonderful option -11.084986353472628 Where 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)
Where is the U.S. Mint headquartered? good method -11.086232385224735 Where 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)
Where is the U.S. Mint headquartered? fantastic technique -11.08796380392031 Where 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)
Where is the U.S. Mint headquartered? excellent method -11.088001783455649 Where 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)
Where is the U.S. Mint headquartered? effective approach -11.08913979918338 Where 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)
Where is the U.S. Mint headquartered? effective technique -11.091817242434665 Where 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)
Where is the U.S. Mint headquartered? superb method -11.092172401221204 Where 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)
Where is the U.S. Mint headquartered? excellent option -11.096680851280315 Where 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)
Where is the U.S. Mint headquartered? ways -11.101767398537831 Where 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)
Where is the U.S. Mint headquartered? wonderful method -11.105315759013122 Where 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)
Where is the U.S. Mint headquartered? wonderful strategy -11.108355055823488 Where 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)
Where is the U.S. Mint headquartered? good approach -11.112385487846586 Where 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)
Where is the U.S. Mint headquartered? fantastic strategy -11.112390868668896 Where 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)
Where is the U.S. Mint headquartered? great method -11.112494717313805 Where 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)
Where is the U.S. Mint headquartered? popular approach -11.112628323499502 Where 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)
Where is the U.S. Mint headquartered? superb strategy -11.112967643792668 Where 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)
Where is the U.S. Mint headquartered? excellent approach -11.113063147873044 Where 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)
Where is the U.S. Mint headquartered? great technique -11.113170859923857 Where 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)
Where is the U.S. Mint headquartered? superb option -11.116669350472044 Where 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)
Where is the U.S. Mint headquartered? good option -11.118131296605714 Where 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)
Where is the U.S. Mint headquartered? effective method -11.11865765379214 Where 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)
Where is the U.S. Mint headquartered? great option -11.121735256174002 Where 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)
Where is the U.S. Mint headquartered? good strategy -11.156067314387283 Where 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)
Where is the U.S. Mint headquartered? superb technique -11.156213167765813 Where 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)
Where is the U.S. Mint headquartered? bold -11.159240252441236 Where 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)
Where is the U.S. Mint headquartered? fantastic approach -11.161262004371755 Where 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)
Where is the U.S. Mint headquartered? effective strategy -11.162178087531695 Where 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)
Where is the U.S. Mint headquartered? line -11.196222915209635 Where 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)
Where is the U.S. Mint headquartered? travelers -11.22048846334372 Where 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)
Where is the U.S. Mint headquartered? Proof Sets -11.2283940344258 Where 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)
Where is the U.S. Mint headquartered? able to meet demand -11.289968423415594 Where 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)
Where is the U.S. Mint headquartered? uncirculated -11.385811721366258 Where 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)
Where is the U.S. Mint headquartered? 10,000 coins -11.543077352881339 Where 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)
Where is the U.S. Mint headquartered? now -11.54641384426381 Where 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)
Where is the U.S. Mint headquartered? 3.34 cents -11.61832853496652 Where 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)
Where is the U.S. Mint headquartered? 801 9th street -11.720895475051098 Where 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)
Where is the U.S. Mint headquartered? 25-coin rolls -11.84108178583953 Where 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)
Where is the U.S. Mint headquartered? 100-coin bags -11.86148290470348 Where 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)
Where is the U.S. Mint headquartered? the proof version -11.90421043173744 Where 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)
Where is the U.S. Mint headquartered? the same -11.969835140821061 Where 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)
Where is the U.S. Mint headquartered? 2009-dated gold Eagles -11.974213472395741 Where 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)
Where is the U.S. Mint headquartered? the majority -12.000290099167412 Where 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)
Where is the U.S. Mint headquartered? able to help you there -12.009780104359958 Where 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)
Where is the U.S. Mint headquartered? 5,000 coins -12.037811115681862 Where 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)
Where is the U.S. Mint headquartered? the other end -12.038673439791095 Where 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)
Where is the U.S. Mint headquartered? the rolls -12.03949269028095 Where 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)
Where is the U.S. Mint headquartered? the 10th Anniversary Platinum Eagle Set -12.045833466823577 Where 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)
Where is the U.S. Mint headquartered? The coins -12.107575886402106 Where 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)
Where is the U.S. Mint headquartered? the organizations -12.113467434172032 Where 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)
Where is the U.S. Mint headquartered? the $ 1 coins -12.133540711602674 Where 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)
Where is the U.S. Mint headquartered? Jan 04 -12.138674251091501 Where 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)
Where is the U.S. Mint headquartered? the problem -12.176672878367446 Where 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)
Where is the U.S. Mint headquartered? the graphics -12.19026743603436 Where 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)
Where is the U.S. Mint headquartered? the limit -12.192007384814918 Where 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)
Where is the U.S. Mint headquartered? the 2011-W Proof Gold Buffalo -12.204341140458965 Where 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)
Where is the U.S. Mint headquartered? The exchanges -12.21735597974644 Where 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)
Where is the U.S. Mint headquartered? the production -12.235486738592208 Where 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)
Where is the U.S. Mint headquartered? the proofs -12.267317817947749 Where 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)
Where is the U.S. Mint headquartered? the court -12.29112659886387 Where 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)
Where is the U.S. Mint headquartered? the release -12.291921712993911 Where 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)
Where is the U.S. Mint headquartered? The sets -12.299968568279427 Where 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)
Where is the U.S. Mint headquartered? The foundation-stone -12.306157978491692 Where 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)
Where is the U.S. Mint headquartered? annually -12.325022380899982 Where 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)
Where is the U.S. Mint headquartered? 100th , 442nd and MIS veterans -12.326245708992118 Where 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)
Where is the U.S. Mint headquartered? the coins -12.328993448033366 Where 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)
Where is the U.S. Mint headquartered? the government -12.345365833982543 Where 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)
Where is the U.S. Mint headquartered? no 2009-dated proof Silver Eagles -12.358141409177211 Where 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)
Where is the U.S. Mint headquartered? 9,023,500 American Silver Eagle coins -12.363446580286084 Where 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)
Where is the U.S. Mint headquartered? The cat and mouse -12.367470757521431 Where 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)
Where is the U.S. Mint headquartered? The bullion coins -12.373267915940694 Where 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)
Where is the U.S. Mint headquartered? The coin series -12.404741352957227 Where 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)
Where is the U.S. Mint headquartered? the design -12.407259672593728 Where 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)
Where is the U.S. Mint headquartered? The dollar coins -12.416037073882027 Where 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)
Where is the U.S. Mint headquartered? the typical release pattern -12.468468132497861 Where 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)
Where is the U.S. Mint headquartered? The new coin catalog -12.522011989003879 Where 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)
Where is the U.S. Mint headquartered? The whole roof -12.526760604675108 Where 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)
Where is the U.S. Mint headquartered? the 2010 Kennedy Halves -12.543865563403795 Where 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)
Where is the U.S. Mint headquartered? The newest item -12.55328656562407 Where 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)
Where is the U.S. Mint headquartered? the gold sale business -12.560660982814287 Where 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)
Where is the U.S. Mint headquartered? a 2012 Birth Set -12.573044083556047 Where 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)
Where is the U.S. Mint headquartered? The first American Buffalo gold coin -12.612778497849051 Where 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)
Where is the U.S. Mint headquartered? 2011 Silver -12.730987821076091 Where 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)
Where is the U.S. Mint headquartered? the 2009 Proof Silver Eagle -12.775140793689419 Where 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)
Where is the U.S. Mint headquartered? April 2 , 1792 -13.135893483138776 Where 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)
Where is the U.S. Mint headquartered? The next product -13.18022056907262 Where 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)
Where is the U.S. Mint headquartered? 1792 -13.582231840310822 Where 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)
When was PBGC established? 1974 -0.4642900643429906 When was PBGC established? -> $x: (PBGC, was established in, $x) -> $x: (PBGC, be create in, $x) -> (The PBGC, was created in, 1974) -> 1974 (4667ms)
When was PBGC established? PBGC?s Web site -6.4380372659542555 When 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)
When was PBGC established? employer liability -8.126683029055306 When 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)
When was PBGC established? Variable Rate Premiums -8.265824596546754 When 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)
When was PBGC established? the interest rate -9.857477868943912 When 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)
When was PBGC established? statute -10.276804985385073 When 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)
When was PBGC established? behalf -10.834462648080626 When 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)
When was PBGC established? a beautiful island -11.363233458062751 When 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)
When was PBGC established? benefit plans -12.274151729618358 When 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)
Where is the Kalahari desert? Africa -1.4144406648460184 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (The Kalahari Desert, is located in, Africa) -> Africa (3332ms)
Where is the Kalahari desert? Southern Africa -1.9565594977090286 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari desert, is located in, Southern Africa) -> Southern Africa (3332ms)
Where is the Kalahari desert? southern Africa -2.323396828203536 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is in, southern Africa) -> southern Africa (3332ms)
Where is the Kalahari desert? eastern Namibia -3.024740906808585 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is located in, eastern Namibia) -> eastern Namibia (3332ms)
Where is the Kalahari desert? popularity and usage -3.130591269284145 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, are growing in, popularity and usage) -> popularity and usage (3332ms)
Where is the Kalahari desert? a class -3.586212089518628 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is in, a class) -> a class (4270ms)
Where is the Kalahari desert? Authorities Concept Scheme -3.669785784007915 Where 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)
Where is the Kalahari desert? Geographic Names Concept Scheme -3.708770014675814 Where 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)
Where is the Kalahari desert? Topical Terms Concept Scheme -4.098612321354804 Where 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)
Where is the Kalahari desert? South Africa -4.255155361905228 Where 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)
Where is the Kalahari desert? the rough , -4.759951512705209 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, was a diamond in, the rough ,) -> the rough , (4480ms)
Where is the Kalahari desert? the southwest -4.7949864950266665 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (The Kalahari Desert, is located in, the southwest) -> the southwest (4480ms)
Where is the Kalahari desert? the same place -5.133674029363853 Where 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)
Where is the Kalahari desert? large colonies -5.527654890092744 Where 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)
Where is the Kalahari desert? dry stony areas -5.672490658387245 Where 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)
Where is the Kalahari desert? the Kalahari -5.814652388676066 Where 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)
Where is the Kalahari desert? a dry bush desert -5.992446327970532 Where 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)
Where is the Kalahari desert? the Kalahari Basin -6.51811698378752 Where 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)
Where is the Kalahari desert? the southern areas -7.461204689022443 Where 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)
Where is the Kalahari desert? a mission station -7.52409295973956 Where 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)
Where is the Kalahari desert? Botswana -8.90575097265469 Where 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)
Where is the Kalahari desert? Namibia -9.198904933938094 Where 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)
Where is the Kalahari desert? Hoodia -9.283723367064303 Where 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)
Where is the Kalahari desert? Hawaii -9.454507876071638 Where 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)
Where is the Kalahari desert? Watermelons -9.468590448468811 Where 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)
Where is the Kalahari desert? Millions -9.823199421408138 Where 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)
Where is the Kalahari desert? the ?edge -9.925754076855569 Where 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)
Where is the Kalahari desert? Food -9.98072404759202 Where 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)
Where is the Kalahari desert? Hoodia Gordonii -9.983210061710706 Where 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)
Where is the Kalahari desert? Watermelon -10.033181705468202 Where 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)
Where is the Kalahari desert? America -10.123762129623545 Where 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)
Where is the Kalahari desert? Tsodilo -10.138858024676328 Where 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)
Where is the Kalahari desert? Bushmen -10.149632113818743 Where 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)
Where is the Kalahari desert? Meerkats -10.351721182991604 Where 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)
Where is the Kalahari desert? Hoodia gordonii -10.51554605040268 Where 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)
Where is the Kalahari desert? nuclear power -10.650704437068988 Where 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)
Where is the Kalahari desert? Hoodia Stems -10.672009671747103 Where 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)
Where is the Kalahari desert? extraordinary people -10.699305946207415 Where 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)
Where is the Kalahari desert? a harsh desert -10.708212483750227 Where 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)
Where is the Kalahari desert? Springbok -10.776031655019443 Where 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)
Where is the Kalahari desert? sand -10.807185245004305 Where 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)
Where is the Kalahari desert? one such group -10.822706608183871 Where 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)
Where is the Kalahari desert? grassland -10.839975078281192 Where 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)
Where is the Kalahari desert? grasses -10.9382839471215 Where 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)
Where is the Kalahari desert? a vast open space -10.940463832671895 Where 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)
Where is the Kalahari desert? hoodia -10.952112780074103 Where 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)
Where is the Kalahari desert? the San bushmen -10.952842600394131 Where 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)
Where is the Kalahari desert? delicate balance -10.986014694027345 Where 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)
Where is the Kalahari desert? a principle home -10.999610722729127 Where 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)
Where is the Kalahari desert? An exception -11.030944683631779 Where 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)
Where is the Kalahari desert? indigenous tribes -11.080078003652126 Where 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)
Where is the Kalahari desert? associate DHEA -11.092610411772675 Where 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)
Where is the Kalahari desert? an important and forgotten storehouse -11.095501635072951 Where 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)
Where is the Kalahari desert? ostrich eggshells -11.095755010988649 Where 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)
Where is the Kalahari desert? Susie -11.125568959254117 Where 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)
Where is the Kalahari desert? the Southwest -11.143307584207353 Where 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)
Where is the Kalahari desert? red sand dunes -11.14583632423574 Where 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)
Where is the Kalahari desert? the San -11.147430706472793 Where 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)
Where is the Kalahari desert? dry river-beds -11.152735877581666 Where 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)
Where is the Kalahari desert? an extraordinary natural phenomenon -11.153620063982764 Where 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)
Where is the Kalahari desert? an extreme realm -11.180443887374064 Where 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)
Where is the Kalahari desert? previous excavations -11.190538158623905 Where 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)
Where is the Kalahari desert? the San Bushmen -11.20032893527011 Where 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)
Where is the Kalahari desert? a new concession -11.203925753347855 Where 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)
Where is the Kalahari desert? a classic , maybe cliche example -11.22086429370085 Where 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)
Where is the Kalahari desert? ivory poachers -11.225240111112894 Where 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)
Where is the Kalahari desert? weight -11.22977015620964 Where 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)
Where is the Kalahari desert? Hoodia stems -11.231429468622865 Where 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)
Where is the Kalahari desert? the Namib -11.246460848250688 Where 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)
Where is the Kalahari desert? a vast and open space -11.255020041013418 Where 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)
Where is the Kalahari desert? rugged beauty -11.255737833063908 Where 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)
Where is the Kalahari desert? the Bushveld -11.26231184615235 Where 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)
Where is the Kalahari desert? tsama melons -11.263499212075393 Where 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)
Where is the Kalahari desert? an organic powder -11.271655802783897 Where 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)
Where is the Kalahari desert? a slender column cactus -11.27342417558609 Where 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)
Where is the Kalahari desert? an episode -11.281828778615205 Where 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)
Where is the Kalahari desert? the San people -11.282951523708697 Where 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)
Where is the Kalahari desert? time -11.28601171528912 Where 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)
Where is the Kalahari desert? miraculous -11.294983650655997 Where 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)
Where is the Kalahari desert? course Upington -11.308071910209048 Where 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)
Where is the Kalahari desert? Devil?s Claw -11.310058544239105 Where 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)
Where is the Kalahari desert? San tribe -11.32382348557843 Where 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)
Where is the Kalahari desert? poor or damaged women -11.326712297231317 Where 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)
Where is the Kalahari desert? Natural hoodia -11.330395042273505 Where 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)
Where is the Kalahari desert? a cactus plant -11.332466594597644 Where 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)
Where is the Kalahari desert? a year-out -11.336649020613027 Where 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)
Where is the Kalahari desert? agriculture -11.345443556195464 Where 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)
Where is the Kalahari desert? a wider area -11.361645167452192 Where 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)
Where is the Kalahari desert? weight loss success -11.367908168981824 Where 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)
Where is the Kalahari desert? the Hoodia Gordonii plant -11.374908121575524 Where 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)
Where is the Kalahari desert? Jack?s Camp -11.377552871356258 Where 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)
Where is the Kalahari desert? Salt Pan Salt pans -11.390823687604444 Where 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)
Where is the Kalahari desert? satan -11.395321057654007 Where 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)
Where is the Kalahari desert? an advanced fat burner -11.40097726260423 Where 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)
Where is the Kalahari desert? a natural remedy -11.40320245532668 Where 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)
Where is the Kalahari desert? Craig -11.404482364928384 Where 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)
Where is the Kalahari desert? Hoodia plant -11.408050806515297 Where 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)
Where is the Kalahari desert? fascinating species -11.408507626435554 Where 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)
Where is the Kalahari desert? a succulent plant -11.411095670213884 Where 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)
Where is the Kalahari desert? The Bukakhwe San people -11.44475974320117 Where 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)
Where is the Kalahari desert? the Khoikhoi and San -11.449180727908947 Where 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)
Where is the Kalahari desert? Deception Valley -11.449747876962675 Where 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)
Where is the Kalahari desert? Sunny Meerkat -11.455321410558987 Where 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)
Where is the Kalahari desert? Devil?s Claw -11.464212107536769 Where 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)
Where is the Kalahari desert? appetite -11.468650173836387 Where 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)
Where is the Kalahari desert? a daily challenge -11.492193860840057 Where 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)
Where is the Kalahari desert? a game preserve -11.500663031996428 Where 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)
Where is the Kalahari desert? red-brown sands -11.500956131592863 Where 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)
Where is the Kalahari desert? eastern and southern Namibia -11.515694358921955 Where 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)
Where is the Kalahari desert? a vast and almost unpopulated area -11.537799335163138 Where 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)
Where is the Kalahari desert? Dq?e Qare Game Reserve -11.566093668914293 Where 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)
Where is the Kalahari desert? the San or Bushmen -11.582893421344309 Where 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)
Where is the Kalahari desert? UTC+02:00 -11.590893965101625 Where 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)
Where is the Kalahari desert? camels -11.632226766131053 Where 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)
Where is the Kalahari desert? Habitat Meerkats -11.653838514035035 Where 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)
Where is the Kalahari desert? a desert -11.700482102403322 Where 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)
Where is the Kalahari desert? plant -11.748589024271977 Where 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)
Where is the Kalahari desert? the Ju/'hoansi -11.806600689896623 Where 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)
Where is the Kalahari desert? The Bushmen -11.810168714370388 Where 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)
Where is the Kalahari desert? Commment Hoodia -11.848780017541358 Where 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)
Where is the Kalahari desert? sparrow-sized birds -11.870064343915873 Where 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)
Where is the Kalahari desert? a cactus-like plant -11.874946488908027 Where 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)
Where is the Kalahari desert? a normal plant -11.877599048111316 Where 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)
Where is the Kalahari desert? the Beholder -11.942310367623266 Where 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)
Where is the Kalahari desert? pill form -11.95189472475049 Where 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)
Where is the Kalahari desert? the Tsodilo Hills -11.951926597831172 Where 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)
Where is the Kalahari desert? an African plant -11.977146757276667 Where 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)
Where is the Kalahari desert? natives -11.98289861394587 Where 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)
Where is the Kalahari desert? a paleodesert -11.985328132816372 Where 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)
Where is the Kalahari desert? a small mammal -12.043461580595629 Where 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)
Where is the Kalahari desert? a host -12.069142427542118 Where 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)
Where is the Kalahari desert? the Okavango Delta -12.094745963574503 Where 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)
Where is the Kalahari desert? millions -12.106783491166416 Where 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)
Where is the Kalahari desert? centuries -12.107022102561107 Where 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)
Where is the Kalahari desert? part of the huge sand basin -12.11510015862989 Where 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)
Where is the Kalahari desert? yucca plant -12.135206560273891 Where 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)
Where is the Kalahari desert? a small ceremony -12.157005587316185 Where 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)
Where is the Kalahari desert? The Hoodia Gordonii plant -12.172791187393782 Where 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)
Where is the Kalahari desert? cactus plant -12.18338397502447 Where 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)
Where is the Kalahari desert? Even Bushmen -12.184838760782966 Where 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)
Where is the Kalahari desert? the Bushman -12.203797991587964 Where 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)
Where is the Kalahari desert? a rare species -12.22084827485477 Where 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)
Where is the Kalahari desert? a cactus-like , succulent plant -12.257138030242801 Where 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)
Where is the Kalahari desert? An anthropologist -12.26399351210854 Where 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)
Where is the Kalahari desert? 362,500 square miles -12.302286463867379 Where 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)
Where is the Kalahari desert? medicine -12.316178276494913 Where 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)
Where is the Kalahari desert? An appetite suppressant -12.33043355180418 Where 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)
Where is the Kalahari desert? the honey -12.34785410094675 Where 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)
Where is the Kalahari desert? thousands -12.35566508797853 Where 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)
Where is the Kalahari desert? just pure hoodia -12.372586200577674 Where 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)
Where is the Kalahari desert? San Camp -12.375088970411397 Where 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)
Where is the Kalahari desert? The plant -12.408789466090402 Where 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)
Where is the Kalahari desert? the plant -12.431147862698479 Where 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)
Where is the Kalahari desert? juicy cactus -12.450580693145579 Where 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)
Where is the Kalahari desert? The BBC -12.507440526269722 Where 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)
Where is the Kalahari desert? one of the worlds -12.514305966062686 Where 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)
Where is the Kalahari desert? a succulent -12.60709478471298 Where 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)
Where is the Kalahari desert? a 250,000 sq -12.61096585987287 Where 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)
Where is the Kalahari desert? the country -12.62460797554374 Where 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)
Where is the Kalahari desert? springbok -12.66158677326348 Where 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)
Where is the Kalahari desert? great -12.673112743024618 Where 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)
Where is the Kalahari desert? 900,000 sq -12.68288376944534 Where 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)
Where is the Kalahari desert? night -12.729701410526928 Where 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)
Where is the Kalahari desert? the deserts -12.736673642556498 Where 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)
Where is the Kalahari desert? a leopardess -12.749850252466995 Where 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)
Where is the Kalahari desert? 70 % -12.754568752486716 Where 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)
Where is the Kalahari desert? the largest continuous stretch -12.755311519760758 Where 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)
What year was the phonograph invented? 1877 -3.2086469146632726 What 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)
What year was the phonograph invented? Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1) -3.8535095317573047 What 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)
What year was the phonograph invented? Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2) -3.8535095317573047 What 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)
What year was the phonograph invented? Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2) -3.8535095317573047 What 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)
What year was the phonograph invented? Thomas Edison Invents the Light Bulb! The Phonograph! (Part 1) -3.8535095317573047 What 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)
What year was the phonograph invented? Stan Freberg -4.666206176893622 What 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)
What year was the phonograph invented? the 1820s -4.809943311183133 What 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)
What year was the phonograph invented? the 18th century -4.871590781679366 What 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)
What year was the phonograph invented? 1912 -5.803051971668819 What 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)
What year was the phonograph invented? Edison -5.911363088320591 What 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)
What year was the phonograph invented? Fall 2003 -6.42505998990267 What 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)
What year was the phonograph invented? First -6.708329268421062 What 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)
What year was the phonograph invented? FIRST -7.103120905491909 What 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)
What year was the phonograph invented? the Year ? -7.7716999918788945 What 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)
What year was the phonograph invented? existence -7.801775112112679 What 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)
What year was the phonograph invented? the year -9.169726713197708 What 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)
What team drafted Brett Favre? the Falcons -6.14926749205712 What 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)
What is the inner peel of an orange called? Blend -9.700258568251698 What is the inner peel of 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)
What is the inner peel of an orange called? a man -9.834975575943112 What is the inner peel of 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)
What is the inner peel of an orange called? a vegetable peeler -10.431222702857228 What is the inner peel of 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)
What is the inner peel of an orange called? essential oil -10.861967288748138 What is the inner peel of 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)
What is the inner peel of an orange called? tea -10.991084959647912 What is the inner peel of 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)
What is the inner peel of an orange called? an adsorbent -11.223307148348747 What is the inner peel of 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)
What is the inner peel of an orange called? old fashioned -11.345201541423911 What is the inner peel of 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)
What is the inner peel of an orange called? side -11.48687404344703 What is the inner peel of 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)
What is the inner peel of an orange called? free motion -11.551219411886624 What is the inner peel of 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)
What is the inner peel of an orange called? a little -11.574376283894772 What is the inner peel of 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)
What is the inner peel of an orange called? ? skin -11.586898394213977 What is the inner peel of 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)
What is the inner peel of an orange called? oil -11.648974795296654 What is the inner peel of 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)
What is the inner peel of an orange called? block pattern -11.687584664525275 What is the inner peel of 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)
What is the inner peel of an orange called? ice -11.701034301903903 What is the inner peel of 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)
What is the inner peel of an orange called? Re -11.727793405247878 What is the inner peel of 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)
What is the inner peel of an orange called? such a way -11.760322010137457 What is the inner peel of 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)
What is the inner peel of an orange called? a long strip -11.778435330801333 What is the inner peel of 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)
What is the inner peel of an orange called? Steps -11.778551836413927 What is the inner peel of 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)
What is the inner peel of an orange called? several ?sachets -11.795800826254448 What is the inner peel of 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)
What is the inner peel of an orange called? color and pulp color -11.799534392763356 What is the inner peel of 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)
What is the inner peel of an orange called? Steep tea -11.830132234862166 What is the inner peel of 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)
What is the inner peel of an orange called? the layer -11.855299216353327 What is the inner peel of 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)
What is the inner peel of an orange called? ? navel orange -11.87007343258787 What is the inner peel of 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)
What is the inner peel of an orange called? 20mg -11.882173983734782 What is the inner peel of 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)
What is the inner peel of an orange called? Place all ingredients -11.899680810200676 What is the inner peel of 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)
What is the inner peel of an orange called? aluminum reflector -11.937952286739769 What is the inner peel of 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)
What is the inner peel of an orange called? Brew tea -11.94283900244858 What is the inner peel of 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)
What is the inner peel of an orange called? outer skin -11.971191796115134 What is the inner peel of 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)
What is the inner peel of an orange called? holy yumminess -12.004503815823346 What is the inner peel of 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)
What is the inner peel of an orange called? cancer studies -12.095637232046732 What is the inner peel of 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)
What is the inner peel of an orange called? 4x6 -12.117464959807947 What is the inner peel of 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)
What is the inner peel of an orange called? each quarter -12.134701017413626 What is the inner peel of 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)
What is the inner peel of an orange called? Peel -12.141085145028207 What is the inner peel of 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)
What is the inner peel of an orange called? 1 carrot -12.14962779462714 What is the inner peel of 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)
What is the inner peel of an orange called? quality -12.151901016672927 What is the inner peel of 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)
What is the inner peel of an orange called? 50 grams butter Extract fresh orange juice -12.166781903771941 What is the inner peel of 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)
What is the inner peel of an orange called? 1/2 -12.172777189116157 What is the inner peel of 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)
What is the inner peel of an orange called? 250g small strawberries -12.23548208234803 What is the inner peel of 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)
What is the inner peel of an orange called? Directions -12.24188775891297 What is the inner peel of 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)
What is the inner peel of an orange called? the Ginger -12.245197237670993 What is the inner peel of 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)
What is the inner peel of an orange called? 1 tsp -12.277039370222518 What is the inner peel of 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)
What is the inner peel of an orange called? rough or dead skin -12.288894035619087 What is the inner peel of 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)
What is the inner peel of an orange called? a railroad track -12.315244919821417 What is the inner peel of 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)
What is the inner peel of an orange called? Madge -12.322761375380889 What is the inner peel of 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)
What is the inner peel of an orange called? 1 tablespoon fresh rosemary -12.333770974179584 What is the inner peel of 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)
What is the inner peel of an orange called? 4 c Sifted flour -12.34971112488482 What is the inner peel of 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)
What is the inner peel of an orange called? 1/2 cup -12.359505178800532 What is the inner peel of 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)
What is the inner peel of an orange called? papery flakes -12.378700672670861 What is the inner peel of 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)
What is the inner peel of an orange called? 4 cups fresh soft crumbs -12.519844741806141 What is the inner peel of 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)
What is the inner peel of an orange called? a lot of attention -12.592943781731861 What is the inner peel of 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)
What is the inner peel of an orange called? Strain -12.672577842983188 What is the inner peel of 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)
What is the inner peel of an orange called? now -12.983447763167778 What is the inner peel of 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)
What is the inner peel of an orange called? a skydiver -13.06440572865059 What is the inner peel of 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)
What is the inner peel of an orange called? the orange rind -13.199961296470368 What is the inner peel of 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)
What is the inner peel of an orange called? the oranges -13.205305926129906 What is the inner peel of 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)
What is the inner peel of an orange called? the orange zest -13.290979795446372 What is the inner peel of 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)
What is the inner peel of an orange called? hand -13.301240410534028 What is the inner peel of 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)
What is the inner peel of an orange called? the fruit -13.350415882419755 What is the inner peel of 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)
What is the inner peel of an orange called? the rest -13.390358437890363 What is the inner peel of 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)
What is the inner peel of an orange called? a yellow colour -13.406972402666586 What is the inner peel of 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)
What is the inner peel of an orange called? Lake Geneva -13.468443322455588 What is the inner peel of 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)
What is the inner peel of an orange called? 15 troubled months -13.487309111247631 What is the inner peel of 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)
What is the inner peel of an orange called? thighs -13.552281622707188 What is the inner peel of 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)
What is the inner peel of an orange called? already -13.59427607966942 What is the inner peel of 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)
What is the inner peel of an orange called? filtered water -13.595119340037446 What is the inner peel of 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)
What is the inner peel of an orange called? acts -13.59626789766431 What is the inner peel of 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)
What is the inner peel of an orange called? Thai basil -13.596506750818396 What is the inner peel of 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)
What is the inner peel of an orange called? Gulf Shores -13.60998283660813 What is the inner peel of 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)
What is the inner peel of an orange called? peach -13.633468768958277 What is the inner peel of 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)
What is the inner peel of an orange called? grapes -13.659994677204944 What is the inner peel of 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)
What is the inner peel of an orange called? zest -13.746875136453896 What is the inner peel of 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)
What is the inner peel of an orange called? loose skin -13.773477619415107 What is the inner peel of 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)
What is the inner peel of an orange called? chicken -13.798673390813292 What is the inner peel of 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)
What is the inner peel of an orange called? water -13.798673390813292 What is the inner peel of 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)
What is the inner peel of an orange called? pear -13.819481479124883 What is the inner peel of 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)
What is the inner peel of an orange called? 1/4 cup -13.81973618607423 What is the inner peel of 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)
What is the inner peel of an orange called? real-world connections -13.852834013538276 What is the inner peel of 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)
What is the inner peel of an orange called? teeth -13.865159708608148 What is the inner peel of 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)
What is the inner peel of an orange called? the appearance -13.94574620475055 What is the inner peel of 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)
What is the inner peel of an orange called? a branch -13.977688143465441 What is the inner peel of 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)
What is the inner peel of an orange called? the cleanest -13.9780427203818 What is the inner peel of 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)
What is the inner peel of an orange called? a copper pan -13.98774704379759 What is the inner peel of 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)
What is the inner peel of an orange called? a BMW. -13.995377336589867 What is the inner peel of 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)
What is the inner peel of an orange called? birthmarks Icepack -14.048767938154628 What is the inner peel of 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)
What is the inner peel of an orange called? least four times -14.084766693370652 What is the inner peel of 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)
What is the inner peel of an orange called? sea -14.085245725674783 What is the inner peel of 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)
What is the inner peel of an orange called? purplish-blue -14.118583855946582 What is the inner peel of 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)
What is the inner peel of an orange called? the Crumlin Road -14.13680263501813 What is the inner peel of 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)
What is the inner peel of an orange called? aromas -14.137442572838287 What is the inner peel of 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)
What is the inner peel of an orange called? a big coat -14.153561043249507 What is the inner peel of 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)
What is the inner peel of an orange called? sweet potatoes -14.188173417021204 What is the inner peel of 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)
What is the inner peel of an orange called? Orange Beach -14.2409718894645 What is the inner peel of 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)
What is the inner peel of an orange called? one output -14.24297973838317 What is the inner peel of 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)
What is the inner peel of an orange called? a Subaru SUV -14.292532382753103 What is the inner peel of 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)
What is the inner peel of an orange called? pure white light -14.302878465418418 What is the inner peel of 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)
What is the inner peel of an orange called? fine-line magic marker -14.329580971393664 What is the inner peel of 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)
What is the inner peel of an orange called? base -14.338314524995358 What is the inner peel of 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)
What is the inner peel of an orange called? dudes -14.366608858746513 What is the inner peel of 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)
What is the inner peel of an orange called? dark blue and black -14.399194260650875 What is the inner peel of 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)
What is the inner peel of an orange called? Penzance -14.424049281482157 What is the inner peel of 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)
What is the inner peel of an orange called? a corner -14.444959994325384 What is the inner peel of 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)
What is the inner peel of an orange called? red -14.494783418545136 What is the inner peel of 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)
What is the inner peel of an orange called? Tortilla chips -14.584116014798091 What is the inner peel of 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)
What is the inner peel of an orange called? firm conclusions -14.59732068550959 What is the inner peel of 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)
What is the inner peel of an orange called? social media -14.616607755277386 What is the inner peel of 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)
What is the inner peel of an orange called? the LED ligts -14.641262048674943 What is the inner peel of 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)
What is the inner peel of an orange called? a fertile area -14.649657176280458 What is the inner peel of 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)
What is the inner peel of an orange called? Los Angeles -14.670136514793445 What is the inner peel of 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)
What is the inner peel of an orange called? maraschino cherries -14.671000578092073 What is the inner peel of 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)
What is the inner peel of an orange called? character -14.683797258276654 What is the inner peel of 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)
What is the inner peel of an orange called? a year or so -14.722326759520032 What is the inner peel of 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)
What is the inner peel of an orange called? the air pockets -14.734626067981134 What is the inner peel of 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)
What is the inner peel of an orange called? Ukraine -14.736465459506075 What is the inner peel of 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)
What is the inner peel of an orange called? AOS weekend -14.75014356264617 What is the inner peel of 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)
What is the inner peel of an orange called? a dark blue -14.752224116365035 What is the inner peel of 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)
What is the inner peel of an orange called? a supermarket -14.76291044164487 What is the inner peel of 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)
What is the inner peel of an orange called? Forrest Wang -14.768101049687044 What is the inner peel of 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)
What is the inner peel of an orange called? green containers , dogs and cats -14.776423338923287 What is the inner peel of 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)
What is the inner peel of an orange called? a Ziploc sandwich bag -14.779906552884189 What is the inner peel of 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)
What is the inner peel of an orange called? 1,000 degrees -14.78896982748007 What is the inner peel of 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)
What is the inner peel of an orange called? a year or so ? more Options -14.800054283132933 What is the inner peel of 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)
What is the inner peel of an orange called? the ROM update -14.82402396988888 What is the inner peel of 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)
What is the inner peel of an orange called? utter contempt -14.842595231874148 What is the inner peel of 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)
What is the inner peel of an orange called? small patches -14.87036326186125 What is the inner peel of 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)
What is the inner peel of an orange called? a plate -14.87202656024937 What is the inner peel of 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)
What is the inner peel of an orange called? cold winter gray -14.872316351709046 What is the inner peel of 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)
What is the inner peel of an orange called? Glass -14.967757213858636 What is the inner peel of 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)
What is the inner peel of an orange called? drying -14.96826968632778 What is the inner peel of 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)
What is the inner peel of an orange called? East Michigan Street -14.975344483982422 What is the inner peel of 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)
What is the inner peel of an orange called? 6 sprigs -14.99042794554492 What is the inner peel of 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)
What is the inner peel of an orange called? red bell peppers -15.013088026196353 What is the inner peel of 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)
What is the inner peel of an orange called? E. Michigan Street -15.02867504268667 What is the inner peel of 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)
What is the inner peel of an orange called? Valentine -15.03022581610324 What is the inner peel of 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)
What is the inner peel of an orange called? the Elite Eight -15.044588915078002 What is the inner peel of 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)
What is the inner peel of an orange called? non-stop mobile Internet access -15.045420411329221 What is the inner peel of 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)
What is the inner peel of an orange called? Pastry -15.061129277329561 What is the inner peel of 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)
What is the inner peel of an orange called? Fresh dill Dash soy sauce Method -15.08119718634827 What is the inner peel of 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)
What is the inner peel of an orange called? a black night -15.086864099384279 What is the inner peel of 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)
What is the inner peel of an orange called? black velvet -15.102470201143152 What is the inner peel of 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)
What is the inner peel of an orange called? usually -15.112180746418055 What is the inner peel of 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)
What is the inner peel of an orange called? a delicate light pink -15.115814131707138 What is the inner peel of 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)
What is the inner peel of an orange called? DRIVE -15.128994063621281 What is the inner peel of 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)
What is the inner peel of an orange called? 1 kiwi -15.134015493573699 What is the inner peel of 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)
What is the inner peel of an orange called? pale pink Celestite -15.140761611491245 What is the inner peel of 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)
What is the inner peel of an orange called? 1 lemon -15.145607604244578 What is the inner peel of 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)
What is the inner peel of an orange called? pale orange -15.149332712828809 What is the inner peel of 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)
What is the inner peel of an orange called? a play kitchen -15.156842215907167 What is the inner peel of 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)
What is the inner peel of an orange called? a cold , pale rust tone -15.166914721478726 What is the inner peel of 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)
What is the inner peel of an orange called? 3 T minced cilantro -15.19614448970718 What is the inner peel of 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)
What is the inner peel of an orange called? 4 oz -15.200553062619079 What is the inner peel of 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)
What is the inner peel of an orange called? I-95 North -15.201955915299902 What is the inner peel of 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)
What is the inner peel of an orange called? macerate -15.230817248637171 What is the inner peel of 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)
What is the inner peel of an orange called? 3 Tb -15.277789679542744 What is the inner peel of 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)
What is the inner peel of an orange called? Yellow Baby Ben Patent # 201895 -15.29150076371339 What is the inner peel of 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)
What is the inner peel of an orange called? 2 tbs -15.296849792085341 What is the inner peel of 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)
What is the inner peel of an orange called? 1 cup ripe mango -15.29966696496251 What is the inner peel of 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)
What is the inner peel of an orange called? 2 large avocados -15.301287009071912 What is the inner peel of 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)
What is the inner peel of an orange called? orange segments -15.315318570106077 What is the inner peel of 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)
What is the inner peel of an orange called? 1 lime -15.318462781016137 What is the inner peel of 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)
What is the inner peel of an orange called? hamburger meat -15.327056445647905 What is the inner peel of 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)
What is the inner peel of an orange called? 2 14 oz -15.331398791972136 What is the inner peel of 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)
What is the inner peel of an orange called? 1 Tbsp parsley -15.344104555564002 What is the inner peel of 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)
What is the inner peel of an orange called? a bit -15.352047551084398 What is the inner peel of 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)
What is the inner peel of an orange called? 1 small onion -15.360020068890625 What is the inner peel of 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)
What is the inner peel of an orange called? 1 cup jicama -15.360020068890625 What is the inner peel of 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)
What is the inner peel of an orange called? 1 green bell pepper -15.363180847683097 What is the inner peel of 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)
What is the inner peel of an orange called? 1 sm -15.370630463810668 What is the inner peel of 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)
What is the inner peel of an orange called? ? 1 kiwi -15.37465924942774 What is the inner peel of 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)
What is the inner peel of an orange called? 1 stalk celery -15.377704060424032 What is the inner peel of 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)
What is the inner peel of an orange called? Highway 76 -15.387667802150183 What is the inner peel of 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)
What is the inner peel of an orange called? fresh figs -15.411973395950898 What is the inner peel of 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)
What is the inner peel of an orange called? 1/2 cup fresh cilantro -15.420443780238118 What is the inner peel of 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)
What is the inner peel of an orange called? the bottom -15.439494237743965 What is the inner peel of 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)
What is the inner peel of an orange called? a darker color -15.460637100418262 What is the inner peel of 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)
What is the inner peel of an orange called? Black satin -15.528834016165149 What is the inner peel of 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)
What is the inner peel of an orange called? 3-4 minutes -15.551167367450029 What is the inner peel of 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)
What is the inner peel of an orange called? white -15.552538329659638 What is the inner peel of 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)
What is the inner peel of an orange called? the March -15.566905403164746 What is the inner peel of 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)
What is the inner peel of an orange called? again -15.584870183819534 What is the inner peel of 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)
What is the inner peel of an orange called? Dissolve -15.621310195828798 What is the inner peel of 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)
What is the inner peel of an orange called? the house -15.667473014605825 What is the inner peel of 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)
What is the inner peel of an orange called? nostalgia -15.714125354091465 What is the inner peel of 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)
What is the inner peel of an orange called? the market -15.715794177772292 What is the inner peel of 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)
What is the inner peel of an orange called? 1868 -15.735758083592037 What is the inner peel of 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)
What is the inner peel of an orange called? lavender and indigo -15.781081641742865 What is the inner peel of 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)
What is the inner peel of an orange called? the mine site -15.795202592828552 What is the inner peel of 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)
What is the inner peel of an orange called? thousands -15.868226443386565 What is the inner peel of 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)
What is the inner peel of an orange called? the global restaurant chain -15.90264011844505 What is the inner peel of 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)
What is the inner peel of an orange called? the final mixture -15.907001642490483 What is the inner peel of 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)
What is the inner peel of an orange called? the sky -15.945349815724038 What is the inner peel of 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)
What is the inner peel of an orange called? the west -15.962534531075772 What is the inner peel of 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)
What is the inner peel of an orange called? ice Combine -15.965796092547167 What is the inner peel of 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)
What is the inner peel of an orange called? the town -15.966370481241261 What is the inner peel of 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)
What is the inner peel of an orange called? the obvious years -15.992828290807388 What is the inner peel of 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)
What is the inner peel of an orange called? the lungs -16.00320130834226 What is the inner peel of 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)
What is the inner peel of an orange called? the value -16.009099897883274 What is the inner peel of 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)
What is the inner peel of an orange called? the crowd -16.051796183253064 What is the inner peel of 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)
What is the inner peel of an orange called? extinction -16.05651938924899 What is the inner peel of 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)
What is the inner peel of an orange called? the dirt -16.07369363064654 What is the inner peel of 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)
What is the inner peel of an orange called? attention -16.09217978318683 What is the inner peel of 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)
What is the inner peel of an orange called? the laboring -16.099086903606477 What is the inner peel of 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)
What is the inner peel of an orange called? the fastest -16.112299742672338 What is the inner peel of 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)
What is the inner peel of an orange called? commuters -16.132131943398868 What is the inner peel of 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)
What is the inner peel of an orange called? the atmosphere -16.16098074221766 What is the inner peel of 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)
What is the inner peel of an orange called? the ongoing transformation -16.16144712045691 What is the inner peel of 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)
What is the inner peel of an orange called? bankruptcy -16.174761816603258 What is the inner peel of 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)
What is the inner peel of an orange called? the hotel -16.178801279560656 What is the inner peel of 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)
What is the inner peel of an orange called? insurance -16.187794119745686 What is the inner peel of 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)
What is the inner peel of an orange called? the gaze -16.20981279334465 What is the inner peel of 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)
What is the inner peel of an orange called? the rain -16.22238808665566 What is the inner peel of 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)
What is the inner peel of an orange called? the pocket -16.254842311398562 What is the inner peel of 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)
What is the inner peel of an orange called? nails -16.258650742882296 What is the inner peel of 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)
What is the inner peel of an orange called? the center -16.342160075070705 What is the inner peel of 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)
What is the inner peel of an orange called? the hall or parking lot -16.342759754693525 What is the inner peel of 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)
What is the inner peel of an orange called? colour -16.352519549498226 What is the inner peel of 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)
What is the inner peel of an orange called? zucchini -16.410876589802726 What is the inner peel of 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)
What is the inner peel of an orange called? the oven -16.43544646939024 What is the inner peel of 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)
What is the inner peel of an orange called? the menu -16.463941269027806 What is the inner peel of 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)
What is the inner peel of an orange called? pears -16.484235509780152 What is the inner peel of 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)
What is the inner peel of an orange called? the night air -16.500689035528197 What is the inner peel of 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)
What is the inner peel of an orange called? the flesh -16.500984673823574 What is the inner peel of 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)
What is the inner peel of an orange called? the canvas -16.50465097616875 What is the inner peel of 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)
What is the inner peel of an orange called? the middle -16.58509531854264 What is the inner peel of 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)
What is the inner peel of an orange called? the trout -16.602240299728024 What is the inner peel of 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)
What is the inner peel of an orange called? the testing fork -16.612917616004466 What is the inner peel of 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)
What is the inner peel of an orange called? the horizon -16.629270050932583 What is the inner peel of 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)
What is the inner peel of an orange called? the hive -16.655589015174492 What is the inner peel of 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)
What is the inner peel of an orange called? almonds -16.65990300726032 What is the inner peel of 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)
What is the inner peel of an orange called? the painful light -16.718751587297007 What is the inner peel of 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)
What is the inner peel of an orange called? rocks -16.729377068163746 What is the inner peel of 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)
What is the inner peel of an orange called? part -16.75100920303359 What is the inner peel of 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)
What is the inner peel of an orange called? coconut -16.78280649808159 What is the inner peel of 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)
What is the inner peel of an orange called? sight -16.8064427804226 What is the inner peel of 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)
What is the inner peel of an orange called? landfill -16.809644854538142 What is the inner peel of 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)
What is the inner peel of an orange called? the army -16.81494465626162 What is the inner peel of 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)
What is the inner peel of an orange called? prunes -16.81640600294162 What is the inner peel of 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)
What is the inner peel of an orange called? the sunset -16.817771699802794 What is the inner peel of 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)
What is the inner peel of an orange called? mushrooms -16.821353292238257 What is the inner peel of 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)
What is the inner peel of an orange called? paint -16.850112476591896 What is the inner peel of 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)
What is the inner peel of an orange called? time -16.872781144744355 What is the inner peel of 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)
What is the inner peel of an orange called? buttercup -16.89318226360831 What is the inner peel of 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)
What is the inner peel of an orange called? driftwood -16.910622960921028 What is the inner peel of 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)
What is the inner peel of an orange called? year -16.91158413256704 What is the inner peel of 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)
What is the inner peel of an orange called? tomatoes -16.924506626406384 What is the inner peel of 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)
What is the inner peel of an orange called? board -16.925003922167043 What is the inner peel of 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)
What is the inner peel of an orange called? edges -16.969139534880682 What is the inner peel of 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)
What is the inner peel of an orange called? black -16.976936819666776 What is the inner peel of 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)
What is the inner peel of an orange called? night -17.104501264335422 What is the inner peel of 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)
What is the inner peel of an orange called? turquoise -17.14546711697954 What is the inner peel of 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)
What is the inner peel of an orange called? yellow -17.1719930779285 What is the inner peel of 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)
What is the inner peel of an orange called? input -17.205669859437545 What is the inner peel of 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)
What is the inner peel of an orange called? front -17.30650505467627 What is the inner peel of 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)
What is the inner peel of an orange called? widgets -17.33552066136501 What is the inner peel of 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)
What is the inner peel of an orange called? hours -17.42898725224845 What is the inner peel of 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)
What is the inner peel of an orange called? blue -17.46458282073209 What is the inner peel of 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)
What is the inner peel of an orange called? brown -17.480329313121256 What is the inner peel of 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)
What is the inner peel of an orange called? greens -17.533257997007965 What is the inner peel of 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)
What is the inner peel of an orange called? spine -17.564497201613378 What is the inner peel of 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)
What is the inner peel of an orange called? potatoes -18.19085833021683 What is the inner peel of 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)
What is the inner peel of an orange called? points -18.215373528060933 What is the inner peel of 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)
What is the inner peel of an orange called? away -18.312321296360032 What is the inner peel of 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)
Where is Rider College located? Jamaica -6.723843521347898 Where 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)
Where is Rider College located? Agoura -6.77149091438644 Where 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)
Where is Rider College located? Prescott -6.77149091438644 Where 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)
Where is Rider College located? Cottonwood -6.77149091438644 Where 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)
Where is Rider College located? Flagstaff -6.77149091438644 Where 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)
Where is Rider College located? Tucson -6.77149091438644 Where 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)
Where is Rider College located? Ottawa -6.77149091438644 Where 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)
Where is Rider College located? Lawrenceville -6.842962003944256 Where 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)
Where is Rider College located? New Zealand -6.845863689381227 Where 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)
Where is Rider College located? New Orleans -6.845863689381227 Where 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)
Where is Rider College located? Mescal -6.870450884543415 Where 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)
Where is Rider College located? Nashville -7.20031745173333 Where 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)
Where is Rider College located? Frisco -7.20031745173333 Where 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)
Where is Rider College located? Bronc -7.974099722002956 Where 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)
Where is Rider College located? New Jersey -8.668728561224757 Where 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)
Where is Rider College located? Singapore -8.954506412874878 Where 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)
Where is Rider College located? Jut -9.529807292780134 Where 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)
Where is Rider College located? Southern California -9.57002059254417 Where 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)
Where is Rider College located? Africa -9.866024191315631 Where 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)
Where is Rider College located? Ipswich -9.982345440184183 Where 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)
Where is Rider College located? safety and comfort -10.325378643881255 Where 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)
Where is Rider College located? any shuttle -10.340185869024378 Where 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)
Where is Rider College located? southern California -10.413121083316227 Where 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)
Where is Rider College located? Pennsylvania -10.76838597889708 Where 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)
Where is Rider College located? NJ New Jersey -10.911013618560675 Where 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)
Where is Rider College located? SCLC -11.203776792247526 Where 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)
Where is Rider College located? the pack -11.482093377779329 Where 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)
Where is Rider College located? Stuntman Kidd -11.490024329300626 Where 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)
Where is Rider College located? The Board -11.737952070893673 Where 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)
Where is Rider College located? Possession -11.808498891882742 Where 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)
Where is Rider College located? Stevens -11.816827408704093 Where 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)
Where is Rider College located? Houston -11.829596069032652 Where 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)
Where is Rider College located? Steven -11.891767662759932 Where 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)
Where is Rider College located? Stanford -11.933339516907157 Where 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)
Where is Rider College located? VWS members -12.000845175288351 Where 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)
Where is Rider College located? Criteria -12.118302699233528 Where 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)
Where is Rider College located? Nina DePetris -12.155186173818112 Where 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)
Where is Rider College located? the port -12.184371033743412 Where 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)
Where is Rider College located? The Station -12.185012785463172 Where 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)
Where is Rider College located? Mike Karsting -12.274304656414472 Where 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)
Where is Rider College located? Area -12.29574564228178 Where 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)
Where is Rider College located? an email -12.31586194428896 Where 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)
Where is Rider College located? Scranton -12.319673488098854 Where 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)
Where is Rider College located? Friends -12.36718596568127 Where 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)
Where is Rider College located? Friend -12.398486637623492 Where 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)
Where is Rider College located? John Harrel -12.42235139253263 Where 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)
Where is Rider College located? the Olympics -12.437756032332459 Where 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)
Where is Rider College located? daily -12.452969784532748 Where 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)
Where is Rider College located? night -12.508229531854525 Where 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)
Where is Rider College located? Hill -12.810221505901705 Where 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)
Where is Rider College located? Title V -12.885086389249167 Where 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)
Where is Rider College located? Hall -12.91212749305543 Where 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)
Where is Rider College located? real estate -12.974632958746819 Where 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)
Where is Rider College located? construction project -13.133126259513064 Where 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)
Where is Rider College located? the style -13.220629954036902 Where 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)
Where is Rider College located? Real estate -13.245195107217516 Where 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)
Where is Rider College located? Will county -13.331128217683172 Where 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)
Where is Rider College located? il Houston -13.38817002939754 Where 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)
Where is Rider College located? Pre existing conditions -13.477505204821195 Where 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)
Where is Rider College located? ? 1st grade children -13.531211130343348 Where 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)
Where is Rider College located? possession -13.560976046956373 Where 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)
Where is Rider College located? southern california -13.57212557183951 Where 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)
Where is Rider College located? the dog attack -13.739398961390819 Where 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)
Where is Rider College located? SINGAPORE -13.887767015847963 Where 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)
Where is Rider College located? criterion -13.900603778550122 Where 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)
Where is Rider College located? criteria -13.904805931661018 Where 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)
Where is Rider College located? point -13.996583602925266 Where 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)
Where is Rider College located? the depth -14.016598457448 Where 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)
Where is Rider College located? the expiration -14.149817650143506 Where 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)
Where is Rider College located? hill -14.155647664880233 Where 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)
Where is Rider College located? friend -14.163504649174605 Where 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)
Where is Rider College located? The board -14.338518727153621 Where 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)
Where is Rider College located? The Sign -14.480278008310535 Where 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)
Where is Rider College located? 3-mm thick steel plate -14.617140636199794 Where 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)
Where is Rider College located? the project -14.624230755831022 Where 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)
Where is Rider College located? The project -14.697005142115113 Where 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)
Where is Rider College located? 1902 -14.77692997333474 Where 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)
What is the heaviest naturally occurring element? crossword puzzle clue -4.779116976579605 What 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)
What is the heaviest naturally occurring element? element -7.190815481989836 What 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)
what is Speedy Claxton's real name? Speedy Claxton -8.022953487716052 what 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)
What is the capital of Italy? Florence Italy 2.4146375686835606 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence Italy, was actually the capital of, Italy) -> Florence Italy (4485ms)
What is the capital of Italy? Romans Rome Rome 2.364002325127956 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Romans Rome Rome, is the capital of, Italy) -> Romans Rome Rome (4486ms)
What is the capital of Italy? Emilia-Romagna 2.2630374781369906 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Emilia-Romagna, is the gastronomic capital of, Italy) -> Emilia-Romagna (4485ms)
What is the capital of Italy? Rome Rome Rome 2.062184116270105 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Rome Rome, is the capital of, Italy) -> Rome Rome Rome (4486ms)
What is the capital of Italy? Florence 1.9461090416576043 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence, was the capital of, Italy) -> Florence (4980ms)
What is the capital of Italy? neighbouring Riccione 1.8876901549271912 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (neighbouring Riccione, is the clubbing capital of, Italy) -> neighbouring Riccione (4980ms)
What is the capital of Italy? Rome 1.872730415770571 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome, Is the capital of, Italy) -> Rome (4980ms)
What is the capital of Italy? Firenze 1.794132513644377 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Firenze, was the capital of, Italy) -> Firenze (12469ms)
What is the capital of Italy? Turin 1.78568274331953 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Turin, was the capital of, Italy) -> Turin (12469ms)
What is the capital of Italy? Italy Florence 1.773095612585871 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Italy Florence, is the artistic capital of, Italy) -> Italy Florence (12469ms)
What is the capital of Italy? Rome Rome 1.7471768411428368 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Rome, has been the capital of, Italy) -> Rome Rome (12469ms)
What is the capital of Italy? Florence Florence 1.744801278834716 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence Florence, is the artistic capital of, Italy) -> Florence Florence (12469ms)
What is the capital of Italy? The 'Eternal City 1.6852478351415225 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (The 'Eternal City, is the capital of, Italy) -> The 'Eternal City (12845ms)
What is the capital of Italy? E Rome 1.6631780789927633 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (E Rome, is the capital of, Italy) -> E Rome (12986ms)
What is the capital of Italy? Major Cities 1.6572657183779609 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Major Cities, is the capital of, Italy) -> Major Cities (12986ms)
What is the capital of Italy? close Rome 1.6472625129638452 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (close Rome, is the capital of, Italy) -> close Rome (12986ms)
What is the capital of Italy? Perugia 1.5806530838961348 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Perugia, is the capital city of, Italy) -> Perugia (13437ms)
What is the capital of Italy? Salerno 1.5205276180871432 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Salerno, was the capital city of, Italy) -> Salerno (13876ms)
What is the capital of Italy? Student Blogger Florence 1.520024525133096 What 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)
What is the capital of Italy? Bologna 1.5138511889643311 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Bologna, is also the culinary capital of, Italy) -> Bologna (13876ms)
What is the capital of Italy? Ask 1.5103835970548936 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Ask, is the capital of, Italy) -> Ask (13876ms)
What is the capital of Italy? a Roman Rome Rome 1.5027764297686175 What 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)
What is the capital of Italy? National government Rome 1.459782319933221 What 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)
What is the capital of Italy? Discussion Forum Rome Rome 1.4566729408096726 What 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)
What is the capital of Italy? an extremely beautiful country 1.423704077086605 What 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)
What is the capital of Italy? an extremely attractive city 1.423639508959349 What 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)
What is the capital of Italy? Local Information Rome 1.4067304507375922 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Local Information Rome, is the capital of, Italy) -> Local Information Rome (14113ms)
What is the capital of Italy? Venice 1.4059590344908512 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Kingdom of Italy, Capital, Venice) -> Venice (14113ms)
What is the capital of Italy? Milan 1.4059590344908512 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Kingdom of Italy, Capital, Milan) -> Milan (14114ms)
What is the capital of Italy? world history Rome 1.3798864290995345 What 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)
What is the capital of Italy? Rome Colosseum Rome 1.357642799031777 What 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)
What is the capital of Italy? a . Rome 1.357642799031777 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (a . Rome, is the capital of, Italy) -> a . Rome (14363ms)
What is the capital of Italy? Ravenna 1.314906719007444 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Ravenna, was then the Roman capital of, Italy) -> Ravenna (14363ms)
What is the capital of Italy? Johnny 1.2858022404815497 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Johnny, is the capital of, Italy) -> Johnny (14450ms)
What is the capital of Italy? Society Rome ? 1.2773840571422141 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Society Rome ?, is the capital city of, Italy) -> Society Rome ? (14450ms)
What is the capital of Italy? close Turin ? 1.267136513278047 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (close Turin ?, was the original capital of, Italy) -> close Turin ? (14450ms)
What is the capital of Italy? Rome and Vatican City Rome 1.2485683353435442 What 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)
What is the capital of Italy? Rome Hotel Guide Rome 1.2203385697196447 What 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)
What is the capital of Italy? unified Italy 1.0241068435023557 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, was the first capital of, unified Italy) -> unified Italy (14601ms)
What is the capital of Italy? the Emilia-Romagna 1.0184393787507466 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (northern Italy, is the capital city of, the Emilia-Romagna) -> the Emilia-Romagna (14601ms)
What is the capital of Italy? Italy Rome 1.0004942760129674 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Italy Rome, is the capital of, Italy) -> Italy Rome (14601ms)
What is the capital of Italy? Tirana 0.8818377110668756 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Albania under Italy, Capital, Tirana) -> Tirana (15244ms)
What is the capital of Italy? Italy 0.7670499558745321 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Rome, is the capital of, Italy) -> Italy (15243ms)
What is the capital of Italy? the 2006 winter Olympics 0.7601626064567417 What 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)
What is the capital of Italy? Tuscany ? 0.7446188025430254 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (12:00 pm Florence , Italy ,, is the capital of, Tuscany ?) -> Tuscany ? (15285ms)
What is the capital of Italy? Availability Rome 0.6844400967575917 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Availability Rome, is the capital of, Italy) -> Availability Rome (15286ms)
What is the capital of Italy? 4 June Rome Rome Rome 0.6779322171088613 What 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)
What is the capital of Italy? 1861 Rome 0.6708586731977935 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (1861 Rome, was declared the capital of, Italy) -> 1861 Rome (15286ms)
What is the capital of Italy? National Rome 0.6658719188230888 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (National Rome, is the national capital of, Italy) -> National Rome (15648ms)
What is the capital of Italy? Latin Roma 0.6284012500934 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Latin Roma, is the capital city of, Italy) -> Latin Roma (15650ms)
What is the capital of Italy? February 8-10 Milan 0.4777853946571917 What 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)
What is the capital of Italy? Milan Rome 0.42551373051583385 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Milan Rome, may be the administrative capital of, Italy) -> Milan Rome (15739ms)
What is the capital of Italy? Rome 2313 60.05 % Rome 0.37436392004649033 What 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)
What is the capital of Italy? the Province 0.35697588649582346 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, the Province) -> the Province (15856ms)
What is the capital of Italy? Naples 0.3505943768273232 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Napoli, is the capital city of, Naples) -> Naples (15856ms)
What is the capital of Italy? Tuscany 0.3169948719672937 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Florence, is the regional capital of, Tuscany) -> Tuscany (15856ms)
What is the capital of Italy? the Siena Province 0.31334802561737396 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, the Siena Province) -> the Siena Province (15856ms)
What is the capital of Italy? Sicily 0.2887651063433945 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Palermo Italy Palermo, is the capital city of, Sicily) -> Sicily (16131ms)
What is the capital of Italy? the Campania Region 0.15282121271884463 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital city of, the Campania Region) -> the Campania Region (16201ms)
What is the capital of Italy? the Italian island 0.12267525067158358 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Palermo, is the capital of, the Italian island) -> the Italian island (16201ms)
What is the capital of Italy? the Calabria region 0.08773473949019861 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Catanzaro, is capital of, the Calabria region) -> the Calabria region (16201ms)
What is the capital of Italy? the Trentino region 0.08773473949019861 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Trento, is the capital of, the Trentino region) -> the Trentino region (16200ms)
What is the capital of Italy? Veneto 0.0774513421633718 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, Veneto) -> Veneto (16554ms)
What is the capital of Italy? the Italian region 0.07150106006988999 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Florence, is the capital city of, the Italian region) -> the Italian region (16554ms)
What is the capital of Italy? trulli country 0.05030868092223795 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (southern Italy, is the capital of, trulli country) -> trulli country (16554ms)
What is the capital of Italy? tasty food and Rome 0.02624032113689001 What 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)
What is the capital of Italy? the capital -0.21201693391782195 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the capital, is now the capital of, Italy) -> the capital (16929ms)
What is the capital of Italy? the city -0.28147630375046306 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the city, is the capital of, Italy) -> the city (17121ms)
What is the capital of Italy? Veneto area -0.3755390631318536 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Venice Italy, is a capital of, Veneto area) -> Veneto area (17364ms)
What is the capital of Italy? central Italy -0.4173884941836672 What 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)
What is the capital of Italy? Province of La Spezia -0.5439690625012423 What 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)
What is the capital of Italy? South Tyrol -0.8211135273964281 What 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)
What is the capital of Italy? Aosta Valley -0.8211135273964281 What 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)
What is the capital of Italy? the island -0.8478143596960721 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (ITALY Cagliari, is the capital of, the island) -> the island (18716ms)
What is the capital of Italy? Province of Matera -0.9053893391439654 What 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)
What is the capital of Italy? Province of Rieti -0.9053893391439654 What 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)
What is the capital of Italy? Province of Mantua -0.9053893391439654 What 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)
What is the capital of Italy? Province of Ravenna -0.9053893391439654 What 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)
What is the capital of Italy? Province of Genoa -0.9053893391439654 What 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)
What is the capital of Italy? Province of Pordenone -0.9053893391439654 What 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)
What is the capital of Italy? Province of Florence -0.9053893391439654 What 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)
What is the capital of Italy? Province of Vercelli -0.9053893391439654 What 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)
What is the capital of Italy? Province of Pistoia -0.9053893391439654 What 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)
What is the capital of Italy? Province of Udine -0.9053893391439654 What 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)
What is the capital of Italy? Province of Forl?-Cesena -0.9053893391439654 What 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)
What is the capital of Italy? Province of Cuneo -0.9053893391439654 What 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)
What is the capital of Italy? Province of Brescia -0.9053893391439654 What 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)
What is the capital of Italy? Province of Crotone -0.9053893391439654 What 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)
What is the capital of Italy? Province of Grosseto -0.9053893391439654 What 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)
What is the capital of Italy? Province of Rovigo -0.9053893391439654 What 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)
What is the capital of Italy? Province of Cremona -0.9053893391439654 What 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)
What is the capital of Italy? Province of Messina -0.9053893391439654 What 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)
What is the capital of Italy? Province of Parma -0.9053893391439654 What 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)
What is the capital of Italy? Province of Latina -0.9053893391439654 What 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)
What is the capital of Italy? Province of Taranto -0.9053893391439654 What 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)
What is the capital of Italy? Province of Perugia -0.9053893391439654 What 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)
What is the capital of Italy? Province of Avellino -0.9053893391439654 What 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)
What is the capital of Italy? Province of Alessandria -0.9053893391439654 What 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)
What is the capital of Italy? Province of Benevento -0.9053893391439654 What 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)
What is the capital of Italy? Province of Bergamo -0.9053893391439654 What 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)
What is the capital of Italy? Province of Arezzo -0.9053893391439654 What 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)
What is the capital of Italy? Province of Brindisi -0.9053893391439654 What 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)
What is the capital of Italy? Province of Novara -0.9053893391439654 What 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)
What is the capital of Italy? Province of Campobasso -0.9053893391439654 What 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)
What is the capital of Italy? Province of Ragusa -0.9053893391439654 What 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)
What is the capital of Italy? Province of Biella -0.9053893391439654 What 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)
What is the capital of Italy? Province of Padua -0.9053893391439654 What 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)
What is the capital of Italy? Province of Ancona -0.9053893391439654 What 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)
What is the capital of Italy? Province of Milan -0.9053893391439654 What 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)
What is the capital of Italy? Province of Syracuse -0.9053893391439654 What 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)
What is the capital of Italy? Province of Terni -0.9053893391439654 What 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)
What is the capital of Italy? Province of Turin -0.9053893391439654 What 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)
What is the capital of Italy? Province of Sassari -0.9053893391439654 What 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)
What is the capital of Italy? Province of Carbonia-Iglesias -0.9053893391439654 What 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)
What is the capital of Italy? Province of Sondrio -0.9053893391439654 What 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)
What is the capital of Italy? Province of Belluno -0.9053893391439654 What 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)
What is the capital of Italy? Province of Agrigento -0.9053893391439654 What 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)
What is the capital of Italy? Province of Bari -0.9053893391439654 What 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)
What is the capital of Italy? Province of Venice -0.9053893391439654 What 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)
What is the capital of Italy? Province of Fermo -0.9053893391439654 What 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)
What is the capital of Italy? Province of Prato -0.9053893391439654 What 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)
What is the capital of Italy? Province of Teramo -0.9053893391439654 What 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)
What is the capital of Italy? Province of Lodi -0.9053893391439654 What 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)
What is the capital of Italy? Province of Lecco -0.9053893391439654 What 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)
What is the capital of Italy? Province of Gorizia -0.9053893391439654 What 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)
What is the capital of Italy? Province of Asti -0.9053893391439654 What 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)
What is the capital of Italy? Province of Caltanissetta -0.9053893391439654 What 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)
What is the capital of Italy? Friuli-Venezia Giulia -0.9053893391439654 What 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)
What is the capital of Italy? Province of Barletta-Andria-Trani -0.9053893391439654 What 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)
What is the capital of Italy? Province of Cagliari -0.9053893391439654 What 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)
What is the capital of Italy? Province of Pisa -0.9053893391439654 What 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)
What is the capital of Italy? Province of Olbia-Tempio -0.9053893391439654 What 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)
What is the capital of Italy? Province of Ferrara -0.9053893391439654 What 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)
What is the capital of Italy? Province of Lucca -0.9053893391439654 What 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)
What is the capital of Italy? Province of Rimini -0.9053893391439654 What 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)
What is the capital of Italy? Province of Treviso -0.9053893391439654 What 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)
What is the capital of Italy? Province of Bologna -0.9053893391439654 What 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)
What did George Washington call his house? Ryan -12.628676313672054 What 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)
What does the acronym NATO stand for? North Atlantic -7.63531148886095 What 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)
What does the acronym NATO stand for? the North Atlantic Treaty Organization -7.681980946482119 What 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)
What does the acronym NATO stand for? the Soviet threat -8.069055707882875 What 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)
What does the acronym NATO stand for? North Atlantic Treaty Organisation -8.126904639301165 What 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)
What does the acronym NATO stand for? a chance -8.239288977464904 What 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)
What does the acronym NATO stand for? the ICJ -8.268967771117534 What 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)
What does the acronym NATO stand for? Afghan fighting units -8.327921230769066 What 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)
What does the acronym NATO stand for? Estonia -8.393060886683417 What 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)
What does the acronym NATO stand for? a crossroads -8.44147556270204 What 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)
What does the acronym NATO stand for? NATO Ain?t -8.44398954250915 What 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)
What does the acronym NATO stand for? ?No Action Talking Only? -8.529260257624951 What 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)
When was Julius Caesar born? July 0.1174499290396569 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (the Roman emperor Julius Caesar, was born on, July) -> July (3044ms)
When was Julius Caesar born? either July 12th 0.10466789276076138 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, either July 12th) -> either July 12th (3044ms)
When was Julius Caesar born? July 12 , 100 BC -0.10886118951158696 When 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)
When was Julius Caesar born? July 13 , 100 BC -0.15645188825493683 When 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)
When was Julius Caesar born? july 12 -0.3777277898696143 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, july 12) -> july 12 (6586ms)
When was Julius Caesar born? July 13 -0.4905392351569562 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Gaius Julius Caesar, was born on, July 13) -> July 13 (6586ms)
When was Julius Caesar born? 12 July -0.5611153969600489 When 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)
When was Julius Caesar born? Rome -0.600761657549409 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, Rome) -> Rome (6586ms)
When was Julius Caesar born? 100 B.C. -0.8769801793151204 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100 B.C.) -> 100 B.C. (6585ms)
When was Julius Caesar born? 100 BC -0.8951561054566203 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100 BC) -> 100 BC (6586ms)
When was Julius Caesar born? July 12 , 100 -1.8604485919653655 When 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)
When was Julius Caesar born? 100 -1.8835372034509126 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100) -> 100 (7666ms)
When was Julius Caesar born? the Subura -2.1061463100090316 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, the Subura) -> the Subura (7666ms)
When was Julius Caesar born? March 15th -3.2199772970650553 When 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)
When was Julius Caesar born? March 15 , 44 B.C. -3.551630374759136 When 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)
When was Julius Caesar born? c-section -3.7488015269025423 When 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)
When was Julius Caesar born? southern France -4.044145359656497 When 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)
When was Julius Caesar born? Caesarean section -4.046720726934993 When 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)
When was Julius Caesar born? 709 AUC -4.116383857195709 When 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)
When was Julius Caesar born? the twelfth -4.174503720891208 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (C. Julius Caesar, was born on, the twelfth) -> the twelfth (7687ms)
When was Julius Caesar born? 44 B.C. -4.295876015519292 When 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)
When was Julius Caesar born? 44 B.C. Dramatic stuff -4.338128272795908 When 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)
When was Julius Caesar born? 44 BC -4.38700902253215 When 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)
When was Julius Caesar born? natal teeth -4.7754060443987285 When 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)
When was Julius Caesar born? diamonds -4.784833261618841 When 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)
When was Julius Caesar born? a virgin -4.909933620579641 When 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)
When was Julius Caesar born? Egypt -4.92919963222056 When 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)
When was Julius Caesar born? Google and Wikipedia -5.038712497448058 When 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)
When was Julius Caesar born? the Julian calendar -5.187451058558768 When 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)
When was Julius Caesar born? the year 164 -5.329822380393794 When 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)
When was Julius Caesar born? a long time -5.3489431336634405 When 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)
When was Julius Caesar born? the Romans -5.507459134821632 When 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)
When was Julius Caesar born? a cold blood -5.710332807455528 When 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)
When was Julius Caesar born? a ford -6.146090827242957 When 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)
When was Julius Caesar born? a long time ago -6.368359495019032 When 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)
When was Julius Caesar born? suspicion -6.452714755212475 When 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)
When was Julius Caesar born? the Ides -6.465977709335808 When 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)
When was Julius Caesar born? the forum -6.684480937954416 When 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)
When was Julius Caesar born? behalf -7.006983604792712 When 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)
When was Julius Caesar born? British soil -7.46109541792311 When 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)
When was Julius Caesar born? the British shore -7.542600624863295 When 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)
When was Julius Caesar born? the steps -8.123373646215017 When 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)
When was Julius Caesar born? the fateful Ides -8.29290630170457 When 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)
When was Julius Caesar born? Britain -8.365005174476215 When 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)
When was Julius Caesar born? the island -8.441099092863361 When 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)
When was Julius Caesar born? the ides -8.675629350092514 When 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)
When was Julius Caesar born? the year -8.681561555506603 When 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)
When was Julius Caesar born? the shores -9.013030929190144 When 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)
When was Julius Caesar born? the coast -9.090081363805828 When 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)
How many NFL teams are there? The Saints -6.840264358157438 How 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)
How many NFL teams are there? The Redskins -6.947619053883503 How 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)
How many NFL teams are there? chiefs -7.021414995421466 How 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)
How many NFL teams are there? Louis Rams -7.307776257675483 How 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)
How many NFL teams are there? Bucs -7.328966983746895 How 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)
How many NFL teams are there? Jags -7.328966983746895 How 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)
How many NFL teams are there? Pats -7.328966983746895 How 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)
How many NFL teams are there? philadelphia-eagles -7.396095768861817 How 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)
How many NFL teams are there? BILLS -7.396095768861817 How 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)
How many NFL teams are there? GIANTS -7.396095768861817 How 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)
How many NFL teams are there? NFL Jerseys -7.396095768861817 How 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)
How many NFL teams are there? minnesota-vikings -7.396095768861817 How 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)
How many NFL teams are there? new-england-patriots -7.396095768861817 How 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)
How many NFL teams are there? cincinnati-bengals -7.396095768861817 How 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)
How many NFL teams are there? jacksonville-jaguars -7.396095768861817 How 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)
How many NFL teams are there? the Giants -7.411437224459803 How 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)
How many NFL teams are there? BUFFALO BILLS -7.457356702768514 How 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)
How many NFL teams are there? houston texans -7.457356702768514 How 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)
How many NFL teams are there? chicago cardinals -7.457356702768514 How 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)
How many NFL teams are there? NY Jets -7.457356702768514 How 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)
How many NFL teams are there? atlanta falcons -7.457356702768514 How 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)
How many NFL teams are there? tennessee oilers -7.457356702768514 How 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)
How many NFL teams are there? sd chargers -7.457356702768514 How 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)
How many NFL teams are there? tennessee titans -7.457356702768514 How 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)
How many NFL teams are there? L.A. Rams -7.457356702768514 How 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)
How many NFL teams are there? oakland raiders -7.457356702768514 How 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)
How many NFL teams are there? los angeles raiders -7.510960019936876 How 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)
How many NFL teams are there? Saint Louis Rams -7.510960019936876 How 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)
How many NFL teams are there? new york titans -7.510960019936876 How 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)
How many NFL teams are there? St Louis Rams -7.510960019936876 How 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)
How many NFL teams are there? New Orleans Hornets -7.510960019936876 How 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)
How many NFL teams are there? tampa bay bucs -7.510960019936876 How 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)
How many NFL teams are there? Pittsburgh Steelers Sunday -7.510960019936876 How 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)
How many NFL teams are there? the Lions -7.517476394723805 How 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)
How many NFL teams are there? Denver -7.534392502733491 How 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)
How many NFL teams are there? The Titans -7.55644569152226 How 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)
How many NFL teams are there? Florida Intl Golden Panthers -7.5582570644971945 How 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)
How many NFL teams are there? the Colts -7.585231959881509 How 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)
How many NFL teams are there? The Green Bay Packers -7.589598376367634 How 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)
How many NFL teams are there? ? The Chargers -7.606398181499943 How 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)
How many NFL teams are there? the Indianapolis Colts -7.609610903033606 How 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)
How many NFL teams are there? The Buccaneers -7.611140717143403 How 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)
How many NFL teams are there? The Dolphins -7.629834111454585 How 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)
How many NFL teams are there? The Carolina Panthers -7.658733774831846 How 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)
How many NFL teams are there? WE CANT -7.703461090079305 How 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)
How many NFL teams are there? Miami Dolphins -7.750680307292411 How 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)
How many NFL teams are there? Seattle Seahawks -7.750680307292411 How 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)
How many NFL teams are there? Greenbay Packers -7.750680307292411 How 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)
How many NFL teams are there? Dallas Cowboys -7.750680307292411 How 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)
How many NFL teams are there? Baltimore Colts -7.750680307292411 How 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)
How many NFL teams are there? Detroit Lions -7.750680307292411 How 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)
How many NFL teams are there? Houston Oilers -7.750680307292411 How 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)
How many NFL teams are there? Indianapolis Colts -7.750680307292411 How 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)
How many NFL teams are there? the New York Football Giants -7.821494469935347 How 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)
How many NFL teams are there? 2012 Super Bowl -7.823254802862815 How 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)
How many NFL teams are there? 2009 pro bowl -7.823254802862815 How 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)
How many NFL teams are there? 2011 Pro Bowl -7.823254802862815 How 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)
How many NFL teams are there? San Francisco 49ers -7.823254802862815 How 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)
How many NFL teams are there? Chicago bears -7.825835360192812 How 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)
How many NFL teams are there? Denver broncos -7.825835360192812 How 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)
How many NFL teams are there? the 49ers -7.834684149667911 How 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)
How many NFL teams are there? Further Review -7.874373191092317 How 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)
How many NFL teams are there? Redskins -8.00098449560388 How 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)
How many NFL teams are there? Buccaneers -8.00098449560388 How 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)
How many NFL teams are there? Browns -8.00098449560388 How 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)
How many NFL teams are there? Ravens -8.00098449560388 How 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)
How many NFL teams are there? the Packers -8.157227554971096 How 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)
How many NFL teams are there? the Saints -8.177628673835047 How 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)
How many NFL teams are there? the Vikings -8.192103498025224 How 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)
How many NFL teams are there? the Steelers -8.212504616889175 How 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)
How many NFL teams are there? the Cowboys -8.212504616889175 How 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)
How many NFL teams are there? the Redskins -8.212504616889175 How 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)
How many NFL teams are there? Bengals -8.771289854672295 How 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)
How many NFL teams are there? the Panthers -8.816328233523217 How 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)
How many NFL teams are there? the Patriots -8.816328233523217 How 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)
How many NFL teams are there? the Rams -8.816328233523217 How 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)
How many NFL teams are there? the Ravens -8.816328233523217 How 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)
How many NFL teams are there? Arizona -8.81739334363124 How 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)
How many NFL teams are there? the Bills -8.836729352387168 How 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)
How many NFL teams are there? the Bears -8.836729352387168 How 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)
How many NFL teams are there? the Chargers -8.836729352387168 How 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)
How many NFL teams are there? the Texans -8.836729352387168 How 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)
How many NFL teams are there? themost -8.919448747887436 How 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)
How many NFL teams are there? the Jets -8.928117310472755 How 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)
How many NFL teams are there? New England -8.990895335485037 How 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)
How many NFL teams are there? The 49ers -9.102920646354164 How 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)
How many NFL teams are there? The Jets -9.105384276073886 How 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)
How many NFL teams are there? the Baltimore Ravens -9.188109751895308 How 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)
How many NFL teams are there? ?dey ? -9.229763012783303 How 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)
How many NFL teams are there? Ben Roethlisberger -9.272269055186145 How 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)
How many NFL teams are there? The Browns -9.28621738801653 How 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)
How many NFL teams are there? a matter -9.349992907204626 How 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)
How many NFL teams are there? votes -9.360690229160664 How 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)
How many NFL teams are there? St . Louis -9.36592945772791 How 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)
How many NFL teams are there? the team -9.405414639302654 How 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)
How many NFL teams are there? the season -9.466424291512741 How 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)
How many NFL teams are there? The Chargers -9.488376655035426 How 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)
How many NFL teams are there? profootballtalk?s -9.5307316824989 How 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)
How many NFL teams are there? Texans -9.531955992593353 How 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)
How many NFL teams are there? The Eagles -9.551219248174961 How 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)
How many NFL teams are there? Detroit -9.558570771132931 How 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)
How many NFL teams are there? the Pittsburgh Steelers -9.571794410306348 How 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)
How many NFL teams are there? the Pats -9.605090735644431 How 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)
How many NFL teams are there? Green Bay -9.608046474369667 How 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)
How many NFL teams are there? the Eagles -9.652191806022484 How 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)
How many NFL teams are there? the Fins -9.66817194017866 How 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)
How many NFL teams are there? The Seahawks -9.674058170868978 How 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)
How many NFL teams are there? The Patriots -9.681983322012517 How 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)
What do manatees eat? 22 pounds -1.480537010794668 What do manatees eat? -> $x: (manatees, eat, $x) -> (The manatee, eats, 22 pounds) -> 22 pounds (5580ms)
What do manatees eat? 72 heads -1.5532599011679693 What do manatees eat? -> $x: (manatees, eat, $x) -> (the two manatees, eat about, 72 heads) -> 72 heads (5580ms)
What do manatees eat? marine and freshwater plant -2.055980532185341 What do manatees eat? -> $x: (manatees, eat, $x) -> (Shelter Manatees, eat, marine and freshwater plant) -> marine and freshwater plant (5580ms)
What do manatees eat? marine and freshwater plants -2.079525767093797 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, marine and freshwater plants) -> marine and freshwater plants (5580ms)
What do manatees eat? a tiny Mexican place -2.092540511298898 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatee and I, ate at, a tiny Mexican place) -> a tiny Mexican place (5580ms)
What do manatees eat? 150 pounds -2.331605202812704 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat over, 150 pounds) -> 150 pounds (5580ms)
What do manatees eat? 9 % -2.3813578896955914 What do manatees eat? -> $x: (manatees, eat, $x) -> (an adult manatee, can eat nearly, 9 %) -> 9 % (5674ms)
What do manatees eat? 50 different types -2.415494613074519 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 50 different types) -> 50 different types (5673ms)
What do manatees eat? 10-15 % -2.422487000077692 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10-15 %) -> 10-15 % (5673ms)
What do manatees eat? 10 -2.45354613890538 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10) -> 10 (5674ms)
What do manatees eat? different kinds -2.49276593558257 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat lots of, different kinds) -> different kinds (5674ms)
What do manatees eat? exotic plants -2.4950828128174987 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, exotic plants) -> exotic plants (5674ms)
What do manatees eat? 4 to 9 percent -2.5139686298839443 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, must eat, 4 to 9 percent) -> 4 to 9 percent (5703ms)
What do manatees eat? 10 % -2.519810175612073 What do manatees eat? -> $x: (manatees, eat, $x) -> (Food Manatees, can eat up to, 10 %) -> 10 % (5703ms)
What do manatees eat? 60 different species -2.5362374793005955 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 60 different species) -> 60 different species (5703ms)
What do manatees eat? 10 % to 20 % -2.540101908570729 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, 10 % to 20 %) -> 10 % to 20 % (5703ms)
What do manatees eat? eight heads -2.604593008204172 What do manatees eat? -> $x: (manatees, eat, $x) -> (The young manatee, is eating, eight heads) -> eight heads (5703ms)
What do manatees eat? 100 to 150 pounds -2.6206284932436716 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, 100 to 150 pounds) -> 100 to 150 pounds (5703ms)
What do manatees eat? 10-15 percent -2.6374282456736866 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat anywhere from, 10-15 percent) -> 10-15 percent (5726ms)
What do manatees eat? 100 pounds -2.6399815525310606 What do manatees eat? -> $x: (manatees, eat, $x) -> (An adult manatee, eats over, 100 pounds) -> 100 pounds (5726ms)
What do manatees eat? 60 different plant species -2.6841914523111337 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 60 different plant species) -> 60 different plant species (5726ms)
What do manatees eat? 60 to 100 pounds -2.7786658169307783 What do manatees eat? -> $x: (manatees, eat, $x) -> (An adult manatee, eats as much as, 60 to 100 pounds) -> 60 to 100 pounds (5726ms)
What do manatees eat? water plants -2.803388573291037 What do manatees eat? -> $x: (manatees, eat, $x) -> (The manatee, eats mostly a variety of, water plants) -> water plants (5741ms)
What do manatees eat? Recreation Area -2.926126090001433 What do manatees eat? -> $x: (manatees, eat, $x) -> (Lake Manatee St, ate, Recreation Area) -> Recreation Area (5741ms)
What do manatees eat? 10-15 % of their body weight -3.3879119933738737 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10-15 % of their body weight) -> 10-15 % of their body weight (5741ms)
What do manatees eat? hydrilla -3.649573260381265 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat, hydrilla) -> hydrilla (5758ms)
What do manatees eat? the vegetation right -3.9054063525882885 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, will come eat, the vegetation right) -> the vegetation right (5803ms)
What do manatees eat? plankton -3.921505387526616 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, ever eat, plankton) -> plankton (5835ms)
What do manatees eat? lettuce -3.970671407559931 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat heads of, lettuce) -> lettuce (5835ms)
What do manatees eat? the abundant sea grasses -3.9918293480264113 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, the abundant sea grasses) -> the abundant sea grasses (5834ms)
What do manatees eat? clams -4.002115524371854 What do manatees eat? -> $x: (manatees, eat, $x) -> (West African manatees, have been known to eat, clams) -> clams (5834ms)
What do manatees eat? elephants -4.010068070839223 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat grass like, elephants) -> elephants (5835ms)
What do manatees eat? the lettuce -4.163810261307901 What do manatees eat? -> $x: (manatees, eat, $x) -> (The manatees, eat, the lettuce) -> the lettuce (5848ms)
What do manatees eat? fish -4.1959187146616275 What do manatees eat? -> $x: (manatees, eat, $x) -> (Antillean manatees, have been known to eat, fish) -> fish (5848ms)
What do manatees eat? the vegetation -4.951829883083909 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat, the vegetation) -> the vegetation (5861ms)
What do manatees eat? Feb. 20 -5.1742519355961605 What 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)
What do manatees eat? daily -6.156406018119301 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat 10-15 % of their body weight, daily) -> daily (5894ms)
What was Malcolm X's original surname? Wettin -14.494825079508457 What 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)
What was Malcolm X's original surname? present day -14.56498094814928 What 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)
What was Malcolm X's original surname? Hatkho -15.11751458459927 What 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)
What was Malcolm X's original surname? Shaink -15.444244743071877 What 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)
What was Malcolm X's original surname? STRANG -15.459916571187406 What 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)
What is cribbage? small-area event -5.081692812842029 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, small-area event) -> small-area event (1909ms)
What is cribbage? point-based game -5.098143877902369 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, point-based game) -> point-based game (1909ms)
What is cribbage? challenging card game -5.315325035549797 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, challenging card game) -> challenging card game (1909ms)
What is cribbage? classic card game -5.315876340619406 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, classic card game) -> classic card game (1909ms)
What is cribbage? two-player card game -5.334956584826713 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-player card game) -> two-player card game (1908ms)
What is cribbage? card game -5.341132365883407 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, card game) -> card game (1909ms)
What is cribbage? AOL compatible video online card game -5.343413794921152 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, AOL compatible video online card game) -> AOL compatible video online card game (1924ms)
What is cribbage? card and board game -5.384707275628207 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, card and board game) -> card and board game (1923ms)
What is cribbage? play free online board game -5.4290801189126014 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, play free online board game) -> play free online board game (1924ms)
What is cribbage? social club offering activity -5.445531183972941 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social club offering activity) -> social club offering activity (1923ms)
What is cribbage? counting card game -5.447377802241265 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, counting card game) -> counting card game (1923ms)
What is cribbage? two-to-four player card game -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-to-four player card game) -> two-to-four player card game (2138ms)
What is cribbage? card game of the period -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, card game of the period) -> card game of the period (2138ms)
What is cribbage? terrific, fast paced game -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, terrific, fast paced game) -> terrific, fast paced game (2138ms)
What is cribbage? century old game of skill and persistence -5.469852487468907 What 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)
What is cribbage? game of making match and group of card -5.469852487468907 What 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)
What is cribbage? featured classic card game -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, featured classic card game) -> featured classic card game (2138ms)
What is cribbage? pub game -5.490942725254116 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, pub game) -> pub game (2153ms)
What is cribbage? math type game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, math type game) -> math type game (2153ms)
What is cribbage? extensive table game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, extensive table game) -> extensive table game (2153ms)
What is cribbage? wooden game favorite -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, wooden game favorite) -> wooden game favorite (2170ms)
What is cribbage? good card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, good card game) -> good card game (2169ms)
What is cribbage? math board game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, math board game) -> math board game (2153ms)
What is cribbage? online card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, online card game) -> online card game (2169ms)
What is cribbage? oldfashioned card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, oldfashioned card game) -> oldfashioned card game (2170ms)
What is cribbage? beautiful classic game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, beautiful classic game) -> beautiful classic game (2169ms)
What is cribbage? noble card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, noble card game) -> noble card game (2170ms)
What is cribbage? prime winter pastime -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, prime winter pastime) -> prime winter pastime (2153ms)
What is cribbage? social card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social card game) -> social card game (2153ms)
What is cribbage? live online adult poker game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, live online adult poker game) -> live online adult poker game (2223ms)
What is cribbage? age-old pub game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, age-old pub game) -> age-old pub game (2281ms)
What is cribbage? freeware version of the popular card game -5.51474644290405 What 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)
What is cribbage? MAINSTREET CLASSIC game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, MAINSTREET CLASSIC game) -> MAINSTREET CLASSIC game (2280ms)
What is cribbage? century-old card game of English origin -5.51474644290405 What 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)
What is cribbage? interesting and engaging game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, interesting and engaging game) -> interesting and engaging game (2280ms)
What is cribbage? addictive and fast-paced card game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, addictive and fast-paced card game) -> addictive and fast-paced card game (2280ms)
What is cribbage? fashioned great classic card game of skill -5.51474644290405 What 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)
What is cribbage? jovial kind of game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, jovial kind of game) -> jovial kind of game (2294ms)
What is cribbage? Regency-era card game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, Regency-era card game) -> Regency-era card game (2222ms)
What is cribbage? one-on-one board game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, one-on-one board game) -> one-on-one board game (2295ms)
What is cribbage? relaxing, totally not physical game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, relaxing, totally not physical game) -> relaxing, totally not physical game (2222ms)
What is cribbage? game of sailor -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of sailor) -> game of sailor (2280ms)
What is cribbage? good game of skill an luck -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, good game of skill an luck) -> good game of skill an luck (2295ms)
What is cribbage? interest in event -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, interest in event) -> interest in event (2295ms)
What is cribbage? exciting game of wit and luck -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, exciting game of wit and luck) -> exciting game of wit and luck (2222ms)
What is cribbage? player card game -5.515907599566414 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, player card game) -> player card game (2295ms)
What is cribbage? social, educational and physical activity -5.519584991397133 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social, educational and physical activity) -> social, educational and physical activity (2295ms)
What is cribbage? game of point -5.522224199861086 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of point) -> game of point (2314ms)
What is cribbage? strategic card game -5.527771349362637 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, strategic card game) -> strategic card game (2315ms)
What is cribbage? game on board -5.53119750796439 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, game on board) -> game on board (2315ms)
What is cribbage? classic board game -5.542914765514058 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, classic board game) -> classic board game (2315ms)
What is cribbage? two-player board game -5.543284005418801 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-player board game) -> two-player board game (2315ms)
What is cribbage? classic game -5.601893739655087 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, classic game) -> classic game (2315ms)
What is cribbage? time favorite -5.730628999681266 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, time favorite) -> time favorite (2325ms)
What is cribbage? recreational activity -5.763576675850563 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, recreational activity) -> recreational activity (2326ms)
What is cribbage? ancient game -5.771707318988828 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, ancient game) -> ancient game (2326ms)
What is cribbage? big game -5.776388266248569 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, big game) -> big game (2326ms)
What is cribbage? strategy game -5.7829671895851025 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, strategy game) -> strategy game (2326ms)
What is cribbage? wonderful game -5.7853604158151075 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, wonderful game) -> wonderful game (2326ms)
What is cribbage? excellent game -5.794226579366626 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, excellent game) -> excellent game (2386ms)
What is cribbage? social activity -5.811965122641354 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social activity) -> social activity (2386ms)
What is cribbage? conventional sport -5.83273357947819 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, conventional sport) -> conventional sport (2386ms)
What is cribbage? quiet game -5.8358344744470205 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, quiet game) -> quiet game (2386ms)
What is cribbage? house game -5.837303319432257 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, house game) -> house game (2386ms)
What is cribbage? lifetime activity -5.83756695888861 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, lifetime activity) -> lifetime activity (2386ms)
What is cribbage? board game -5.84091873425945 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, board game) -> board game (2485ms)
What is cribbage? competitive game -5.843139001406681 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, competitive game) -> competitive game (2484ms)
What is cribbage? popular 2-person game -5.862409948249645 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, popular 2-person game) -> popular 2-person game (2484ms)
What is cribbage? timeless amusement -5.871915359357899 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, timeless amusement) -> timeless amusement (2484ms)
What is cribbage? cribbage game -5.871915359357899 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, cribbage game) -> cribbage game (2484ms)
What is cribbage? accessible game -5.871915359357899 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, accessible game) -> accessible game (2484ms)
What is cribbage? promotional game -5.877790739911692 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, promotional game) -> promotional game (2498ms)
What is cribbage? recycled item -5.881592456344066 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, recycled item) -> recycled item (2498ms)
What is cribbage? complicated game -5.8852704671812255 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, complicated game) -> complicated game (2498ms)
What is cribbage? player game -5.886917902149252 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, player game) -> player game (2498ms)
What is cribbage? pogo game -5.888366424418239 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, pogo game) -> pogo game (2498ms)
What is cribbage? family game -5.888630344559857 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, family game) -> family game (2498ms)
What is cribbage? french game -5.890194320399866 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, french game) -> french game (2510ms)
What is cribbage? indoor sport -5.890301843692902 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, indoor sport) -> indoor sport (2509ms)
What is cribbage? mind sport -5.890897357315875 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, mind sport) -> mind sport (2509ms)
What is cribbage? tabletop game -5.893643181135706 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, tabletop game) -> tabletop game (2509ms)
What is cribbage? difficult game -5.893943055956522 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, difficult game) -> difficult game (2509ms)
What is cribbage? leisure activity -5.902836893359098 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, leisure activity) -> leisure activity (2509ms)
What is cribbage? free game -5.916320307442001 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, free game) -> free game (2521ms)
What is cribbage? traditional pub game -6.1593355975734765 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, traditional pub game) -> traditional pub game (2522ms)
What is cribbage? class and activity -6.186272584194335 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, class and activity) -> class and activity (2522ms)
What is cribbage? popular pub game -6.189818072364458 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, popular pub game) -> popular pub game (2521ms)
What is cribbage? program and activity -6.2318531323851385 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, program and activity) -> program and activity (2522ms)
What is cribbage? sport and activity -6.232387134261486 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, sport and activity) -> sport and activity (2522ms)
What is cribbage? favorite -7.75891072724033 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, favorite) -> favorite (2535ms)
What is cribbage? card -7.788190573395969 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, card) -> card (2535ms)
What is cribbage? pastime -7.95316233112829 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, pastime) -> pastime (2535ms)
What is cribbage? tournament -7.999186493935377 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, tournament) -> tournament (2535ms)
What is cribbage? sport -8.058333530904653 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, sport) -> sport (2547ms)
What is cribbage? hobby -8.058900922452164 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, hobby) -> hobby (2548ms)
What is cribbage? time -8.135486668385402 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, time) -> time (2547ms)
What is cribbage? group -8.147132390693534 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, group) -> group (2547ms)
What is cribbage? Rules of cribbage -11.672247053165188 What 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)
What is cribbage? Cribbage statistics -11.87545756027938 What 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)
What is cribbage? 29 points -12.081618949867709 What 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)
What is cribbage? Card game -12.248788479876241 What 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)
What is cribbage? The Cribbage Generation Is Here -12.326399963427946 What 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)
What is cribbage? User login -12.348221356563933 What 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)
What is cribbage? every day -12.380983320895297 What 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)
What is cribbage? Each point -12.434997946996269 What 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)
What is cribbage? I?ll -12.47610467133805 What 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)
What is cribbage? 61 points -12.48887653649394 What 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)
What is cribbage? a term -12.521959703607576 What 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)
What is cribbage? King Cribbage -12.534815477322429 What 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)
What is cribbage? a little -12.636969979541647 What 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)
What is cribbage? a new cribbage game -12.664994671369875 What 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)
What is cribbage? fun -12.68363247041748 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, fun) -> fun (4527ms)
What is cribbage? a doubt -12.694861688975031 What 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)
What is cribbage? Cribbage -12.73248828683868 What 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)
What is cribbage? Double Cribbage -12.739245410433831 What 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)
What is cribbage? Simulation video game -12.740214966559932 What 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)
What is cribbage? Strategy video game -12.740214966559932 What 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)
What is cribbage? more complex card games -12.776309712342373 What 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)
What is cribbage? Microsoft Windows -12.778157323364018 What 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)
What is cribbage? Winchester Press -12.778157323364018 What 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)
What is cribbage? two men -12.795636860301293 What 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)
What is cribbage? new -12.795692272003627 What 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)
What is cribbage? DeLynn -12.801826217811264 What 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)
What is cribbage? a hit -12.807373395925664 What 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)
What is cribbage? a classic , two-player game -12.826078176994349 What 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)
What is cribbage? Bill@PlayCribbage .com Website -12.829710632393635 What 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)
What is cribbage? Lake Superior Cribbage -12.837259840693461 What 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)
What is cribbage? Carte Primus -12.854979700251432 What 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)
What is cribbage? Hoyle's Backgammon & Cribbage -12.862433135111557 What 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)
What is cribbage? Fun with Cribbage -12.862433135111557 What 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)
What is cribbage? How to win at cribbage -12.862433135111557 What 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)
What is cribbage? Hayden Book Company, Inc. -12.862433135111557 What 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)
What is cribbage? Winning Cribbage Tips (Mensa) -12.862433135111557 What 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)
What is cribbage? Cribbage for Experts -12.862433135111557 What 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)
What is cribbage? Win at cribbage -12.862433135111557 What 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)
What is cribbage? Cribbage for Experts: And Future Experts -12.862433135111557 What 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)
What is cribbage? Winning Cribbage Tips -12.862433135111557 What 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)
What is cribbage? Play Cribbage to Win MENSA -12.862433135111557 What 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)
What is cribbage? Cribbage d'Etroit -12.862433135111557 What 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)
What is cribbage? Lake Superior Cribbage: The GEM of Board Games -12.862433135111557 What 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)
What is cribbage? Key to Cribbage -12.862433135111557 What 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)
What is cribbage? the Wrentham Senior Center -12.864883600617336 What 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)
What is cribbage? 10 years -12.867162780290148 What 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)
What is cribbage? a very interesting and engaging game -12.87104752997031 What 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)
What is cribbage? a fun game -12.872087538541965 What 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)
What is cribbage? a great family game -12.87873784709927 What 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)
What is cribbage? a mention -12.884048966852212 What 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)
What is cribbage? Star Wars fame -12.88690418741346 What 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)
What is cribbage? an itinerant?s game -12.890263464683464 What 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)
What is cribbage? a family -12.904951689397427 What 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)
What is cribbage? one game -12.907124484122363 What 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)
What is cribbage? 29 -12.917590879048976 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, 29) -> 29 (4981ms)
What is cribbage? local favourites -12.918156536343067 What 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)
What is cribbage? a call shot game -12.952265072359275 What 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)
What is cribbage? InterStellar MacCribbage -12.959656630862922 What 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)
What is cribbage? Swan River -12.964834435549447 What 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)
What is cribbage? Royal Cribbage -12.966135215988537 What 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)
What is cribbage? One game I?d -12.966605011099606 What 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)
What is cribbage? Cribbage Corner -12.969890723839585 What 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)
What is cribbage? a Game -12.971592220318195 What 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)
What is cribbage? England -12.977317160850202 What 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)
What is cribbage? free or -12.980812799873458 What 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)
What is cribbage? accurate counting -12.981326813148351 What 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)
What is cribbage? Amend Games -12.986789728615516 What 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)
What is cribbage? an Englishman -13.018579895678236 What 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)
What is cribbage? Every Saturday -13.020911309919548 What 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)
What is cribbage? a new and growing group -13.024138513252435 What 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)
What is cribbage? Parson?s poke -13.0256534922916 What 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)
What is cribbage? The ACC -13.0427712066119 What 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)
What is cribbage? a study -13.05597597172122 What 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)
What is cribbage? Zach and Jonathan -13.05780258623972 What 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)
What is cribbage? an avid Boston Red Sox Fan -13.0673649215832 What 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)
What is cribbage? Sir John Suckling -13.06933233495099 What 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)
What is cribbage? The Past Playing Cards -13.073077690557401 What 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)
What is cribbage? the Oxford English Dictionary -13.080543538963768 What 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)
What is cribbage? Over-pegging your score -13.08224785505936 What 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)
What is cribbage? a two player game -13.095823075807527 What 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)
What is cribbage? the 15-ball -13.100248788754197 What 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)
What is cribbage? the BCA Official Rules and Records Book -13.10972205911602 What 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)
What is cribbage? each row and column -13.122100826838256 What 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)
What is cribbage? the Wawatam Area Senior Center -13.143256995848793 What 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)
What is cribbage? Club director Tracy Yott -13.147891453553848 What 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)
What is cribbage? August Cribbage -13.155142329051621 What 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)
What is cribbage? the ACC -13.173925427192422 What 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)
What is cribbage? a fifty two card pack -13.183830873225455 What 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)
What is cribbage? 4 or more cards -13.19709693874701 What 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)
What is cribbage? the ACC Web site -13.1977987762358 What 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)
What is cribbage? two phases -13.206545074242976 What 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)
What is cribbage? a crazy game -13.240137092036573 What 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)
What is cribbage? Commodore 64 -13.254990595892293 What 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)
What is cribbage? Key to Cribbage (050107) -13.254990595892293 What 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)
What is cribbage? Miracles on 4th Street -13.254990595892293 What 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)
What is cribbage? Atari 8-bit family -13.254990595892293 What 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)
What is cribbage? a card game -13.264895983537036 What 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)
What is cribbage? Hal Mueller -13.26521191101487 What 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)
What is cribbage? Scoring aces -13.270739249170564 What 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)
What is cribbage? the 15 -13.292654850345478 What 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)
What is cribbage? an elderly couple -13.295687891626985 What 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)
What is cribbage? a great game -13.296233772228495 What 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)
What is cribbage? Forum -13.299011927104033 What 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)
What is cribbage? The 15 ball -13.305917804468812 What 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)
What is cribbage? two people -13.31247478721413 What 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)
What is cribbage? a poker expert -13.316634891092448 What 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)
What is cribbage? a wonderful game -13.316634891092448 What 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)
What is cribbage? The Captain -13.348784942210035 What 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)
What is cribbage? the 4th Earl -13.364379816837792 What 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)
What is cribbage? 400 years -13.368129657672576 What 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)
What is cribbage? no hard evidence -13.381548572449235 What 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)
What is cribbage? Subject property -13.39619604684921 What 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)
What is cribbage? Mr Windsor -13.398807901618769 What 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)
What is cribbage? the 2nd and 4th Sundays -13.430023496283761 What 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)
What is cribbage? 1:00 p.m. Mah Jongg -13.448343411597737 What 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)
What is cribbage? Jennifer -13.450274319803716 What 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)
What is cribbage? a cribbage board -13.45294427249181 What 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)
What is cribbage? 12:30 -13.463166233925826 What 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)
What is cribbage? mysterious terms -13.465370759983614 What 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)
What is cribbage? table-talk -13.466274827472208 What 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)
What is cribbage? Scores -13.483379040353206 What 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)
What is cribbage? free accessories -13.497494838786242 What 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)
What is cribbage? Word -13.49942693299554 What 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)
What is cribbage? a standard 52-card deck -13.50305748154217 What 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)
What is cribbage? 1:00 p.m. -13.512154633285725 What 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)
What is cribbage? a charter member -13.523898359593742 What 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)
What is cribbage? Book publishing -13.54592250278419 What 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)
What is cribbage? Oldcastle -13.554151486078357 What 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)
What is cribbage? Macintosh -13.554151486078357 What 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)
What is cribbage? pagat.com -13.561462508581208 What 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)
What is cribbage? Noddy -13.564690075909862 What 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)
What is cribbage? The most popular activity -13.588410896826566 What 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)
What is cribbage? a similar idea -13.594570029962401 What 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)
What is cribbage? 9780963658302 -13.611643810460764 What 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)
What is cribbage? Scoring -13.640736594930836 What 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)
What is cribbage? Janet -13.650172780836046 What 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)
What is cribbage? The next game viewer -13.651799883176219 What 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)
What is cribbage? boards and pegs -13.652321853011587 What 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)
What is cribbage? Adam -13.655573693562221 What 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)
What is cribbage? Aces -13.680331229006695 What 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)
What is cribbage? the 1600 -13.692036499261631 What 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)
What is cribbage? Cards -13.69915271617953 What 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)
What is cribbage? a game of luck -13.726198108547663 What 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)
What is cribbage? 30 holes -13.727529112309035 What 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)
What is cribbage? adults and children -13.734413437031789 What 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)
What is cribbage? Morneau -13.739630908214401 What 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)
What is cribbage? 60 holes -13.745213051140146 What 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)
What is cribbage? more fun than gin rummy -13.74753247296248 What 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)
What is cribbage? Captain's Cribbage -13.771279871028574 What 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)
What is cribbage? a sign -13.799590557498178 What 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)
What is cribbage? White Maple -13.808821336523305 What 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)
What is cribbage? Cribbage Pro Online -13.8194439827826 What 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)
What is cribbage? Damage -13.82025674523326 What 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)
What is cribbage? Karl Demanski -13.835509835219645 What 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)
What is cribbage? Cribbage.ca -13.836978347926223 What 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)
What is cribbage? HALSCRIB -13.839182688780593 What 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)
What is cribbage? Keith Masters -13.882884611121842 What 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)
What is cribbage? big -13.923969056623179 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, big) -> big (6775ms)
What is cribbage? gin rummy -13.933101266791567 What 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)
What is cribbage? Cribbage .ca -13.96553356458727 What 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)
What is cribbage? Canadian Military people -13.97621884342801 What 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)
What is cribbage? Brass -13.989678594123973 What 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)
What is cribbage? Crash Cribbage -13.993185357269786 What 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)
What is cribbage? Cribbage League -13.993185357269786 What 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)
What is cribbage? metal marker pegs -14.005776961183077 What 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)
What is cribbage? ACC Grass Roots -14.00871690691116 What 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)
What is cribbage? Thursday -14.03635604375612 What 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)
What is cribbage? 9780970622563 -14.040470347807652 What 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)
What is cribbage? 9780962700361 -14.040470347807652 What 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)
What is cribbage? 9781402711046 -14.040470347807652 What 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)
What is cribbage? 9780962700378 -14.040470347807652 What 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)
What is cribbage? 9780876913048 -14.040470347807652 What 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)
What is cribbage? 9780870190278 -14.040470347807652 What 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)
What is cribbage? 9780948353970 -14.040470347807652 What 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)
What is cribbage? 9780806943138 -14.040470347807652 What 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)
What is cribbage? 9780970622594 -14.040470347807652 What 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)
What is cribbage? 9780970622587 -14.040470347807652 What 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)
What is cribbage? The play -14.047355703684662 What 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)
What is cribbage? Jason Marquis -14.075085387864092 What 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)
What is cribbage? Kings Cribbage -14.078851681261236 What 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)
What is cribbage? Compact Cribbage -14.078851681261236 What 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)
What is cribbage? Pattern Cribbage -14.078851681261236 What 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)
What is cribbage? Michael Schell -14.078851681261236 What 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)
What is cribbage? Cribbage Quest -14.078851681261236 What 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)
What is cribbage? Raymond Rasmussen -14.078851681261236 What 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)
What is cribbage? Cribbage Champion -14.078851681261236 What 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)
What is cribbage? James Nelson -14.086685521795342 What 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)
What is cribbage? Corb Lund -14.09232755061672 What 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)
What is cribbage? Fish , Romme , and Skat -14.1057795172952 What 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)
What is cribbage? Championship Cribbage Pro -14.11823353757363 What 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)
What is cribbage? Mr. Cody -14.11823353757363 What 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)
What is cribbage? King's Cribbage -14.11823353757363 What 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)
What is cribbage? Mr. Jordan -14.126067378107738 What 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)
What is cribbage? such a rich history -14.128898593186507 What 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)
What is cribbage? Maple -14.13094723146773 What 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)
What is cribbage? Ebony -14.138020828081093 What 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)
What is cribbage? O'Kane -14.163127493008773 What 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)
What is cribbage? CoCocoGames.com -14.163127493008773 What 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)
What is cribbage? Cribbage ca -14.163127493008773 What 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)
What is cribbage? Mrs. Cerrone -14.163127493008773 What 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)
What is cribbage? QC Cribbage Club -14.163127493008773 What 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)
What is cribbage? ECribbage -14.163127493008773 What 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)
What is cribbage? Hopoate at center -14.163127493008773 What 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)
What is cribbage? American Cribbage Congress Grass Roots -14.163127493008773 What 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)
What is cribbage? Pavillion Deluxe Cribbage Set -14.163127493008773 What 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)
What is cribbage? Rev. Poland -14.163127493008773 What 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)
What is cribbage? Halscrib by Hal Mueller -14.163127493008773 What 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)
What is cribbage? O Cribbage.ca -14.163127493008773 What 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)
What is cribbage? MVP Cribbage -14.163127493008773 What 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)
What is cribbage? Mrs. Kimball -14.163127493008773 What 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)
What is cribbage? Cribbage Champion Game -14.163127493008773 What 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)
What is cribbage? Mr. C -14.163127493008773 What 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)
What is cribbage? Mr. Montgomery -14.163127493008773 What 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)
What is cribbage? table on the left -14.163127493008773 What 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)
What is cribbage? CribbageBoardStore.com -14.163127493008773 What 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)
What is cribbage? rule of three -14.163127493008773 What 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)
What is cribbage? rule of seven -14.163127493008773 What 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)
What is cribbage? Mr. Bradstreet -14.163127493008773 What 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)
What is cribbage? a drink -14.163940868651512 What 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)
What is cribbage? Nintendo -14.164621724846901 What 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)
What is cribbage? Mr. Obuchowski -14.17096133354288 What 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)
What is cribbage? Mr. Jodoin -14.17096133354288 What 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)
What is cribbage? Mrs. Goodwin -14.17096133354288 What 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)
What is cribbage? a new home -14.175002082145452 What 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)
What is cribbage? Regular readers -14.189955550151865 What 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)
What is cribbage? two kinds -14.190382419594592 What 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)
What is cribbage? a VIDEO option -14.200187036773059 What 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)
What is cribbage? a library -14.204221718331901 What 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)
What is cribbage? Charles Dickens Toby Crackit -14.204255155046773 What 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)
What is cribbage? a rich user interface -14.207199985136999 What 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)
What is cribbage? several distinctive features -14.209142468550036 What 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)
What is cribbage? le -14.217964377360373 What 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)
What is cribbage? a wonderful Xmas -14.253695725888946 What 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)
What is cribbage? bed -14.266833463635601 What 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)
What is cribbage? Fish , Hearts , Old Maid -14.275736081300579 What 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)
What is cribbage? ISA conventions -14.301442371273406 What 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)
What is cribbage? comparison list -14.313179196498442 What 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)
What is cribbage? a flip top storing -14.330620891425657 What 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)
What is cribbage? one of the few games -14.409982085343835 What 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)
What is cribbage? five years -14.431819880211098 What 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)
What is cribbage? Interland/Web.com -14.447335024736958 What 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)
What is cribbage? Roy -14.471044311688086 What 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)
What is cribbage? Lew -14.471044311688086 What 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)
What is cribbage? Law -14.478878152222194 What 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)
What is cribbage? recommended books -14.495854313706431 What 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)
What is cribbage? the world?s -14.514918293370668 What 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)
What is cribbage? journey bags -14.51685569528583 What 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)
What is cribbage? prime directive -14.520296409462622 What 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)
What is cribbage? a faithful following -14.524483510407853 What 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)
What is cribbage? the time -14.525471077114656 What 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)
What is cribbage? two players -14.535778074213415 What 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)
What is cribbage? the English language -14.585425099704068 What 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)
What is cribbage? a 29 hand -14.59723005038883 What 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)
What is cribbage? the different strategy -14.603556319303713 What 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)
What is cribbage? the British poet -14.648517083806983 What 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)
What is cribbage? storage space -14.656842914925061 What 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)
What is cribbage? Dan Barlow -14.688848032957697 What 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)
What is cribbage? the most popular card games -14.692840502213445 What 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)
What is cribbage? Paul -14.69602752699681 What 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)
What is cribbage? Roy Snyder -14.696681873491803 What 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)
What is cribbage? The iPhone -14.699658916498809 What 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)
What is cribbage? user settings -14.71032215060153 What 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)
What is cribbage? 2 deck -14.723178352206395 What 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)
What is cribbage? two kinds of wood -14.724105060247954 What 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)
What is cribbage? 4 player pins -14.742238517451286 What 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)
What is cribbage? the six-card game -14.748465428615663 What 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)
What is cribbage? the game -14.749878593533493 What 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)
What is cribbage? James -14.750752080079625 What 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)
What is cribbage? monumental size -14.753220444797373 What 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)
What is cribbage? excellent graphics -14.75498887030186 What 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)
What is cribbage? Jack -14.755227335457615 What 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)
What is cribbage? Greg -14.755227335457615 What 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)
What is cribbage? Rosewood -14.762245563579086 What 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)
What is cribbage? Battlefield -14.769179519984124 What 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)
What is cribbage? Ernest -14.77701336051823 What 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)
What is cribbage? learning -14.781299700559044 What 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)
What is cribbage? brass slot hinges -14.787959812483459 What 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)
What is cribbage? the language -14.795882346975052 What 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)
What is cribbage? Ross -14.800121290892758 What 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)
What is cribbage? Tuch -14.800121290892758 What 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)
What is cribbage? Enos -14.800121290892758 What 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)
In what year was the Guinness Brewery founded? 1759 -3.3558047005136467 In 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)
Who founded the House of Chanel? Jacques Wetheimer -8.626903841647383 Who 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)
Who founded the House of Chanel? Jacques Wertheimer -8.705989684481585 Who 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)
Who founded the House of Chanel? Coco Chanel -9.322607237067926 Who 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)
Who founded the House of Chanel? Karl Lagerfeld -9.444800532053241 Who 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)
Who founded the House of Chanel? herself?and -9.540249035144159 Who 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)
Who founded the House of Chanel? Chanel -11.237332684271047 Who 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)
Who founded the House of Chanel? Dellal -13.067881189883938 Who 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)
Who founded the House of Chanel? Alain Wertheimer -14.299163433115368 Who 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)
Who founded the House of Chanel? the perfect height -14.50489881194736 Who 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)
Who founded the House of Chanel? Larcrest Holsteins -15.116297898174082 Who 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)
Who founded the House of Chanel? exquisite craftsmanship -15.626396107163572 Who 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)
Who founded the House of Chanel? 1939 -15.638709361507367 Who 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)
Who founded the House of Chanel? chanel -15.71697312153653 Who 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)
Who founded the House of Chanel? the Wertheimer brothers--grandsons -15.87559481503284 Who 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)
Who founded the House of Chanel? lies and rumors -15.877363187835034 Who 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)
Who founded the House of Chanel? the ?little black dress? -15.881015953937894 Who 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)
Who founded the House of Chanel? an olfactive diamond -16.120513812842034 Who 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)
Who founded the House of Chanel? a recent recovery -16.155489491413547 Who 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)
Who founded the House of Chanel? harpies -16.162519373325917 Who 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)
Who founded the House of Chanel? a single unit -16.180639278651025 Who 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)
Who founded the House of Chanel? a cloud -16.207229755024947 Who 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)
Who founded the House of Chanel? Gloria Lee -16.21430335163831 Who 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)
Who founded the House of Chanel? quilts -16.384453005925085 Who 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)
Who founded the House of Chanel? 80 years -16.534525822601744 Who 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)
Who founded the House of Chanel? Coco -16.535384325012572 Who 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)
Who founded the House of Chanel? a over 80 years -16.53763520172529 Who 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)
Who founded the House of Chanel? a stroll in the variety -16.5962347467144 Who 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)
Who founded the House of Chanel? the NBA -16.677862106792375 Who 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)
Who founded the House of Chanel? the industry -17.114260654258256 Who 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)
Who founded the House of Chanel? the fashion industry -17.388280322439805 Who 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)
Who founded the House of Chanel? the different types -17.412441957851726 Who 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)
Who founded the House of Chanel? the likes -17.47624161336659 Who 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)
Who founded the House of Chanel? the extra attention -17.569358207594316 Who 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)
Who founded the House of Chanel? the little black dress -17.639759246124935 Who 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)
Who founded the House of Chanel? the best quality -17.668798686164894 Who 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)
Who founded the House of Chanel? the highest standards -17.705176019307185 Who 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)
Who founded the House of Chanel? the dedicated pair -17.719979655411294 Who 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)
What is Weiss's home town? small comic masterpiece -11.177009238450053 What 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)
What is Weiss's home town? Answers.com -11.291827625118414 What 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)
What is Weiss's home town? Weiss?s warning -11.534018861839552 What 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)
What is Weiss's home town? inspirer of politics -11.537328622265823 What 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)
What is Weiss's home town? old-world clockworker, making metal animal -11.537328622265823 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Emil%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Eric%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Andrew%20Weiss%20(guitarist) -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Wojciech%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/John%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Shaun%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Norman%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Ellen%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Mount%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Allan%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Sid%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Vladimir%20Weiss%20(footballer%20born%201964) -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Lisa%20Wei%C3%9F -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Matt%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Johnny%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Rob%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Erick%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Stanley%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Trude%20Weiss%2DRosmarin -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Nate%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Roberta%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Bill%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Emanuel%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Pierre%20Weiss -11.80361328631787 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Jamie%20Sue%20Weiss -11.827175183974292 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Carl%20G%C3%BCnther%20Weiss -11.827175183974292 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Mallory%E2%80%93Weiss%20syndrome -11.827175183974292 What 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)
What is Weiss's home town? http://en.wikipedia.org/wiki/Louis%20A%2E%20Weiss%20Memorial%20Hospital -11.86546326766598 What 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)
What is Weiss's home town? any settlement negotitations -11.966371436492807 What 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)
What is Weiss's home town? Philadelphia -12.062026094129136 What 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)
What is Weiss's home town? the USA -12.075137796582373 What 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)
What is Weiss's home town? Hungry -12.503435398696439 What 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)
What is Weiss's home town? The building -12.761281392207731 What 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)
What is Weiss's home town? The UND Center -12.770903325914155 What 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)
What is Weiss's home town? the U.S. Holocaust Memorial Museum -12.784166332739783 What 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)
What is Weiss's home town? Romania -12.82867078556631 What 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)
What is Weiss's home town? Davis -13.412222419590911 What 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)
What is Weiss's home town? President -13.456432319370986 What 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)
What is Weiss's home town? powerhouse -13.66325604262189 What 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)
What is Weiss's home town? The new building -13.895387635943782 What 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)
What is Weiss's home town? work -15.343115815845916 What 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)
Which king signed the Magna Carta? King John -4.084419249049735 Which 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)
Which king signed the Magna Carta? Robin Hood -4.2230887782548585 Which 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)
Which king signed the Magna Carta? a hand -7.312238190015426 Which 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)
Which king signed the Magna Carta? England -7.5479983164466775 Which 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)
Who founded Wal-Mart? Sam Walton 0.601150388120341 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Sam Walton, founded, Wal-Mart) -> Sam Walton (1946ms)
Who founded Wal-Mart? the Walton family -0.6078750500570229 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the Walton family, founded, Wal-Mart) -> the Walton family (1946ms)
Who founded Wal-Mart? no . Sam Walton -0.6914602459265022 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (no . Sam Walton, founded, Wal-Mart) -> no . Sam Walton (1945ms)
Who founded Wal-Mart? the Authors Sam Walton -0.9093357261885111 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the Authors Sam Walton, founded, Wal-Mart and Sam?s Club) -> the Authors Sam Walton (2498ms)
Who founded Wal-Mart? Univ -0.9462212121370062 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Univ, then founded, Wal-Mart) -> Univ (2498ms)
Who founded Wal-Mart? Newport native -1.1895213417373895 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Newport native, founded, Wal-Mart Stores) -> Newport native (2498ms)
Who founded Wal-Mart? Arkansas -1.2025610763787573 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Arkansas, founded, Wal-Mart) -> Arkansas (2498ms)
Who founded Wal-Mart? Oklahoma -1.4048142868743332 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Oklahoma, founded, two American retailers Wal-Mart) -> Oklahoma (2498ms)
Who founded Wal-Mart? Illinois -1.484741115172262 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Illinois, was founded by, Wal-Mart) -> Illinois (2541ms)
Who founded Wal-Mart? Bentonville -1.712669248545175 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Bentonville, was founded by, Wal-Mart heiress Alice Walton) -> Bentonville (2541ms)
Who founded Wal-Mart? Walton -1.7394870037000905 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Walton, founded, Wal-Mart) -> Walton (2542ms)
Who founded Wal-Mart? 1962 Sam Walton -2.0903241140367226 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (1962 Sam Walton, founded, Wal-Mart Stores) -> 1962 Sam Walton (2541ms)
Who founded Wal-Mart? mike duke -2.528154753226417 Who 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)
Who founded Wal-Mart? pet food -2.5989088452892277 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (pet food, found at, Wal*Mart) -> pet food (2565ms)
Who founded Wal-Mart? weights and measures -2.63937993453388 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (weights and measures, found, 164 Wal-Marts) -> weights and measures (2565ms)
Who founded Wal-Mart? obscure brands -2.7066443712138737 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (obscure brands, found at, Wal-Mart work) -> obscure brands (2565ms)
Who founded Wal-Mart? private labels -2.7495778327998477 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (private labels, find, Wal-Mart) -> private labels (2565ms)
Who founded Wal-Mart? small vehicles -2.762413420442343 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (small vehicles, can be found at, Wal-Mart) -> small vehicles (2565ms)
Who founded Wal-Mart? scrapbooking supplies -2.799549723609054 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (scrapbooking supplies, found at, Wal-Mart) -> scrapbooking supplies (2653ms)
Who founded Wal-Mart? Baja California -2.824706240623516 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Baja California, can find, a Wal-Mart) -> Baja California (2654ms)
Who founded Wal-Mart? the New York Times -2.859217510665108 Who 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)
Who founded Wal-Mart? lee scott -3.0100956507090872 Who 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)
Who founded Wal-Mart? sam walton -3.0100956507090872 Who 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)
Who founded Wal-Mart? Gil -3.03130899027795 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Gil, found a job at, Wal-Mart) -> Gil (2796ms)
Who founded Wal-Mart? white sculpy clay -3.1036508980315043 Who 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)
Who founded Wal-Mart? a Wal-Mart Supercenter -3.1151240254922863 Who 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)
Who founded Wal-Mart? a search -3.1354605762289824 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a search, found, Wal-Mart) -> a search (2796ms)
Who founded Wal-Mart? a local tire company -3.1411931665209893 Who 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)
Who founded Wal-Mart? a clothes line and can?t -3.1822584670850897 Who 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)
Who founded Wal-Mart? white cardstock paper -3.182504872839512 Who 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)
Who founded Wal-Mart? Lotus Center -3.2121390595278907 Who 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)
Who founded Wal-Mart? a Clone Trooper Power Quad -3.261900865356936 Who 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)
Who founded Wal-Mart? the Pure Ice brand -3.2639060431415183 Who 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)
Who founded Wal-Mart? Basker and Noel -3.33175248698258 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Basker and Noel, find, that Wal-Mart) -> Basker and Noel (2822ms)
Who founded Wal-Mart? the Luanna brand -3.3635189982108655 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the Luanna brand, found in, Wal-Mart) -> the Luanna brand (2822ms)
Who founded Wal-Mart? The Ranch Style Beans -3.364403237314257 Who 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)
Who founded Wal-Mart? a clear COLORPLACE Spray Paint -3.3715413493525803 Who 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)
Who founded Wal-Mart? the US judges -3.3724255884559717 Who 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)
Who founded Wal-Mart? A Florida jury -3.3729175230640656 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (A Florida jury, finds, Wal-Mart liable) -> A Florida jury (2856ms)
Who founded Wal-Mart? new electronic gifts -3.378550377838687 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (new electronic gifts, found at, Wal-Mart) -> new electronic gifts (2856ms)
Who founded Wal-Mart? Home materials -3.3805556083255643 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Home materials, can be found at, Wal Mart) -> Home materials (2856ms)
Who founded Wal-Mart? an explosive device -3.382151744272624 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (an explosive device, found at, Wal-Mart) -> an explosive device (2896ms)
Who founded Wal-Mart? Missing special-needs teen -3.3882159381082118 Who 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)
Who founded Wal-Mart? a tool box -3.3954146983959577 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a tool box, found at, Wal-Mart) -> a tool box (2896ms)
Who founded Wal-Mart? a plastic trading card sleeve -3.3954146983959577 Who 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)
Who founded Wal-Mart? alcohol -3.416501724548503 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (alcohol, even find, a Wal-Mart) -> alcohol (2896ms)
Who founded Wal-Mart? CLW -3.4626137608183116 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (CLW, has found, that Wal-Mart) -> CLW (2896ms)
Who founded Wal-Mart? The Brinkmann Q Beam -3.475876714941645 Who 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)
Who founded Wal-Mart? Top left -3.485602870758297 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Top left, was found only in, Wal-Mart) -> Top left (2919ms)
Who founded Wal-Mart? ? variety -3.501057879934413 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (? variety, would be found at, Wal-Mart) -> ? variety (2919ms)
Who founded Wal-Mart? 12/20/2004 AMR Research -3.5162007120921133 Who 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)
Who founded Wal-Mart? natural and organic foods sections -3.5200866147217185 Who 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)
Who founded Wal-Mart? customers -3.5425752427427466 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (customers, find great value at, Wal-Mart) -> customers (2919ms)
Who founded Wal-Mart? more workers -3.552963306023133 Who 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)
Who founded Wal-Mart? Aloe Vera -3.5731204532066205 Who 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)
Who founded Wal-Mart? zero people -3.613416402795577 Who 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)
Who founded Wal-Mart? the family -3.6215414338457825 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the family, founded, Wal-Mart) -> the family (2947ms)
Who founded Wal-Mart? employment gains -3.689522002760742 Who 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)
Who founded Wal-Mart? Wal-Mart -3.715033729519122 Who 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)
Who founded Wal-Mart? Bell -3.7164311563452577 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Bell, found at, Wal-Mart) -> Bell (2947ms)
Who founded Wal-Mart? greater liability -3.757605198881898 Who 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)
Who founded Wal-Mart? house advertising -3.7610167808119006 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found, house advertising) -> house advertising (3569ms)
Who founded Wal-Mart? clear coat -3.7654984137691008 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (clear coat, be found at, Wal-Mart) -> clear coat (2984ms)
Who founded Wal-Mart? basketball team -3.769983966604135 Who 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)
Who founded Wal-Mart? 3-D Paint -3.7846692254134866 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (3-D Paint, found at, Wal-Mart) -> 3-D Paint (2984ms)
Who founded Wal-Mart? much that -3.7863915199434413 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (much that, is found in, Wal-mart) -> much that (2984ms)
Who founded Wal-Mart? the guy -3.807969744681244 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the guy, founded, Wal-Mart) -> the guy (2984ms)
Who founded Wal-Mart? a 3$ scarf i -3.8142399446564466 Who 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)
Who founded Wal-Mart? Warren Buffett -3.8179549931322048 Who 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)
Who founded Wal-Mart? the $ 100 models -3.8301555106853646 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the $ 100 models, found at, Wal Mart) -> the $ 100 models (3007ms)
Who founded Wal-Mart? I?m -3.8467791897559507 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, outraged, Wal-Mart) -> (I?m, outraged, that Wal-Mart?s Supercenters) -> I?m (3253ms)
Who founded Wal-Mart? CR2032 -3.859826018148005 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (CR2032, are commonly found at, Wal-Mart) -> CR2032 (3006ms)
Who founded Wal-Mart? an entrepreneur -3.860990951109931 Who 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)
Who founded Wal-Mart? eight weeks -3.881392876104267 Who 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)
Who founded Wal-Mart? suppose -3.9059616169703735 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (suppose, find, a Wal-Mart) -> suppose (3069ms)
Who founded Wal-Mart? coffees -3.9103180335508956 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (coffees, found at, Wal-Mart) -> coffees (3069ms)
Who founded Wal-Mart? Procter & Gamble -3.9400453009051697 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Procter & Gamble, has found, Wal-Mart) -> Procter & Gamble (3069ms)
Who founded Wal-Mart? German shoppers -4.011544681337451 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (German shoppers, found, Wal-Mart) -> German shoppers (3069ms)
Who founded Wal-Mart? Sandwich containers -4.027952234676757 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Sandwich containers, can be found at, Wal-Mart) -> Sandwich containers (3069ms)
Who founded Wal-Mart? Several states -4.041542872465838 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Several states, have found, Wal-Mart workers) -> Several states (3163ms)
Who founded Wal-Mart? a famous store brand -4.071155945634938 Who 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)
Who founded Wal-Mart? Hearing officer -4.110574823115346 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Hearing officer, found, Wal-Mart Stores) -> Hearing officer (3163ms)
Who founded Wal-Mart? a product -4.116910840651563 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a product, found at, Wal-Mart) -> a product (3163ms)
Who founded Wal-Mart? commonality -4.125242690366251 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (commonality, found in, Wal-Mart) -> commonality (3163ms)
Who founded Wal-Mart? a hat -4.12532250364551 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a hat, find at, WalMart) -> a hat (3163ms)
Who founded Wal-Mart? January Lee County zoning staff -4.1301031585234025 Who 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)
Who founded Wal-Mart? Oregon -4.133461706661006 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Oregon, found, Wal-Mart guilty) -> Oregon (3199ms)
Who founded Wal-Mart? the USA -4.181585940905434 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the USA, found, a Wal-Mart) -> the USA (3199ms)
Who founded Wal-Mart? the Striking Z Fighters -4.197851364388596 Who 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)
Who founded Wal-Mart? a flavoring oil & yes -4.216354974195843 Who 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)
Who founded Wal-Mart? solid footing online -4.219218771763425 Who 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)
Who founded Wal-Mart? www.walmartstores.com -4.220840527030877 Who 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)
Who founded Wal-Mart? a certain grand confection -4.240292891366476 Who 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)
Who founded Wal-Mart? Eventual his company -4.300353736345917 Who 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)
Who founded Wal-Mart? two other units -4.302186729977661 Who 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)
Who founded Wal-Mart? thousands -4.314949202182037 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has been found to have, thousands) -> thousands (3626ms)
Who founded Wal-Mart? www.WalMart.com -4.3392584650171155 Who 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)
Who founded Wal-Mart? disc brakes -4.363356564358956 Who 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)
Who founded Wal-Mart? so few American made items -4.3777063737680555 Who 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)
Who founded Wal-Mart? the HALO ? Sleep Sack -4.40033268535446 Who 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)
Who founded Wal-Mart? violations -4.429830341861594 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (violations, were found throughout, the Wal-Mart system) -> violations (3382ms)
Who founded Wal-Mart? travel kits and accessories -4.448708387514311 Who 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)
Who founded Wal-Mart? one such brand -4.464814567743973 Who 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)
Who founded Wal-Mart? Force Unleashed figures -4.480794701900146 Who 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)
Who founded Wal-Mart? a man -4.48338269297618 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a man, was found behind, the WalMart) -> a man (3382ms)
Who founded Wal-Mart? Combat? Ant Baits and Gels -4.488497302586607 Who 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)
Who founded Wal-Mart? Udi?s Gluten Free Foods -4.490520857716799 Who 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)
Who founded Wal-Mart? the Cushing crime scene -4.497594454330161 Who 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)
Who founded Wal-Mart? A good GPSr -4.501131252636842 Who 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)
Who founded Wal-Mart? Beautiful blank books -4.513117768566077 Who 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)
Who founded Wal-Mart? Silk Fruit&Protein -4.515213825034017 Who 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)
Who founded Wal-Mart? OxiClean Versatile Stain Remover -4.542688540511332 Who 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)
Who founded Wal-Mart? Kelly -4.5428263534709 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Kelly, found, a Wal-Mart) -> Kelly (3698ms)
Who founded Wal-Mart? Carolina Pad arts and crafts items -4.543508158785173 Who 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)
Who founded Wal-Mart? Ultimate Game Cards -4.543508158785173 Who 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)
Who founded Wal-Mart? meth -4.656249527295795 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (meth, can be found at, WalMart) -> meth (3805ms)
Who founded Wal-Mart? Equate -4.6749346647636045 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Equate, found in, Wal-Mart) -> Equate (3805ms)
Who founded Wal-Mart? Kantar -4.7042423211703674 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Kantar, found, Wal-Mart) -> Kantar (3995ms)
Who founded Wal-Mart? a woman -4.743541884886213 Who 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)
Who founded Wal-Mart? Bandanas -4.765251973380456 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Bandanas, can be found at, WalMart) -> Bandanas (4016ms)
Who founded Wal-Mart? the union -4.771539873054504 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the union, has found, Wal-Mart nearly) -> the union (4016ms)
Who founded Wal-Mart? Cimarron -4.774486194589015 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Cimarron, then found, the Wal-Mart) -> Cimarron (4016ms)
Who founded Wal-Mart? Frankfort -4.777958424768441 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Frankfort, finally found, freggin Wal Mart) -> Frankfort (4016ms)
Who founded Wal-Mart? R4-P17 -4.781072873919886 Who 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)
Who founded Wal-Mart? Elaine -4.786800394183995 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Elaine, found this item at, Wal-Mart) -> Elaine (4114ms)
Who founded Wal-Mart? products -4.834446373000258 Who 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)
Who founded Wal-Mart? union households -4.843129440934431 Who 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)
Who founded Wal-Mart? 09:23 AM CST C & D Visionary products -4.859831033088341 Who 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)
Who founded Wal-Mart? 10 -4.862091393200922 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has been found guilty in, 10) -> 10 (4114ms)
Who founded Wal-Mart? the agency -4.90151696048914 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the agency, has found, Wal-Mart) -> the agency (4256ms)
Who founded Wal-Mart? more than $ 200 million -4.936756251327346 Who 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)
Who founded Wal-Mart? PREMARIN -4.946386004205658 Who 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)
Who founded Wal-Mart? the states -4.962526612699227 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the states, find, a Wal-Mart) -> the states (4281ms)
Who founded Wal-Mart? general merchandise -4.9633803198501205 Who 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)
Who founded Wal-Mart? inspirational selections -4.990298479889789 Who 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)
Who founded Wal-Mart? the photo -5.020819084876473 Who 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)
Who founded Wal-Mart? the type -5.022587457678666 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the type, found at, Wal-Mart) -> the type (4350ms)
Who founded Wal-Mart? readers -5.027468520863498 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (readers, can be found at, Wal-Mart) -> readers (4384ms)
Who founded Wal-Mart? the product -5.0624409408782185 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the product, found at, Wal-Mart) -> the product (4384ms)
Who founded Wal-Mart? Wall Street -5.082909188952311 Who 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)
Who founded Wal-Mart? folks -5.0875939339701945 Who 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)
Who founded Wal-Mart? a car -5.100757776028891 Who 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)
Who founded Wal-Mart? Similar items -5.114608623672751 Who 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)
Who founded Wal-Mart? Inexpensive ones -5.114608623672751 Who 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)
Who founded Wal-Mart? Jason products -5.123450593088307 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Jason products, are found in, Wal-Mart) -> Jason products (4433ms)
Who founded Wal-Mart? success -5.169065353293657 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found, success) -> success (4553ms)
Who founded Wal-Mart? the produce packaging -5.173255639058903 Who 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)
Who founded Wal-Mart? workers -5.196475500643716 Who 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)
Who founded Wal-Mart? Targ?t -5.196736733924011 Who 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)
Who founded Wal-Mart? confectionary -5.1991280598470055 Who 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)
Who founded Wal-Mart? figures -5.203549097257078 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (figures, are being found at, Wal-Mart stores) -> figures (4579ms)
Who founded Wal-Mart? the greatest gender gaps -5.217038119655845 Who 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)
Who founded Wal-Mart? work -5.220348849687093 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (work, can be found at, Wal-Mart) -> work (4612ms)
Who founded Wal-Mart? the inexpensive needles -5.224931334543047 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the inexpensive needles, found at, Wal-Mart) -> the inexpensive needles (4612ms)
Who founded Wal-Mart? item -5.275104523557658 Who 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)
Who founded Wal-Mart? the lower-priced models -5.288265914992973 Who 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)
Who founded Wal-Mart? a travel pillow -5.368650806785304 Who 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)
Who founded Wal-Mart? don?t -5.3748324075750125 Who 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)
Who founded Wal-Mart? an hour -5.402250311645333 Who 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)
Who founded Wal-Mart? the environment -5.402461090865335 Who 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)
Who founded Wal-Mart? a television -5.440270853915435 Who 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)
Who founded Wal-Mart? You?ll -5.450816628005928 Who 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)
Who founded Wal-Mart? pharmacists -5.474254063257604 Who 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)
Who founded Wal-Mart? a Nazi symbol -5.4871333128987985 Who 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)
Who founded Wal-Mart? future financial success -5.496121952551391 Who 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)
Who founded Wal-Mart? a laptop computer -5.497679139691586 Who 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)
Who founded Wal-Mart? The Federal Government -5.497743707818842 Who 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)
Who founded Wal-Mart? Star Wars items -5.509238289139983 Who 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)
Who founded Wal-Mart? high cadmium content -5.51285713685415 Who 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)
Who founded Wal-Mart? a TV -5.51631183305105 Who 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)
Who founded Wal-Mart? WalMart CCYC -5.523385429664412 Who 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)
Who founded Wal-Mart? real-time -5.53065295923804 Who 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)
Who founded Wal-Mart? Labor -5.579575472487237 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, glove, Wal-Mart) -> (Labor, is working hand-in-glove with, Wal-Mart) -> Labor (4995ms)
Who founded Wal-Mart? dresses -5.592219153903713 Who 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)
Who founded Wal-Mart? no policeman -5.609088049191719 Who 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)
Who founded Wal-Mart? a fundraising device -5.624942966971214 Who 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)
Who founded Wal-Mart? a friend -5.645340165957332 Who 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)
Who founded Wal-Mart? February 2000 Cifra -5.682684057745638 Who 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)
Who founded Wal-Mart? Can?t -5.694035618572439 Who 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)
Who founded Wal-Mart? a mess kit -5.6949198049735354 Who 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)
Who founded Wal-Mart? a little girl -5.724982511526884 Who 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)
Who founded Wal-Mart? Coleman -5.795064565248435 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Coleman, can also be found at, Wal-Mart) -> Coleman (5201ms)
Who founded Wal-Mart? Clinton -5.8011168532934025 Who 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)
Who founded Wal-Mart? Mama -5.8576041934876235 Who 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)
Who founded Wal-Mart? Utapau -5.858097772588716 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Utapau, has been found at, Wal-Mart) -> Utapau (5218ms)
Who founded Wal-Mart? the author -5.873327377195704 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, outraged, Wal-Mart) -> (the author, is outraged by, Wal-Mart) -> the author (5218ms)
Who founded Wal-Mart? The kind -5.959324692627632 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (The kind, can find at, Wal-Mart) -> The kind (5235ms)
Who founded Wal-Mart? the girl -5.970981345262116 Who 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)
Who founded Wal-Mart? the lowest price -6.009259178040651 Who 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)
Who founded Wal-Mart? The clothes -6.097219622161328 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The clothes, can be found from, WalMart) -> The clothes (5271ms)
Who founded Wal-Mart? the chemical -6.125715968141224 Who 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)
Who founded Wal-Mart? the figures -6.128368580046809 Who 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)
Who founded Wal-Mart? the bag -6.158293842498674 Who 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)
Who founded Wal-Mart? 2:00 -6.172594078848917 Who 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)
Who founded Wal-Mart? items -6.183236583632384 Who 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)
Who founded Wal-Mart? the products -6.1884939931535055 Who 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)
Who founded Wal-Mart? The new Star Wars sticker books -6.218419308307665 Who 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)
Who founded Wal-Mart? Natural brushes -6.2464955279757035 Who 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)
Who founded Wal-Mart? The spudtrooper -6.266101438267162 Who 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)
Who founded Wal-Mart? The following list -6.296228712947768 Who 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)
Who founded Wal-Mart? the international union -6.3147968908822705 Who 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)
Who founded Wal-Mart? The real challenge -6.321745218416659 Who 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)
Who founded Wal-Mart? The spray paint -6.340438612727841 Who 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)
Who founded Wal-Mart? the above photo -6.342206985530034 Who 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)
Who founded Wal-Mart? the stuff -6.3510176283312205 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the stuff, find at, WalMart) -> the stuff (5448ms)
Who founded Wal-Mart? The parking lot -6.351540942255978 Who 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)
Who founded Wal-Mart? The white prison truck -6.357730352468243 Who 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)
Who founded Wal-Mart? the most venerated managers -6.367848707375604 Who 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)
Who founded Wal-Mart? The one above -6.370501319281189 Who 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)
Who founded Wal-Mart? The white pickup -6.370501319281189 Who 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)
Who founded Wal-Mart? The lists -6.376690729493454 Who 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)
Who founded Wal-Mart? the bargains -6.397121117290165 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the bargains, find at, Wal-Mart) -> the bargains (5625ms)
Who founded Wal-Mart? hundreds of thousands of dresses -6.418536642688601 Who 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)
Who founded Wal-Mart? Starbucks -6.419703806412956 Who 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)
Who founded Wal-Mart? Police -6.464797892594126 Who 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)
Who founded Wal-Mart? the the one -6.555769638267066 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the the one, found at, Wal-Mart) -> the the one (5680ms)
Who founded Wal-Mart? you guys -6.584056200001372 Who 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)
Who founded Wal-Mart? the couple -7.235505758327843 Who 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)
Who founded Wal-Mart? the inventory -7.246935771521727 Who 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)
Who founded Wal-Mart? the size -7.269924881461712 Who 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)
Who founded Wal-Mart? the staples -7.287673441122376 Who 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)
Who founded Wal-Mart? the softest cotton sheet i -7.297262152837545 Who 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)
Who founded Wal-Mart? the library -7.35834468102186 Who 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)
Who founded Wal-Mart? the silicone top -7.481175295868905 Who 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)
Who founded Wal-Mart? the teal colored bag ? -7.498859287402311 Who 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)
Who founded Wal-Mart? the jury -8.028621895011286 Who 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)
Who founded Wal-Mart? Alvin -8.413536795334398 Who 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)
Who founded Wal-Mart? good answer -11.242772571113033 Who 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)
Who founded Wal-Mart? national chain -11.248643525051843 Who 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)
Who founded Wal-Mart? Let?s -11.595018755292614 Who 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)
Who founded Wal-Mart? Andrei Hagiu -11.904997131484599 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Andrei Hagiu, identifies, Wal-Mart) -> Andrei Hagiu (6991ms)
Who founded Wal-Mart? popular product and model -11.913720971808726 Who 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)
Who founded Wal-Mart? good gun -11.937429120052048 Who 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)
Who founded Wal-Mart? the Vines -12.310888776334526 Who 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)
Who founded Wal-Mart? existing customers -12.338295391314055 Who 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)
Who founded Wal-Mart? name -12.632652846928448 Who 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)
Who founded Wal-Mart? Lowes -13.333254878844354 Who 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)
Who founded Wal-Mart? The IEP team -13.333817731519222 Who 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)
Who founded Wal-Mart? Dems -13.580626151262356 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Dems, have identified, Wal-Mart) -> Dems (7196ms)
Who founded Wal-Mart? Dyster -13.604996331804024 Who 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)
Who founded Wal-Mart? Recent studies -13.949947714460714 Who 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)
Who founded Wal-Mart? Herro -14.561626835012595 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Herro, has identified, Wal-Mart) -> Herro (7196ms)
Who founded Wal-Mart? the magazine -15.014598915435204 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (the magazine, identifies, Wal-Mart) -> the magazine (7196ms)
Who founded Wal-Mart? The suit -15.344555535499609 Who 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)
Who founded Wal-Mart? The bribery allegations -15.353332936787908 Who 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)
What is Susan B. Anthony's birthday? cause -5.721449213440808 What 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)
What is Susan B. Anthony's birthday? Women's rights activist -8.910589526080209 What 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)
What is Susan B. Anthony's birthday? 1820-02-15 -9.21646922509012 What 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)
What is Susan B. Anthony's birthday? Baldwin, Hoar & Sherman family -9.817451567086648 What 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)
What is Susan B. Anthony's birthday? Adams -9.933951196746795 What 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)
What is Susan B. Anthony's birthday? Rochester -9.938175918996073 What 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)
What is Susan B. Anthony's birthday? 1906-03-13 -9.942553883242699 What 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)
What is Susan B. Anthony's birthday? The Selected Papers of Elizabeth Cady Stanton and Susan B. Anthony -10.387416053564824 What 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)
What is Susan B. Anthony's birthday? Last week -10.46310225968897 What 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)
What is Susan B. Anthony's birthday? the business committee -11.482746689418265 What 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)
What is Susan B. Anthony's birthday? Feb. 15 -12.197856805642404 What 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)
What is Susan B. Anthony's birthday? Vol -12.768579482484453 What 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)
What is Susan B. Anthony's birthday? nursing -13.417004211090914 What 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)
What day did Pearl Harbor occur? December 7, 1941 -1.9583085770656385 What 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)
What day did Pearl Harbor occur? December -2.0192700511453765 What 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)
What day did Pearl Harbor occur? December 7,1941 -2.188094886755573 What 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)
What day did Pearl Harbor occur? Sundays -3.926076015090198 What 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)
What day did Pearl Harbor occur? Sunday -3.9620679114311597 What 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)
What day did Pearl Harbor occur? part -4.158655115082682 What 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)
What day did Pearl Harbor occur? December 8 -4.4876302247085285 What 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)
What day did Pearl Harbor occur? ?Today -4.544047960949598 What 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)
What day did Pearl Harbor occur? December 26 th -4.546021046282645 What 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)
What day did Pearl Harbor occur? Japan -4.574750581817721 What 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)
What day did Pearl Harbor occur? December 8 th -4.613536163609085 What 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)
What day did Pearl Harbor occur? TODAY.. -4.682588914356465 What 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)
What day did Pearl Harbor occur? Congress -4.991716181465715 What 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)
What day did Pearl Harbor occur? Spain -5.264267536175075 What 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)
What day did Pearl Harbor occur? Russia -5.266035961679563 What 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)
What day did Pearl Harbor occur? Italy -5.284211887821064 What 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)
What day did Pearl Harbor occur? ILM -5.48358898619358 What 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)
What day did Pearl Harbor occur? a world -5.484985426701182 What 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)
What day did Pearl Harbor occur? 1941 -5.522557092244409 What 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)
What day did Pearl Harbor occur? order -5.526068743196779 What 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)
What day did Pearl Harbor occur? any -5.544877697412866 What 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)
What day did Pearl Harbor occur? December 1941 -5.695424477979209 What 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)
What day did Pearl Harbor occur? Fascist Italy -5.831218225463708 What 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)
What day did Pearl Harbor occur? none -5.876997690351929 What 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)
What day did Pearl Harbor occur? the Japanese -5.959663192545747 What 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)
What day did Pearl Harbor occur? the Moroccans -5.9877212738473045 What 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)
What day did Pearl Harbor occur? New York City -5.992277971283045 What 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)
What day did Pearl Harbor occur? December 7 , 1941 -6.053869579908086 What 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)
What day did Pearl Harbor occur? Order -6.191613624489529 What 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)
What day did Pearl Harbor occur? a Sunday -6.636532687167475 What 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)
What day did Pearl Harbor occur? 11 -6.6929710058820095 What 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)
What day did Pearl Harbor occur? U.S. -7.094307993099916 What 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)
What day did Pearl Harbor occur? detailed narrations and photos -7.915703345778449 What 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)
What day did Pearl Harbor occur? The reason -7.940205968942922 What 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)
What day did Pearl Harbor occur? December of 1941 -8.271912079655564 What 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)
What day did Pearl Harbor occur? forty minutes -8.555751819635715 What 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)
What day did Pearl Harbor occur? the naval battleship USS Arizona -8.56801910023704 What 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)
What day did Pearl Harbor occur? two continents -8.616809233847006 What 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)
What day did Pearl Harbor occur? surprise -8.70518127140595 What 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)
What day did Pearl Harbor occur? the financial world -8.802740350542491 What 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)
What day did Pearl Harbor occur? the Schofield Barracks -8.84016566750712 What 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)
What day did Pearl Harbor occur? December 7th -8.864417746614922 What 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)
What day did Pearl Harbor occur? December 7 , 2006 -8.944581900718271 What 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)
What day did Pearl Harbor occur? December 7 , 1942 -9.029685335779064 What 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)
What day did Pearl Harbor occur? 9-11-01 -9.033885886679514 What 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)
What day did Pearl Harbor occur? The point -9.071545865853395 What 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)
What day did Pearl Harbor occur? 9/11 -9.103735854784732 What 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)
What day did Pearl Harbor occur? a Pacific island -9.232427940372114 What 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)
What day did Pearl Harbor occur? the final episode -9.271098492811925 What 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)
What day did Pearl Harbor occur? December, 1941 -9.39336171375876 What 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)
What day did Pearl Harbor occur? what day -9.549795719689914 What 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)
What day did Pearl Harbor occur? the island -9.645472618289983 What 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)
What day did Pearl Harbor occur? the watch -10.574334395932336 What 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)
How large is it? big order -8.49050681219752 How 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)
How large is it? event -9.000637917613274 How 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)
How large is it? large social gathering -9.03245560095229 How 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)
How large is it? large event -9.042177494289598 How 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)
How large is it? large private event -9.168441786210503 How 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)
How large is it? no-go -9.171151348926175 How 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)
How large is it? outdoor event -9.18106262215241 How 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)
How large is it? special-event occasion -9.197912868381396 How 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)
How large is it? non-business event -9.201489186886096 How 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)
How large is it? large group event -9.20733795780272 How 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)
How large is it? large scale event -9.221384181998234 How 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)
How large is it? entertainment and business facility -9.231365026986303 How 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)
How large is it? unfamiliar person -9.232092050343699 How 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)
How large is it? commercial activity -9.239320432539156 How 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)
How large is it? Moreno Valley area -9.24556026141994 How 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)
How large is it? large social event -9.254106269108187 How 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)
How large is it? private event -9.256181217188852 How 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)
How large is it? social and formal function -9.260214367671695 How 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)
How large is it? function -9.262777694428335 How 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)
How large is it? restaurant wide private event -9.272137395542611 How 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)
How large is it? helped coordinate event -9.272978703595738 How 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)
How large is it? costly event -9.274359970046273 How 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)
How large is it? large party -9.275397974283292 How 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)
How large is it? occasional family gathering -9.284544492087837 How 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)
How large is it? routine police activity -9.284544492087837 How 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)
How large is it? ming dynasty huizhou merchant -9.284544492087837 How 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)
How large is it? event in the ballroom -9.284544492087837 How 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)
How large is it? ship's heavy work -9.284544492087837 How 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)
How large is it? social celebration -9.285562496450934 How 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)
How large is it? social event -9.286137645320924 How 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)
How large is it? indoor or outdoor event -9.289685449842587 How 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)
How large is it? wonderful amenity -9.293670605617834 How 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)
How large is it? work special event -9.303526490045815 How 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)
How large is it? dance party -9.310280617378112 How 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)
How large is it? opposition party -9.310878253710966 How 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)
How large is it? formal party -9.312389728279355 How 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)
How large is it? onetime event -9.313506316475642 How 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)
How large is it? uncommon event -9.314850357638603 How 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)
How large is it? complex event -9.316848533051658 How 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)
How large is it? physical space -9.317135227922062 How 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)
How large is it? customer need -9.317941652619838 How 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)
How large is it? separate event -9.319173085061113 How 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)
How large is it? busy event -9.321353450030973 How 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)
How large is it? planning event -9.322245027773949 How 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)
How large is it? social custom -9.323857124325944 How 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)
How large is it? formal gathering -9.327054848969532 How 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)
How large is it? common facility -9.327484314583359 How 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)
How large is it? upcoming event -9.33186054376145 How 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)
How large is it? private function -9.337902761062239 How 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)
How large is it? decline of case plan -9.344449793153553 How 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)
How large is it? public event -9.345591924276814 How 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)
How large is it? local event -9.346323309178796 How 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)
How large is it? tasty main dish -9.348520856347571 How 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)
How large is it? good place -9.351972111149541 How 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)
How large is it? high profile event -9.355476774826684 How 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)
How large is it? mandatory charge -9.356588025909904 How 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)
How large is it? dining room -9.364066467217723 How 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)
How large is it? personal event -9.368990548416534 How 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)
How large is it? perfect place -9.392829256981445 How 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)
How large is it? endurance group -9.399055672454654 How 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)
How large is it? occasion -9.406253901685666 How 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)
How large is it? party -9.411569126301206 How 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)
How large is it? amenity -9.414718565184796 How 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)
How large is it? group -9.446045107125435 How 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)
How large is it? circumstance -9.498778920938406 How 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)
How large is it? activity -9.502860581279883 How 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)
How large is it? gathering -9.511432780025462 How 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)
How large is it? idea -9.52035301409986 How 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)
How large is it? unit -9.526673685891005 How 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)
How large is it? topic -9.543494092310768 How 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)
How large is it? exception -9.569998415100024 How 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)
How large is it? requirement -9.577749476156677 How 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)
How large is it? option -9.584532518699639 How 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)
How large is it? venue -9.591218539745817 How 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)
How large is it? task -9.6009787238601 How 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)
How large is it? website -9.605569911110022 How 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)
How large is it? retailer -9.606020826471104 How 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)
How large is it? service -9.608033214793116 How 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)
How large is it? exhibition of digital photo of Australian landscape -12.44067130658266 How 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)
How large is it? evening of nail-biting drama -12.485565262017802 How 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)
How large is it? independent professional organization and forum -12.485565262017802 How 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)
How large is it? Chicago based company -12.493276456271126 How 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)
How large is it? place of kind Reservoir -12.554193456252895 How 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)
How large is it? cool lake -12.619867765245438 How 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)
How large is it? fascinating place -12.620983041789682 How 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)
How large is it? nice lake -12.629339588763232 How 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)
How large is it? private company -12.631918811783287 How 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)
How large is it? beautiful place -12.638655919998929 How 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)
How large is it? circular lake -12.66373727125588 How 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)
How large is it? bite -12.812346886120565 How 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)
How large is it? Chinese proverb meaning better -12.92251700057922 How 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)
How large is it? mark of evil thing -13.18898754668652 How 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)
How large is it? incredibly popular fast-food chain -13.218263843076457 How 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)
How large is it? proven container-tag printing resource -13.2631577985116 How 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)
How large is it? Scot -13.291966115670293 How 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)
How large is it? proverb -13.328895029259296 How 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)
How large is it? instant hit -13.35461214524131 How 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)
How large is it? great race -13.400455926864192 How 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)
How large is it? sturdy product -13.44254617266278 How 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)
How large is it? spelling contest -13.475057219433117 How 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)
How large is it? spelling competition -13.503846582369437 How 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)
How large is it? position of superior responsibility -14.124854973575262 How 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)
How large is it? PC-based software simulation -14.124854973575262 How 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)
Who is Aaron Copland? musical legend -1.5348521789133773 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical legend) -> musical legend (2683ms)
Who is Aaron Copland? contemporary composer -1.5675427038095426 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary composer) -> contemporary composer (2683ms)
Who is Aaron Copland? classical composer -1.589409594200286 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, classical composer) -> classical composer (2683ms)
Who is Aaron Copland? notorious conductor -1.603945860539497 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notorious conductor) -> notorious conductor (2684ms)
Who is Aaron Copland? century composer -1.6212821086006832 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, century composer) -> century composer (2684ms)
Who is Aaron Copland? modern composer -1.6297768309008 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern composer) -> modern composer (2684ms)
Who is Aaron Copland? music luminary -1.6304123760701412 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, music luminary) -> music luminary (2842ms)
Who is Aaron Copland? classical music -1.6451533404194265 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, classical music) -> classical music (2841ms)
Who is Aaron Copland? musical luminary -1.6578613676237675 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical luminary) -> musical luminary (2841ms)
Who is Aaron Copland? distinguished musician -1.6675143146109896 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, distinguished musician) -> distinguished musician (2841ms)
Who is Aaron Copland? established composer -1.6854882265751896 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, established composer) -> established composer (2842ms)
Who is Aaron Copland? great composer -1.6871469195962745 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great composer) -> great composer (2841ms)
Who is Aaron Copland? mainstream composer -1.6952849654805717 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, mainstream composer) -> mainstream composer (3006ms)
Who is Aaron Copland? musical figure -1.699894100040446 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical figure) -> musical figure (3005ms)
Who is Aaron Copland? american composer -1.700249393522139 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american composer) -> american composer (3006ms)
Who is Aaron Copland? prominent artist -1.720320064341093 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, prominent artist) -> prominent artist (3005ms)
Who is Aaron Copland? early work -1.7212488482028074 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland's, Instance Of, early work) -> early work (3005ms)
Who is Aaron Copland? opera composer -1.7251315294640186 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, opera composer) -> opera composer (3048ms)
Who is Aaron Copland? interestin composer -1.7345061399660882 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, interestin composer) -> interestin composer (3047ms)
Who is Aaron Copland? modernist composer -1.75133109250657 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modernist composer) -> modernist composer (3047ms)
Who is Aaron Copland? master composer -1.753200532358679 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, master composer) -> master composer (3047ms)
Who is Aaron Copland? guest conductor -1.7624621986070723 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, guest conductor) -> guest conductor (3047ms)
Who is Aaron Copland? native composer -1.7631166880036968 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, native composer) -> native composer (3047ms)
Who is Aaron Copland? great musician -1.7663048436086082 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great musician) -> great musician (3065ms)
Who is Aaron Copland? famed conductor -1.766693005589123 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famed conductor) -> famed conductor (3064ms)
Who is Aaron Copland? established artist -1.767523613344804 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, established artist) -> established artist (3064ms)
Who is Aaron Copland? leading figure -1.77087329412644 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, leading figure) -> leading figure (3064ms)
Who is Aaron Copland? notable composer -1.770897889019492 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notable composer) -> notable composer (3065ms)
Who is Aaron Copland? eminent composer -1.7731661421837521 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, eminent composer) -> eminent composer (3064ms)
Who is Aaron Copland? great conductor -1.792950710013499 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great conductor) -> great conductor (3082ms)
Who is Aaron Copland? famous composer -1.8001021587069035 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famous composer) -> famous composer (3082ms)
Who is Aaron Copland? American composer of concert and film music -2.167803572470184 Who 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)
Who is Aaron Copland? great american composer -2.2393515465749663 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great american composer) -> great american composer (3082ms)
Who is Aaron Copland? well-known american composer -2.2693798779616006 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known american composer) -> well-known american composer (3082ms)
Who is Aaron Copland? contemporary american composer -2.2727853746920195 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary american composer) -> contemporary american composer (3082ms)
Who is Aaron Copland? british and american composer -2.29878325830832 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, british and american composer) -> british and american composer (3099ms)
Who is Aaron Copland? world's greatest musician -2.3116095351057635 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world's greatest musician) -> world's greatest musician (3099ms)
Who is Aaron Copland? mainstream Americans -2.317209024292771 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, mainstream Americans) -> mainstream Americans (3099ms)
Who is Aaron Copland? serious american composer -2.334940328312708 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, serious american composer) -> serious american composer (3099ms)
Who is Aaron Copland? composer and conductor -2.3421632723974875 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer and conductor) -> composer and conductor (3099ms)
Who is Aaron Copland? instru-mentsandgreat composer -2.357981392849078 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, instru-mentsandgreat composer) -> instru-mentsandgreat composer (3099ms)
Who is Aaron Copland? prominent gay composer -2.375138332840814 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, prominent gay composer) -> prominent gay composer (3116ms)
Who is Aaron Copland? learned, modernist composer -2.379367505449016 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, learned, modernist composer) -> learned, modernist composer (3116ms)
Who is Aaron Copland? musician and composer -2.3898267839188714 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musician and composer) -> musician and composer (3116ms)
Who is Aaron Copland? now-famous composer -2.40287534828422 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, now-famous composer) -> now-famous composer (3116ms)
Who is Aaron Copland? contemporary of barber -2.40287534828422 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary of barber) -> contemporary of barber (3116ms)
Who is Aaron Copland? outstanding american composer -2.403131139044815 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, outstanding american composer) -> outstanding american composer (3116ms)
Who is Aaron Copland? American nationalist composer of concert and film music -2.416578342752657 Who 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)
Who is Aaron Copland? twentieth-century composer -2.4165845693721204 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth-century composer) -> twentieth-century composer (3177ms)
Who is Aaron Copland? freaking amazing composer -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, freaking amazing composer) -> freaking amazing composer (3177ms)
Who is Aaron Copland? famous american composer -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famous american composer) -> famous american composer (3177ms)
Who is Aaron Copland? twentieth century composer -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth century composer) -> twentieth century composer (3177ms)
Who is Aaron Copland? american musical artist -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american musical artist) -> american musical artist (3177ms)
Who is Aaron Copland? songwriter and composer -2.423413721253624 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, songwriter and composer) -> songwriter and composer (3271ms)
Who is Aaron Copland? American classical composer -2.4236102216435427 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American classical composer) -> American classical composer (3271ms)
Who is Aaron Copland? well-known American composer -2.434204389800616 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known American composer) -> well-known American composer (3271ms)
Who is Aaron Copland? world-renowned composer, teacher, writer and conductor -2.4375551070496835 Who 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)
Who is Aaron Copland? great contemporary composer -2.439301044696748 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great contemporary composer) -> great contemporary composer (3271ms)
Who is Aaron Copland? twentieth century classical composer -2.44461301655552 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth century classical composer) -> twentieth century classical composer (3271ms)
Who is Aaron Copland? notable jewish composer -2.4480250944799566 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notable jewish composer) -> notable jewish composer (3287ms)
Who is Aaron Copland? goldfarb's favorite composer -2.4505227413227635 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, goldfarb's favorite composer) -> goldfarb's favorite composer (3287ms)
Who is Aaron Copland? top american composer -2.4505227413227635 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, top american composer) -> top american composer (3287ms)
Who is Aaron Copland? modern classical composer -2.4507669384523973 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern classical composer) -> modern classical composer (3287ms)
Who is Aaron Copland? artist and composer -2.4624529032135856 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, artist and composer) -> artist and composer (3287ms)
Who is Aaron Copland? composer -2.4647442571187677 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer) -> composer (3287ms)
Who is Aaron Copland? modern american jewish composer -2.47203145873132 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern american jewish composer) -> modern american jewish composer (3302ms)
Who is Aaron Copland? yet-to-be-famous writer and musician -2.47203145873132 Who 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)
Who is Aaron Copland? america's most renowned composer -2.48574067859352 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, america's most renowned composer) -> america's most renowned composer (3302ms)
Who is Aaron Copland? esteemed and reputable composer -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, esteemed and reputable composer) -> esteemed and reputable composer (3317ms)
Who is Aaron Copland? first generation american composer -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, first generation american composer) -> first generation american composer (3302ms)
Who is Aaron Copland? world-renowned composer and conductor -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world-renowned composer and conductor) -> world-renowned composer and conductor (3303ms)
Who is Aaron Copland? modern american classical composer -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern american classical composer) -> modern american classical composer (3317ms)
Who is Aaron Copland? respected American composer -2.4916504033607634 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, respected American composer) -> respected American composer (3317ms)
Who is Aaron Copland? influential American composer -2.4916504033607634 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, influential American composer) -> influential American composer (3317ms)
Who is Aaron Copland? well-known composer of the twentieth century -2.521993830880578 Who 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)
Who is Aaron Copland? composer in the music literature -2.521993830880578 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer in the music literature) -> composer in the music literature (3317ms)
Who is Aaron Copland? American composer of concert and film -2.521993830880578 Who 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)
Who is Aaron Copland? american musician of jewish origin -2.5306346340286625 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american musician of jewish origin) -> american musician of jewish origin (3332ms)
Who is Aaron Copland? greatest american art-song composer -2.5306346340286625 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, greatest american art-song composer) -> greatest american art-song composer (3332ms)
Who is Aaron Copland? American classical composer, composition teacher, writer and conductor -2.593464920438393 Who 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)
Who is Aaron Copland? legendary 20th century artist -2.7725543071500756 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, legendary 20th century artist) -> legendary 20th century artist (3347ms)
Who is Aaron Copland? 20th century american composer -2.8226658942597025 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th century american composer) -> 20th century american composer (3348ms)
Who is Aaron Copland? 20th century jewish composer -2.8226658942597025 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th century jewish composer) -> 20th century jewish composer (3348ms)
Who is Aaron Copland? figure -2.8257732362523154 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, figure) -> figure (3362ms)
Who is Aaron Copland? treasured 20th-century composer -2.869347987583252 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, treasured 20th-century composer) -> treasured 20th-century composer (3364ms)
Who is Aaron Copland? musician -2.8795382256037403 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musician) -> musician (3380ms)
Who is Aaron Copland? 20th-century's greatest american composer -2.908332218251151 Who 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)
Who is Aaron Copland? name -2.9169860692050262 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, name) -> name (3394ms)
Who is Aaron Copland? composer of the 20th century -2.9243820369851514 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer of the 20th century) -> composer of the 20th century (3394ms)
Who is Aaron Copland? contemporary -2.93654836893036 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary) -> contemporary (3408ms)
Who is Aaron Copland? American composer of the 20th century -2.940819077141067 Who 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)
Who is Aaron Copland? student -2.9576851374778013 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, student) -> student (3422ms)
Who is Aaron Copland? friend -3.108846886022671 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, friend) -> friend (3497ms)
Who is Aaron Copland? exception -3.116203078069267 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, exception) -> exception (3497ms)
Who is Aaron Copland? luminary -3.1347085741819374 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, luminary) -> luminary (3497ms)
Who is Aaron Copland? Nadia Boulanger -8.249846654366955 Who 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)
Who is Aaron Copland? Aaron Copeland -9.571478219749794 Who 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)
Who is Aaron Copland? Aaronn Copland -9.571478219749794 Who 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)
Who is Aaron Copland? Copeland House -9.619125612788338 Who 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)
Who is Aaron Copland? 4532 Copland -10.177080575009064 Who 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)
Who is Aaron Copland? Rock Hill -10.596453513649596 Who 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)
Who is Aaron Copland? Film Score Composer -10.59962753011029 Who 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)
Who is Aaron Copland? Copland, Aaron -10.705735789979638 Who 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)
Who is Aaron Copland? The Dean of American composers -10.852343153175156 Who 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)
Who is Aaron Copland? William Grant -10.905854155526066 Who 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)
Who is Aaron Copland? Aaron Copland (1900-1990) -11.124561036240127 Who 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)
Who is Aaron Copland? MIDI -11.345240260301669 Who 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)
Who is Aaron Copland? A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland) (disc 2) -11.422357242731021 Who 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)
Who is Aaron Copland? Pianist -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Pianist) -> Pianist (5109ms)
Who is Aaron Copland? Composer -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Composer) -> Composer (5109ms)
Who is Aaron Copland? Conductor -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Conductor) -> Conductor (5110ms)
Who is Aaron Copland? Writer -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Writer) -> Writer (5110ms)
Who is Aaron Copland? Copland -12.031437402384487 Who 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)
Who is Aaron Copland? Aaron Copland Interview - 1977 -12.059058402376339 Who 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)
Who is Aaron Copland? Copeland -12.090996643682665 Who 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)
Who is Aaron Copland? ?Appalachian Spring -12.690569098790117 Who 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)
Who is Aaron Copland? the coming -14.173199671229426 Who 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)
When was Microsoft established? 1975 1.9869912032898487 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, was established in, 1975) -> 1975 (5295ms)
When was Microsoft established? 1980 1.957455598734724 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, was established in, 1980) -> 1980 (5295ms)
When was Microsoft established? 1999 1.7436858635508923 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Latvia, was established in, 1999) -> 1999 (5296ms)
When was Microsoft established? 1986 0.12197289863890592 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1986) -> 1986 (5296ms)
When was Microsoft established? 1981 0.06888483078273433 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1981) -> 1981 (5296ms)
When was Microsoft established? 1992 0.0484837119187822 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1992) -> 1992 (5425ms)
When was Microsoft established? 1979 0.0484837119187822 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1979) -> 1979 (5425ms)
When was Microsoft established? 2003 -0.4740996137849902 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Workplace Publisher, was launched in, 2003) -> 2003 (7216ms)
When was Microsoft established? 1995 -0.5952984075493291 When 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)
When was Microsoft established? 1987 -0.6356489385421606 When 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)
When was Microsoft established? 1985 -0.6361256129221444 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established a Canadian subsidiary in, 1985) -> 1985 (5453ms)
When was Microsoft established? 1994 -0.6500442889848235 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be last update in, $x) -> (Microsoft, was last updated in, 1994) -> 1994 (5645ms)
When was Microsoft established? 2004 -0.702541514669683 When 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)
When was Microsoft established? 2007 -0.7219938790052827 When 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)
When was Microsoft established? 1996 -0.784348825198546 When 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)
When was Microsoft established? 1982 -0.8688785423660463 When 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)
When was Microsoft established? 2011 -1.2039517875445003 When 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)
When was Microsoft established? Office 2007 -1.2605904607513927 When 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)
When was Microsoft established? 2009 -1.4400473740453523 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, closed positively in, 2009) -> 2009 (5453ms)
When was Microsoft established? Office 2010 -1.4603997162778537 When 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)
When was Microsoft established? 2005 -1.5231552659952587 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go bankrupt in, $x) -> (Microsoft, went bankrupt in, 2005) -> 2005 (7281ms)
When was Microsoft established? 2010 -1.6744941471683585 When 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)
When was Microsoft established? July 2010 -1.6912289076876141 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established in, July 2010) -> July 2010 (5453ms)
When was Microsoft established? Holiday 2010 -1.7456227131042836 When 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)
When was Microsoft established? 2001 -1.82209975253964 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, been an open company in, 2001) -> 2001 (6825ms)
When was Microsoft established? 2013 occupies -1.8224745376235454 When 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)
When was Microsoft established? October 1990 -1.9110850851552632 When 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)
When was Microsoft established? October 2007 -1.9383139580328526 When 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)
When was Microsoft established? October 2001 -1.9399476409592658 When 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)
When was Microsoft established? September 2007 -1.9445935775611076 When 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)
When was Microsoft established? late 1998 -1.9446923994378493 When 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)
When was Microsoft established? February 2012 -1.9515028178275338 When 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)
When was Microsoft established? July 2005 -1.9968600822323817 When 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)
When was Microsoft established? April 2000 -2.034880571800189 When 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)
When was Microsoft established? 2006 GSI action -2.0525645106313 When 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)
When was Microsoft established? 2006 -2.129996144023738 When 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)
When was Microsoft established? December 2003 -2.148647410179474 When 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)
When was Microsoft established? the August 1989 -2.172383689757848 When 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)
When was Microsoft established? October 2003 -2.1912794986558026 When 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)
When was Microsoft established? Oct 2003 -2.2116806175197548 When 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)
When was Microsoft established? 1968 -2.2156534642942787 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be charter in, $x) -> (MicrosoftOfficeWebServer, was chartered in, 1968) -> 1968 (6170ms)
When was Microsoft established? November 2005 -2.230550846340642 When 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)
When was Microsoft established? Word 2003 -2.263548847674455 When 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)
When was Microsoft established? Q3 2012 -2.3013187092526035 When 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)
When was Microsoft established? July 1997 -2.34612199773332 When 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)
When was Microsoft established? June -2.553179359931711 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Office 2010, was launched in, June) -> June (7593ms)
When was Microsoft established? December 2009 -2.854849230443297 When 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)
When was Microsoft established? 1997 -2.9370930053752176 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, begin operation in, $x) -> (Microsoft, began operations in Reno in, 1997) -> 1997 (7611ms)
When was Microsoft established? CRM -3.0648013060570274 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> (Microsoft Michael, is a well-established authority on, CRM) -> CRM (5511ms)
When was Microsoft established? June 25 , 2003 -3.134182585165462 When 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)
When was Microsoft established? May 12 -3.1421877847948876 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, May 12) -> May 12 (9206ms)
When was Microsoft established? mid January -3.168513858324454 When 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)
When was Microsoft established? December -3.1812727865260633 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be institute in, $x) -> (Microsoft, was instituted in, December) -> December (5511ms)
When was Microsoft established? Windows NT 4.0, 2000 -3.2056579028130203 When 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)
When was Microsoft established? Beijing -3.2729824685835744 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Asian research institute, was established in, Beijing) -> Beijing (5645ms)
When was Microsoft established? Japan -3.302225556863082 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (ASCII Microsoft company, is formally established in, Japan) -> Japan (5645ms)
When was Microsoft established? May -3.3675382865276147 When 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)
When was Microsoft established? September -3.37707520557042 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Security Essentials, was launched in, September) -> September (7611ms)
When was Microsoft established? January -3.379976027394238 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Vista, was launched in, January) -> January (7611ms)
When was Microsoft established? April 2 , 1993 -3.4501022094438643 When 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)
When was Microsoft established? January 8 -3.513356471304837 When 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)
When was Microsoft established? Ireland -3.652795796982031 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Ireland Microsoft, was first established in, Ireland) -> Ireland (5645ms)
When was Microsoft established? 75 % -3.738241559017096 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is found in, 75 %) -> 75 % (6432ms)
When was Microsoft established? China -3.7957876286217664 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, is establishing a center in, China) -> China (5645ms)
When was Microsoft established? MSKB 246817 -3.8181276819788037 When 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)
When was Microsoft established? 23 cities -3.8650181888052093 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established representative offices in, 23 cities) -> 23 cities (5645ms)
When was Microsoft established? contempt -3.941635646727689 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is found in, contempt) -> contempt (6432ms)
When was Microsoft established? Windows 7 -3.9505665773311884 When 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)
When was Microsoft established? late 2006 -3.967902912917857 When 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)
When was Microsoft established? corporations -3.976180259004262 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is typically found in, corporations) -> corporations (6432ms)
When was Microsoft established? Word -4.0382726491106435 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft Word Headings, are created in, Word) -> Word (6825ms)
When was Microsoft established? the ?70s -4.0502230829610735 When 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)
When was Microsoft established? the '70s -4.0706242018250265 When 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)
When was Microsoft established? continuation -4.114938394839006 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft, is created in, continuation) -> continuation (6851ms)
When was Microsoft established? the AX 2012 release -4.188098395969545 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20XNA -4.231673116161005 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Flight -4.231673116161005 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Narrator -4.231673116161005 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Press -4.231673116161005 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Tinker -4.231673116161005 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps -4.231673116161005 When 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)
When was Microsoft established? Word 2010 -4.272192151241583 When 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)
When was Microsoft established? the No. 2 Xbox 360 -4.277079625259699 When 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)
When was Microsoft established? 1991 -4.2809469859650084 When 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)
When was Microsoft established? partnership -4.286594339412999 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft Outlook, was created in, partnership) -> partnership (6851ms)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade -4.296646833940837 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001 -4.296646833940837 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format -4.296646833940837 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator -4.296646833940837 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Bing%20Maps%20Platform -4.296646833940837 When 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)
When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack -4.296646833940837 When 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)
When was Microsoft established? Microsoft Word -4.442909208074951 When 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)
When was Microsoft established? market -4.478281623667842 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Dynamics brand, was launched in, market) -> market (7740ms)
When was Microsoft established? Windows 8. -4.489311835791286 When 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)
When was Microsoft established? October -4.50113975121751 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft and Skype, closed the deal in, October) -> October (5761ms)
When was Microsoft established? MS Office -4.584186751962676 When 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)
When was Microsoft established? Windows Phone 7 -4.589118730620737 When 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)
When was Microsoft established? IBS -4.591195780448783 When 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)
When was Microsoft established? more than 100,000 apps -4.612512402459452 When 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)
When was Microsoft established? computer technology -4.613365272114928 When 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)
When was Microsoft established? New Jersey -4.664743257076803 When 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)
When was Microsoft established? the 17th place -4.670325070639472 When 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)
When was Microsoft established? Round 2 -4.672092582503316 When 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)
When was Microsoft established? the Xbox 360 -4.702840918063633 When 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)
When was Microsoft established? 15 percent -4.714335499384774 When 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)
When was Microsoft established? any -4.72292054017793 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft Corporation, has established in, any) -> any (5761ms)
When was Microsoft established? 90 percent -4.757661160061455 When 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)
When was Microsoft established? the Nokia N8 -4.765321080633576 When 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)
When was Microsoft established? Windows 8 -4.770798950510406 When 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)
When was Microsoft established? mode -4.77383295899025 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be buy in, $x) -> (Microsoft, is back in buying, mode) -> mode (7740ms)
When was Microsoft established? p2p file sharing -4.784220961329434 When 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)
When was Microsoft established? more than 160 mobile phones -4.811948859726728 When 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)
When was Microsoft established? a Twitter clone -4.824605067241775 When 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)
When was Microsoft established? iPad -4.8578799415879885 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, is coming to, iPad) -> iPad (11056ms)
When was Microsoft established? Tuesday -4.860988598681003 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Tuesday) -> Tuesday (9205ms)
When was Microsoft established? 200 Ugandans -4.872528086717578 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found only one in, 200 Ugandans) -> 200 Ugandans (7758ms)
When was Microsoft established? top 25 apps -4.883343200011001 When 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)
When was Microsoft established? OpenID -4.9094910689448765 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be implement on, $x) -> (Microsoft, is working on implementing, OpenID) -> OpenID (10597ms)
When was Microsoft established? a few years -4.91020368062858 When 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)
When was Microsoft established? 32-bit versions -4.913801777875458 When 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)
When was Microsoft established? a 32-bit version -4.927129300126047 When 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)
When was Microsoft established? violation -4.9400621631904995 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (1999 Microsoft, was found in, violation) -> violation (7758ms)
When was Microsoft established? opposition -4.942509873249004 When 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)
When was Microsoft established? light -4.943939645518167 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, are now coming to, light) -> light (11056ms)
When was Microsoft established? four years -4.950359727362759 When 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)
When was Microsoft established? a garage -4.95905770760584 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, was started in, a garage) -> a garage (7778ms)
When was Microsoft established? a market -4.962507770750375 When 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)
When was Microsoft established? mobile -4.966924412097326 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, will establish a foothold in, mobile) -> mobile (5960ms)
When was Microsoft established? compatibility mode -4.9906436572412805 When 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)
When was Microsoft established? malware company Claria -4.995255256149802 When 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)
When was Microsoft established? a couple -5.006516543155859 When 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)
When was Microsoft established? response -5.006973462293893 When 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)
When was Microsoft established? Yahoo! -5.010786566281396 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, was once interested in acquiring, Yahoo!) -> Yahoo! (7777ms)
When was Microsoft established? Monday -5.030499418859934 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Monday) -> Monday (9205ms)
When was Microsoft established? the File menu -5.032424311439732 When 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)
When was Microsoft established? a college dorm room -5.034224552948256 When 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)
When was Microsoft established? early next year -5.036877112151546 When 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)
When was Microsoft established? Insert option -5.048570250866814 When 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)
When was Microsoft established? a discussion -5.053612296454305 When 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)
When was Microsoft established? 20 to 80 years -5.054931539770476 When 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)
When was Microsoft established? tough times -5.065370003296829 When 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)
When was Microsoft established? a stake -5.069398788913899 When 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)
When was Microsoft established? software -5.08863528183284 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be develop on, $x) -> (Microsoft, is completely focused on developing, software) -> software (10157ms)
When was Microsoft established? the Common Files -5.106828469294576 When 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)
When was Microsoft established? force -5.112310020779795 When 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)
When was Microsoft established? reality -5.1127374399629275 When 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)
When was Microsoft established? technology -5.128488765032391 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be develop on, $x) -> (Microsoft, is now focused on developing, technology) -> technology (10157ms)
When was Microsoft established? an exposition -5.129984829313575 When 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)
When was Microsoft established? a gathering place -5.133776549775429 When 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)
When was Microsoft established? Canada -5.134250731821478 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be expand in, $x) -> (Microsoft, is expanding in, Canada) -> Canada (5960ms)
When was Microsoft established? fraud -5.140231556271765 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft Corporation, is built upon, fraud) -> fraud (11101ms)
When was Microsoft established? MSN -5.149317250377181 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, is starting to focus on, MSN) -> MSN (11101ms)
When was Microsoft established? such a way -5.15463448855964 When 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)
When was Microsoft established? the Colorado Convention Center -5.156222280936557 When 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)
When was Microsoft established? older training -5.159055473267418 When 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)
When was Microsoft established? pricing -5.159180528361132 When 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)
When was Microsoft established? India -5.1653191940407925 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Store, was started in, India) -> India (7831ms)
When was Microsoft established? price -5.1670012419105875 When 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)
When was Microsoft established? college dorm rooms -5.167440675465009 When 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)
When was Microsoft established? town Microsoft -5.174117983922741 When 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)
When was Microsoft established? new ways -5.174419730807637 When 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)
When was Microsoft established? the Film menu -5.179232967308418 When 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)
When was Microsoft established? timing -5.199371391120161 When 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)
When was Microsoft established? North America -5.200167174381401 When 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)
When was Microsoft established? HP -5.200992945861325 When 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)
When was Microsoft established? benchmarks -5.207182356073591 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring open season on, benchmarks) -> benchmarks (10597ms)
When was Microsoft established? Powerset -5.209280831200337 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, may be interested in acquiring, Powerset) -> Powerset (7848ms)
When was Microsoft established? Jeeves -5.209280831200337 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, might be interested in acquiring, Jeeves) -> Jeeves (7848ms)
When was Microsoft established? various systems -5.214695386241375 When 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)
When was Microsoft established? San Antonio -5.217792750993635 When 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)
When was Microsoft established? Las Vegas -5.217792750993635 When 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)
When was Microsoft established? conferences -5.232443893199743 When 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)
When was Microsoft established? several cases -5.24116064623862 When 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)
When was Microsoft established? the FAST Search Server -5.254127064990728 When 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)
When was Microsoft established? VB6 -5.258979939446601 When 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)
When was Microsoft established? previous versions -5.261100926086704 When 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)
When was Microsoft established? an Internet Explorer browser -5.277081060242878 When 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)
When was Microsoft established? servers -5.278539224980044 When 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)
When was Microsoft established? the Online Books -5.278849433045071 When 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)
When was Microsoft established? campus -5.2793375359129024 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, campus) -> campus (11188ms)
When was Microsoft established? a few chapels -5.281502044950656 When 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)
When was Microsoft established? a lot -5.29293205814454 When 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)
When was Microsoft established? a phased approach -5.2956141700050265 When 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)
When was Microsoft established? entertainment -5.2990214632886445 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, has found one in, entertainment) -> entertainment (7882ms)
When was Microsoft established? the Start Menu -5.312448990607396 When 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)
When was Microsoft established? Vancouver -5.324851572466992 When 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)
When was Microsoft established? the U. S. -5.354038581305703 When 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)
When was Microsoft established? the USA -5.366803849031806 When 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)
When was Microsoft established? Reno -5.367150802070775 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, begin operation in, $x) -> (Microsoft, began operations in, Reno) -> Reno (7899ms)
When was Microsoft established? par -5.373640843064757 When 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)
When was Microsoft established? a down economy -5.381808624922651 When 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)
When was Microsoft established? FaceBob -5.393178117070805 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be resurrect, $x) -> (Microsoft Bob, can be resurrected as, FaceBob) -> FaceBob (9822ms)
When was Microsoft established? dozens -5.402861056358898 When 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)
When was Microsoft established? town -5.419924965565286 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (town Microsoft, is coming to, town) -> town (11188ms)
When was Microsoft established? Africa -5.420470132314884 When 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)
When was Microsoft established? friends -5.429848052905715 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft OneAlbum, Find your photos in, friends) -> friends (7916ms)
When was Microsoft established? iOS -5.4364189207793325 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, is coming to, iOS) -> iOS (11187ms)
When was Microsoft established? terms -5.441473386368826 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, terms) -> terms (11188ms)
When was Microsoft established? Bangalore -5.448078837059071 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Research India, was launched in, Bangalore) -> Bangalore (7916ms)
When was Microsoft established? Microsoft -5.468953710673144 When 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)
When was Microsoft established? Silicon Valley -5.473944663302 When 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)
When was Microsoft established? a standard -5.479496371537781 When 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)
When was Microsoft established? Australia -5.489804338473142 When 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)
When was Microsoft established? a legacy -5.4969071849419056 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft, is building upon, a legacy) -> a legacy (11187ms)
When was Microsoft established? Thursday -5.499688158369174 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Thursday) -> Thursday (9205ms)
When was Microsoft established? tablets -5.501536726949414 When 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)
When was Microsoft established? Moscow -5.504468894464958 When 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)
When was Microsoft established? the Web. -5.505544787075298 When 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)
When was Microsoft established? a journey -5.509559078091129 When 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)
When was Microsoft established? Europe -5.520022029924282 When 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)
When was Microsoft established? Capitol Hill -5.537809158187195 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be here on, $x) -> (Microsoft, was here on, Capitol Hill) -> Capitol Hill (10040ms)
When was Microsoft established? Gordon Brown -5.54286606485373 When 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)
When was Microsoft established? open source -5.549078059467774 When 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)
When was Microsoft established? grips -5.551364628586146 When 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)
When was Microsoft established? Symphony -5.570942827181911 When 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)
When was Microsoft established? handy making work -5.576102763199097 When 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)
When was Microsoft established? an end -5.577825968705557 When 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)
When was Microsoft established? the DotSpatial Library -5.583507910653745 When 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)
When was Microsoft established? about 265 of the patents -5.586526915873214 When 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)
When was Microsoft established? typosquatters -5.598162519442253 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring war on, typosquatters) -> typosquatters (10598ms)
When was Microsoft established? skeuomorphs -5.598406296834408 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring a war on, skeuomorphs) -> skeuomorphs (10598ms)
When was Microsoft established? Windows -5.60719489124523 When 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)
When was Microsoft established? track -5.6158464582733645 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seems to be on, track) -> track (9822ms)
When was Microsoft established? a way -5.616054992247254 When 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)
When was Microsoft established? the Republic -5.632070588525628 When 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)
When was Microsoft established? a whole bunch -5.637317579506554 When 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)
When was Microsoft established? RPL! -5.638651979124668 When 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)
When was Microsoft established? a point -5.646732755680682 When 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)
When was Microsoft established? a screen -5.665936910098048 When 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)
When was Microsoft established? alert -5.667705282900242 When 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)
When was Microsoft established? Office piracy -5.674313286703152 When 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)
When was Microsoft established? any PC -5.684827555990891 When 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)
When was Microsoft established? Ukraine and Russia -5.68701968538884 When 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)
When was Microsoft established? Photoshop -5.69338939886515 When 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)
When was Microsoft established? right -5.695732581235072 When 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)
When was Microsoft established? UK. -5.702125159345314 When 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)
When was Microsoft established? Cambridge -5.705006795146877 When 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)
When was Microsoft established? a domain -5.710991442878491 When 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)
When was Microsoft established? Land System -5.714136042094464 When 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)
When was Microsoft established? town Bill -5.719605930278449 When 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)
When was Microsoft established? huge annuity streams -5.727395076339964 When 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)
When was Microsoft established? The Halloween Memo -5.727916411685184 When 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)
When was Microsoft established? leverage Redmond -5.741904548216214 When 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)
When was Microsoft established? an internet -5.746677124290243 When 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)
When was Microsoft established? cloud services -5.750673085850014 When 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)
When was Microsoft established? the Identity layer -5.760671283544844 When 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)
When was Microsoft established? top -5.7702722229848185 When 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)
When was Microsoft established? a patent hunt -5.7719026866423055 When 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)
When was Microsoft established? promotions -5.772101244036433 When 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)
When was Microsoft established? sale -5.775638042343115 When 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)
When was Microsoft established? a game -5.777078784181856 When 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)
When was Microsoft established? a collision course -5.785722196203284 When 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)
When was Microsoft established? a patch -5.7870324747164 When 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)
When was Microsoft established? an imitation -5.7915786758008565 When 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)
When was Microsoft established? examples -5.796758630533052 When 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)
When was Microsoft established? a place -5.810574120998422 When 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)
When was Microsoft established? a tablet computer -5.811812542099946 When 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)
When was Microsoft established? a dramatic escalation -5.812674196561971 When 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)
When was Microsoft established? a tear -5.817134734670476 When 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)
When was Microsoft established? various levels -5.826758148732552 When 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)
When was Microsoft established? such speculation -5.835629518885234 When 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)
When was Microsoft established? slow machines -5.8375569483831224 When 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)
When was Microsoft established? Office -5.838239382153892 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be incorporate in, $x) -> (Microsoft Excel, was incorporated in, Office) -> Office (7988ms)
When was Microsoft established? such rumors -5.839925287216333 When 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)
When was Microsoft established? San Francisco -5.842017486491628 When 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)
When was Microsoft established? San Diego -5.842017486491628 When 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)
When was Microsoft established? Ross Mayfield -5.847180008931463 When 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)
When was Microsoft established? WGA notification -5.850467204114181 When 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)
When was Microsoft established? the Xbox Live service -5.852951027146751 When 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)
When was Microsoft established? Freehold Raceway Mall -5.857048813417155 When 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)
When was Microsoft established? bloated and stodgy -5.861732348312884 When 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)
When was Microsoft established? any computer -5.870932828420202 When 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)
When was Microsoft established? RIM?s patent portfolio -5.873383746585022 When 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)
When was Microsoft established? Symantec IM Manager -5.8820997787778895 When 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)
When was Microsoft established? smartphone marketplace -5.882491977868597 When 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)
When was Microsoft established? a crest -5.884260403373085 When 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)
When was Microsoft established? www .sugarexchange -5.889440358105281 When 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)
When was Microsoft established? performance , stability and -5.8911358203591995 When 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)
When was Microsoft established? previous success -5.893102372788641 When 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)
When was Microsoft established? access -5.895953542088353 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (microsoft, was just starting work on, access) -> access (11877ms)
When was Microsoft established? a few more lovers -5.896897963308403 When 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)
When was Microsoft established? a settlement spree -5.898407543897515 When 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)
When was Microsoft established? criteria -5.898441384216532 When 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)
When was Microsoft established? a dime -5.907184945185815 When 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)
When was Microsoft established? a Windows computer -5.911308219371325 When 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)
When was Microsoft established? a project -5.914815097236822 When 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)
When was Microsoft established? Albuquerque -5.919247596335628 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be form in, $x) -> (Micro-Soft, had been formed in, Albuquerque) -> Albuquerque (8006ms)
When was Microsoft established? a copy-cat version -5.924635642404139 When 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)
When was Microsoft established? state -5.925994415082532 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found in, state) -> state (8226ms)
When was Microsoft established? America -5.928195289292132 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (the next Microsoft, is created in, America) -> America (8226ms)
When was Microsoft established? a recruiting trip -5.94615424198427 When 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)
When was Microsoft established? the 'coat-tails -5.950575226692047 When 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)
When was Microsoft established? a Windows-based -5.950734283387743 When 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)
When was Microsoft established? the Microsoft website -5.963838180815381 When 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)
When was Microsoft established? a hacking website -5.965701042186014 When 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)
When was Microsoft established? Allaire -5.967968206967999 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, was once interested in acquiring, Allaire) -> Allaire (8226ms)
When was Microsoft established? an unfinished specification -5.974448575735424 When 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)
When was Microsoft established? a very generous foot -5.976471339905693 When 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)
When was Microsoft established? Google?s turf -5.977920753212556 When 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)
When was Microsoft established? a new fresh take -5.980497590003554 When 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)
When was Microsoft established? server OS licensing -5.981780911859573 When 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)
When was Microsoft established? release standards -5.984994349825918 When 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)
When was Microsoft established? the MVP website -5.985153406521613 When 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)
When was Microsoft established? a solution -5.985217974648869 When 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)
When was Microsoft established? Apple ideas -6.000249354276691 When 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)
When was Microsoft established? place -6.001601555187481 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have operation in, $x) -> (Microsoft, has massive operations in, place) -> place (8243ms)
When was Microsoft established? VersusSport.com -6.009816453397647 When 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)
When was Microsoft established? the Mall -6.024122703320068 When 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)
When was Microsoft established? the Springer site -6.0325077535975895 When 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)
When was Microsoft established? every field -6.035847640207278 When 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)
When was Microsoft established? the MS AntiSpyware application -6.037779957153527 When 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)
When was Microsoft established? the Microsoft Web site -6.061259006486779 When 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)
When was Microsoft established? Metro -6.068079839430949 When 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)
When was Microsoft established? the fall -6.091919942756567 When 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)
When was Microsoft established? server software -6.123139475974172 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds flaw in, server software) -> server software (8280ms)
When was Microsoft established? various work fields -6.126506797611722 When 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)
When was Microsoft established? a promising collaboration -6.130113767539323 When 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)
When was Microsoft established? Massachusetts -6.2157321232655836 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, will expand its presence in, Massachusetts) -> Massachusetts (8298ms)
When was Microsoft established? the TechEd office meeting -6.227280543393061 When 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)
When was Microsoft established? Windows Installer -6.22932429871501 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found in, Windows Installer) -> Windows Installer (8313ms)
When was Microsoft established? now -6.278568122482543 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft developers, are in open rebellion, now) -> now (8313ms)
When was Microsoft established? System Tools -6.313676459696275 When 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)
When was Microsoft established? a position -6.411770432256565 When 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)
When was Microsoft established? the late 1990s -6.63673930232348 When 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)
When was Microsoft established? a special diagnostic mode -6.656061731679786 When 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)
When was Microsoft established? the New York metro area -6.667163507022316 When 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)
When was Microsoft established? the TechEd conference -6.68101357375674 When 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)
When was Microsoft established? the race -6.730291871481285 When 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)
When was Microsoft established? the city -6.780005499764361 When 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)
When was Microsoft established? the newer versions -6.80380979545211 When 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)
When was Microsoft established? the caves -6.828437826858083 When 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)
When was Microsoft established? the possession -6.886109238155619 When 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)
When was Microsoft established? the download -6.923965010648315 When 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)
When was Microsoft established? the products side -6.9574445833324905 When 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)
When was Microsoft established? the next ten years -6.9691843132061635 When 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)
When was Microsoft established? the same sense -6.992014419152749 When 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)
When was Microsoft established? the right approach -6.9975137151296725 When 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)
When was Microsoft established? the middle -7.00376779268697 When 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)
When was Microsoft established? Boulder -7.01787963214827 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, expanded its operations in, Boulder) -> Boulder (8530ms)
When was Microsoft established? the edit menu -7.026657167109571 When 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)
When was Microsoft established? the final analysi -7.027968673476025 When 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)
When was Microsoft established? the stock market -7.054951500860725 When 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)
When was Microsoft established? the second half -7.0925150712904985 When 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)
When was Microsoft established? Verizon -7.093820928468793 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds an ally in, Verizon) -> Verizon (8660ms)
When was Microsoft established? the upper left corner -7.1597141337128525 When 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)
When was Microsoft established? Redmond -7.224826441973464 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have its headquarters in, $x) -> (Microsoft, has its headquarters in, Redmond) -> Redmond (8660ms)
When was Microsoft established? the window -7.388617572648799 When 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)
When was Microsoft established? the internet market -7.526417703349716 When 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)
When was Microsoft established? a rather interesting position -7.532298179596973 When 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)
When was Microsoft established? a bid -7.564785038486889 When 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)
When was Microsoft established? the future world -7.709699036648879 When 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)
When was Microsoft established? the years -7.711994400992252 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand over, $x) -> (Microsoft Research, has expanded over, the years) -> the years (8703ms)
When was Microsoft established? the new age -7.826260640771348 When 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)
When was Microsoft established? the next month -7.979882617680344 When 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)
When was Microsoft established? the relationship -7.99683127498038 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found its future in, the relationship) -> the relationship (8717ms)
When was Microsoft established? the enterprise -8.009289597401612 When 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)
When was Microsoft established? the post-Windows world -8.027729051284483 When 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)
When was Microsoft established? the buisness sector -8.074491774750461 When 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)
When was Microsoft established? the second quarter -8.076260147552654 When 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)
When was Microsoft established? the new Outlook Web App -8.112590997567368 When 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)
When was Microsoft established? the same position -9.327316137911197 When 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)
Where was Shakespeare born? Italy -3.1340132230169333 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Italy) -> Italy (7380ms)
Where was Shakespeare born? England -3.202588406448478 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, England) -> England (7379ms)
Where was Shakespeare born? Worcester -3.390616684269352 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (7379ms)
Where was Shakespeare born? Stratford -3.8193473462424 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford) -> Stratford (7379ms)
Where was Shakespeare born? Kingston -4.1295389176559265 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (7443ms)
Where was Shakespeare born? April -4.16907766590016 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April) -> April (7443ms)
Where was Shakespeare born? Stratford-upon-Avon -4.187201889738574 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (7443ms)
Where was Shakespeare born? Jackson -4.256698676109865 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (7458ms)
Where was Shakespeare born? Henley Street -4.593510231838309 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (7457ms)
Where was Shakespeare born? Teaneck -4.673035209695007 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (7474ms)
Where was Shakespeare born? St . Austell -4.7992841505728165 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (7474ms)
Where was Shakespeare born? Stratford-on-Avon -4.907570716029436 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (7474ms)
Where was Shakespeare born? a small town -4.9213887486114345 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, a small town) -> a small town (7474ms)
Where was Shakespeare born? the Warwickshire town -5.192146907395033 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (7487ms)
Where was Shakespeare born? Stratford and today -5.215136070037314 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (7487ms)
Where was Shakespeare born? Latin -5.845406190924455 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was better educated in, Latin) -> Latin (8708ms)
Where was Shakespeare born? April and World book day -6.025712404096037 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (7500ms)
Where was Shakespeare born? Project Gutenberg -6.315404799280729 Where 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)
Where was Shakespeare born? the town -6.378249621932209 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the town) -> the town (7500ms)
Where was Shakespeare born? the year -6.827586825605374 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the year) -> the year (7500ms)
Where was Shakespeare born? Thailand -6.850310838323594 Where 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)
Where was Shakespeare born? Avon -6.858865325703308 Where 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)
Where was Shakespeare born? the village -6.862954755969891 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the village) -> the village (7500ms)
Where was Shakespeare born? the latter half -6.998613785352715 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (7500ms)
Where was Shakespeare born? the depths -7.002474357430202 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (7500ms)
Where was Shakespeare born? Stratford upon Avon -7.027510380533754 Where 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)
Where was Shakespeare born? thirty-five years -7.373368065253245 Where 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)
Where was Shakespeare born? April 1564 -7.475768974445508 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (7556ms)
Where was Shakespeare born? April , 1564 -7.593915853699872 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (7556ms)
Where was Shakespeare born? late April 1564 -7.6332466217807955 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (7556ms)
Where was Shakespeare born? Vancouver -7.650376065869472 Where 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)
Where was Shakespeare born? Australia -7.763688070072128 Where 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)
Where was Shakespeare born? the county of Warwick -7.842791809989508 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (7630ms)
Where was Shakespeare born? 1564 -7.8660855227106445 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1564) -> 1564 (7630ms)
Where was Shakespeare born? 1554 -7.980506543786145 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (7630ms)
Where was Shakespeare born? the English language -8.011937904054435 Where 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)
Where was Shakespeare born? Temple Grafton church -8.05519899660386 Where 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)
Where was Shakespeare born? a time -8.095385944864809 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (Shakespeare, was born at, a time) -> a time (9251ms)
Where was Shakespeare born? 1529 -8.196501471692429 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (7644ms)
Where was Shakespeare born? the same year -8.488673499519965 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (7657ms)
Where was Shakespeare born? the start -8.558323415165646 Where 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)
Where was Shakespeare born? a gang-related shooting -8.558935709054095 Where 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)
Where was Shakespeare born? The town -8.792808259812714 Where 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)
Where was Shakespeare born? Names -8.79387851852314 Where 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)
Where was Shakespeare born? unser Shakespeare -8.802198007691759 Where 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)
Where was Shakespeare born? What town -8.862167155271013 Where 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)
Where was Shakespeare born? the editors -9.095961344735237 Where 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)
Where was Shakespeare born? the work -9.175539122177533 Where 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)
Where was Shakespeare born? a fight -9.18926016902251 Where 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)
Where was Shakespeare born? a Taurean sun -9.31248123878847 Where 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)
Where was Shakespeare born? the art -9.789157783837668 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was well educated in, the art) -> the art (8708ms)
Where was Shakespeare born? the law -9.79760750146022 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was clearly educated in, the law) -> the law (8709ms)
Where was Shakespeare born? music -9.859463453447098 Where 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)
Where was Shakespeare born? a world -9.979862366273121 Where 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)
Where was Shakespeare born? film -10.242945070685238 Where 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)
Where was Shakespeare born? schools -10.271173631252385 Where 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)
Where was Shakespeare born? 1564 ! 2 -10.96902333196757 Where 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)
Where was Shakespeare born? 1564 ! 1 hour ago -11.163152600043555 Where 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)
Where was Shakespeare born? 1564 ! 5 hours ago -11.183553718907506 Where 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)
Where was Shakespeare born? 1564 ! 3 hours ago -11.183553718907506 Where 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)
Where was Shakespeare born? 1582 -11.400243576359621 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (Shakespeare, married her in, 1582) -> 1582 (9559ms)
Where was Shakespeare born? Mormon -11.495536588257634 Where 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)
Where was Shakespeare born? Beowulf -11.524132062921698 Where 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)
Where was Shakespeare born? 1585-02-02 -12.496113682108337 Where 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)
Where was Shakespeare born? 1893-08-24 -12.496113682108337 Where 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)
Where was Shakespeare born? 1909-07-25 -12.496113682108337 Where 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)
Where was Shakespeare born? 1571-09-28 -12.496113682108337 Where 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)
Where was Shakespeare born? 1925-04-09 -12.496113682108337 Where 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)
Where was Shakespeare born? 1569-04-15 -12.496113682108337 Where 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)
Where was Shakespeare born? 1906-02-28 -12.496113682108337 Where 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)
Where was Shakespeare born? 1616-11-23 -12.496113682108337 Where 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)
Where was Shakespeare born? 1558-09-15 -12.496113682108337 Where 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)
Where was Shakespeare born? 1950-04-25 -12.496113682108337 Where 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)
Where was Shakespeare born? 1574-03-11 -12.496113682108337 Where 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)
Where was Shakespeare born? 1966-05-11 -12.496113682108337 Where 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)
Where was Shakespeare born? 1562-12-02 -12.496113682108337 Where 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)
Where was Shakespeare born? 1953-09-27 -12.496113682108337 Where 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)
Where was Shakespeare born? 1957-03-03 -12.496113682108337 Where 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)
Where was Shakespeare born? 1841-02-26 -12.496113682108337 Where 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)
Where was Shakespeare born? 1966-04-23 -12.496113682108337 Where 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)
Where was Shakespeare born? 1580-05-03 -12.496113682108337 Where 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)
Where was Shakespeare born? 1912-09-27 -12.496113682108337 Where 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)
Where was Shakespeare born? 1977-05-06 -12.496113682108337 Where 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)
Where was Shakespeare born? 1839-01-26 -12.496113682108337 Where 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)
Where was Shakespeare born? 1897-09-27 -12.496113682108337 Where 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)
Where was Shakespeare born? 1949-06-03 -12.496113682108337 Where 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)
Where was Shakespeare born? 1952-07-19 -12.496113682108337 Where 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)
Where was Shakespeare born? 1957-04-09 -12.496113682108337 Where 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)
Where was Shakespeare born? 1566-10-13 -12.496113682108337 Where 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)
Where was Shakespeare born? 1849-06-16 -12.496113682108337 Where 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)
Where was Shakespeare born? 1930-05-31 -12.496113682108337 Where 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)
Where was Shakespeare born? 1564-04-23 -12.496113682108337 Where 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)
Where was Shakespeare born? 1963-10-26 -12.496113682108337 Where 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)
Where was Shakespeare born? 1837-07-19 -12.543761075146879 Where 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)
Where was Shakespeare born? 1825-12-25 -12.543761075146879 Where 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)
Where was Shakespeare born? 1824-06-01 -12.543761075146879 Where 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)
Where was Shakespeare born? 1853-05-07 -12.582745305814779 Where 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)
Where was Shakespeare born? Eternity -12.79652535888662 Where 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)
Where was Shakespeare born? 1893-09-23 -12.972587612493768 Where 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)
Where was Shakespeare born? Charm -13.00377498709717 Where 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)
Where was Shakespeare born? Random -13.011574227175435 Where 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)
Where was Shakespeare born? Charmed -13.038636686886406 Where 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)
Where was Shakespeare born? Pope -13.11102726407436 Where 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)
Where was Shakespeare born? 1531 -13.29326800534803 Where 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)
Where was Shakespeare born? 1600 -13.29326800534803 Where 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)
Where was Shakespeare born? 1537 -13.29326800534803 Where 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)
Where was Shakespeare born? 1603 -13.29326800534803 Where 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)
Where was Shakespeare born? 1608 -13.29326800534803 Where 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)
Where was Shakespeare born? 1985 -13.29326800534803 Where 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)
Where was Shakespeare born? 1968 -13.29326800534803 Where 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)
Where was Shakespeare born? 1605 -13.29326800534803 Where 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)
Where was Shakespeare born? 1869 -13.29326800534803 Where 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)
Where was Shakespeare born? 1950 -13.29326800534803 Where 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)
Where was Shakespeare born? 1490 -13.29326800534803 Where 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)
Where was Shakespeare born? 1948 -13.29326800534803 Where 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)
Where was Shakespeare born? Fire -13.2991076112617 Where 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)
Where was Shakespeare born? 1826 -13.340915398386574 Where 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)
Where was Shakespeare born? Papp -13.409533518013735 Where 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)
Where was Shakespeare born? 1927 -13.769741935733462 Where 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)
Where was Shakespeare born? golden monkey -14.087058539691023 Where 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)
Where was Shakespeare born? SRTS -14.140068366423712 Where 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)
Where was Shakespeare born? SRT -14.23274548404028 Where 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)
Where was Shakespeare born? typewriter -14.54373929571994 Where 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)
Where was Shakespeare born? fire -14.650921382304574 Where 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)
Where was Shakespeare born? keyboard -14.68059174600807 Where 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)
How many people visit Angkor Wat annually? Vietnam -5.780650374512806 How 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)
How many people visit Angkor Wat annually? Cambodia -5.834855679078596 How 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)
How many people visit Angkor Wat annually? course -7.0343797185780605 How 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)
How many people visit Angkor Wat annually? you?ll -7.604860081964796 How 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)
How many people visit Angkor Wat annually? guests -7.809406208432081 How 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)
How many people visit Angkor Wat annually? the course -9.217531695680382 How 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)
How many people visit Angkor Wat annually? The issue -9.970841967386013 How 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)
How many people visit Angkor Wat annually? the other people -10.020724931612417 How 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)
How many people visit Angkor Wat annually? the day -11.254870829194687 How 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)
What did Rachel Carson die of? breast cancer -2.4955962525566333 What did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (Rachel Carson, died of, breast cancer) -> breast cancer (2462ms)
What did Rachel Carson die of? Breast Cancer -2.7185670394231303 What did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (?Rachel Carson, Died of, Breast Cancer) -> Breast Cancer (2463ms)
What did Rachel Carson die of? cancer -4.518048342433856 What did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (Rachel Carson, died of, cancer) -> cancer (2463ms)
What did Rachel Carson die of? Silver Spring -6.473976869948759 What 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)
What did Rachel Carson die of? April 14 -7.632256154178657 What 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)
What did Rachel Carson die of? the public -7.882079871137097 What 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)
What did Rachel Carson die of? April 14 , 1964 -8.418487916863167 What 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)
What did Rachel Carson die of? 1861 -8.481368742157969 What 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)
What did Rachel Carson die of? 1964 -8.513666380666901 What 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)
What did Rachel Carson die of? 1965 -8.531375800357306 What 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)
What did Rachel Carson die of? the peak -8.668147808790621 What 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)
What did Rachel Carson die of? Breast cancer -10.000525603098245 What 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)
What did Rachel Carson die of? the age of 56 -11.010077473916649 What 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)
What did Rachel Carson die of? April 11, 1964 -11.839701893458862 What 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)
What did Rachel Carson die of? Silver Springs -12.46197137476543 What 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)
What did Rachel Carson die of? Cancer -12.875527796747916 What 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)
What did Rachel Carson die of? Silver Spring MD -12.897144417115038 What 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)
What is amitriptyline? anti-depressants -2.2510757560309207 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-depressants) -> anti-depressants (2496ms)
What is amitriptyline? anti-anxiety drug -2.7705977153768107 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-anxiety drug) -> anti-anxiety drug (2496ms)
What is amitriptyline? mood-altering drug -2.9272497663919888 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, mood-altering drug) -> mood-altering drug (2496ms)
What is amitriptyline? TCAs -2.9581344039856834 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, TCAs) -> TCAs (2496ms)
What is amitriptyline? anti-psychotic drug -2.9587199208851382 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti-psychotic drug) -> anti-psychotic drug (2497ms)
What is amitriptyline? excellent med -3.0497601448026224 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, excellent med) -> excellent med (2510ms)
What is amitriptyline? tertiary tricyclic antidepressant -3.0912459898804134 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary tricyclic antidepressant) -> tertiary tricyclic antidepressant (2511ms)
What is amitriptyline? oral tricyclic antidepressant -3.1075231948664266 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, oral tricyclic antidepressant) -> oral tricyclic antidepressant (2510ms)
What is amitriptyline? sedative antidepressant drug -3.212241060077327 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, sedative antidepressant drug) -> sedative antidepressant drug (2510ms)
What is amitriptyline? case adjuvant analgesic -3.217458691751811 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, case adjuvant analgesic) -> case adjuvant analgesic (2511ms)
What is amitriptyline? tri-cyclic anti-depressant medication -3.2213618189244624 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tri-cyclic anti-depressant medication) -> tri-cyclic anti-depressant medication (2574ms)
What is amitriptyline? drug anti-depressants -3.2213618189244624 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug anti-depressants) -> drug anti-depressants (2511ms)
What is amitriptyline? Beers criterion medication -3.2349215614739153 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, Beers criterion medication) -> Beers criterion medication (2573ms)
What is amitriptyline? anticholinergic tricyclic antidepressant -3.236091366748348 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anticholinergic tricyclic antidepressant) -> anticholinergic tricyclic antidepressant (2573ms)
What is amitriptyline? daily prophylactic medication -3.2452308472693314 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, daily prophylactic medication) -> daily prophylactic medication (2573ms)
What is amitriptyline? neuropathic pain drug -3.26983040414399 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, neuropathic pain drug) -> neuropathic pain drug (2572ms)
What is amitriptyline? re-uptake inhibitor -3.2714734060340893 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, re-uptake inhibitor) -> re-uptake inhibitor (2573ms)
What is amitriptyline? first generation tricyclic antidepressant -3.2920372370530897 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, first generation tricyclic antidepressant) -> first generation tricyclic antidepressant (2590ms)
What is amitriptyline? closely related tricyclics -3.3031250157432606 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, closely related tricyclics) -> closely related tricyclics (2590ms)
What is amitriptyline? fairly complex molecule -3.3031250157432606 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, fairly complex molecule) -> fairly complex molecule (2590ms)
What is amitriptyline? tertiary tricyclic drug -3.3031250157432606 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary tricyclic drug) -> tertiary tricyclic drug (2590ms)
What is amitriptyline? strongly basic antidepressant drug -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, strongly basic antidepressant drug) -> strongly basic antidepressant drug (2601ms)
What is amitriptyline? tricyclic antidepressant in low dose -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricyclic antidepressant in low dose) -> tricyclic antidepressant in low dose (2601ms)
What is amitriptyline? prescription tricyclic antidepressant medication -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, prescription tricyclic antidepressant medication) -> prescription tricyclic antidepressant medication (2590ms)
What is amitriptyline? anti-depressant and anti-epileptic medication -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti-depressant and anti-epileptic medication) -> anti-depressant and anti-epileptic medication (2590ms)
What is amitriptyline? drug for IC -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug for IC) -> drug for IC (2602ms)
What is amitriptyline? SSRIs -3.3255269063935637 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, SSRIs) -> SSRIs (2601ms)
What is amitriptyline? non-narcotic sleep aid -3.3328096056093965 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, non-narcotic sleep aid) -> non-narcotic sleep aid (2601ms)
What is amitriptyline? anti-migraine prophylactic medication -3.339664216766196 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-migraine prophylactic medication) -> anti-migraine prophylactic medication (2601ms)
What is amitriptyline? prescribed tricyclic antidepressant -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, prescribed tricyclic antidepressant) -> prescribed tricyclic antidepressant (2627ms)
What is amitriptyline? frequently prescribed medication -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, frequently prescribed medication) -> frequently prescribed medication (2614ms)
What is amitriptyline? simple oral drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, simple oral drug) -> simple oral drug (2627ms)
What is amitriptyline? basic pharmaceutical drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, basic pharmaceutical drug) -> basic pharmaceutical drug (2614ms)
What is amitriptyline? psyc hotropic agent -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psyc hotropic agent) -> psyc hotropic agent (2626ms)
What is amitriptyline? tricylic prescription drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricylic prescription drug) -> tricylic prescription drug (2614ms)
What is amitriptyline? weak basic drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, weak basic drug) -> weak basic drug (2614ms)
What is amitriptyline? prophylactic migraine medication -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, prophylactic migraine medication) -> prophylactic migraine medication (2614ms)
What is amitriptyline? anticholinergic acting drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anticholinergic acting drug) -> anticholinergic acting drug (2614ms)
What is amitriptyline? older generation drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, older generation drug) -> older generation drug (2627ms)
What is amitriptyline? frequently prescribed antidepressant agent -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, frequently prescribed antidepressant agent) -> frequently prescribed antidepressant agent (2669ms)
What is amitriptyline? placebo and various prescription antidepressant -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, placebo and various prescription antidepressant) -> placebo and various prescription antidepressant (2669ms)
What is amitriptyline? disruptive, tricyclic antidepressant -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, disruptive, tricyclic antidepressant) -> disruptive, tricyclic antidepressant (2653ms)
What is amitriptyline? generation antidepressant drug of the tricyclic family -3.357139730025539 What 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)
What is amitriptyline? member of the category of drug -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the category of drug) -> member of the category of drug (2627ms)
What is amitriptyline? fairly potent inhibitor of serotonin reuptake -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, fairly potent inhibitor of serotonin reuptake) -> fairly potent inhibitor of serotonin reuptake (2639ms)
What is amitriptyline? nerve root pain and agent -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, nerve root pain and agent) -> nerve root pain and agent (2669ms)
What is amitriptyline? tricyclic and antidepressant drug -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tricyclic and antidepressant drug) -> tricyclic and antidepressant drug (2653ms)
What is amitriptyline? drug therapy for pain -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug therapy for pain) -> drug therapy for pain (2639ms)
What is amitriptyline? member of the family of antidepressant -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the family of antidepressant) -> member of the family of antidepressant (2653ms)
What is amitriptyline? sedating tricyclic antidepressant medication -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, sedating tricyclic antidepressant medication) -> sedating tricyclic antidepressant medication (2639ms)
What is amitriptyline? synthetic anti-depressants -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, synthetic anti-depressants) -> synthetic anti-depressants (2639ms)
What is amitriptyline? meds for IC -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, meds for IC) -> meds for IC (2640ms)
What is amitriptyline? established migraine preventive drug -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, established migraine preventive drug) -> established migraine preventive drug (2653ms)
What is amitriptyline? psychoactive drug in monitoring -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychoactive drug in monitoring) -> psychoactive drug in monitoring (2653ms)
What is amitriptyline? drug with sedative effect -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug with sedative effect) -> drug with sedative effect (2639ms)
What is amitriptyline? effective migraine prophylactic agent -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, effective migraine prophylactic agent) -> effective migraine prophylactic agent (2627ms)
What is amitriptyline? potent neurotoxic agent -3.3571584516993855 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, potent neurotoxic agent) -> potent neurotoxic agent (2669ms)
What is amitriptyline? first line drug -3.3583008866879025 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, first line drug) -> first line drug (2669ms)
What is amitriptyline? frequently preventive drug -3.375437413354202 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, frequently preventive drug) -> frequently preventive drug (2669ms)
What is amitriptyline? tertiary amine antidepressant -3.375437413354202 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary amine antidepressant) -> tertiary amine antidepressant (2680ms)
What is amitriptyline? member of the group of drug called tricyclic antidepressant -3.3845581722013387 What 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)
What is amitriptyline? tricyclic antidepressant medication -3.393716375621869 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricyclic antidepressant medication) -> tricyclic antidepressant medication (2681ms)
What is amitriptyline? adjuvant analgesic tricyclic anti-depressants -3.3982673920635387 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, adjuvant analgesic tricyclic anti-depressants) -> adjuvant analgesic tricyclic anti-depressants (2681ms)
What is amitriptyline? psychotropic drug -3.4493682066784794 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychotropic drug) -> psychotropic drug (2681ms)
What is amitriptyline? anti depressant -3.4573327270880494 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti depressant) -> anti depressant (2681ms)
What is amitriptyline? tricyclic drug -3.483442890886451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tricyclic drug) -> tricyclic drug (2696ms)
What is amitriptyline? good drug -3.560025756645196 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, good drug) -> good drug (2696ms)
What is amitriptyline? neuropathic medication -3.585385345922262 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, neuropathic medication) -> neuropathic medication (2696ms)
What is amitriptyline? prescription medicine -3.613063065824922 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, prescription medicine) -> prescription medicine (2696ms)
What is amitriptyline? conventional drug -3.636614204402626 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, conventional drug) -> conventional drug (2696ms)
What is amitriptyline? common drug -3.638585273770077 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, common drug) -> common drug (2697ms)
What is amitriptyline? big help -3.67042683268762 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, big help) -> big help (2709ms)
What is amitriptyline? lethal drug -3.6724611845512403 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, lethal drug) -> lethal drug (2710ms)
What is amitriptyline? opioid drug -3.6828441314345577 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, opioid drug) -> opioid drug (2710ms)
What is amitriptyline? dangerous drug -3.687693652086212 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, dangerous drug) -> dangerous drug (2710ms)
What is amitriptyline? good medicine -3.68885685839712 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, good medicine) -> good medicine (2710ms)
What is amitriptyline? white pill -3.6933435118359217 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, white pill) -> white pill (2721ms)
What is amitriptyline? CYP 1A2 inhibitor -3.7048032353711333 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, CYP 1A2 inhibitor) -> CYP 1A2 inhibitor (2722ms)
What is amitriptyline? behavioral medicine -3.7143086464793873 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, behavioral medicine) -> behavioral medicine (2722ms)
What is amitriptyline? ricyclic antidepressant -3.7143086464793873 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, ricyclic antidepressant) -> ricyclic antidepressant (2722ms)
What is amitriptyline? inexpensive medication -3.7143086464793873 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, inexpensive medication) -> inexpensive medication (2721ms)
What is amitriptyline? depression medication -3.7159214960281526 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, depression medication) -> depression medication (2722ms)
What is amitriptyline? psychotherapeutic drug -3.720889072258384 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychotherapeutic drug) -> psychotherapeutic drug (2736ms)
What is amitriptyline? daily medication -3.7239151076092964 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, daily medication) -> daily medication (2736ms)
What is amitriptyline? great medication -3.7258593942094755 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, great medication) -> great medication (2736ms)
What is amitriptyline? oral agent -3.7260594075869733 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, oral agent) -> oral agent (2736ms)
What is amitriptyline? powerful drug -3.726844886300131 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, powerful drug) -> powerful drug (2736ms)
What is amitriptyline? potent drug -3.7275356331238143 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, potent drug) -> potent drug (2736ms)
What is amitriptyline? supportive measure -3.7335526451330283 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, supportive measure) -> supportive measure (3169ms)
What is amitriptyline? serotonin modulator -3.7408426211970003 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, serotonin modulator) -> serotonin modulator (3169ms)
What is amitriptyline? treatment for hypertension -4.079152877593093 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, treatment for hypertension) -> treatment for hypertension (3169ms)
What is amitriptyline? Mutual Pharmceutical Company -4.090083910981394 What 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)
What is amitriptyline? Bryant Ranch Prepack -4.090083910981394 What 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)
What is amitriptyline? Major Pharmaceuticals -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Major Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Major Pharmaceuticals (3250ms)
What is amitriptyline? Mutual Pharmaceutical -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Mutual Pharmaceutical, Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Mutual Pharmaceutical (3236ms)
What is amitriptyline? Dispensing Solutions -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Dispensing Solutions, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Dispensing Solutions (3185ms)
What is amitriptyline? Blenheim Pharmacal -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Blenheim Pharmacal, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Blenheim Pharmacal (3250ms)
What is amitriptyline? Rebel Distributors -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Rebel Distributors, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Rebel Distributors (3250ms)
What is amitriptyline? Preferred Pharmaceuticals -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Preferred Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Preferred Pharmaceuticals (3236ms)
What is amitriptyline? Cardinal Health -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Cardinal Health, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Cardinal Health (3250ms)
What is amitriptyline? Pregnancy Category C (FDA) -4.32175118569865 What 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)
What is amitriptyline? Physicians Total Care -4.32175118569865 What 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)
What is amitriptyline? H.J. Harkins Company -4.32175118569865 What 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)
What is amitriptyline? NCS HEALTHCARE OF KENTUCKY INC -4.32175118569865 What 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)
What is amitriptyline? Stat Rx Usa -4.32175118569865 What 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)
What is amitriptyline? St Marys Medical Park Pharmacy -4.32175118569865 What 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)
What is amitriptyline? Contract Pharmacy Services-PA -4.32175118569865 What 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)
What is amitriptyline? PD-Rx Pharmaceuticals -4.32175118569865 What 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)
What is amitriptyline? Lake Erie Medical -4.32175118569865 What 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)
What is amitriptyline? UDL Laboratories Inc -4.32175118569865 What 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)
What is amitriptyline? Mylan Laboratories Inc. -4.32175118569865 What 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)
What is amitriptyline? TCAD -4.34984312294783 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, TCAD) -> TCAD (3336ms)
What is amitriptyline? Med Health Pharma -4.3655308281649035 What 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)
What is amitriptyline? Tricyclic antidepressant -4.524961692812843 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: (amitriptyline, pharmacological class, $x) -> (Amitriptyline, Pharmacological class, Tricyclic antidepressant) -> Tricyclic antidepressant (3590ms)
What is amitriptyline? Drug -4.958744983582635 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Drug, Drug formulations in this category, Amitriptyline hydrochloride 50 tablet) -> Drug (3659ms)
What is amitriptyline? Oral -4.958744983582635 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Oral, Drug formulations, Amitriptyline hydrochloride 150 tablet) -> Oral (3659ms)
What is amitriptyline? Oval -4.958744983582635 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Oval, Drugs with this shape, Amitriptyline Hydrochloride 150 tablet) -> Oval (3659ms)
What is amitriptyline? Remedyrepack -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Remedyrepack, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Remedyrepack (4478ms)
What is amitriptyline? Limbitrol -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Limbitrol, Canonical drug, Chlordiazepoxide/Amitriptyline) -> Limbitrol (3658ms)
What is amitriptyline? Qualitest -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Qualitest, Drugs manufactured, Amitriptyline Hydrochloride 75 film coated tablet) -> Qualitest (4478ms)
What is amitriptyline? Sandoz -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Sandoz, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Sandoz (4453ms)
What is amitriptyline? Chlordiazepoxide -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Chlordiazepoxide, Active moiety of drug, Chlordiazepoxide/Amitriptyline) -> Chlordiazepoxide (3671ms)
What is amitriptyline? Circle -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Circle, Drugs with this shape, Amitriptyline Hydrochloride 50 tablet) -> Circle (4478ms)
What is amitriptyline? Phenothiazine -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: (amitriptyline, pharmacological class, $x) -> (Perphenazine/Amitriptyline, Pharmacological class, Phenothiazine) -> Phenothiazine (3684ms)
What is amitriptyline? Amitriptyline -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Amitriptyline, Active moiety of drug, Chlordiazepoxide/Amitriptyline) -> Amitriptyline (3739ms)
What is amitriptyline? Choline -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Choline, Active moiety of drug, Amitriptyline/Choline) -> Choline (3684ms)
What is amitriptyline? Benzodiazepine -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Benzodiazepine, Drugs, Chlordiazepoxide/Amitriptyline) -> Benzodiazepine (4478ms)
What is amitriptyline? Perphenazine -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Perphenazine, Active moiety of drug, Perphenazine/Amitriptyline) -> Perphenazine (4454ms)
What is amitriptyline? drug -5.564470842099775 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, drug) -> drug (4478ms)
What is amitriptyline? medicine -5.647343748306392 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, medicine) -> medicine (4478ms)
What is amitriptyline? depressant -5.702348444620621 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, depressant) -> depressant (4494ms)
What is amitriptyline? tranquilizer -5.844573493130415 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tranquilizer) -> tranquilizer (4494ms)
What is amitriptyline? a very few -9.036178194912129 What 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)
What is amitriptyline? a very low -9.22490457444427 What 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)
What is amitriptyline? self-stimulation -9.38620740896799 What 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)
What is amitriptyline? dry mouth -9.518427844252331 What 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)
What is amitriptyline? problem-solving therapy -9.619582495758385 What 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)
What is amitriptyline? an overdose -9.624300555649656 What 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)
What is amitriptyline? Straightforward Guide -9.632295355393637 What 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)
What is amitriptyline? tension-type headaches -9.63575145555033 What 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)
What is amitriptyline? Generic Elavil -9.648702908732943 What 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)
What is amitriptyline? serotonin syndrome -9.659458032240886 What 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)
What is amitriptyline? spinal manipulation -9.708655088537254 What 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)
What is amitriptyline? a very -9.712518929431047 What 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)
What is amitriptyline? an antidepressant -9.735317213356785 What 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)
What is amitriptyline? an antidepressant , -9.741682989988371 What 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)
What is amitriptyline? extreme weight gain -9.744713050715111 What 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)
What is amitriptyline? good treatment choices -9.746360320810032 What 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)
What is amitriptyline? a very popular drug -9.768326353830501 What 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)
What is amitriptyline? a group -9.794056039759448 What 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)
What is amitriptyline? a very interesting drug -9.821148521557424 What 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)
What is amitriptyline? a very few hereditary causes -9.868976376552073 What 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)
What is amitriptyline? tricyclic antidepressant -9.87160088819385 What 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)
What is amitriptyline? an anti-depressant drug -9.879290176771718 What 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)
What is amitriptyline? A common protocol -9.901364064047554 What 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)
What is amitriptyline? an oral and parenteral tertiary -9.906996918822175 What 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)
What is amitriptyline? a comprehensive Canadian -9.927429073949181 What 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)
What is amitriptyline? side effects -9.947538862635854 What 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)
What is amitriptyline? chronic tension headaches -9.952368771009409 What 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)
What is amitriptyline? Nortriptyline -9.982418705319073 What 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)
What is amitriptyline? Acupuncture -10.002488220639444 What 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)
What is amitriptyline? 100 -10.005091177477482 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, 100) -> 100 (4777ms)
What is amitriptyline? similar side effects -10.012821867781852 What 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)
What is amitriptyline? Haloperidol -10.039952207471902 What 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)
What is amitriptyline? a very low price -10.042845401876498 What 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)
What is amitriptyline? 75 mg/day -10.052540013121897 What 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)
What is amitriptyline? a very powerful drug related questions -10.083801728319218 What 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)
What is amitriptyline? low doses and act -10.096180496041455 What 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)
What is amitriptyline? Riboflavin -10.13105809809954 What 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)
What is amitriptyline? a very small , hearing and balance -10.143057941596556 What 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)
What is amitriptyline? a need -10.150649171811297 What 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)
What is amitriptyline? cardiac function -10.159451859547254 What 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)
What is amitriptyline? 79 -10.172325508464171 What 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)
What is amitriptyline? the GI tract -10.179787059100821 What 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)
What is amitriptyline? FDA category C. Patients -10.195210690521645 What 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)
What is amitriptyline? several times -10.20277757292623 What 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)
What is amitriptyline? IC/PBS patients -10.207604392113327 What 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)
What is amitriptyline? a majority -10.23109143800777 What 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)
What is amitriptyline? an antidepressant medication -10.25526401085372 What 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)
What is amitriptyline? Louis PERIACTIN -10.263293886642801 What 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)
What is amitriptyline? an antidepressant drug -10.271179576882638 What 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)
What is amitriptyline? a first line agent -10.281941566574003 What 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)
What is amitriptyline? a first generation -10.287028857118942 What 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)
What is amitriptyline? Clomipramine -10.287149144340919 What 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)
What is amitriptyline? a very expensive -10.308185026129479 What 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)
What is amitriptyline? 30 to 50 % -10.319071312065768 What 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)
What is amitriptyline? a very dangerous -10.328586144993432 What 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)
What is amitriptyline? a tricyclic antidepressant -10.33398329489943 What 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)
What is amitriptyline? such medication -10.340837607049707 What 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)
What is amitriptyline? TRAMADOL -10.348540797741425 What 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)
What is amitriptyline? a day -10.352863969903936 What 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)
What is amitriptyline? the 7 days -10.363281159143545 What 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)
What is amitriptyline? a useful prophylactic -10.363954075357949 What 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)
What is amitriptyline? the American Academy -10.397798697432567 What 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)
What is amitriptyline? Excessive saliva -10.415320202411769 What 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)
What is amitriptyline? healthy volunteers -10.421662421948977 What 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)
What is amitriptyline? 7/2/11 10:22 -10.454035556016699 What 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)
What is amitriptyline? Britain -10.46618122754136 What 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)
What is amitriptyline? Showings -10.46753079751587 What 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)
What is amitriptyline? a good drug -10.469109059220854 What 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)
What is amitriptyline? an antidepressants -10.487037781066341 What 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)
What is amitriptyline? vgx rats -10.526887611731762 What 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)
What is amitriptyline? a tricyclic -10.589342663717456 What 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)
What is amitriptyline? an anti-depressant -10.601493971478565 What 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)
What is amitriptyline? a Tricyclic Antidepressant -10.64061561614947 What 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)
What is amitriptyline? Examples of Tricyclic antidepressants -10.685441736827098 What 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)
What is amitriptyline? Elavil -10.738793107328325 What 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)
What is amitriptyline? more effective than placebo -10.789432858842083 What 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)
What is amitriptyline? a class of medications -10.812201516211887 What 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)
What is amitriptyline? children and adolescents -10.830820273003106 What 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)
What is amitriptyline? Amytriptyline -10.850776177068749 What 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)
What is amitriptyline? Amitriptilyne -10.850776177068749 What 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)
What is amitriptyline? Amytriptiline -10.850776177068749 What 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)
What is amitriptyline? Amytripyline -10.850776177068749 What 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)
What is amitriptyline? Amitryptyline -10.862762745700277 What 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)
What is amitriptyline? treat depression and anxiety -10.880250028114382 What 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)
What is amitriptyline? Somebody -10.892904926001139 What 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)
What is amitriptyline? Lennox -10.900291247957696 What 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)
What is amitriptyline? serious side effects -10.95775627302724 What 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)
What is amitriptyline? AUC -10.972838846488303 What 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)
What is amitriptyline? a treatment -11.052998032657143 What 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)
What is amitriptyline? AmiKet -11.071951657205577 What 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)
What is amitriptyline? Amitriptyline HCI -11.114434638873137 What 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)
What is amitriptyline? a much better safety profile -11.125059550137546 What 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)
What is amitriptyline? Convenience. bodies -11.181468287868048 What 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)
What is amitriptyline? I t -11.181468287868048 What 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)
What is amitriptyline? PERIACTIN -11.195971118804312 What 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)
What is amitriptyline? hair loss -11.222293218849442 What 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)
What is amitriptyline? National Data Bank for Rheumatic Diseases -11.22636224330319 What 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)
What is amitriptyline? Budesonide/formoterol -11.22636224330319 What 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)
What is amitriptyline? biological half-life -11.24281330836353 What 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)
What is amitriptyline? volume of distribution -11.24281330836353 What 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)
What is amitriptyline? Heart Rate Increase -11.26748990534119 What 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)
What is amitriptyline? more side effects -11.30780971733623 What 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)
What is amitriptyline? an NNT -11.313329109749429 What 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)
What is amitriptyline? Weight gain -11.339784839547098 What 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)
What is amitriptyline? greater antihistaminic effects -11.342293408597357 What 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)
What is amitriptyline? a fairly high overdose rate -11.34918897472204 What 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)
What is amitriptyline? a tricyclic antidepressant TCA -11.401994832179959 What 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)
What is amitriptyline? more than 50 years -11.415013757379649 What 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)
What is amitriptyline? a prominent sedative action -11.421265789070135 What 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)
What is amitriptyline? a class of drugs -11.421951427519703 What 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)
What is amitriptyline? treat symptoms of depression -11.423495331599302 What 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)
What is amitriptyline? a coma -11.4296568872095 What 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)
What is amitriptyline? EpiCept NP-1 Cream -11.433134430555835 What 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)
What is amitriptyline? a group of drugs -11.456827370573833 What 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)
What is amitriptyline? Neither drug -11.460308360345813 What 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)
What is amitriptyline? it has a tendency -11.473160720705575 What 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)
What is amitriptyline? extremely sedating -11.486880379881878 What 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)
What is amitriptyline? drowsiness -11.489785610401476 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are, drowsiness) -> drowsiness (6175ms)
What is amitriptyline? harmful to an unborn baby -11.504474763612375 What 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)
What is amitriptyline? several times a day -11.504474763612375 What 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)
What is amitriptyline? NP-1 -11.506992099653875 What 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)
What is amitriptyline? patients -11.519856577196773 What 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)
What is amitriptyline? an antidepressant used to treat depression -11.520864228676798 What 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)
What is amitriptyline? a member of the class of drugs -11.520864228676798 What 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)
What is amitriptyline? EpiCept NP-1 -11.533253380092479 What 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)
What is amitriptyline? blurred vision -11.538637204321898 What 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)
What is amitriptyline? Examples -11.546436998828243 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Examples, are, amitriptyline) -> Examples (6212ms)
What is amitriptyline? Mylan 277 -11.574025748648786 What 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)
What is amitriptyline? side effect -11.58353115975704 What 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)
What is amitriptyline? drugging tablet -11.606016143813765 What 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)
What is amitriptyline? EpiCept? NP-1 -11.618919704083929 What 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)
What is amitriptyline? earlier studies -11.649341857192741 What 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)
What is amitriptyline? 2010 -11.65834932118381 What 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)
What is amitriptyline? adverse effects -11.669778143446823 What 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)
What is amitriptyline? a generic alternative -11.67833379954545 What 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)
What is amitriptyline? sleep issues -11.72117003964783 What 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)
What is amitriptyline? treat depression -11.722269401702862 What 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)
What is amitriptyline? treating depression -11.73403592686555 What 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)
What is amitriptyline? similar effects -11.751024558173928 What 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)
What is amitriptyline? the first choice drug -11.773460979797907 What 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)
What is amitriptyline? 313.87 -11.774034334778577 What 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)
What is amitriptyline? sleep disturbances -11.795234457953999 What 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)
What is amitriptyline? a moderate effect -11.812696704297734 What 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)
What is amitriptyline? elderly patients -11.813996287027681 What 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)
What is amitriptyline? the most widely researched prophylactic agent -11.820149949234931 What 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)
What is amitriptyline? oxycodone -11.825509505700998 What 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)
What is amitriptyline? the tricyclic -11.830431920483598 What 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)
What is amitriptyline? the boxed warning -11.832036729646779 What 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)
What is amitriptyline? The best evidence -11.834962619318386 What 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)
What is amitriptyline? the generic form -11.84631426418477 What 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)
What is amitriptyline? a false positive -11.871937983705628 What 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)
What is amitriptyline? Nortiptyline -11.873186638834849 What 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)
What is amitriptyline? Amitriptoline -11.873186638834849 What 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)
What is amitriptyline? the breast milk -11.874545692966539 What 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)
What is amitriptyline? the prototypical tertiary amine -11.87475153439068 What 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)
What is amitriptyline? the most widely used TCA -11.898450858013954 What 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)
What is amitriptyline? the few people -11.899901268925863 What 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)
What is amitriptyline? Dosulepin -11.918080594269991 What 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)
What is amitriptyline? Ranitidine -11.918080594269991 What 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)
What is amitriptyline? Amytriptaline -11.918080594269991 What 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)
What is amitriptyline? Butalbital -11.918080594269991 What 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)
What is amitriptyline? Reasons -11.918080594269991 What 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)
What is amitriptyline? Levazine -11.918080594269991 What 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)
What is amitriptyline? Amitryptilin -11.918080594269991 What 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)
What is amitriptyline? Amtriptyline -11.918080594269991 What 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)
What is amitriptyline? Amitriptylline -11.918080594269991 What 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)
What is amitriptyline? Endep -11.918080594269991 What 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)
What is amitriptyline? Amatriptaline -11.918080594269991 What 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)
What is amitriptyline? Amixide -11.918080594269991 What 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)
What is amitriptyline? Lamictal -11.918080594269991 What 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)
What is amitriptyline? Character -11.918080594269991 What 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)
What is amitriptyline? Amitryptaline -11.918080594269991 What 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)
What is amitriptyline? Lipsovir -11.918080594269991 What 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)
What is amitriptyline? Laroxyl -11.918080594269991 What 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)
What is amitriptyline? lower fit threshold -11.928930255629115 What 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)
What is amitriptyline? citalopram -11.932605199557978 What 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)
What is amitriptyline? the past few weeks -11.934533498110435 What 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)
What is amitriptyline? Trembling -11.959208256307992 What 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)
What is amitriptyline? Dizziness -11.959208256307992 What 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)
What is amitriptyline? Nausea -11.959208256307992 What 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)
What is amitriptyline? sleep -11.966031162169372 What 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)
What is amitriptyline? the survey sites -11.970543089402963 What 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)
What is amitriptyline? symptoms -11.978583472140244 What 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)
What is amitriptyline? the central nervous system -11.991043432363645 What 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)
What is amitriptyline? sertraline -12.001006410271712 What 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)
What is amitriptyline? pill imprinted with 2101 -12.022786905835114 What 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)
What is amitriptyline? The most widely used TCA -12.028264072273121 What 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)
What is amitriptyline? the same period patient -12.08051130976665 What 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)
What is amitriptyline? five different medications -12.086455717627635 What 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)
What is amitriptyline? the patient -12.10789790445724 What 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)
What is amitriptyline? letter -12.121083942512831 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (letter, Is, Amitriptyline) -> letter (6613ms)
What is amitriptyline? an effect on pain -12.143775562379084 What 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)
What is amitriptyline? orthostatic or postural hypotension -12.194082180845758 What 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)
What is amitriptyline? sedation , drowsiness , dry mouth -12.220231182452054 What 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)
What is amitriptyline? heroin -12.327752901169095 What 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)
What is amitriptyline? a greater overall incidence -12.387352382475957 What 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)
What is amitriptyline? taking acidophilus -12.417312411434555 What 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)
What is amitriptyline? treatment -12.478628278622864 What 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)
What is amitriptyline? tips -12.48375947701393 What 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)
What is amitriptyline? outpatients -12.498771106292537 What 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)
What is amitriptyline? adverse interactions -12.510700833216495 What 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)
What is amitriptyline? caution -12.532296234090452 What 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)
What is amitriptyline? lists -12.585081067869755 What 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)
What is amitriptyline? depression -12.618421095164008 What 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)
What is amitriptyline? baseline -12.646069300187662 What 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)
What is amitriptyline? purposes -12.665447427322839 What 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)
What is amitriptyline? of fashion - side effects -12.677106886180223 What 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)
What is amitriptyline? the first line treatment for fibromyalgia -12.712817924141516 What 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)
What is amitriptyline? of fashion - side effects in the body -12.718637126389698 What 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)
What is amitriptyline? shelf life written on them -12.744844964899059 What 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)
What is amitriptyline? London -12.75784269196566 What 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)
What is amitriptyline? fibromyalgia -12.847432080471979 What 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)
What is amitriptyline? arrhythmias -12.887638692951942 What 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)
What is amitriptyline? humans -12.922906887799074 What 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)
What is amitriptyline? the most -12.932150265891467 What 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)
What is amitriptyline? adults -12.98603193339585 What 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)
What is amitriptyline? the nerve pain -12.994857035965026 What 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)
What is amitriptyline? fashion -13.140310829716334 What 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)
What is amitriptyline? the greatest anticholinergic effects -13.169500790397699 What 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)
What is amitriptyline? the best support -13.236699852820053 What 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)
What is amitriptyline? the same day -13.255953616501827 What 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)
What is amitriptyline? years -13.25783505510008 What 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)
What is amitriptyline? nabilone -13.274383535409383 What 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)
What is amitriptyline? nortriptyline -13.27581782836437 What 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)
What is amitriptyline? pain -13.339255352375517 What 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)
What is amitriptyline? The first drug -13.356972955321055 What 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)
What is amitriptyline? the cells -13.378557569845718 What 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)
What is amitriptyline? the reduction -13.390573486512078 What 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)
What is amitriptyline? the treatment -13.413041261106844 What 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)
What is amitriptyline? cats -13.435340131077101 What 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)
What is amitriptyline? the class -13.474964060430057 What 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)
What is amitriptyline? animals -13.48757238199889 What 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)
What is amitriptyline? available -13.545718767418531 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, available) -> available (6810ms)
What is amitriptyline? effective -13.566554408887683 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, effective) -> effective (6810ms)
What is amitriptyline? the electrocardiograph -13.625770125936874 What 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)
What is amitriptyline? nausea -13.669934934172199 What 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)
What is amitriptyline? usually -13.68947968450106 What 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)
What is amitriptyline? useful -13.693500764195338 What 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)
What is amitriptyline? the similar pharmacology -13.753638292011733 What 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)
What is amitriptyline? tremor -13.805712845273275 What 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)
What is amitriptyline? dosage -13.805712845273275 What 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)
What is amitriptyline? constipation -13.805712845273275 What 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)
What is amitriptyline? bioavailability -13.822163910333614 What 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)
What is amitriptyline? clearance -13.822163910333614 What 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)
What is amitriptyline? the sun -14.18110102704297 What 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)
What is amitriptyline? fever -14.197405213758335 What 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)
What is amitriptyline? the benzodiazepines -14.326924541494886 What 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)
What is amitriptyline? sedation -14.394520715365903 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, produces, sedation) -> sedation (6842ms)
What is amitriptyline? the addict -14.476846390706331 What 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)
What is amitriptyline? flinching -14.988415708894223 What 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)
What is amitriptyline? generic -15.217708684977932 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went, generic) -> generic (6872ms)
Which airlines use Dulles? traffic -4.4776328448786265 Which 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)
Who was the first king of England? The Independent 3.6915554022960855 Who 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)
Who was the first king of England? the Great 2.294095738310092 Who 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)
Who was the first king of England? St . Edward 2.034275090898541 Who 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)
Who was the first king of England? Aquitaine 1.7514266092796316 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Aquitaine, was the first king of, England) -> Aquitaine (6575ms)
Who was the first king of England? Wessex 1.2763498482366042 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Wessex, was the first king of, all England) -> Wessex (6575ms)
Who was the first king of England? Alfred 1.199911201010604 Who 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)
Who was the first king of England? March 24 0.9083446808952851 Who 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)
Who was the first king of England? Egbert 0.3996058891190306 Who 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)
Who was the first king of England? ?thelstan 0.3908284878307309 Who 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)
Who was the first king of England? the Peaceful -0.21320402373744174 Who 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)
Who was the first king of England? the Saxon King Harold II -0.4147025470967739 Who 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)
Who was the first king of England? ?thelstan -0.4665817156725923 Who 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)
Who was the first king of England? Athelstan -0.4976249138833535 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Athelstan, [is] the first king of, all England) -> Athelstan (8079ms)
Who was the first king of England? Europe and Egbert -0.7002983911093196 Who 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)
Who was the first king of England? Diana -1.8220979762136624 Who 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)
Who was the first king of England? Edgar -1.852269988558753 Who 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)
Who was the first king of England? James -2.217856548432559 Who 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)
Who was the first king of England? Uther Pendragon -5.841993770885821 Who 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)
Who was the first king of England? Prince William -5.901235050293716 Who 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)
Who was the first king of England? Westminster Cathedral -6.394104235994662 Who 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)
Who was the first king of England? Henry Tudor -6.596369637085885 Who 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)
Who was the first king of England? William III -6.662370564277884 Who 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)
Who was the first king of England? Prince Charles -6.8639313891322535 Who 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)
Who was the first king of England? George III -6.985121855634414 Who 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)
Who was the first king of England? Charles II -7.008316120421842 Who 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)
Who was the first king of England? George VI -7.009100571305552 Who 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)
Who was the first king of England? the Battle -7.04298844861957 Who 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)
Who was the first king of England? Edward VII -7.1031836175540075 Who 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)
Who was the first king of England? King Henry II -7.107987327853391 Who 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)
Who was the first king of England? Edward II -7.126937449710347 Who 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)
Who was the first king of England? Richard Plantagenet -7.130065564658534 Who 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)
Who was the first king of England? Edward IV -7.137975263813523 Who 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)
Who was the first king of England? Henry III -7.186044817387286 Who 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)
Who was the first king of England? George V -7.2098535983034076 Who 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)
Who was the first king of England? One player -7.257352158794075 Who 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)
Who was the first king of England? DK -7.291301974177678 Who 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)
Who was the first king of England? the Confessor -7.437851130060085 Who 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)
Who was the first king of England? Saul -7.4531664807245726 Who 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)
Who was the first king of England? like manner -7.472230817475133 Who 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)
Who was the first king of England? a boy -7.616391642642576 Who 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)
Who was the first king of England? England Edward IV -7.621304614660742 Who 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)
Who was the first king of England? Israel and Jesus -7.628944453632248 Who 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)
Who was the first king of England? Edward III -7.6557782078483845 Who 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)
Who was the first king of England? Washington D.C. -7.6781834570854475 Who 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)
Who was the first king of England? The Lionheart -7.710961294201408 Who 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)
Who was the first king of England? King George III -7.732748569457565 Who 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)
Who was the first king of England? Henry VII -7.743614094003314 Who 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)
Who was the first king of England? George II -7.7672291029846425 Who 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)
Who was the first king of England? Richard III -7.775660645247475 Who 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)
Who was the first king of England? New York state -7.783721122466999 Who 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)
Who was the first king of England? John -7.8855382802396825 Who 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)
Who was the first king of England? Bono -7.892276558369649 Who 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)
Who was the first king of England? World history -7.901841043613979 Who 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)
Who was the first king of England? the Trust -7.923653187537979 Who 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)
Who was the first king of England? Richard II -7.944779014587034 Who 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)
Who was the first king of England? Henry VI -7.957157782309271 Who 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)
Who was the first king of England? James II -7.958926207813759 Who 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)
Who was the first king of England? the Eighth -8.096951808612207 Who 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)
Who was the first king of England? the Unready -8.096951808612207 Who 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)
Who was the first king of England? One Monkey -8.111037303988498 Who 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)
Who was the first king of England? Henry II -8.230078437337607 Who 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)
Who was the first king of England? 978 Ethelred -8.235284209358035 Who 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)
Who was the first king of England? Prompt:Charles -8.25548608117037 Who 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)
Who was the first king of England? God -8.256644865267724 Who 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)
Who was the first king of England? England Henry VIII -8.26715190352693 Who 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)
Who was the first king of England? Edward V -8.286597761236218 Who 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)
Who was the first king of England? law courts -8.316126704199649 Who 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)
Who was the first king of England? VII -8.320911802390688 Who 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)
Who was the first king of England? Connie Justice -8.321306201462669 Who 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)
Who was the first king of England? the Christian -8.329915962426135 Who 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)
Who was the first king of England? ?Pine -8.35964092615967 Who 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)
Who was the first king of England? Harold Godwinson -8.422927504279581 Who 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)
Who was the first king of England? Edgar St Edgar -8.463332225674815 Who 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)
Who was the first king of England? Harry Lauder -8.467658739404875 Who 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)
Who was the first king of England? King Alfred -8.484873323945363 Who 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)
Who was the first king of England? Norway -8.518015243202289 Who 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)
Who was the first king of England? King George -8.52103754612101 Who 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)
Who was the first king of England? King James -8.540585518936906 Who 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)
Who was the first king of England? a particular movie or -8.556336255082481 Who 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)
Who was the first king of England? The 'squirming dog -8.591859000996353 Who 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)
Who was the first king of England? Such a monarch -8.604173200591333 Who 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)
Who was the first king of England? a sorry contemptible lot -8.618355310070344 Who 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)
Who was the first king of England? a wretched and peevish fellow -8.654163364676407 Who 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)
Who was the first king of England? 1167-1216 -8.656199969416615 Who 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)
Who was the first king of England? the Lionheart -8.661090856195187 Who 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)
Who was the first king of England? Winston Churchill -8.665928844379325 Who 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)
Who was the first king of England? Benjamin Disraeli -8.67349437560078 Who 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)
Who was the first king of England? the 8th -8.710231633493638 Who 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)
Who was the first king of England? the Lionhearted -8.716367918113269 Who 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)
Who was the first king of England? the Longshanks -8.716367918113269 Who 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)
Who was the first king of England? Neville Chamberlain -8.728771437518862 Who 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)
Who was the first king of England? the conquest -8.764373774678482 Who 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)
Who was the first king of England? money -8.784261600383829 Who 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)
Who was the first king of England? Kent -8.803423212942615 Who 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)
Who was the first king of England? the Anglican Church -8.806675758794672 Who 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)
Who was the first king of England? ? Beckham -8.824368392584974 Who 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)
Who was the first king of England? the Bible -8.828902615077002 Who 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)
Who was the first king of England? Gary -8.839739897835486 Who 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)
Who was the first king of England? Ethelred -8.847974758635548 Who 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)
Who was the first king of England? one day -8.87594655368008 Who 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)
Who was the first king of England? Sir -8.877385595733099 Who 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)
Who was the first king of England? the Dane -8.890421377870258 Who 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)
Who was the first king of England? Henry -8.895062169512974 Who 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)
Who was the first king of England? Arthur -8.914906785641577 Who 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)
Who was the first king of England? the Congress -8.950041454797066 Who 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)
Who was the first king of England? William -8.970745564385396 Who 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)
Who was the first king of England? Normandy -9.015210593791174 Who 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)
Who was the first king of England? Harold -9.042296197081871 Who 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)
Who was the first king of England? the general public -9.070198178765661 Who 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)
Who was the first king of England? the game players -9.070516292157052 Who 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)
Who was the first king of England? Harold Harefoot -9.070844420397098 Who 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)
Who was the first king of England? Richard Lionheart -9.102429301695656 Who 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)
Who was the first king of England? Edmund Ironside -9.108472710874196 Who 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)
Who was the first king of England? Italy -9.112075195276326 Who 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)
Who was the first king of England? Queen Victoria -9.125997645711907 Who 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)
Who was the first king of England? 24 Henry VII -9.130905474297558 Who 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)
Who was the first king of England? France -9.164242878070858 Who 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)
Who was the first king of England? Henry VIII -9.17124477171581 Who 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)
Who was the first king of England? Mr. Tracy -9.172298379858773 Who 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)
Where is the Orinoco River? swamps -0.8501574509261465 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> (the river Orinoco, is lost in, swamps) -> swamps (3765ms)
Where is the Orinoco River? Authorities Concept Scheme -1.5836501606872182 Where 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)
Where is the Orinoco River? Geographic Names Concept Scheme -1.611139041286378 Where 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)
Where is the Orinoco River? Topical Terms Concept Scheme -1.9410056084762926 Where 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)
Where is the Orinoco River? the past -2.7298229157540597 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> (the Orinoco river, was an advantage in, the past) -> the past (3765ms)
Where is the Orinoco River? the jungles -5.0272908688593025 Where 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)
Where is the Orinoco River? South America -7.530655358281185 Where 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)
Where is the Orinoco River? Venezuela -8.045796465383106 Where 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)
Where is the Orinoco River? La Concepci?n -8.995310609451826 Where 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)
Where is the Orinoco River? the Cardinal tetra -9.237565702418337 Where 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)
Where is the Orinoco River? a large natural area -9.24949534388312 Where 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)
Where is the Orinoco River? too wide a sur-face-it -9.33754465142688 Where 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)
Where is the Orinoco River? Estado Delta Amacuro -9.456027157540374 Where 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)
Where is the Orinoco River? 326.0 -10.060221033660296 Where 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)
Where is the Orinoco River? Rhinodoras gallagheri -10.401583055502758 Where 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)
Where is the Orinoco River? terms -10.71782762433543 Where 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)
Where is the Orinoco River? 61695 -10.85737535689999 Where 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)
Where is the Orinoco River? 196.0 -10.886728031206037 Where 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)
Where is the Orinoco River? 196.64 -10.886728031206037 Where 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)
Where is the Orinoco River? 196.4 -10.886728031206037 Where 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)
Where is the Orinoco River? The flat area -10.980321542071884 Where 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)
Where is the Orinoco River? the ever-wet Amazon -10.991816123393024 Where 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)
Where is the Orinoco River? Orinoco River Crossing -11.00514910790269 Where 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)
Where is the Orinoco River? the fish -11.222080337265837 Where 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)
Where is the Orinoco River? The region -11.230723498987347 Where 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)
Where is the Orinoco River? 333.0 -11.672910016342001 Where 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)
Where is the Orinoco River? 75811 -12.096215563433125 Where 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)
Where is Merrill Lynch headquartered? London -2.6498899559505795 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch HSBC, will be headquartered in, London) -> London (1492ms)
Where is Merrill Lynch headquartered? new york city -3.928222569647443 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (america merrill lynch, is headquartered in, new york city) -> new york city (1492ms)
Where is Merrill Lynch headquartered? New York City -4.523456733948949 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch, is headquartered in, New York City) -> New York City (1493ms)
Where is Merrill Lynch headquartered? New York -4.817951509707132 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch and Morgan Stanley, are headquartered in, New York) -> New York (1493ms)
Where is Merrill Lynch headquartered? Taipei -4.8732003902919345 Where 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)
Where is Merrill Lynch headquartered? Los Angeles -5.443706891771381 Where 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)
Where is Merrill Lynch headquartered? Europe -5.74169232000138 Where 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)
Where is Merrill Lynch headquartered? Oregon -6.736357193116286 Where 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)
Where is Merrill Lynch headquartered? The Wellesley Office Park -6.834725240109867 Where 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)
Where is Merrill Lynch headquartered? Dow Jones -7.66351653113462 Where 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)
Where is Merrill Lynch headquartered? Bank -7.753854687549016 Where 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)
Where is Merrill Lynch headquartered? Jersey City -7.7606496641916065 Where 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)
Where is Merrill Lynch headquartered? Asia -7.804726194560495 Where 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)
Where is Merrill Lynch headquartered? FINRA -8.080870559913759 Where 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)
Where is Merrill Lynch headquartered? MetroPCS -8.356940841745562 Where 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)
Where is Merrill Lynch headquartered? Broadway -8.421533647916085 Where 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)
Where is Merrill Lynch headquartered? the Bank -8.503295727398402 Where 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)
Where is Merrill Lynch headquartered? Bank of America -9.93921352298348 Where 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)
Where is Merrill Lynch headquartered? the Bank of America -10.217049891845114 Where 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)
Where is Merrill Lynch headquartered? John Thain -10.274736953544332 Where 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)
Where is Merrill Lynch headquartered? Marcus Heilner -10.276004844427568 Where 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)
Where is Merrill Lynch headquartered? A syndicate -12.363115670685232 Where 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)
Where is Merrill Lynch headquartered? women -14.551894914369134 Where 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)
Aspartame is also known as what? brain tumors -11.31443303868324 Aspartame 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)
Aspartame is also known as what? Multiple Sclerosis -11.384395198461963 Aspartame 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)
Aspartame is also known as what? Birth Defects -11.433026082949814 Aspartame 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)
Aspartame is also known as what? brain cancer -11.683872983523386 Aspartame 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)
Aspartame is also known as what? metabolic acidosis -11.7097053195697 Aspartame 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)
Aspartame is also known as what? memory loss -11.710654074098052 Aspartame 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)
Aspartame is also known as what? a known neurotoxin -11.727256751822662 Aspartame 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)
Aspartame is also known as what? brain damage -11.743244176180307 Aspartame 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)
Aspartame is also known as what? sudden cardiac death -11.746108345895435 Aspartame 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)
Aspartame is also known as what? birth defects -11.798875554825461 Aspartame 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)
Aspartame is also known as what? drug -11.813782452054339 Aspartame 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)
Aspartame is also known as what? food -11.813782452054339 Aspartame 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)
Aspartame is also known as what? diabetic retinopathy -11.819679707466822 Aspartame 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)
Aspartame is also known as what? manic depression -11.927282535588345 Aspartame 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)
Aspartame is also known as what? seizures -11.936519662295854 Aspartame 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)
Aspartame is also known as what? New York -11.952894411442442 Aspartame 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)
Aspartame is also known as what? a known destroyer of DNA -12.046475056141691 Aspartame 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)
Aspartame is also known as what? sugar substitute -12.049653902128586 Aspartame 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)
Aspartame is also known as what? leukemias/lymphomas -12.062021352504622 Aspartame 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)
Aspartame is also known as what? so poisonous -12.063998021319495 Aspartame 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)
Aspartame is also known as what? anaphylactic shock -12.082012110307527 Aspartame 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)
Aspartame is also known as what? an adjuvant -12.12487723753355 Aspartame 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)
Aspartame is also known as what? soft drinks -12.126168294693674 Aspartame 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)
Aspartame is also known as what? Methanol Toxicity -12.13935599141901 Aspartame 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)
Aspartame is also known as what? severe health problems -12.154753162651167 Aspartame 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)
Aspartame is also known as what? reproductive outcome -12.190231441619233 Aspartame 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)
Aspartame is also known as what? nerve cells -12.192457331409862 Aspartame 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)
Aspartame is also known as what? brain function -12.196658016152018 Aspartame 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)
Aspartame is also known as what? a higher incidence -12.201123687026437 Aspartame 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)
Aspartame is also known as what? well known neurotoxin -12.20361106467892 Aspartame 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)
Aspartame is also known as what? Acesulfame K -12.209394211795198 Aspartame 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)
Aspartame is also known as what? brain tumors and cancer -12.230709392841135 Aspartame 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)
Aspartame is also known as what? Gulf War illness -12.239536375684951 Aspartame 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)
Aspartame is also known as what? Human Brain Cancer -12.242425792572925 Aspartame 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)
Aspartame is also known as what? seizures and degrades -12.245268965976958 Aspartame 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)
Aspartame is also known as what? a multipotential carcinogen -12.25711884408163 Aspartame 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)
Aspartame is also known as what? 200 million people -12.26402020450459 Aspartame 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)
Aspartame is also known as what? sweetening agent -12.289249811839268 Aspartame 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)
Aspartame is also known as what? convulsions -12.290110712880999 Aspartame 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)
Aspartame is also known as what? brain tumors and seizures -12.295812346093253 Aspartame 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)
Aspartame is also known as what? an artificial sweetener -12.301516564599401 Aspartame 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)
Aspartame is also known as what? chronic methanol poisoning -12.307986395442112 Aspartame 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)
Aspartame is also known as what? a multi-potential carcinogen -12.333019772295026 Aspartame 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)
Aspartame is also known as what? food supply -12.342475455553952 Aspartame 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)
Aspartame is also known as what? lupus -12.360026955336194 Aspartame 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)
Aspartame is also known as what? a known Excitotoxin -12.360742650789636 Aspartame 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)
Aspartame is also known as what? cancer ? lymphoma and leukemia -12.3631751480373 Aspartame 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)
Aspartame is also known as what? aspartame Neotame -12.367174459903682 Aspartame 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)
Aspartame is also known as what? 50 percent phenylalanine -12.37126845070766 Aspartame 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)
Aspartame is also known as what? better than sugar -12.376646042585726 Aspartame 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)
Aspartame is also known as what? a Monsanto product -12.38762129549318 Aspartame 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)
Aspartame is also known as what? full meals -12.394044887070937 Aspartame 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)
Aspartame is also known as what? an rDNA derivative -12.400407926275445 Aspartame 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)
Aspartame is also known as what? carcinogenic agent -12.400674506468935 Aspartame 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)
Aspartame is also known as what? satiety and hunger -12.417627351146443 Aspartame 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)
Aspartame is also known as what? illness and death -12.420796959513023 Aspartame 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)
Aspartame is also known as what? agonizing joint pain -12.421288894121115 Aspartame 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)
Aspartame is also known as what? safe sweetener -12.42150450213187 Aspartame 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)
Aspartame is also known as what? NutraSweet -12.447979183109535 Aspartame 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)
Aspartame is also known as what? 200 times sweeter than sugar -12.449077441917293 Aspartame 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)
Aspartame is also known as what? mood and cognition -12.449493650594409 Aspartame 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)
Aspartame is also known as what? Obesity Dear Editor -12.45528065077415 Aspartame 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)
Aspartame is also known as what? sudden death -12.456441294095963 Aspartame 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)
Aspartame is also known as what? synthetic sweetener -12.458363735614013 Aspartame 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)
Aspartame is also known as what? health agencies -12.46045419895834 Aspartame 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)
Aspartame is also known as what? common sweetener -12.46346531880098 Aspartame 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)
Aspartame is also known as what? polychemical sensitivity syndrome -12.46903559220787 Aspartame 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)
Aspartame is also known as what? an irregular heart rhythm -12.473280949286643 Aspartame 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)
Aspartame is also known as what? a safe sugar substitute -12.474418047331056 Aspartame 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)
Aspartame is also known as what? safe for pregnant women -12.477703192179716 Aspartame 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)
Aspartame is also known as what? carbohydrate craving -12.483168892637185 Aspartame 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)
Aspartame is also known as what? much sweeter than sugar -12.486964355648698 Aspartame 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)
Aspartame is also known as what? chronic fatigue -12.491317237150092 Aspartame 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)
Aspartame is also known as what? thyroid dysfunction and hyperthyroidism -12.498685866149826 Aspartame 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)
Aspartame is also known as what? Calcium Phosphate -12.510913434378224 Aspartame 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)
Aspartame is also known as what? confusion and memory loss -12.514601432178743 Aspartame 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)
Aspartame is also known as what? the FDA such as -12.515289876456507 Aspartame 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)
Aspartame is also known as what? Proxy being introduced in Sachets -12.534389378345322 Aspartame 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)
Aspartame is also known as what? new-style intense sweetener of amino acid -12.53931054782444 Aspartame 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)
Aspartame is also known as what? cancer -12.543968590768454 Aspartame 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)
Aspartame is also known as what? 180 times sweeter than sucrose -12.555671653515514 Aspartame 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)
Aspartame is also known as what? Dicalcium Phosphate -12.555807389813367 Aspartame 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)
Aspartame is also known as what? Activated Carbon -12.555807389813367 Aspartame 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)
Aspartame is also known as what? noncaloric sweetener -12.56129316896587 Aspartame 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)
Aspartame is also known as what? an irregular heart rate -12.571190099681054 Aspartame 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)
Aspartame is also known as what? causative factor -12.581536240937673 Aspartame 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)
Aspartame is also known as what? www.nutrasweet.com -12.581735694793686 Aspartame 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)
Aspartame is also known as what? hazardous product -12.583082568136124 Aspartame 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)
Aspartame is also known as what? infertility -12.58638157264314 Aspartame 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)
Aspartame is also known as what? dangerous drug -12.596654146195892 Aspartame 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)
Aspartame is also known as what? Cori Brackett -12.596988942088116 Aspartame 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)
Aspartame is also known as what? neurotoxic substance -12.600171526578935 Aspartame 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)
Aspartame is also known as what? Aspartic acid -12.601101708046775 Aspartame 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)
Aspartame is also known as what? headache -12.60141295227096 Aspartame 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)
Aspartame is also known as what? safe low-calorie sweetener -12.604388183698797 Aspartame 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)
Aspartame is also known as what? flavoured water -12.608782488180108 Aspartame 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)
Aspartame is also known as what? approximately 200 times sweeter than sugar -12.609505415900376 Aspartame 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)
Aspartame is also known as what? food chemical -12.610168711708456 Aspartame 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)
Aspartame is also known as what? high intensity, no-calorie sweetener -12.61302473591769 Aspartame 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)
Aspartame is also known as what? harmful chemical -12.61460667422099 Aspartame 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)
Aspartame is also known as what? artificial or intense sweetener -12.629475800978032 Aspartame 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)
Aspartame is also known as what? responsible for 75 percent of complaints -12.629906534764327 Aspartame 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)
Aspartame is also known as what? 200 times sweeter than normal sugar -12.629906534764327 Aspartame 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)
Aspartame is also known as what? PUR Gum -12.630649464137402 Aspartame 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)
Aspartame is also known as what? ant poison -12.632792895507503 Aspartame 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)
Aspartame is also known as what? low -12.638789603294189 Aspartame 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)
Aspartame is also known as what? fried food -12.645184303120105 Aspartame 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)
Aspartame is also known as what? addictive neurotoxin -12.64711944726009 Aspartame 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)
Aspartame is also known as what? dipeptide compound -12.64711944726009 Aspartame 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)
Aspartame is also known as what? sugar sweetener -12.64711944726009 Aspartame 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)
Aspartame is also known as what? non-calorie sweetener -12.64888866708615 Aspartame 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)
Aspartame is also known as what? one?s health -12.649598590949218 Aspartame 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)
Aspartame is also known as what? protein -12.651076822307957 Aspartame 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)
Aspartame is also known as what? evil substance -12.65321243427408 Aspartame 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)
Aspartame is also known as what? so safe -12.65334681376336 Aspartame 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)
Aspartame is also known as what? brand name -12.658323734347638 Aspartame 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)
Aspartame is also known as what? nerve toxin -12.661925406182107 Aspartame 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)
Aspartame is also known as what? low calorie, artificial sweetener -12.663136323027317 Aspartame 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)
Aspartame is also known as what? safe for use by people with epilepsy -12.664483177098695 Aspartame 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)
Aspartame is also known as what? non-saccharide artificial sweetener -12.671421832693708 Aspartame 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)
Aspartame is also known as what? Diet Coke -12.671421832693708 Aspartame 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)
Aspartame is also known as what? great tasting sweetener -12.671421832693708 Aspartame 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)
Aspartame is also known as what? moderately powerful genotoxin -12.671421832693708 Aspartame 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)
Aspartame is also known as what? a carcinogen -12.672830268319839 Aspartame 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)
Aspartame is also known as what? 160 to 220 times sweeter than sugar -12.675623132493666 Aspartame 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)
Aspartame is also known as what? compound of phenylalanine -12.677331557460953 Aspartame 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)
Aspartame is also known as what? Dietary excitotoxins -12.677331557460953 Aspartame 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)
Aspartame is also known as what? DKP -12.677331557460953 Aspartame 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)
Aspartame is also known as what? general-purpose sweetener -12.677331557460953 Aspartame 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)
Aspartame is also known as what? leading cause of obesity -12.683172593801295 Aspartame 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)
Aspartame is also known as what? a neurotoxin -12.685163690610818 Aspartame 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)
Aspartame is also known as what? diet soda -12.686103677927989 Aspartame 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)
Aspartame is also known as what? individuals -12.687998704845551 Aspartame 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)
Aspartame is also known as what? organic compound -12.688424384717798 Aspartame 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)
Aspartame is also known as what? Senator Howard Metzenbaum -12.690625203626476 Aspartame 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)
Aspartame is also known as what? hard drug -12.692979774003506 Aspartame 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)
Aspartame is also known as what? low-calorie alternative -12.697895388479951 Aspartame 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)
Aspartame is also known as what? white, odourless powder -12.698840274869509 Aspartame 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)
Aspartame is also known as what? a sweetener -12.699149287434832 Aspartame 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)
Aspartame is also known as what? expensive ingredient -12.699237377715649 Aspartame 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)
Aspartame is also known as what? healthy sugar substitute -12.71631578812885 Aspartame 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)
Aspartame is also known as what? Stevia amoroso -12.71631578812885 Aspartame 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)
Aspartame is also known as what? form IV -12.71631578812885 Aspartame 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)
Aspartame is also known as what? heavily researched product -12.71631578812885 Aspartame 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)
Aspartame is also known as what? kind of artificial food -12.71631578812885 Aspartame 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)
Aspartame is also known as what? dangerous collection of chemical -12.71631578812885 Aspartame 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)
Aspartame is also known as what? endocrine disrupting drug -12.71631578812885 Aspartame 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)
Aspartame is also known as what? dangerous, carcinogenic toxin -12.71631578812885 Aspartame 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)
Aspartame is also known as what? non-saccharine, artificial sweetener -12.71631578812885 Aspartame 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)
Aspartame is also known as what? non sugar sweetener -12.71631578812885 Aspartame 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)
Aspartame is also known as what? great ant poison -12.71631578812885 Aspartame 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)
Aspartame is also known as what? chemical sugar substitute -12.71631578812885 Aspartame 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)
Aspartame is also known as what? lowcalorie, intensive sweetener -12.71631578812885 Aspartame 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)
Aspartame is also known as what? artificial non-nutritive sweetner -12.71631578812885 Aspartame 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)
Aspartame is also known as what? esterified, dipeptide sweetener -12.71631578812885 Aspartame 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)
Aspartame is also known as what? synthetic sugar substitute -12.71631578812885 Aspartame 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)
Aspartame is also known as what? good quality sweetener -12.71631578812885 Aspartame 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)
Aspartame is also known as what? one of the most thoroughly studied food additives -12.72274692780651 Aspartame 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)
Aspartame is also known as what? food aspartame -12.726876046484296 Aspartame 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)
Aspartame is also known as what? sugar free -12.726876046484296 Aspartame 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)
Aspartame is also known as what? chinese aspartame -12.726876046484296 Aspartame 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)
Aspartame is also known as what? Ajinomoto Food Ingredients -12.731397572182784 Aspartame 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)
Aspartame is also known as what? an artificial sweetener used in place of sugar -12.732008091275492 Aspartame 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)
Aspartame is also known as what? conflicting sweetener -12.732785771251539 Aspartame 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)
Aspartame is also known as what? deadly additive -12.732785771251539 Aspartame 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)
Aspartame is also known as what? protein sweetener -12.732785771251539 Aspartame 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)
Aspartame is also known as what? excitoneurotoxic drug -12.732785771251539 Aspartame 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)
Aspartame is also known as what? quarrelsome chemical -12.732785771251539 Aspartame 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)
Aspartame is also known as what? brain tumor -12.733101624935607 Aspartame 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)
Aspartame is also known as what? brain lesion -12.733101624935607 Aspartame 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)
Aspartame is also known as what? sweet substance -12.73777094255623 Aspartame 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)
Aspartame is also known as what? migraine trigger -12.741444226481944 Aspartame 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)
Aspartame is also known as what? controversial product -12.741925251772523 Aspartame 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)
Aspartame is also known as what? simple ingredient -12.742900952972832 Aspartame 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)
Aspartame is also known as what? caloric sweetener -12.743067686761039 Aspartame 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)
Aspartame is also known as what? harmless substance -12.743636473998933 Aspartame 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)
Aspartame is also known as what? DiketopiperazineDKP -12.74373423030465 Aspartame 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)
Aspartame is also known as what? dangerous -12.744560573390133 Aspartame 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)
Aspartame is also known as what? the Internet -12.74764102777023 Aspartame 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)
Aspartame is also known as what? choice then sugar substitute -12.748802647018767 Aspartame 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)
Aspartame is also known as what? teratogen, endocrine disrupting chemical -12.748802647018767 Aspartame 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)
Aspartame is also known as what? artificial or low-cal sweetener -12.748802647018767 Aspartame 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)
Aspartame is also known as what? leading low calorie sweetener -12.748802647018767 Aspartame 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)
Aspartame is also known as what? popular type of artificial sweetener -12.748802647018767 Aspartame 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)
Aspartame is also known as what? first group fall product -12.748802647018767 Aspartame 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)
Aspartame is also known as what? Dr. Roberts -12.748802647018767 Aspartame 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)
Aspartame is also known as what? molecule composed of three component -12.748802647018767 Aspartame 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)
Aspartame is also known as what? very popular zero-calorie sweetener -12.748802647018767 Aspartame 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)
Aspartame is also known as what? CLP Chemcials, L.P. -12.748802647018767 Aspartame 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)
Aspartame is also known as what? John Garst, Pd.D. -12.748802647018767 Aspartame 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)
Aspartame is also known as what? excellent acceptable sugar substitute -12.748802647018767 Aspartame 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)
Aspartame is also known as what? synthetic, low-calorie sugar substitute -12.748802647018767 Aspartame 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)
Aspartame is also known as what? an excitotoxin -12.749101973031543 Aspartame 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)
Aspartame is also known as what? rtificial saweetners -12.74923683631188 Aspartame 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)
Aspartame is also known as what? really bad -12.75246228005496 Aspartame 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)
Aspartame is also known as what? artificial product -12.75334960227054 Aspartame 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)
Aspartame is also known as what? artificial ingredient -12.753787130537935 Aspartame 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)
Aspartame is also known as what? Im afraid so. Neotame -12.754959469839207 Aspartame 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)
Aspartame is also known as what? J Starr Hull -12.754959469839207 Aspartame 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)
Aspartame is also known as what? a dipeptide -12.76084187139285 Aspartame 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)
Aspartame is also known as what? diet coke -12.771770001919439 Aspartame 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)
Aspartame is also known as what? diet cola -12.771770001919439 Aspartame 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)
Aspartame is also known as what? diet drink -12.771770001919439 Aspartame 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)
Aspartame is also known as what? soft drink -12.771770001919439 Aspartame 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)
Aspartame is also known as what? a disease -12.775316695583026 Aspartame 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)
Aspartame is also known as what? well-characterized, thoroughly studied, high-intensity sweetener -12.776291527617927 Aspartame 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)
Aspartame is also known as what? new generation low calorie sweetener -12.776291527617927 Aspartame 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)
Aspartame is also known as what? healthy -12.788828035800801 Aspartame 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)
Aspartame is also known as what? artificial Low calorie sweetener -12.789930309056766 Aspartame 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)
Aspartame is also known as what? ordinary thomas kinkade screen saver -12.79985342527435 Aspartame 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)
Aspartame is also known as what? Janet Starr Hull -12.79985342527435 Aspartame 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)
Aspartame is also known as what? Stevia or Agave -12.79985342527435 Aspartame 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)
Aspartame is also known as what? baby aspirin -12.804256860809353 Aspartame 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)
Aspartame is also known as what? very bad -12.812343056924888 Aspartame 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)
Aspartame is also known as what? clinical trials -12.826838760500362 Aspartame 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)
Aspartame is also known as what? okay -12.82861948058325 Aspartame 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)
Aspartame is also known as what? artificial sweeteners -12.828747476544397 Aspartame 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)
Aspartame is also known as what? an excipient -12.829230576805669 Aspartame 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)
Aspartame is also known as what? crystal light -12.831745741408513 Aspartame 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)
Aspartame is also known as what? yeast extract -12.831745741408513 Aspartame 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)
Aspartame is also known as what? aspartic acid -12.831745741408513 Aspartame 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)
Aspartame is also known as what? meat product -12.831745741408513 Aspartame 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)
Aspartame is also known as what? Part 1 -12.831814703571691 Aspartame 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)
Aspartame is also known as what? nasty -12.842987240730057 Aspartame 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)
Aspartame is also known as what? extremely harmful -12.846961629246325 Aspartame 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)
Aspartame is also known as what? evil -12.862065779872081 Aspartame 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)
Aspartame is also known as what? a low-calorie -12.874439949662186 Aspartame 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)
Aspartame is also known as what? Heath Ledger -12.876509882829113 Aspartame 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)
Aspartame is also known as what? a substitute sweetener -12.890013814557848 Aspartame 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)
Aspartame is also known as what? safe or harmful -12.891981881515271 Aspartame 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)
Aspartame is also known as what? Stevia -12.893407793850393 Aspartame 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)
Aspartame is also known as what? health -12.900220346749911 Aspartame 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)
Aspartame is also known as what? persons -12.901593220066955 Aspartame 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)
Aspartame is also known as what? decades -12.913176873659152 Aspartame 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)
Aspartame is also known as what? good for you -12.929838617236868 Aspartame 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)
Aspartame is also known as what? public health -12.932288559854657 Aspartame 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)
Aspartame is also known as what? horrible withdrawal -12.939436600156812 Aspartame 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)
Aspartame is also known as what? carbohydrate or food -12.940687792409927 Aspartame 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)
Aspartame is also known as what? safe as a general purpose sweetener in food -12.941017587387362 Aspartame 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)
Aspartame is also known as what? sweetener -12.94237928794507 Aspartame 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)
Aspartame is also known as what? the United States -12.943109874535349 Aspartame 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)
Aspartame is also known as what? the PR Agency -12.943875134037363 Aspartame 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)
Aspartame is also known as what? medications -12.945514421551055 Aspartame 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)
Aspartame is also known as what? safe for you -12.950239736100821 Aspartame 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)
Aspartame is also known as what? physicians -12.954246569617947 Aspartame 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)
Aspartame is also known as what? pregnant women -12.954393483393545 Aspartame 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)
Aspartame is also known as what? insulin -12.955105156874989 Aspartame 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)
Aspartame is also known as what? a deadly poison -12.95724450779302 Aspartame 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)
Aspartame is also known as what? 10,000 calls -12.963246697966913 Aspartame 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)
Aspartame is also known as what? a deadly neurotoxin -12.96979081611066 Aspartame 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)
Aspartame is also known as what? a psycho drug -12.96979081611066 Aspartame 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)
Aspartame is also known as what? rat poison -12.970459886409403 Aspartame 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)
Aspartame is also known as what? pharmaceutical companies -12.9902803050391 Aspartame 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)
Aspartame is also known as what? a sugar substitute -12.992500241821036 Aspartame 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)
Aspartame is also known as what? DNA -12.994432613074173 Aspartame 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)
Aspartame is also known as what? a health risk -12.995493186205653 Aspartame 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)
Aspartame is also known as what? a toxic poison -12.995493186205653 Aspartame 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)
Aspartame is also known as what? inherently and uniquely unstable -12.998698888662634 Aspartame 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)
Aspartame is also known as what? The NutraSweet Company -13.002946649216621 Aspartame 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)
Aspartame is also known as what? a seizure triggering drug -13.013279940752282 Aspartame 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)
Aspartame is also known as what? a dangerous neurotoxin -13.015894305069605 Aspartame 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)
Aspartame is also known as what? a chemical hypersensitization agent -13.025414094069573 Aspartame 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)
Aspartame is also known as what? tacky stria -13.045307620410217 Aspartame 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)
Aspartame is also known as what? an Imminent Health Hazard -13.072264874014131 Aspartame 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)
Aspartame is also known as what? unfit for human consumption -13.076313148092563 Aspartame 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)
Aspartame is also known as what? especially deadly for diabetics -13.076313148092563 Aspartame 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)
Aspartame is also known as what? completely safe for diabetics -13.09078797228274 Aspartame 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)
Aspartame is also known as what? a multipotential carcinogenic agent -13.098642782829051 Aspartame 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)
Aspartame is also known as what? a very safe substance -13.098642782829051 Aspartame 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)
Aspartame is also known as what? a very dangerous chemical -13.10192792767771 Aspartame 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)
Aspartame is also known as what? 40 percent aspartic acid -13.111189091146692 Aspartame 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)
Aspartame is also known as what? an effective ant poison -13.111189091146692 Aspartame 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)
Aspartame is also known as what? a literal chemical poison -13.111189091146692 Aspartame 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)
Aspartame is also known as what? safe for use in food -13.130507755205905 Aspartame 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)
Aspartame is also known as what? crime -13.142523059317682 Aspartame 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)
Aspartame is also known as what? 86oF -13.151910882373482 Aspartame 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)
Aspartame is also known as what? an addictive excitoneurotoxic carcinogenic drug -13.168756433618537 Aspartame 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)
Aspartame is also known as what? lymphoma and leukemia -13.16883436558688 Aspartame 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)
Aspartame is also known as what? lymphomas and leukaemia -13.1726211721927 Aspartame 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)
Aspartame is also known as what? weight gain -13.177180165596798 Aspartame 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)
Aspartame is also known as what? birth defects and mental retardation -13.189406401121705 Aspartame 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)
Aspartame is also known as what? leukemia and lymphoma -13.199555312415459 Aspartame 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)
Aspartame is also known as what? stroke-like symptoms -13.20371030864101 Aspartame 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)
Aspartame is also known as what? multiple sclerosis -13.211517129393053 Aspartame 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)
Aspartame is also known as what? cancer of the kidney -13.211605402860599 Aspartame 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)
Aspartame is also known as what? unique among the intense sweeteners in -13.219255327208192 Aspartame 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)
Aspartame is also known as what? an epidemic of obesity -13.231670861443432 Aspartame 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)
Aspartame is also known as what? brain tumors and brain cancer -13.231885245928012 Aspartame 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)
Aspartame is also known as what? diabetics to go into convulsions -13.236545443415446 Aspartame 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)
Aspartame is also known as what? headaches than placebo -13.242694539308909 Aspartame 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)
Aspartame is also known as what? a potent neurotoxin and endocrine disrupter -13.24487010679334 Aspartame 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)
Aspartame is also known as what? Splenda -13.245978517926027 Aspartame 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)
Aspartame is also known as what? a coma -13.247188053099068 Aspartame 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)
Aspartame is also known as what? joint pain -13.259164522431597 Aspartame 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)
Aspartame is also known as what? a poison when the NSDA opposed it -13.26141493026417 Aspartame 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)
Aspartame is also known as what? Saccharin -13.26414374266086 Aspartame 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)
Aspartame is also known as what? a toxic poison unfit for human consumption -13.276161604279048 Aspartame 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)
Aspartame is also known as what? a multipotential carcinogen even in small amounts -13.276161604279048 Aspartame 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)
Aspartame is also known as what? a potent brain toxin and endocrine disrupter -13.299847867991659 Aspartame 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)
Aspartame is also known as what? Lyme disease and the Lyme treponema -13.309283626270215 Aspartame 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)
Aspartame is also known as what? mass poisoning of the American public and more -13.3190191566379 Aspartame 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)
Aspartame is also known as what? a significant conversion -13.349568866877258 Aspartame 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)
Aspartame is also known as what? 160 to 220 times sweeter than table sugar -13.356232826773486 Aspartame 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)
Aspartame is also known as what? phenylalanine -13.363626653835176 Aspartame 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)
Aspartame is also known as what? a cause -13.372280924749887 Aspartame 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)
Aspartame is also known as what? 30 centigrad -13.37947251673491 Aspartame 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)
Aspartame is also known as what? a life -13.385272649868078 Aspartame 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)
Aspartame is also known as what? a world aspartame expert -13.40194794225491 Aspartame 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)
Aspartame is also known as what? toxic -13.405311083357 Aspartame 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)
Aspartame is also known as what? names -13.415188718691057 Aspartame 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)
Aspartame is also known as what? cardiac disease -13.416726309946934 Aspartame 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)
Aspartame is also known as what? 86 degrees Fahrenheit -13.42256503501658 Aspartame 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)
Aspartame is also known as what? sale -13.435133017634751 Aspartame 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)
Aspartame is also known as what? poison -13.436754242254896 Aspartame 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)
Aspartame is also known as what? deadly -13.436939748125768 Aspartame 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)
Aspartame is also known as what? a harmful chemical -13.442706573001413 Aspartame 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)
Aspartame is also known as what? harmful -13.443658426893744 Aspartame 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)
Aspartame is also known as what? fine -13.458233078434377 Aspartame 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)
Aspartame is also known as what? Searle -13.458965272567763 Aspartame 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)
Aspartame is also known as what? controversial -13.463601913915458 Aspartame 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)
Aspartame is also known as what? unstable -13.471815691179899 Aspartame 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)
Aspartame is also known as what? helpful -13.473245334945194 Aspartame 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)
Aspartame is also known as what? safe -13.473245334945194 Aspartame 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)
Aspartame is also known as what? sweet -13.473245334945194 Aspartame 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)
Aspartame is also known as what? symptoms -13.474579366441603 Aspartame 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)
Aspartame is also known as what? aspartame -13.479425505621183 Aspartame 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)
Aspartame is also known as what? available -13.48400303277941 Aspartame 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)
Aspartame is also known as what? stable -13.486290515370074 Aspartame 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)
Aspartame is also known as what? Neotame -13.498239283625521 Aspartame 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)
Aspartame is also known as what? everywhere -13.506691634234027 Aspartame 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)
Aspartame is also known as what? genotoxic -13.506691634234027 Aspartame 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)
Aspartame is also known as what? a Maillard reaction -13.558843189729215 Aspartame 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)
Aspartame is also known as what? further investigation -13.580553775833522 Aspartame 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)
Aspartame is also known as what? a sludge -13.586181458801374 Aspartame 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)
Aspartame is also known as what? death -13.591124399782386 Aspartame 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)
Aspartame is also known as what? straight to the brain -13.610952362298637 Aspartame 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)
Aspartame is also known as what? Cincinnati -13.666756192940705 Aspartame 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)
Aspartame is also known as what? The FDA -13.674043017680898 Aspartame 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)
Aspartame is also known as what? 200 studies -13.678473409985177 Aspartame 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)
Aspartame is also known as what? FL -13.68935078761925 Aspartame 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)
Aspartame is also known as what? the cell -13.724788103686011 Aspartame 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)
Aspartame is also known as what? millions -13.734787378610937 Aspartame 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)
Aspartame is also known as what? chromosomal damage -13.804652728442738 Aspartame 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)
Aspartame is also known as what? 86o F. -13.810048654931993 Aspartame 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)
Aspartame is also known as what? great toxicity -13.835741864891048 Aspartame 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)
Aspartame is also known as what? health problems -13.847508390053736 Aspartame 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)
Aspartame is also known as what? serious disease -13.847508390053736 Aspartame 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)
Aspartame is also known as what? brain lesions -13.88338925792959 Aspartame 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)
Aspartame is also known as what? Monsanto -13.894869834826219 Aspartame 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)
Aspartame is also known as what? leukemia -13.904973647100492 Aspartame 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)
Aspartame is also known as what? Deaths -13.905538869499168 Aspartame 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)
Aspartame is also known as what? an epidemic of diabetes -13.911172658859506 Aspartame 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)
Aspartame is also known as what? a spike in insulin levels -13.911172658859506 Aspartame 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)
Aspartame is also known as what? adverse changes or health problems -13.922740018070428 Aspartame 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)
Aspartame is also known as what? lesions -13.93536999267891 Aspartame 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)
Aspartame is also known as what? an epidemic of obesity and diabetes -13.941822318251138 Aspartame 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)
Aspartame is also known as what? tumors -13.944004586380172 Aspartame 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)
Aspartame is also known as what? brain tumors or brain cancer in animals -13.962223437115089 Aspartame 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)
Aspartame is also known as what? participants -13.975267977567515 Aspartame 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)
Aspartame is also known as what? headaches -13.994929233977087 Aspartame 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)
Aspartame is also known as what? fair -14.001952995212173 Aspartame 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)
Aspartame is also known as what? the devil -14.07167733290325 Aspartame 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)
Aspartame is also known as what? years -14.124206676595701 Aspartame 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)
Aspartame is also known as what? the highest incidence -14.133538814099389 Aspartame 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)
Aspartame is also known as what? the market -14.144884852470076 Aspartame 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)
Aspartame is also known as what? the disappearance -14.2448123501464 Aspartame 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)
Aspartame is also known as what? the market years -14.374541588193493 Aspartame 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)
Aspartame is also known as what? the product of genetic engineering -14.378533887102668 Aspartame 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)
Aspartame is also known as what? the body -14.421554287972588 Aspartame 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)
Aspartame is also known as what? the brain -14.507089268273011 Aspartame 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)
Aspartame is also known as what? the brains -14.507474128974719 Aspartame 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)
Aspartame is also known as what? the cell?s energy source -14.527963072096963 Aspartame 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)
Aspartame is also known as what? Merck -14.568441007572526 Aspartame 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)
Aspartame is also known as what? the behavior -14.572677075071166 Aspartame 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)
Aspartame is also known as what? the pink -14.596472832118689 Aspartame 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)
Aspartame is also known as what? problems -14.60010577903887 Aspartame 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)
Aspartame is also known as what? the gut right -14.613649262461578 Aspartame 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)
Aspartame is also known as what? the blood brain barrier -14.630070928220434 Aspartame 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)
Aspartame is also known as what? 86 degrees -14.646316207855747 Aspartame 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)
Aspartame is also known as what? 85 degrees -14.703767969453462 Aspartame 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)
Aspartame is also known as what? the FDA -15.05310802586057 Aspartame 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)
Aspartame is also known as what? the most tested additive in history -15.055186032062853 Aspartame 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)
Aspartame is also known as what? the single focus in Sweet Misery -15.076470697084327 Aspartame 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)
Aspartame is also known as what? the substance name for the sugar substitutes -15.088133459244444 Aspartame 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)
Aspartame is also known as what? Attorney James Turner -15.113222283406367 Aspartame 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)
Aspartame is also known as what? the brain to cease production of serotonin -15.121598410653153 Aspartame 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)
Aspartame is also known as what? Dr. John Olney -15.126834917256188 Aspartame 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)
Aspartame is also known as what? the most tested food additive in history -15.130564912125124 Aspartame 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)
Aspartame is also known as what? Food -15.138671255294895 Aspartame 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)
Aspartame is also known as what? the first South African retailer -17.005589857981857 Aspartame 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)
What countries have Rhodes Scholars come from? Australia -3.2474246255901003 What 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)
What countries have Rhodes Scholars come from? Australia's -3.654204484345242 What 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)
What countries have Rhodes Scholars come from? Australia/NZ -12.001006203161731 What 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)
What countries have Rhodes Scholars come from? Carolina's -12.65637398361742 What 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)
What countries have Rhodes Scholars come from? Carolinas -12.710651993545644 What 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)
What countries have Rhodes Scholars come from? Carolina -12.912195671028 What 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)
What countries have Rhodes Scholars come from? australia -14.510759249617752 What 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)
On what date did the disaster occur? the Philippine island -4.449582943097699 On 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)
On what date did the disaster occur? the Housatonic line -4.488552239896154 On 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)
On what date did the disaster occur? the Riverside area -4.5691567810543985 On 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)
On what date did the disaster occur? the Japanese archipelago -4.66169811268249 On 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)
On what date did the disaster occur? the Costa Concordia -4.672803584465823 On 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)
On what date did the disaster occur? urban forestry -4.673986655317394 On 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)
On what date did the disaster occur? the United States -4.746523237581372 On 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)
On what date did the disaster occur? the Cape -4.776115073478792 On 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)
On what date did the disaster occur? Lake Huron -4.8311834530727005 On 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)
On what date did the disaster occur? January 2 -4.900150835594953 On 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)
On what date did the disaster occur? Interstate 10 -4.914968095923475 On 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)
On what date did the disaster occur? the Afghan people -5.039212931652478 On 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)
On what date did the disaster occur? international waters -5.047472744329748 On 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)
On what date did the disaster occur? the Chinese people -5.050899780694786 On 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)
On what date did the disaster occur? New Hamburg -5.06752366876302 On 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)
On what date did the disaster occur? such a gradient -5.093771260017944 On 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)
On what date did the disaster occur? Microsoft Exchange server -5.109725072954323 On 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)
On what date did the disaster occur? the Indian leaders -5.162800624803013 On 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)
On what date did the disaster occur? the 15th -5.1757630906734295 On 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)
On what date did the disaster occur? the Tohoku region -5.189282333924692 On 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)
On what date did the disaster occur? CRA loans -5.192762654250276 On 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)
On what date did the disaster occur? Mohave County -5.19931911745566 On 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)
On what date did the disaster occur? the 20th -5.1999343021591455 On 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)
On what date did the disaster occur? territorial waters -5.202207314506562 On 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)
On what date did the disaster occur? human karma -5.207931787236899 On 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)
On what date did the disaster occur? Southeast Asia -5.2755365962660425 On 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)
On what date did the disaster occur? July 18 -5.278041694517063 On 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)
On what date did the disaster occur? floor failure -5.307239444920774 On 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)
On what date did the disaster occur? New Zealand -5.308943732476954 On 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)
On what date did the disaster occur? Dow Chemical -5.317244700135611 On 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)
On what date did the disaster occur? the Japanese people -5.3293778289689815 On 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)
On what date did the disaster occur? the PUP -5.336546715821077 On 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)
On what date did the disaster occur? the Republic -5.362472509655581 On 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)
On what date did the disaster occur? the Japanese groups -5.376397807152841 On 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)
On what date did the disaster occur? complex systems -5.392455727884328 On 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)
On what date did the disaster occur? Jan . 12 , 2010 -5.395717782905346 On 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)
On what date did the disaster occur? June 5 , 1976 -5.397249955960236 On 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)
On what date did the disaster occur? Japanese people -5.404304973264043 On 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)
On what date did the disaster occur? manufacturing plants -5.407915105252096 On 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)
On what date did the disaster occur? the Ukraine -5.412871766945625 On 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)
On what date did the disaster occur? decorating combs -5.416060363344872 On 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)
On what date did the disaster occur? Port au Prince -5.4239099909472115 On 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)
On what date did the disaster occur? Jackson Hole -5.424964394515853 On 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)
On what date did the disaster occur? a clear day -5.427605789427632 On 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)
On what date did the disaster occur? Tuesday afternoon -5.448826526565425 On 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)
On what date did the disaster occur? the North Sea Piper Alpha rig -5.4592548306443405 On 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)
On what date did the disaster occur? December 22 , 2008 -5.463564779279199 On 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)
On what date did the disaster occur? Let?s -5.467470436918694 On 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)
On what date did the disaster occur? Warren County -5.469785974166262 On 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)
On what date did the disaster occur? Tur `Abdin -5.492278325129551 On 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)
On what date did the disaster occur? a periodic basis -5.495992334419171 On 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)
On what date did the disaster occur? 26 April 1986 -5.519070399984072 On 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)
On what date did the disaster occur? April 26 1986 -5.5224138068940904 On 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)
On what date did the disaster occur? New York -5.527988253738464 On 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)
On what date did the disaster occur? helping Haitians -5.559065951664043 On 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)
On what date did the disaster occur? english language -5.563076364135158 On 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)
On what date did the disaster occur? Stephens Media -5.5662130389396065 On 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)
On what date did the disaster occur? a project site?contact -5.566728195148206 On 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)
On what date did the disaster occur? urban areas -5.569538161739265 On 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)
On what date did the disaster occur? South East Asia -5.576798895813421 On 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)
On what date did the disaster occur? the Meuse Valley -5.577159992693748 On 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)
On what date did the disaster occur? April 26 , 1986 -5.577501084308237 On 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)
On what date did the disaster occur? NYC -5.583757250264638 On 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)
On what date did the disaster occur? BP -5.586837129433285 On 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)
On what date did the disaster occur? October 5 , 1930 -5.595310239516027 On 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)
On what date did the disaster occur? October 7 , 2010 -5.603268022530486 On 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)
On what date did the disaster occur? 2012 -5.616795149366839 On 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)
On what date did the disaster occur? September 30 , 1879 -5.6236045732671816 On 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)
On what date did the disaster occur? September -5.625409003341349 On 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)
On what date did the disaster occur? the 26th April 1986 -5.639756391745698 On 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)
On what date did the disaster occur? hydrogen peroxide -5.653993743809598 On 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)
On what date did the disaster occur? western Hungary -5.66816430020528 On 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)
On what date did the disaster occur? hillside communities -5.675138191352289 On 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)
On what date did the disaster occur? 3 May 1945 -5.689271462634646 On 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)
On what date did the disaster occur? BMW -5.69883241559447 On 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)
On what date did the disaster occur? Waco -5.702609244281291 On 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)
On what date did the disaster occur? more than 85 percent -5.703143789914343 On 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)
On what date did the disaster occur? New Yorkers -5.704018086842863 On 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)
On what date did the disaster occur? any part -5.704566978815167 On 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)
On what date did the disaster occur? Raph -5.705911169324156 On 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)
On what date did the disaster occur? the Courland -5.7099433178542895 On 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)
On what date did the disaster occur? Tuesday -5.711176190995911 On 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)
On what date did the disaster occur? Aug. 29 , 2005 -5.7151832596107255 On 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)
On what date did the disaster occur? an island -5.716891887976281 On 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)
On what date did the disaster occur? any -5.721287229248482 On 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)
On what date did the disaster occur? different regions -5.729958486052406 On 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)
On what date did the disaster occur? a tremendous scale -5.736037225814808 On 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)
On what date did the disaster occur? coastal areas -5.739391614172785 On 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)
On what date did the disaster occur? Mouse Island -5.752499170358837 On 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)
On what date did the disaster occur? a Dutch government -5.759626386979023 On 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)
On what date did the disaster occur? Monday -5.773562016917484 On 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)
On what date did the disaster occur? Local governments -5.780895283811277 On 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)
On what date did the disaster occur? earth -5.789120132622706 On 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)
On what date did the disaster occur? a big scale -5.790365632422311 On 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)
On what date did the disaster occur? certain terrain types -5.795178212574028 On 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)
On what date did the disaster occur? the Atlantic -5.812482411504389 On 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)
On what date did the disaster occur? New Orleans -5.827898563218403 On 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)
On what date did the disaster occur? April 20th -5.828442880694817 On 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)
On what date did the disaster occur? July 28 , 1976 -5.834476767642612 On 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)
On what date did the disaster occur? 1937 -5.8452372986881285 On 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)
On what date did the disaster occur? the States -5.846071699190841 On 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)
On what date did the disaster occur? Prince William Sound -5.848094293531336 On 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)
On what date did the disaster occur? calm seas -5.859394372873296 On 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)
On what date did the disaster occur? Iraq -5.862023544863483 On 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)
On what date did the disaster occur? conflict zones -5.866124930997012 On 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)
On what date did the disaster occur? December 2 , 1959 ? i .e -5.8695161828678035 On 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)
On what date did the disaster occur? four villages -5.8831036630341735 On 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)
On what date did the disaster occur? May -5.887743341090969 On 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)
On what date did the disaster occur? a much larger scale -5.891591466967757 On 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)
On what date did the disaster occur? Max -5.896224533457355 On 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)
On what date did the disaster occur? 1902 -5.901984970183839 On 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)
On what date did the disaster occur? an area -5.903275819381619 On 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)
On what date did the disaster occur? 1989 -5.9116166901343465 On 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)
On what date did the disaster occur? the Northeast -5.915737812303883 On 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)
On what date did the disaster occur? the Judiciary -5.923854652014038 On 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)
On what date did the disaster occur? local communities -5.926021937236987 On 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)
On what date did the disaster occur? Asia -5.92713484053662 On 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)
On what date did the disaster occur? a local , national or global scale -5.934291634238648 On 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)
On what date did the disaster occur? Rapu-Rapu island -5.938518494078377 On 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)
On what date did the disaster occur? 1999 -5.948688425173802 On 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)
On what date did the disaster occur? numerous occasions -5.95021977992922 On 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)
On what date did the disaster occur? the Middle East -5.9502235036609115 On 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)
On what date did the disaster occur? a worldwide scale -5.9509902128738545 On 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)
On what date did the disaster occur? an effort -5.964121167947066 On 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)
On what date did the disaster occur? CA ARCserve D2D servers -5.964317735124443 On 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)
On what date did the disaster occur? a smaller scale -5.966905778902772 On 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)
On what date did the disaster occur? less developed regions -5.998790550498391 On 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)
On what date did the disaster occur? the Japanese -6.000964974006872 On 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)
On what date did the disaster occur? land and sea -6.001454038291154 On 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)
On what date did the disaster occur? 100 -6.0059280839799 On 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)
On what date did the disaster occur? the Gulf -6.010741320480681 On 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)
On what date did the disaster occur? ?the system ? -6.013758285042497 On 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)
On what date did the disaster occur? young children -6.014976658707384 On 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)
On what date did the disaster occur? dates -6.01718798755506 On 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)
On what date did the disaster occur? August 5 , 2010 -6.0191380298245605 On 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)
On what date did the disaster occur? H-GAC -6.019190938885459 On 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)
On what date did the disaster occur? coal-fired power stations -6.021052262760893 On 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)
On what date did the disaster occur? 7 February 1967 -6.022936111758429 On 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)
On what date did the disaster occur? security drills -6.029123799231814 On 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)
On what date did the disaster occur? war -6.030591130855935 On 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)
On what date did the disaster occur? consequence -6.0366823432081835 On 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)
On what date did the disaster occur? whole villages -6.037873301383342 On 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)
On what date did the disaster occur? musicians -6.038489855980634 On 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)
On what date did the disaster occur? 1644 -6.03936858484653 On 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)
On what date did the disaster occur? a more regular basis -6.047693647202903 On 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)
On what date did the disaster occur? The GOP -6.049255450879302 On 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)
On what date did the disaster occur? 1957 -6.051478990081329 On 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)
On what date did the disaster occur? disabilities -6.054366282039295 On 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)
On what date did the disaster occur? 150 youth -6.057261781219649 On 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)
On what date did the disaster occur? unexpected places -6.058651583874912 On 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)
On what date did the disaster occur? 1.5 million people -6.065120951594405 On 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)
On what date did the disaster occur? about non-Japanese regions -6.065312515307349 On 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)
On what date did the disaster occur? 386.400 people -6.0709313544169285 On 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)
On what date did the disaster occur? 417,000 people -6.0709313544169285 On 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)
On what date did the disaster occur? each other -6.079458488394602 On 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)
On what date did the disaster occur? individual schools -6.084421661259081 On 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)
On what date did the disaster occur? Help children -6.085865481344278 On 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)
On what date did the disaster occur? a long time -6.093882400748859 On 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)
On what date did the disaster occur? 1923 -6.10312920470618 On 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)
On what date did the disaster occur? Cuba -6.105839363586356 On 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)
On what date did the disaster occur? Part 1 -6.121175895375393 On 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)
On what date did the disaster occur? line -6.125876672282289 On 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)
On what date did the disaster occur? recent years -6.127512642045552 On 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)
On what date did the disaster occur? no Canadian media outlet -6.12799386992803 On 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)
On what date did the disaster occur? March 2011 -6.129288394721432 On 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)
On what date did the disaster occur? each generation -6.133463353264924 On 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)
On what date did the disaster occur? half the world -6.138715150600547 On 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)
On what date did the disaster occur? 1984 -6.139506537848473 On 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)
On what date did the disaster occur? twang -6.141777785241424 On 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)
On what date did the disaster occur? as many as 50 % -6.142513232534416 On 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)
On what date did the disaster occur? December 1987 -6.153653678372903 On 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)
On what date did the disaster occur? the Deaf -6.159828721304226 On 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)
On what date did the disaster occur? time -6.168116506357713 On 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)
On what date did the disaster occur? 1986 -6.168620390655693 On 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)
On what date did the disaster occur? successive kinds -6.184742608512019 On 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)
On what date did the disaster occur? chile -6.185292124002283 On 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)
On what date did the disaster occur? Food -6.195136993806326 On 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)
On what date did the disaster occur? large part -6.19636515637646 On 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)
On what date did the disaster occur? Japan -6.197240742419725 On 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)
On what date did the disaster occur? May 1910 -6.1999596346209165 On 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)
On what date did the disaster occur? two players -6.203522884744503 On 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)
On what date did the disaster occur? Louisiana -6.2051985254341835 On 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)
On what date did the disaster occur? Alabama -6.206887396239676 On 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)
On what date did the disaster occur? Earth?s populations -6.211946051332375 On 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)
On what date did the disaster occur? a floor -6.2157839032591875 On 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)
On what date did the disaster occur? late October and early November 2007 -6.216069173597814 On 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)
On what date did the disaster occur? Kie Fallis -6.217142354621143 On 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)
On what date did the disaster occur? Assisi parishioners -6.218185814311024 On 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)
On what date did the disaster occur? 13 provinces -6.2229695973723835 On 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)
On what date did the disaster occur? residents -6.224072742716561 On 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)
On what date did the disaster occur? Irish wills -6.227060086550398 On 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)
On what date did the disaster occur? regulations -6.233390413455289 On 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)
On what date did the disaster occur? April 1986 -6.240272687907348 On 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)
On what date did the disaster occur? a place -6.241488647720615 On 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)
On what date did the disaster occur? children -6.247772339274519 On 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)
On what date did the disaster occur? young specialists -6.25020831360224 On 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)
On what date did the disaster occur? depositors or borrowers -6.250435749196544 On 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)
On what date did the disaster occur? defaulted borrowers -6.2587661676742865 On 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)
On what date did the disaster occur? Bagong Silang -6.260605988254653 On 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)
On what date did the disaster occur? specimens -6.261684747206443 On 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)
On what date did the disaster occur? winter -6.2632956535104345 On 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)
On what date did the disaster occur? April 20 -6.263348185698563 On 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)
On what date did the disaster occur? MySpace -6.2636483505534954 On 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)
On what date did the disaster occur? 200,000 people -6.272763514293783 On 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)
On what date did the disaster occur? the Aged -6.276115587352464 On 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)
On what date did the disaster occur? 1347 -6.277301824639945 On 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)
On what date did the disaster occur? real time -6.280820738446793 On 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)
On what date did the disaster occur? once offered protection -6.2811213585238015 On 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)
On what date did the disaster occur? Palm Beach -6.2853344712647 On 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)
On what date did the disaster occur? 1868 -6.2854919904651965 On 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)
On what date did the disaster occur? late July -6.286154089538541 On 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)
On what date did the disaster occur? the North End -6.286803596049426 On 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)
On what date did the disaster occur? Korean carmakers -6.2873107160337725 On 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)
On what date did the disaster occur? USDA -6.289137236192966 On 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)
On what date did the disaster occur? a magnitude -6.289598415303532 On 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)
On what date did the disaster occur? industry -6.293952348666821 On 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)
On what date did the disaster occur? CINCPACFLT -6.296989527679711 On 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)
On what date did the disaster occur? the Gulf of Mexico -6.298370629326308 On 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)
On what date did the disaster occur? governments -6.304360954074535 On 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)
On what date did the disaster occur? 950,000 people -6.306637863992694 On 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)
On what date did the disaster occur? a reservation -6.311828555219099 On 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)
On what date did the disaster occur? witness -6.316614558122388 On 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)
On what date did the disaster occur? iPad tablets -6.317373422587121 On 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)
On what date did the disaster occur? economic activities -6.31750027439554 On 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)
On what date did the disaster occur? scam people -6.31817420691244 On 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)
On what date did the disaster occur? British families -6.3191418480916095 On 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)
On what date did the disaster occur? 1967 -6.325123386336996 On 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)
On what date did the disaster occur? Three attempts -6.3263634609589445 On 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)
On what date did the disaster occur? 14 million people -6.329556706718581 On 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)
On what date did the disaster occur? the ship -6.331018111899781 On 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)
On what date did the disaster occur? April 2010 -6.333238688551951 On 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)
On what date did the disaster occur? industry employees -6.338613845099218 On 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)
On what date did the disaster occur? more than 90,000 people -6.339428046061922 On 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)
On what date did the disaster occur? 99,300 cattle or sheep -6.339428046061922 On 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)
On what date did the disaster occur? SLA members -6.341674190813631 On 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)
On what date did the disaster occur? Haiti -6.343708168009654 On 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)
On what date did the disaster occur? 28 December 1879 -6.34581482749604 On 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)
On what date did the disaster occur? 20 people -6.346548752540442 On 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)
On what date did the disaster occur? Saturday -6.349687149960524 On 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)
On what date did the disaster occur? December -6.3502069397943455 On 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)
On what date did the disaster occur? Baze -6.350868039038781 On 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)
On what date did the disaster occur? women and children -6.3520860656099405 On 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)
On what date did the disaster occur? takeoff -6.355709117813001 On 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)
On what date did the disaster occur? five turtle species -6.357162337659417 On 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)
On what date did the disaster occur? Texas -6.36048265038969 On 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)
On what date did the disaster occur? Ogoni-land -6.3677223798130775 On 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)
On what date did the disaster occur? Dec 2009 -6.370114887298335 On 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)
On what date did the disaster occur? Somalia -6.376197934882336 On 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)
On what date did the disaster occur? Van -6.387025138513902 On 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)
On what date did the disaster occur? confidence -6.392482891192342 On 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)
On what date did the disaster occur? employees -6.393280601808498 On 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)
On what date did the disaster occur? consumers -6.395526263911212 On 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)
On what date did the disaster occur? the public -6.402199888643847 On 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)
On what date did the disaster occur? volunteers -6.402925712279018 On 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)
On what date did the disaster occur? The Peruvian Trading Company -6.4031406102416835 On 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)
On what date did the disaster occur? 12 provinces -6.404024849345074 On 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)
On what date did the disaster occur? ten districts -6.407361689250599 On 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)
On what date did the disaster occur? Hvalur?s fin whale meat -6.414831959765049 On 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)
On what date did the disaster occur? Kansas -6.419813767974819 On 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)
On what date did the disaster occur? pets -6.422351624797711 On 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)
On what date did the disaster occur? 250,000 people -6.431277477494636 On 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)
On what date did the disaster occur? individuals -6.435208012549394 On 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)
On what date did the disaster occur? Tabasco -6.437889958598934 On 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)
On what date did the disaster occur? close friends -6.439203837624996 On 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)
On what date did the disaster occur? the New Orleans -6.447411887950081 On 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)
On what date did the disaster occur? Ten vehicles -6.451771494729535 On 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)
On what date did the disaster occur? thirteen million -6.453973880923336 On 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)
On what date did the disaster occur? Palestinians -6.464449759866913 On 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)
On what date did the disaster occur? commercial bank balance sheets -6.464871148821558 On 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)
On what date did the disaster occur? 2500 Gulf residents -6.4708929852004555 On 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)
On what date did the disaster occur? 115 Foundation grant recipients -6.4714851953946155 On 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)
On what date did the disaster occur? surrounding areas -6.472742017258995 On 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)
On what date did the disaster occur? More people -6.4773493781267515 On 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)
On what date did the disaster occur? 500 and 1,000 people -6.4780097827511876 On 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)
On what date did the disaster occur? Comoros -6.48010452523228 On 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)
On what date did the disaster occur? more than 18 million people -6.481378872342342 On 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)
On what date did the disaster occur? Minnesota -6.48896142851728 On 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)
On what date did the disaster occur? Mexico -6.48896142851728 On 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)
On what date did the disaster occur? a hand -6.497657584707218 On 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)
On what date did the disaster occur? More than 300 churches -6.500663715546867 On 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)
On what date did the disaster occur? more than 200,000 people -6.5017154230790375 On 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)
On what date did the disaster occur? Pakistan -6.50230887367932 On 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)
On what date did the disaster occur? Twenty-two provinces -6.504231206433298 On 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)
On what date did the disaster occur? 36 districts -6.507537353759073 On 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)
On what date did the disaster occur? Myanmar -6.511864702490016 On 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)
On what date did the disaster occur? particular -6.5121332307883995 On 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)
On what date did the disaster occur? auctions -6.5251756676801005 On 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)
On what date did the disaster occur? Four million people -6.525421250991341 On 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)
On what date did the disaster occur? life and livelihood -6.530544183777136 On 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)
On what date did the disaster occur? Libreville -6.537804286777925 On 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)
On what date did the disaster occur? a million people -6.538651767844591 On 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)
On what date did the disaster occur? the Gulf Stream Current -6.540355625221823 On 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)
On what date did the disaster occur? Tokyo -6.553421990364505 On 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)
On what date did the disaster occur? Hungary -6.55375369312586 On 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)
On what date did the disaster occur? India -6.55695888788896 On 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)
On what date did the disaster occur? Curly -6.571990168299007 On 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)
On what date did the disaster occur? California -6.589531536230647 On 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)
On what date did the disaster occur? Russia -6.589659891769246 On 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)
On what date did the disaster occur? site -6.593562156149684 On 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)
On what date did the disaster occur? Montana -6.593997428710394 On 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)
On what date did the disaster occur? percent -6.603070199277935 On 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)
On what date did the disaster occur? a year -6.609091345206126 On 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)
On what date did the disaster occur? hull design -6.611208833054622 On 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)
On what date did the disaster occur? students -6.62179584371064 On 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)
On what date did the disaster occur? Adam -6.6268006418415055 On 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)
On what date did the disaster occur? Whitehaven -6.648915386538014 On 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)
On what date did the disaster occur? the workplace -6.659551233139469 On 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)
On what date did the disaster occur? Italy -6.666013001410367 On 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)
On what date did the disaster occur? the earth -6.666561763064014 On 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)
On what date did the disaster occur? a building -6.674103126594012 On 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)
On what date did the disaster occur? wildlife -6.677771399263447 On 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)
On what date did the disaster occur? developing countries -6.678017901816398 On 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)
On what date did the disaster occur? Kauai -6.681203385031589 On 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)
On what date did the disaster occur? an urban area -6.690317495703825 On 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)
On what date did the disaster occur? Fishermen -6.698980278608079 On 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)
On what date did the disaster occur? Indonesia -6.699612506270396 On 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)
On what date did the disaster occur? Germany and japan -6.703616076578493 On 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)
On what date did the disaster occur? Japan and Thailand -6.703616076578493 On 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)
On what date did the disaster occur? October -6.709338662087049 On 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)
On what date did the disaster occur? connections -6.710968914208362 On 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)
On what date did the disaster occur? Australia -6.71265455445475 On 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)
On what date did the disaster occur? the island -6.716469085745965 On 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)
On what date did the disaster occur? June -6.717713943909247 On 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)
On what date did the disaster occur? developed countries -6.718282828895253 On 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)
On what date did the disaster occur? June 14th -6.7224320047476676 On 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)
On what date did the disaster occur? Belarus -6.724007611145275 On 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)
On what date did the disaster occur? mothers -6.725247022898608 On 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)
On what date did the disaster occur? Southampton -6.726347823979141 On 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)
On what date did the disaster occur? the planet -6.727611791896729 On 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)
On what date did the disaster occur? April -6.727673644924244 On 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)
On what date did the disaster occur? Vermont -6.7355021924664165 On 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)
On what date did the disaster occur? the Galacian coast -6.736262461938385 On 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)
On what date did the disaster occur? the Republican watch -6.741194834788075 On 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)
On what date did the disaster occur? March 11 -6.7421699945039775 On 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)
On what date did the disaster occur? sedation -6.7483678286215625 On 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)
On what date did the disaster occur? Romania -6.753125483048105 On 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)
On what date did the disaster occur? Meknes -6.757244416869499 On 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)
On what date did the disaster occur? Florida -6.757722036898944 On 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)
On what date did the disaster occur? the Philippines -6.7620350102520135 On 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)
On what date did the disaster occur? the Earth -6.763207986055724 On 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)
On what date did the disaster occur? an economy -6.780083542932331 On 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)
On what date did the disaster occur? the U.S. -6.780391816187363 On 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)
On what date did the disaster occur? Afghanistan -6.785966017883716 On 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)
On what date did the disaster occur? Chernobyl -6.797033331941794 On 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)
On what date did the disaster occur? Sichuan -6.805483049564347 On 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)
On what date did the disaster occur? screams -6.811871608963521 On 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)
On what date did the disaster occur? Rikuzentakata -6.812934629907545 On 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)
On what date did the disaster occur? Bhopal -6.8319300751051095 On 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)
On what date did the disaster occur? warning -6.838397517210188 On 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)
On what date did the disaster occur? Jiangxi -6.847026022860187 On 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)
On what date did the disaster occur? Tohoshinki -6.859861709720458 On 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)
On what date did the disaster occur? victims -6.884757898022489 On 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)
On what date did the disaster occur? Gray -6.904032189170236 On 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)
On what date did the disaster occur? renters -6.906053498770577 On 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)
On what date did the disaster occur? Persuasion -6.9088695087049885 On 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)
On what date did the disaster occur? the Reagan years -6.912376851181441 On 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)
On what date did the disaster occur? companies -6.923699321291338 On 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)
On what date did the disaster occur? September 11 -6.934977655775833 On 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)
On what date did the disaster occur? part -6.937884578126118 On 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)
On what date did the disaster occur? Friday -6.941645524794993 On 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)
On what date did the disaster occur? the Garden of Eden -6.942996483688253 On 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)
On what date did the disaster occur? the amulet -6.947666464973385 On 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)
On what date did the disaster occur? Adobe -6.95933375460857 On 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)
On what date did the disaster occur? April 15 , 1989 -6.965684192643375 On 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)
On what date did the disaster occur? news -6.971120114921354 On 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)
On what date did the disaster occur? records -6.97317764488034 On 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)
On what date did the disaster occur? members -6.983064085246025 On 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)
On what date did the disaster occur? Sabbath -6.98763165950211 On 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)
On what date did the disaster occur? history -6.997710643997572 On 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)
On what date did the disaster occur? Guatemala -6.999992220234808 On 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)
On what date did the disaster occur? the night -7.000965990354336 On 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)
On what date did the disaster occur? England -7.022633167668367 On 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)
On what date did the disaster occur? the cusp -7.023326096221225 On 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)
On what date did the disaster occur? successive kinds of turbulence -7.028237811234516 On 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)
On what date did the disaster occur? terms -7.030425962456505 On 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)
On what date did the disaster occur? the Space Pirate -7.031311359056607 On 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)
On what date did the disaster occur? April 20 , 2010 -7.03290207460995 On 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)
On what date did the disaster occur? earnest -7.07852241324718 On 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)
On what date did the disaster occur? 2008 -7.079202319103705 On 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)
On what date did the disaster occur? 2011 -7.087765471889056 On 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)
On what date did the disaster occur? King County -7.090319361069244 On 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)
On what date did the disaster occur? the absence -7.091586937829587 On 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)
On what date did the disaster occur? the county -7.097284360731464 On 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)
On what date did the disaster occur? the future -7.105116927369245 On 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)
On what date did the disaster occur? 2010-11 -7.106098909526249 On 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)
On what date did the disaster occur? 2010 -7.113467841984049 On 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)
On what date did the disaster occur? slow motion -7.124088279920293 On 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)
On what date did the disaster occur? facilities -7.127282943469433 On 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)
On what date did the disaster occur? Oct. 4 -7.128855566018536 On 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)
On what date did the disaster occur? costs -7.1314858133660755 On 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)
On what date did the disaster occur? the Balkans -7.131629240377255 On 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)
On what date did the disaster occur? the form -7.1381086567756995 On 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)
On what date did the disaster occur? March -7.145164701718648 On 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)
When was the first camera invented? 1975 3.029787366808575 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (the first digital camera, was invented in, 1975) -> 1975 (3009ms)
When was the first camera invented? 1888 2.9980168830001603 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (The first cheap camera, was invented in, 1888) -> 1888 (3009ms)
When was the first camera invented? 1685 2.6271243598410527 When 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)
When was the first camera invented? 1892 0.7983009409271902 When 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)
When was the first camera invented? 1991 0.7534993710216384 When 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)
When was the first camera invented? 1996 0.7081773366921067 When 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)
When was the first camera invented? 1951 0.6877762178281546 When 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)
When was the first camera invented? November 2000 -0.5677571770606078 When 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)
When was the first camera invented? 1987 -0.8975530711982707 When 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)
When was the first camera invented? 1988 -1.4941535496555454 When 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)
When was the first camera invented? 1995 -1.5220258915900562 When 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)
When was the first camera invented? 2006 -1.9279125764982652 When 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)
When was the first camera invented? February 2012 -2.2582763662022236 When 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)
When was the first camera invented? q1 2008 -2.7387107338648726 When 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)
When was the first camera invented? 1934 as well as -2.7727205410109343 When 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)
When was the first camera invented? October 1958 -3.044104729074089 When 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)
When was the first camera invented? 1981 -3.2025716800575292 When 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)
When was the first camera invented? the 80s -3.254384475560015 When 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)
When was the first camera invented? the laboratory -3.3101493630917913 When 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)
When was the first camera invented? 1929 -3.4735356707949627 When 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)
When was the first camera invented? 1946 -3.6454479198237 When 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)
When was the first camera invented? 1963 -3.671150289918693 When 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)
When was the first camera invented? the year 1988 -4.154992012069372 When 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)
When was the first camera invented? France -4.290360067248156 When 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)
When was the first camera invented? 1936 -4.812922841258395 When 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)
When was the first camera invented? Ann Arbor -4.976300319946641 When 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)
When was the first camera invented? Japan -5.6792436357742355 When 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)
When was the first camera invented? 1920 -5.854953780736266 When 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)
When was the first camera invented? around 1964 -6.28761800384569 When 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)
When was the first camera invented? Leningrad -6.344219879330578 When 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)
When was the first camera invented? Illinois -6.419347020190124 When 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)
When was the first camera invented? the 1940?s -6.859498900582878 When 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)
When was the first camera invented? the public -6.9657112891152435 When 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)
When was the first camera invented? way -7.409306176908764 When 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)
When was the first camera invented? the year -7.77845835249474 When 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)
When was the first camera invented? Manchester -8.419851809953201 When 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)
When was the first camera invented? Sir David Brewster -8.56202261113873 When 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)
When was the first camera invented? the early 1960s -8.823647583956555 When 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)
When was the first camera invented? the market -8.91358830944103 When 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)
When was the first camera invented? the early 1940s -8.928012350282746 When 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)
When was the first camera invented? the Middle Ages -9.12135923345616 When 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)
When was the first camera invented? the west -9.14641797054617 When 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)
When was the first camera invented? the 1970s -9.14729885201864 When 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)
When was the first camera invented? Axis -9.361353266824608 When 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)
When was the first camera invented? Louis Boutan -9.413487481978764 When 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)
When was the first camera invented? an electrical engineer -9.67578029182016 When 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)
When was the first camera invented? partnership -9.755091719516482 When 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)
When was the first camera invented? Eastman Kodak Co. -9.871378630373405 When 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)
When was the first camera invented? Kodak engineers -9.963096616845542 When 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)
When was the first camera invented? the past -9.986764544518229 When 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)
When was the first camera invented? George Eastman -10.082593334762326 When 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)
When was the first camera invented? Steven Sasson -10.146589187842926 When 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)
When was the first camera invented? a basement -10.516024648635364 When 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)
When was the first camera invented? Way -10.539560516168505 When 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)
When was the first camera invented? Kodak -10.575584958501713 When 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)
When was the first camera invented? Britain -11.08253271693773 When 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)
When was the first camera invented? Second Life -11.908496374998773 When 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)
Who was the first host of Jeopardy? Art Fleming -5.4778618834541195 Who 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)
Who was the first host of Jeopardy? ?AND NOW... HERE -6.094877206642865 Who 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)
Who was the first host of Jeopardy? Texas Public Health -8.63669253913492 Who 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)
Who is president of Nissan Corp.? aftermarket tuners -9.72066692364342 Who 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)
Who is president of Nissan Corp.? a Thai-made eco car -10.09458852939699 Who 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)
Who is president of Nissan Corp.? a new president -10.321679603040998 Who 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)
Who is president of Nissan Corp.? Japan -10.577489514666532 Who 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)
Who is president of Nissan Corp.? Raleigh -10.649993695495464 Who 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)
Who is president of Nissan Corp.? the GO6 Series -11.210106962566506 Who 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)
Who is president of Nissan Corp.? a deal -11.501356519185217 Who 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)
Who is president of Nissan Corp.? work -12.011782497374288 Who 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)
Who is president of Nissan Corp.? the casualties -12.18701975203559 Who 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)
Who is president of Nissan Corp.? the company -13.170381785450578 Who 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)
Who is president of Nissan Corp.? The graphics display -13.365002611893004 Who 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)
How many Great Lakes are there? Star Theatres -8.13121991974591 How 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)
How many Great Lakes are there? Mastercuts, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Gymboree, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? GameStop, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Chick-fil-A, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Macy's, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Dillard's, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Michaels, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? RadioShack, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Express, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Subway, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? LensCrafters, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? EyeMasters, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Claire's, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Talbots, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? A?ropostale, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? OfficeMax, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Lids, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Rainforest Cafe -8.969235242620773 How 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)
How many Great Lakes are there? The Limited, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Victoria's Secret, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Pacific Sunwear, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Disney Store, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Wet Seal, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Best Buy, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Payless ShoeSource, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Talbots, Great Lakes Crossing -9.040847226378006 How 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)
How many Great Lakes are there? Motherhood Maternity, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Hot Topic, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Spencer's Gifts, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Zales Jewelers, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Dairy Queen, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Build-A-Bear Workshop, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Champs Sports, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Select Comfort, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Taco Bell, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Foot Locker, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Kay Jewelers, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Trade Secret, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Lane Bryant, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Wilsons Leather, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Circuit City, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? The Buckle, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Journeys Shoes, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Piercing Pagoda, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Hollister Co., Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Regis Salons, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Charlotte Russe, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? GameWorks -9.040847226378006 How 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)
How many Great Lakes are there? Steak Escape, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? J.C. Penney, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Whitehall Jewellers, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? H&M, Great Lakes Crossing -9.040847226378006 How 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)
How many Great Lakes are there? Things Remembered, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Finish Line, Inc., Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Icing by Claire's, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Yankee Candle Company, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Wilsons Leather, Great Lakes Crossing -9.118815687713804 How 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)
How many Great Lakes are there? The Children's Place, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Abercrombie & Fitch, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Stride Rite Corporation, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Sunglass Hut International, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? General Nutrition Centers, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? American Eagle Outfitters, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Christopher & Banks, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Bass Pro Shops -9.183789405493636 How 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)
How many Great Lakes are there? Bath & Body Works, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? Sears, Roebuck and Company, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? Rocky Mountain Chocolate Factory, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? New York & Company, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? Steve & Barry's -9.183789405493636 How 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)
How many Great Lakes are there? Lord & Taylor -9.183789405493636 How 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)
How many Great Lakes are there? Fye - For Your Entertainment, Great Lakes Mall -9.238767166691954 How 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)
How many Great Lakes are there? Polo By Ralph Lauren, Great Lakes Crossing -9.238767166691954 How 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)
How many Great Lakes are there? response -10.597308259300476 How 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)
How many Great Lakes are there? cooperation -10.964533058654688 How 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)
How many Great Lakes are there? pain -11.794062169264166 How 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)
How many Great Lakes are there? salt -11.883960279561645 How 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)
How many Great Lakes are there? leave -12.298350582322172 How 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)
How many Great Lakes are there? Last year I -12.601962653660209 How 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)
How many Great Lakes are there? gull -12.730196683288893 How 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)
How many Great Lakes are there? Gull -12.819161334017133 How 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)
How many Great Lakes are there? mineral -13.043901154041436 How 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)
How many Great Lakes are there? mountain -13.052006522547622 How 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)
How many Great Lakes are there? job -13.28066228083943 How 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)
How many Great Lakes are there? computer -13.447291949725129 How 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)
How many Great Lakes are there? Tims -13.648383066863769 How 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)
How many Great Lakes are there? information -13.724729783686524 How 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)
How many Great Lakes are there? Swan -13.750714621473154 How 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)
How many Great Lakes are there? Spirit -14.021797796245348 How 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)
How many Great Lakes are there? Washington -14.093554465306886 How 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)
How many Great Lakes are there? Limestone -14.107651490773842 How 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)
How many Great Lakes are there? Ontario -14.145311635808786 How 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)
How many Great Lakes are there? Communication 06-7 -14.178450627140919 How 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)
How many Great Lakes are there? Moab -14.203004540850031 How 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)
How many Great Lakes are there? Canada -14.496758126388668 How 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)
How many Great Lakes are there? Star Theatres -8.13121991974591 How 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)
How many Great Lakes are there? Mastercuts, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Gymboree, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? GameStop, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Chick-fil-A, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Macy's, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Dillard's, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Michaels, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? RadioShack, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Express, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? LensCrafters, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Subway, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? EyeMasters, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Claire's, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Talbots, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? A?ropostale, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? OfficeMax, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Lids, Great Lakes Mall -8.945552440300919 How 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)
How many Great Lakes are there? Rainforest Cafe -8.969235242620773 How 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)
How many Great Lakes are there? The Limited, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Victoria's Secret, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Pacific Sunwear, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Disney Store, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Wet Seal, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Best Buy, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Payless ShoeSource, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Talbots, Great Lakes Crossing -9.040847226378006 How 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)
How many Great Lakes are there? Motherhood Maternity, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Hot Topic, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Spencer's Gifts, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Zales Jewelers, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Dairy Queen, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Champs Sports, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Build-A-Bear Workshop, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Select Comfort, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Taco Bell, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Foot Locker, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Kay Jewelers, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Trade Secret, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Lane Bryant, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Wilsons Leather, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Circuit City, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? The Buckle, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Journeys Shoes, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Piercing Pagoda, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Hollister Co., Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Regis Salons, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Charlotte Russe, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? GameWorks -9.040847226378006 How 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)
How many Great Lakes are there? Steak Escape, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? J.C. Penney, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Whitehall Jewellers, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? H&M, Great Lakes Crossing -9.040847226378006 How 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)
How many Great Lakes are there? Things Remembered, Great Lakes Mall -9.040847226378006 How 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)
How many Great Lakes are there? Finish Line, Inc., Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Icing by Claire's, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Yankee Candle Company, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Wilsons Leather, Great Lakes Crossing -9.118815687713804 How 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)
How many Great Lakes are there? The Children's Place, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Abercrombie & Fitch, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Stride Rite Corporation, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Sunglass Hut International, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? General Nutrition Centers, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? American Eagle Outfitters, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Christopher & Banks, Great Lakes Mall -9.118815687713804 How 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)
How many Great Lakes are there? Bass Pro Shops -9.183789405493636 How 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)
How many Great Lakes are there? Bath & Body Works, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? Sears, Roebuck and Company, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? Rocky Mountain Chocolate Factory, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? New York & Company, Great Lakes Mall -9.183789405493636 How 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)
How many Great Lakes are there? Steve & Barry's -9.183789405493636 How 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)
How many Great Lakes are there? Lord & Taylor -9.183789405493636 How 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)
How many Great Lakes are there? Fye - For Your Entertainment, Great Lakes Mall -9.238767166691954 How 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)
How many Great Lakes are there? Polo By Ralph Lauren, Great Lakes Crossing -9.238767166691954 How 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)
How many Great Lakes are there? response -10.597308259300476 How 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)
How many Great Lakes are there? cooperation -10.964533058654688 How 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)
How many Great Lakes are there? pain -11.794062169264166 How 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)
How many Great Lakes are there? salt -11.883960279561645 How 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)
How many Great Lakes are there? leave -12.298350582322172 How 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)
How many Great Lakes are there? Last year I -12.601962653660209 How 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)
How many Great Lakes are there? gull -12.730196683288893 How 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)
How many Great Lakes are there? Lake Huron -12.81811776200378 How 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)
How many Great Lakes are there? Lake Winnipeg -12.81811776200378 How 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)
How many Great Lakes are there? Gull -12.819161334017133 How 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)
How many Great Lakes are there? mineral -13.043901154041436 How 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)
How many Great Lakes are there? mountain -13.052006522547622 How 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)
How many Great Lakes are there? light blue -13.177600817027225 How 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)
How many Great Lakes are there? job -13.28066228083943 How 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)
How many Great Lakes are there? computer -13.447291949725129 How 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)
How many Great Lakes are there? wildlife -13.470079509137976 How 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)
How many Great Lakes are there? Tims -13.648383066863769 How 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)
How many Great Lakes are there? information -13.724729783686524 How 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)
How many Great Lakes are there? Swan -13.750714621473154 How 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)
How many Great Lakes are there? St. Marys -13.828247791880203 How 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)
How many Great Lakes are there? Cleveland -13.854517128173054 How 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)
How many Great Lakes are there? Webster -13.86014162643598 How 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)
How many Great Lakes are there? Time -13.922107487043641 How 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)
How many Great Lakes are there? Spirit -13.92443303282251 How 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)
How many Great Lakes are there? Douglas -14.05100221307862 How 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)
How many Great Lakes are there? Ontario -14.075070296327667 How 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)
How many Great Lakes are there? Sheridan -14.082207046286271 How 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)
How many Great Lakes are there? Washington -14.093554465306886 How 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)
How many Great Lakes are there? Limestone -14.107651490773842 How 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)
How many Great Lakes are there? Communication 06-7 -14.178450627140919 How 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)
How many Great Lakes are there? Moab -14.203004540850031 How 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)
How many Great Lakes are there? Stockton -14.254997207878997 How 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)
How many Great Lakes are there? Pine -14.280648142127363 How 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)
How many Great Lakes are there? Canada -14.318408825239013 How 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)
How many Great Lakes are there? Agnes -14.367224335735333 How 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)
How many Great Lakes are there? Marsh -14.453050505781167 How 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)
How many Great Lakes are there? Simcoe -14.456634812213391 How 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)
How many Great Lakes are there? Gillis -14.569756723602179 How 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)
How many Great Lakes are there? America -14.906731339835147 How 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)
How many Great Lakes are there? Lake Van -15.117680930590076 How 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)
Who is Terrence Malick? film director -1.5344609693900577 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film director) -> film director (2239ms)
Who is Terrence Malick? notable director -1.56514815528018 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, notable director) -> notable director (2239ms)
Who is Terrence Malick? influencing director -1.58673640355055 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, influencing director) -> influencing director (2239ms)
Who is Terrence Malick? true artist -1.6018835207375839 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, true artist) -> true artist (2239ms)
Who is Terrence Malick? acclaimed director -1.6166098204692427 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acclaimed director) -> acclaimed director (2239ms)
Who is Terrence Malick? extraordinary director -1.6281051310211265 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, extraordinary director) -> extraordinary director (2239ms)
Who is Terrence Malick? great director -1.6407897614190756 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, great director) -> great director (2393ms)
Who is Terrence Malick? established director -1.649636207671413 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, established director) -> established director (2392ms)
Who is Terrence Malick? contemporary filmmaker -1.6610528001022729 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, contemporary filmmaker) -> contemporary filmmaker (2392ms)
Who is Terrence Malick? esteemed filmmaker -1.674815180440155 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, esteemed filmmaker) -> esteemed filmmaker (2392ms)
Who is Terrence Malick? cinematic mastermind -1.689612184530946 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, cinematic mastermind) -> cinematic mastermind (2411ms)
Who is Terrence Malick? rarified director -1.689612184530946 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, rarified director) -> rarified director (2411ms)
Who is Terrence Malick? overdue director -1.689612184530946 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, overdue director) -> overdue director (2392ms)
Who is Terrence Malick? false idol -1.6981481145150845 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, false idol) -> false idol (2410ms)
Who is Terrence Malick? massive influence -1.7057406797121752 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, massive influence) -> massive influence (2410ms)
Who is Terrence Malick? exec producer -1.7074341715775059 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, exec producer) -> exec producer (2410ms)
Who is Terrence Malick? interesting story -1.7132716455251007 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, interesting story) -> interesting story (2410ms)
Who is Terrence Malick? rare creature -1.715812028568528 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, rare creature) -> rare creature (2428ms)
Who is Terrence Malick? film auteur -1.7170306267067459 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film auteur) -> film auteur (2427ms)
Who is Terrence Malick? action director -1.7261701066148791 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, action director) -> action director (2427ms)
Who is Terrence Malick? great letdown -1.7307398465689459 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, great letdown) -> great letdown (2427ms)
Who is Terrence Malick? seductive director -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, seductive director) -> seductive director (2463ms)
Who is Terrence Malick? exacting filmmaker -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, exacting filmmaker) -> exacting filmmaker (2446ms)
Who is Terrence Malick? beloved filmmaker -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, beloved filmmaker) -> beloved filmmaker (2446ms)
Who is Terrence Malick? divisive director -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, divisive director) -> divisive director (2464ms)
Who is Terrence Malick? gentle loon -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, gentle loon) -> gentle loon (2446ms)
Who is Terrence Malick? uncontested visionary -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, uncontested visionary) -> uncontested visionary (2427ms)
Who is Terrence Malick? serious mystery -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, serious mystery) -> serious mystery (2446ms)
Who is Terrence Malick? unique filmmaker -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, unique filmmaker) -> unique filmmaker (2446ms)
Who is Terrence Malick? preeminent director -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, preeminent director) -> preeminent director (2427ms)
Who is Terrence Malick? slow mover -1.7408334728230304 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, slow mover) -> slow mover (2463ms)
Who is Terrence Malick? mysterious sort -1.7509572050264282 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, mysterious sort) -> mysterious sort (2463ms)
Who is Terrence Malick? inspiring filmmaker -1.7509572050264282 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, inspiring filmmaker) -> inspiring filmmaker (2463ms)
Who is Terrence Malick? acquired taste -1.75222030097175 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acquired taste) -> acquired taste (2464ms)
Who is Terrence Malick? famous filmmaker -1.7546503011644066 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, famous filmmaker) -> famous filmmaker (2479ms)
Who is Terrence Malick? enigmatic director -1.755069970985088 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, enigmatic director) -> enigmatic director (2479ms)
Who is Terrence Malick? brilliant filmmaker -1.7565272496537543 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, brilliant filmmaker) -> brilliant filmmaker (2479ms)
Who is Terrence Malick? visual poet -1.7602109287398382 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visual poet) -> visual poet (2479ms)
Who is Terrence Malick? film maker -1.7612819624225442 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film maker) -> film maker (2479ms)
Who is Terrence Malick? acclaimed filmmaker -1.762310756037257 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acclaimed filmmaker) -> acclaimed filmmaker (2478ms)
Who is Terrence Malick? unique artist -1.762507951530816 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, unique artist) -> unique artist (2536ms)
Who is Terrence Malick? national treasure -1.7639468103822398 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, national treasure) -> national treasure (2536ms)
Who is Terrence Malick? uncredited screenwriter -1.775633802004088 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, uncredited screenwriter) -> uncredited screenwriter (2536ms)
Who is Terrence Malick? man -2.265264392100278 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, man) -> man (2536ms)
Who is Terrence Malick? American filmmaker, screenwriter, and producer -2.3506611828976802 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American filmmaker, screenwriter, and producer) -> American filmmaker, screenwriter, and producer (2646ms)
Who is Terrence Malick? mystical guy -2.357981392849078 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, mystical guy) -> mystical guy (2646ms)
Who is Terrence Malick? no-show -2.363019126553826 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, no-show) -> no-show (2646ms)
Who is Terrence Malick? admirably crafty bastard -2.375712696869015 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, admirably crafty bastard) -> admirably crafty bastard (2646ms)
Who is Terrence Malick? real cult figure -2.3921637619293548 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, real cult figure) -> real cult figure (2646ms)
Who is Terrence Malick? auteurist-cum-obscurantist filmmaker -2.40287534828422 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteurist-cum-obscurantist filmmaker) -> auteurist-cum-obscurantist filmmaker (2646ms)
Who is Terrence Malick? austin-based filmmaker -2.40287534828422 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, austin-based filmmaker) -> austin-based filmmaker (2667ms)
Who is Terrence Malick? broad-shouldered young Texan -2.405628785887621 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, broad-shouldered young Texan) -> broad-shouldered young Texan (2667ms)
Who is Terrence Malick? American film director, screenwriter, and producer -2.4189224320531464 Who 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)
Who is Terrence Malick? incredibly guarded filmmaker -2.4206066523041567 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, incredibly guarded filmmaker) -> incredibly guarded filmmaker (2667ms)
Who is Terrence Malick? somewhat polarising director -2.4206066523041567 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, somewhat polarising director) -> somewhat polarising director (2667ms)
Who is Terrence Malick? visionary genius thats -2.4206066523041567 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visionary genius thats) -> visionary genius thats (2667ms)
Who is Terrence Malick? native of Austin -2.4296331039249885 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, native of Austin) -> native of Austin (2683ms)
Who is Terrence Malick? world class director -2.435839119226279 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, world class director) -> world class director (2683ms)
Who is Terrence Malick? American filmmaker , screenwriter , and producer -2.4375551070496835 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American filmmaker , screenwriter , and producer) -> American filmmaker , screenwriter , and producer (2683ms)
Who is Terrence Malick? Assyrian-American film director, screenwriter, and producer -2.4375551070496835 Who 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)
Who is Terrence Malick? neighbor of Limp Bizkit frontman Fred Durst -2.4375551070496835 Who 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)
Who is Terrence Malick? prolific film maker -2.441170483323157 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, prolific film maker) -> prolific film maker (2683ms)
Who is Terrence Malick? bit of a quirky director -2.44461301655552 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, bit of a quirky director) -> bit of a quirky director (2699ms)
Who is Terrence Malick? poet of the film medium -2.44461301655552 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, poet of the film medium) -> poet of the film medium (2699ms)
Who is Terrence Malick? love-or-hate-him kind of director -2.4505227413227635 Who 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)
Who is Terrence Malick? auteurist american director -2.4617343143421575 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteurist american director) -> auteurist american director (2699ms)
Who is Terrence Malick? film director, producer and writer -2.471757719507524 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film director, producer and writer) -> film director, producer and writer (2699ms)
Who is Terrence Malick? good film director and film creator -2.477099875445436 Who 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)
Who is Terrence Malick? heavy-weight and very credible director -2.477099875445436 Who 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)
Who is Terrence Malick? fan of this particular cartoon -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, fan of this particular cartoon) -> fan of this particular cartoon (2716ms)
Who is Terrence Malick? visionary director the like -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visionary director the like) -> visionary director the like (2717ms)
Who is Terrence Malick? big fan of Cameron Diaz -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, big fan of Cameron Diaz) -> big fan of Cameron Diaz (2717ms)
Who is Terrence Malick? warm and humble man -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, warm and humble man) -> warm and humble man (2716ms)
Who is Terrence Malick? intense, visual, poetic director -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, intense, visual, poetic director) -> intense, visual, poetic director (2717ms)
Who is Terrence Malick? American screen writer, producer and director -2.504588756044595 Who 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)
Who is Terrence Malick? reclusive, yet widely respected American director and writer -2.5077985964469436 Who 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)
Who is Terrence Malick? director with arguably more vision -2.521993830880578 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, director with arguably more vision) -> director with arguably more vision (2731ms)
Who is Terrence Malick? American screenwriter, filmmaker and producer -2.521993830880578 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American screenwriter, filmmaker and producer) -> American screenwriter, filmmaker and producer (2731ms)
Who is Terrence Malick? legendarily elusive and painstaking director -2.521993830880578 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, legendarily elusive and painstaking director) -> legendarily elusive and painstaking director (2731ms)
Who is Terrence Malick? enigmatic American film director, screenwriter, and film producer -2.5730446091361605 Who 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)
Who is Terrence Malick? enigmatic American film director , screenwriter , and film producer -2.593464920438393 Who 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)
Who is Terrence Malick? filmmaker -2.8485478861255755 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, filmmaker) -> filmmaker (2762ms)
Who is Terrence Malick? director -2.942671358964134 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, director) -> director (2792ms)
Who is Terrence Malick? auteur -2.9685484679191747 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteur) -> auteur (2935ms)
Who is Terrence Malick? producer -2.983990116453622 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, producer) -> producer (2947ms)
Who is Terrence Malick? American director -3.0156143124758685 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American director) -> American director (2960ms)
Who is Terrence Malick? master -3.0288824466107718 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, master) -> master (2970ms)
Who is Terrence Malick? artist -3.041069460032217 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, artist) -> artist (2970ms)
Who is Terrence Malick? veteran -3.06153586088043 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, veteran) -> veteran (2970ms)
Who is Terrence Malick? believer -3.1017450610131148 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, believer) -> believer (2970ms)
Who is Terrence Malick? feminist -3.102471393580343 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, feminist) -> feminist (2970ms)
Who is Terrence Malick? racist -3.106819041625638 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, racist) -> racist (2970ms)
Who is Terrence Malick? step -3.114219152949013 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, step) -> step (2979ms)
Who is Terrence Malick? painter -3.116824355902943 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, painter) -> painter (2979ms)
Who is Terrence Malick? Catholic -3.7577617049779795 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, Catholic) -> Catholic (3042ms)
Who is Terrence Malick? Natalie Portman -8.031255642387386 Who 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)
Who is Terrence Malick? The Road -8.92738327961418 Who 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)
Who is Terrence Malick? official competition -9.011663634971896 Who 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)
Who is Terrence Malick? last year -9.032391971368831 Who 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)
Who is Terrence Malick? each film -9.05303030864564 Who 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)
Who is Terrence Malick? hard people -9.105327957391495 Who 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)
Who is Terrence Malick? notable absentee -9.128377715580902 Who 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)
Who is Terrence Malick? Art -9.198785635379881 Who 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)
Who is Terrence Malick? time -9.266785210526272 Who 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)
Who is Terrence Malick? Terry Malick -9.35939364415421 Who 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)
Who is Terrence Malick? David Whitney -9.407041037192753 Who 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)
Who is Terrence Malick? Terence Malic -9.407041037192753 Who 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)
Who is Terrence Malick? a vision -9.411301267132458 Who 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)
Who is Terrence Malick? Steven D. Greydanus -9.428349282183001 Who 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)
Who is Terrence Malick? far this year -9.445149034613015 Who 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)
Who is Terrence Malick? Rooney Mara -9.456342954309951 Who 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)
Who is Terrence Malick? The New World -9.480452344147983 Who 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)
Who is Terrence Malick? The BFI -9.496184268385923 Who 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)
Who is Terrence Malick? Pitt -9.574103952315753 Who 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)
Who is Terrence Malick? Few films -9.613718019971065 Who 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)
Who is Terrence Malick? Portman?s next gig -9.732265094211815 Who 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)
Who is Terrence Malick? Life -9.74448788280197 Who 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)
Who is Terrence Malick? a country mile -9.783349980508829 Who 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)
Who is Terrence Malick? open-ended take -9.896988423095529 Who 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)
Who is Terrence Malick? 06 :04 -9.922331321178007 Who 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)
Who is Terrence Malick? Bale -9.965810507129323 Who 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)
Who is Terrence Malick? Cannes -10.031812028211217 Who 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)
Who is Terrence Malick? moment -10.230308028687316 Who 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)
Who is Terrence Malick? 2009 will -10.379230697603075 Who 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)
Who is Terrence Malick? Terrence Frederick Malick -10.493651214384053 Who 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)
Who is Terrence Malick? town -10.529977724909138 Who 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)
Who is Terrence Malick? Anderson -10.85339899825603 Who 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)
Who is Terrence Malick? Hazanavicius -10.926722850061097 Who 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)
Who is Terrence Malick? the year -10.934010224556058 Who 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)
Who is Terrence Malick? the film -11.023177141052297 Who 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)
Who is Terrence Malick? Tree of Life -11.19416078265997 Who 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)
Who is Terrence Malick? sparky -11.22878437746322 Who 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)
Who is Terrence Malick? Green -11.29505112333981 Who 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)
Who is Terrence Malick? the top prize -11.313375988344232 Who 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)
Who is Terrence Malick? the reclusive genius -11.367362697175396 Who 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)
Who is Terrence Malick? the holy hell -11.469785631793645 Who 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)
Who is Terrence Malick? the biggest boost -11.477782915506538 Who 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)
Who is Terrence Malick? The best comparison -11.551921532573086 Who 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)
Who is Terrence Malick? the movie -11.561944189186917 Who 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)
Who is Terrence Malick? The fifth Academy Award nominee -11.616075731296853 Who 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)
Who is Terrence Malick? The more likely nominee -11.616467983089855 Who 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)
Who is Terrence Malick? The film -11.634842466625484 Who 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)
Who is Terrence Malick? The video screens -11.638116086708486 Who 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)
Who is Terrence Malick? The same -11.696865378805992 Who 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)
Who is Terrence Malick? Terry -11.87891206808708 Who 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)
Who is Terrence Malick? Clooney -14.489472620532942 Who 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)
When did the Big Dig begin? 1991 0.3806359733100466 When 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)
When did the Big Dig begin? the post-WWII Interstate Highway boom -4.014668918306778 When 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)
When did the Big Dig begin? the mid-1980s -5.10962948384541 When 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)
When did the Big Dig begin? Boston -5.815739146532735 When 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)
When did the Big Dig begin? millions -10.96600571264074 When 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)
When did the Big Dig begin? much success -11.028957780920456 When 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)
When did the Big Dig begin? the 1970?s -11.362932193235801 When 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)
When did the Big Dig begin? Dawn -11.706038929224455 When 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)
When did the Big Dig begin? dawn -11.847611638374595 When 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)
When did the Big Dig begin? Car -12.098646666317109 When 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)
When did the Big Dig begin? car -12.106733419024408 When 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)
When did the Big Dig begin? Millions -12.690234221359576 When 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)
When did the Big Dig begin? the Massachusetts Secretary -12.69861036350328 When 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)
When did the Big Dig begin? any construction -12.772757806162318 When 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)
When did the Big Dig begin? DAWN -12.832468072864728 When 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)
When did the Big Dig begin? boston -14.612589056074349 When 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)
Which authority runs the airport? MassPort -4.289739914477748 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (MassPort, Instance Of, authority) (Massport, runs, the airport) -> MassPort (1943ms)
Which authority runs the airport? BAA -4.47513862535946 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (BAA, Instance Of, aviation authority) (BAA, runs, the airport) -> BAA (1943ms)
Which authority runs the airport? MASSPORT -5.539268003189642 Which 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)
Which authority runs the airport? Massport -5.54558167688594 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Massport, Instance Of, independent authority) (Massport, runs, the airport) -> Massport (3211ms)
Which authority runs the airport? coach -6.35969846130657 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (coach, Instance Of, authority) (Coaches, run from, the airport) -> coach (3393ms)
Which authority runs the airport? Taxi -6.615615766582636 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Taxi, Instance Of, authority) (Taxis, run from, the airport) -> Taxi (3393ms)
Which authority runs the airport? government -6.829866341003447 Which 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)
Which authority runs the airport? Service -7.198094043321386 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Service, Instance Of, authority) (Services, running from, the airport) -> Service (3511ms)
Which authority runs the airport? bus -7.243221900080744 Which 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)
Which authority runs the airport? Hurley -7.26222859327455 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Hurley, Instance Of, authority) (Hurley, runs through, the airport) -> Hurley (3562ms)
Which authority runs the airport? Metro -7.26222859327455 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Metro, Instance Of, authority) (Metro, runs from, the airport) -> Metro (3562ms)
Which authority runs the airport? Bush -7.280241696748786 Which 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)
Which authority runs the airport? Sun -7.416965673868722 Which 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)
Which authority runs the airport? Mr. Wright -7.507250145832522 Which 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)
Which authority runs the airport? Government -7.62416426240667 Which 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)
Which authority runs the airport? McNeil -8.085352125720924 Which 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)
Which authority runs the airport? eVisitor -8.213091837388472 Which 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)
Which authority runs the airport? Doug -8.365648844714904 Which 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)
Which authority runs the airport? taxi -8.369476554499798 Which 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)
Which authority runs the airport? Zappos -8.490305574668554 Which 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)
Which authority runs the airport? Jessica -8.538256058586636 Which 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)
Which authority runs the airport? BC Ferries -8.658047598055475 Which 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)
Which authority runs the airport? David -8.987477121456882 Which 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)
Which authority runs the airport? Andrew -9.024190001235262 Which 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)
Which authority runs the airport? Office -9.115193357820377 Which 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)
Which authority runs the airport? Andrews -9.222684746491243 Which 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)
Which authority runs the airport? Michigan -9.233060094549312 Which 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)
Which authority runs the airport? authority -9.245621756275611 Which 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)
Which authority runs the airport? airport parking -9.262444320955282 Which 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)
Which authority runs the airport? The device -9.30917208872807 Which 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)
Which authority runs the airport? Godfrey -9.327186283191061 Which 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)
Which authority runs the airport? Orange County -9.389985126118555 Which 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)
Which authority runs the airport? the country -9.40626184186127 Which 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)
Which authority runs the airport? experience -9.52223265592555 Which 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)
Which authority runs the airport? training course -9.591659687359469 Which 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)
Which authority runs the airport? VIP -9.737098465803964 Which 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)
Which authority runs the airport? VIPs -9.810655731708291 Which 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)
Which authority runs the airport? Mr. Mondale -10.065724059058095 Which 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)
Which authority runs the airport? owner -10.18349790506334 Which 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)
Which authority runs the airport? the program -10.226248508670611 Which 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)
Which authority runs the airport? lawyer -10.357758070178791 Which 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)
Which authority runs the airport? expert -10.425096339634218 Which 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)
Which authority runs the airport? Owner -10.876610390142464 Which 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)
Which authority runs the airport? Peter -10.9171669938159 Which 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)
Which authority runs the airport? train -11.1186984848846 Which 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)
Which authority runs the airport? Berlin -11.118812570973049 Which 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)
Which authority runs the airport? Roosevelt -11.17306317466201 Which 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)
Which authority runs the airport? Peters -11.309812710980246 Which 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)
Which authority runs the airport? Reader -11.40992571244426 Which 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)
Which authority runs the airport? the government -11.666325380296776 Which 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)
Which authority runs the airport? Port Authority -15.397538726790732 Which 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)
Which authority runs the airport? Tri-Rail -15.752944018820019 Which 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)
Where is NATO headquartered? Brussels -3.2255775163884635 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> (NATO, is headquartered in, Brussels) -> Brussels (3268ms)
Where is NATO headquartered? Norfolk -5.347786256627785 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO, is located in, Norfolk) -> Norfolk (5308ms)
Where is NATO headquartered? Greece -5.474822933243015 Where 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)
Where is NATO headquartered? Afghanistan -5.66537854296988 Where 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)
Where is NATO headquartered? Paris -5.741976642893679 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (the NATO headquarters, was based in, Paris) -> Paris (5066ms)
Where is NATO headquartered? Croatia -5.808356034339897 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO troops, are now based in, Croatia) -> Croatia (5066ms)
Where is NATO headquartered? Europe -5.821420431069103 Where 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)
Where is NATO headquartered? Malta -5.990410123373345 Where 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)
Where is NATO headquartered? Eastern Europe -5.991152436515217 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be expand into, $x) -> (NATO, is expanding into, Eastern Europe) -> Eastern Europe (5122ms)
Where is NATO headquartered? Germany -6.27392492946177 Where 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)
Where is NATO headquartered? Izmir -6.350979437265401 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (Two NATO headquarters, are located in, Izmir) -> Izmir (5307ms)
Where is NATO headquartered? Teveren -6.4509503376759705 Where 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)
Where is NATO headquartered? Russia -6.457264956653473 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Nato, expanded to, Russia) -> Russia (4455ms)
Where is NATO headquartered? Berlin -6.4578267523337844 Where 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)
Where is NATO headquartered? Chicago -6.537110900146309 Where 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)
Where is NATO headquartered? Capellen -6.568315514993356 Where 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)
Where is NATO headquartered? Ukraine -6.712210502411972 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, has already expanded into, Ukraine) -> Ukraine (4455ms)
Where is NATO headquartered? Kyrgyzstan -6.730843248473731 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, base in, $x) -> (Nato, needs a base in, Kyrgyzstan) -> Kyrgyzstan (4521ms)
Where is NATO headquartered? the Balkans -6.829320970706345 Where 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)
Where is NATO headquartered? Libya -6.874529936744229 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, begin operation in, $x) -> (NATO forces, began military operations in, Libya) -> Libya (4589ms)
Where is NATO headquartered? France -6.911363885569645 Where 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)
Where is NATO headquartered? America -7.1879439896934745 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have turn against, $x) -> (NATO, would have turned against, America) -> America (4921ms)
Where is NATO headquartered? Papa -7.194182142635917 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, base in, $x) -> (NATO, set up a base in, Papa) -> Papa (4589ms)
Where is NATO headquartered? Central Europe -7.202206121159761 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expanded to, Central Europe) -> Central Europe (4636ms)
Where is NATO headquartered? Yugoslav territory -7.32365443697017 Where 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)
Where is NATO headquartered? Polish troops -7.388359891480339 Where 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)
Where is NATO headquartered? Georgia -7.406912428118235 Where 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)
Where is NATO headquartered? Washington -7.411757496107012 Where 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)
Where is NATO headquartered? Tirana -7.415172742645605 Where 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)
Where is NATO headquartered? Madrid -7.416555254484001 Where 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)
Where is NATO headquartered? Belium -7.423744064738541 Where 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)
Where is NATO headquartered? the Mediterranean -7.437418043231252 Where 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)
Where is NATO headquartered? Victoria -7.4459534767514715 Where 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)
Where is NATO headquartered? Quebec City -7.454609340541662 Where 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)
Where is NATO headquartered? the Taliban -7.4889994020670265 Where 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)
Where is NATO headquartered? missile defense -7.4954200015441845 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, agreed to expand, missile defense) -> missile defense (4636ms)
Where is NATO headquartered? Macedonia -7.5014971288972205 Where 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)
Where is NATO headquartered? the Mediterranean Sea -7.550568067349106 Where 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)
Where is NATO headquartered? Keflavik -7.656867728259192 Where 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)
Where is NATO headquartered? Bosnia -7.689931633924389 Where 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)
Where is NATO headquartered? Central and Eastern Europe -7.71493645421655 Where 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)
Where is NATO headquartered? the East -7.745202335472653 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, was expanded to, the East) -> the East (4667ms)
Where is NATO headquartered? Krakow -7.785485429063038 Where 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)
Where is NATO headquartered? the UN. -7.7874967673050115 Where 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)
Where is NATO headquartered? U.S. influence -7.798980230137694 Where 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)
Where is NATO headquartered? Syria -7.8475995208029445 Where 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)
Where is NATO headquartered? the West -7.858096993777819 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, has just expanded into, the West) -> the West (4666ms)
Where is NATO headquartered? three Baltic states -7.867088493687673 Where 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)
Where is NATO headquartered? Russian border -7.931609876775619 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, is expanding right to, Russian border) -> Russian border (4871ms)
Where is NATO headquartered? Poland -7.938813155435989 Where 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)
Where is NATO headquartered? troops -7.971817154900656 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be pressure, $x) -> (further NATO integration, be pressured for, troops) -> troops (4238ms)
Where is NATO headquartered? The Bucharest Summit -7.983707482268262 Where 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)
Where is NATO headquartered? Tallinn -7.989093932850722 Where 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)
Where is NATO headquartered? new client-states -8.012822090455531 Where 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)
Where is NATO headquartered? Poland , Hungary -8.06056873583999 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, was expanded to include, Poland , Hungary) -> Poland , Hungary (4921ms)
Where is NATO headquartered? Khaled -8.096211163442572 Where 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)
Where is NATO headquartered? southern Afghanistan -8.112443792739274 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, expand into, southern Afghanistan) -> southern Afghanistan (4956ms)
Where is NATO headquartered? Chicago ? -8.120750917902347 Where 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)
Where is NATO headquartered? India and China -8.341734246921133 Where 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)
Where is NATO headquartered? NATO missions -8.367624051414523 Where 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)
Where is NATO headquartered? flight -8.37025442460519 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, control in, $x) -> (NATO, loses control in, flight) -> flight (4956ms)
Where is NATO headquartered? Central -8.412590839017895 Where 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)
Where is NATO headquartered? the Baltics -8.434674336237268 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expanded to include, the Baltics) -> the Baltics (4956ms)
Where is NATO headquartered? the town -8.442806299003223 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO, is located in, the town) -> the town (5348ms)
Where is NATO headquartered? East Europe -8.466485665243594 Where 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)
Where is NATO headquartered? Tbilisi and branches -8.468963782030514 Where 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)
Where is NATO headquartered? large areas -8.480488735644068 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Today NATO, has expanded to, large areas) -> large areas (4996ms)
Where is NATO headquartered? ten new members -8.523958519147001 Where 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)
Where is NATO headquartered? former adversaries -8.5521882847709 Where 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)
Where is NATO headquartered? federal law -8.725323653883784 Where 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)
Where is NATO headquartered? SHAPE -8.816396328713475 Where 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)
Where is NATO headquartered? three -8.822745476081215 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, instead has been expanded to include, three) -> three (5122ms)
Where is NATO headquartered? eastwards -8.89413741274106 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, continues to expand, eastwards) -> eastwards (5122ms)
Where is NATO headquartered? EAGLE GUARDIAN -8.914685064929383 Where 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)
Where is NATO headquartered? secularism -8.928744294631613 Where 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)
Where is NATO headquartered? membership -9.003713328609448 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, wants to expand, membership) -> membership (5151ms)
Where is NATO headquartered? the NATO base -9.218989410514462 Where 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)
Where is NATO headquartered? the city -9.243029702589272 Where 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)
Where is NATO headquartered? The capital -9.29791451271435 Where 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)
Where is NATO headquartered? each other -9.305666120565155 Where 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)
Where is NATO headquartered? progress -9.307509696493755 Where 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)
Where is NATO headquartered? three-quarters -9.313881603706829 Where 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)
Where is NATO headquartered? support -9.322441287901896 Where 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)
Where is NATO headquartered? former Soviet territory -9.329147270517824 Where 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)
Where is NATO headquartered? the west -9.339085566780675 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expands to, the west) -> the west (5151ms)
Where is NATO headquartered? the south -9.43274596932244 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (the NATO, expands into, the south) -> the south (5151ms)
Where is NATO headquartered? Afghanistan every time -9.511115827576493 Where 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)
Where is NATO headquartered? 10,000 troops -9.64483740724252 Where 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)
Where is NATO headquartered? the empire -9.749761067856081 Where 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)
Where is NATO headquartered? the borders -9.755001723539994 Where 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)
Where is NATO headquartered? peacekeeping operations -9.763010315796906 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO members, to expand, peacekeeping operations) -> peacekeeping operations (5183ms)
Where is NATO headquartered? the volume -9.84963589533664 Where 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)
Where is NATO headquartered? the southern sector -9.86990787794608 Where 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)
Where is NATO headquartered? the east -9.999170167251279 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expands to, the east) -> the east (5253ms)
Where is NATO headquartered? 28 member states -10.009598648788263 Where 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)
Where is NATO headquartered? the very borders -10.042158034736978 Where 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)
Where is NATO headquartered? the transit -10.043990975666429 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, would like to expand, the transit) -> the transit (5254ms)
Where is NATO headquartered? the plan -10.044974467115736 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, agreed to expand, the plan) -> the plan (5367ms)
Where is NATO headquartered? the mission -10.066195204253528 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has to expand, the mission) -> the mission (5368ms)
Where is NATO headquartered? the desired ?regime change -10.195859513642676 Where 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)
Where is NATO headquartered? the benefit -10.265611911171588 Where 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)
Where is NATO headquartered? the soil -10.265939594837334 Where 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)
Where is NATO headquartered? the former Soviet expanse -10.338279936926803 Where 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)
Where is NATO headquartered? the broader Middle East -10.33833384867486 Where 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)
How long does the Madness last? 9780252023996 -10.174099797886553 How 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)
How long does the Madness last? 9780915815357 -10.38255714243018 How 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)
How long does the Madness last? 9780915815319 -10.38255714243018 How 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)
How long does the Madness last? 9780252067013 -10.412336763079269 How 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)
How long does the Madness last? Cris D'Amato -11.358302467704958 How 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)
How long does the Madness last? 2007 -11.402446940525095 How 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)
How long does the Madness last? 2 -11.464389373876292 How 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)
How long does the Madness last? World cinema -11.478253946683108 How 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)
How long does the Madness last? Last Days Madness -11.525377741995953 How 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)
How long does the Madness last? From mission to madness -11.601953909379326 How 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)
How long does 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 -11.842244641513359 How 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)
How long does the Madness last? Eels -11.861324798903654 How 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)
How long does the Madness last? Oh What a Beautiful Morning -11.87809220994361 How 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)
How long does the Madness last? An easy recipe -11.986869333917564 How 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)
How long does the Madness last? Drama -12.224443642617222 How 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)
How long does the Madness last? looks -12.397085644573053 How 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)
How long does the Madness last? Urbana -12.462680607809938 How 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)
How long does the Madness last? Scott Kelly -12.533239146221094 How 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)
How long does the Madness last? hand -12.559748403190287 How 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)
How long does the Madness last? Man -12.778567466152394 How 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)
How long does the Madness last? Sign -12.909463685811966 How 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)
How long does the Madness last? CBS -12.96631385171391 How 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)
How long does the Madness last? such madness -12.972475268695359 How 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)
How long does the Madness last? Stones -13.059232273350835 How 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)
How long does the Madness last? Millie Reynolds -13.20778915173374 How 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)
How long does the Madness last? Twilight -13.20898632955193 How 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)
How long does the Madness last? Robespierre -13.25118361011829 How 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)
How long does the Madness last? a lesson -13.456840884536968 How 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)
How long does the Madness last? schooling -13.476584082263619 How 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)
How long does the Madness last? School -13.774765958560911 How 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)
How long does the Madness last? the nations -13.897335250328464 How 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)
How long does the Madness last? Heart -14.04771414483593 How 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)
How long does the Madness last? The asylum -14.436984592044894 How 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)
How long does the Madness last? time -14.615772953918304 How 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)
How long does the Madness last? Levy -14.645732140209613 How 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)
How long does the Madness last? cloud -15.194741833829351 How 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)
How long does the Madness last? David -15.239776105267282 How 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)
How long does the Madness last? Christian -15.255197191952607 How 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)
How long does the Madness last? Chesterton -15.29815864798514 How 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)
How long does the Madness last? Trust -15.588703087245422 How 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)
How long does the Madness last? Cloud -15.63434953868009 How 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)
What university did Thomas Jefferson found? Great Falls -6.102732531710314 What 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)
What university did Thomas Jefferson found? English -6.884303462909167 What 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)
What university did Thomas Jefferson found? online -8.970945185169143 What 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)
When did the Chernobyl nuclear accident occur? Friday -1.0777149940244959 When 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)
When did the Chernobyl nuclear accident occur? Belarus -2.7636860658351674 When 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)
When did the Chernobyl nuclear accident occur? 18 years -7.191186456563631 When 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)
When did the Chernobyl nuclear accident occur? case -8.847091579199219 When 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)
When did the Chernobyl nuclear accident occur? serious occurrence -8.92146102777919 When 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)
When did the Chernobyl nuclear accident occur? event -10.352548668667131 When 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)
When did the Chernobyl nuclear accident occur? tragedy -10.43851602991609 When 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)
When did the Chernobyl nuclear accident occur? incident -10.484752212920021 When 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)
When did the Chernobyl nuclear accident occur? topic -10.503957841040075 When 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)
When did the Chernobyl nuclear accident occur? environmental disaster -10.505844156837222 When 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)
When did the Chernobyl nuclear accident occur? catastrophic event -10.525564590456874 When 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)
When did the Chernobyl nuclear accident occur? issue -10.555563047326967 When 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)
When did the Chernobyl nuclear accident occur? environmental catastrophe -10.576808667436973 When 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)
When did the Chernobyl nuclear accident occur? international incident -10.577028307946058 When 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)
When did the Chernobyl nuclear accident occur? well-publicized event -10.58355650788044 When 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)
When did the Chernobyl nuclear accident occur? large-scale disaster -10.585841377857474 When 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)
When did the Chernobyl nuclear accident occur? human catastrophe -10.613747820778316 When 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)
When did the Chernobyl nuclear accident occur? ethical matter -10.615444279756543 When 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)
When did the Chernobyl nuclear accident occur? controversial event -10.620453417783116 When 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)
When did the Chernobyl nuclear accident occur? earth-shattering event -10.70386578554622 When 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)
When did the Chernobyl nuclear accident occur? dramatic environmental disaster -10.707632078943362 When 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)
When did the Chernobyl nuclear accident occur? large scale event -10.7311033925602 When 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)
When did the Chernobyl nuclear accident occur? big disaster -10.737936671636932 When 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)
When did the Chernobyl nuclear accident occur? extreme and typical instance -10.790098720740842 When 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)
When did the Chernobyl nuclear accident occur? small and large-scale disaster -10.790098720740842 When 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)
When did the Chernobyl nuclear accident occur? man-made disaster -10.816939931832529 When 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)
When did the Chernobyl nuclear accident occur? radiological incident -10.860784413710109 When 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)
When did the Chernobyl nuclear accident occur? man-made environmental disaster -10.86900994624028 When 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)
When did the Chernobyl nuclear accident occur? important subject -10.886783372897606 When 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)
When did the Chernobyl nuclear accident occur? disaster -10.913719693394317 When 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)
When did the Chernobyl nuclear accident occur? catastrophic radiological incident -10.922045347616807 When 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)
When did the Chernobyl nuclear accident occur? Ukraine -11.10559846127845 When 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)
Where is the LPGA headquartered? Daytona Beach -3.1250497756313234 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> (The LPGA, is headquartered in, Daytona Beach) -> Daytona Beach (1544ms)
Where is the LPGA headquartered? Las Vegas -5.907475218282434 Where 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)
Where is the LPGA headquartered? the Daytona Beach -6.778215903869885 Where 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)
Where is the LPGA headquartered? Prospector -6.81461336506875 Where 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)
Where is the LPGA headquartered? Rivertowne -7.357366733945575 Where 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)
Where is the LPGA headquartered? California -8.337916021490301 Where 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)
Where is the LPGA headquartered? Japan -8.43865002064543 Where 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)
Where is the LPGA headquartered? Thailand -8.443071005353207 Where 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)
Where is the LPGA headquartered? Hawaii -8.456890514914186 Where 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)
Where is the LPGA headquartered? Rookie -8.503261039289455 Where 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)
Where is the LPGA headquartered? Tseng -8.729716494697517 Where 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)
Where is the LPGA headquartered? Natalie Gulbis -8.946647592816907 Where 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)
Where is the LPGA headquartered? Lawless -8.948622673239257 Where 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)
Where is the LPGA headquartered? Rolex -8.94962850385427 Where 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)
Where is the LPGA headquartered? Terry -9.015913899121513 Where 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)
Where is the LPGA headquartered? Duramed -9.082391688606277 Where 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)
Where is the LPGA headquartered? Delasin -9.105380798546264 Where 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)
Where is the LPGA headquartered? South Korea -9.219637187516453 Where 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)
Where is the LPGA headquartered? Smith -9.27282326299449 Where 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)
Where is the LPGA headquartered? Singapore -9.306159016289895 Where 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)
Where is the LPGA headquartered? Whitworth -9.306815019647523 Where 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)
Where is the LPGA headquartered? South Florida -9.323650053284565 Where 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)
Where is the LPGA headquartered? Strudwick -9.335109300696383 Where 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)
Where is the LPGA headquartered? the PGA -9.358491393956355 Where 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)
Where is the LPGA headquartered? Jamie Farr -9.410149739777586 Where 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)
Where is the LPGA headquartered? The River -9.49966049802886 Where 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)
Where is the LPGA headquartered? Paula -9.555219148791025 Where 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)
Where is the LPGA headquartered? TV -9.560762415313816 Where 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)
Where is the LPGA headquartered? Arpin -9.576565102305496 Where 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)
Where is the LPGA headquartered? way -9.5877814134546 Where 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)
Where is the LPGA headquartered? Patty Berg -9.621364376887168 Where 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)
Where is the LPGA headquartered? Carolyn Bivens -9.794411420252754 Where 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)
Where is the LPGA headquartered? Annika Sorenstam -9.857004067611381 Where 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)
Where is the LPGA headquartered? the natural -9.873667739765315 Where 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)
Where is the LPGA headquartered? ok -10.010800216299394 Where 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)
Where is the LPGA headquartered? Webb -10.014063664525688 Where 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)
Where is the LPGA headquartered? Ochoa -10.023860512538675 Where 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)
Where is the LPGA headquartered? the DFT -10.044391383796642 Where 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)
Where is the LPGA headquartered? Zaharias -10.048782288942604 Where 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)
Where is the LPGA headquartered? the Rockies -10.082749284574112 Where 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)
Where is the LPGA headquartered? Lynn -10.089712444570596 Where 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)
Where is the LPGA headquartered? ?CME Group -10.116515234248569 Where 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)
Where is the LPGA headquartered? Magnolia Grove -10.126641718182965 Where 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)
Where is the LPGA headquartered? long-drive golf -10.12682999539738 Where 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)
Where is the LPGA headquartered? decent shape -10.135309166459352 Where 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)
Where is the LPGA headquartered? professional golf -10.156529903597145 Where 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)
Where is the LPGA headquartered? need -10.15670995135479 Where 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)
Where is the LPGA headquartered? a bit -10.165863860323089 Where 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)
Where is the LPGA headquartered? five years -10.169728289593223 Where 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)
Where is the LPGA headquartered? five majors -10.244010052351568 Where 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)
Where is the LPGA headquartered? The ADT -10.281137199093354 Where 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)
Where is the LPGA headquartered? a great value -10.28915955023507 Where 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)
Where is the LPGA headquartered? a considerably bigger stage -10.322436607976442 Where 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)
Where is the LPGA headquartered? Morgan Pressel -10.32409923508299 Where 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)
Where is the LPGA headquartered? three tour stops -10.347194196123212 Where 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)
Where is the LPGA headquartered? a not-for-profit organization -10.349285016044062 Where 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)
Where is the LPGA headquartered? a buffet table -10.359016408407804 Where 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)
Where is the LPGA headquartered? the Year -10.359895410964105 Where 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)
Where is the LPGA headquartered? Navistar LPGA Classic Lexi Thompson -10.402406637211742 Where 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)
Where is the LPGA headquartered? last weekend -10.410230100126894 Where 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)
Where is the LPGA headquartered? a global tour -10.417368264867513 Where 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)
Where is the LPGA headquartered? any discussions -10.421958737064726 Where 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)
Where is the LPGA headquartered? upstaged three times zones -10.429360017343836 Where 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)
Where is the LPGA headquartered? The Title Sponsorship -10.436890381175163 Where 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)
Where is the LPGA headquartered? the Swedish Match Play champion -10.48103571282798 Where 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)
Where is the LPGA headquartered? the West Coast -10.487219886493156 Where 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)
Where is the LPGA headquartered? brighter times -10.487289638465207 Where 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)
Where is the LPGA headquartered? a transgender woman -10.50055259258854 Where 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)
Where is the LPGA headquartered? such a tough Tour -10.51463521768801 Where 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)
Where is the LPGA headquartered? the Symetra Tour -10.522657568829723 Where 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)
Where is the LPGA headquartered? strong financial condition -10.530615351844183 Where 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)
Where is the LPGA headquartered? Leta Lindley -10.534152150150865 Where 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)
Where is the LPGA headquartered? WE TOO -10.540927831619593 Where 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)
Where is the LPGA headquartered? Wie -10.541161125934677 Where 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)
Where is the LPGA headquartered? briefing energy policymakers -10.541225694061932 Where 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)
Where is the LPGA headquartered? the Sybase Match Play Championship -10.542994119566421 Where 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)
Where is the LPGA headquartered? the Board -10.5465309178731 Where 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)
Where is the LPGA headquartered? bankruptcy -10.56560811200754 Where 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)
Where is the LPGA headquartered? teaching teachers -10.57711538025795 Where 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)
Where is the LPGA headquartered? crisis mode -10.579246236332034 Where 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)
Where is the LPGA headquartered? American stars -10.587962989370912 Where 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)
Where is the LPGA headquartered? The Handa Cup -10.603119585375412 Where 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)
Where is the LPGA headquartered? the LPG industry -10.625810832873059 Where 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)
Where is the LPGA headquartered? Torrey Pines South -10.632298105527664 Where 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)
Where is the LPGA headquartered? foreign players -10.66029457683648 Where 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)
Where is the LPGA headquartered? A war -10.667665983189886 Where 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)
Where is the LPGA headquartered? conjunction -10.678028652134559 Where 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)
Where is the LPGA headquartered? only foreign players -10.688588857885339 Where 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)
Where is the LPGA headquartered? an upswing -10.690292715262572 Where 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)
Where is the LPGA headquartered? beautiful Half Moon Bay -10.693009895295413 Where 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)
Where is the LPGA headquartered? Kerr -10.710504244611673 Where 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)
Where is the LPGA headquartered? junior golf -10.730146198462123 Where 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)
Where is the LPGA headquartered? Ten-year teacher -10.74252496618436 Where 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)
Where is the LPGA headquartered? Asian women -10.771703486336612 Where 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)
Where is the LPGA headquartered? Sheary and everyone -10.782751247643096 Where 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)
Where is the LPGA headquartered? ?We?re -10.784082254058848 Where 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)
Where is the LPGA headquartered? Women?s Work -10.787857611057925 Where 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)
Where is the LPGA headquartered? Women?s Work -10.787857611057925 Where 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)
Where is the LPGA headquartered? 19 organisations -10.788557103081764 Where 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)
Where is the LPGA headquartered? The Red course -10.819563526739083 Where 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)
Where is the LPGA headquartered? trouble -10.844471734591778 Where 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)
Where is the LPGA headquartered? a new identity -10.846214651362429 Where 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)
Where is the LPGA headquartered? gay women -10.863014456494739 Where 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)
Where is the LPGA headquartered? the Phoenix area -10.868319627603613 Where 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)
Where is the LPGA headquartered? ?My idea -10.875885158825069 Where 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)
Where is the LPGA headquartered? Futcher and Shin -10.910895341445988 Where 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)
Where is the LPGA headquartered? least one United States LPGA event -10.920293866299188 Where 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)
Where is the LPGA headquartered? KINGSMILL -10.923776096384216 Where 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)
Where is the LPGA headquartered? the forum -10.945219893204477 Where 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)
Where is the LPGA headquartered? a resurging -10.945269297383335 Where 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)
Where is the LPGA headquartered? a business -10.965605848120031 Where 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)
Where is the LPGA headquartered? points -10.975295258638385 Where 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)
Where is the LPGA headquartered? great players -10.981695770302279 Where 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)
Where is the LPGA headquartered? Wie?s success -10.987000941411154 Where 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)
Where is the LPGA headquartered? a dream -11.002087250512846 Where 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)
Where is the LPGA headquartered? winner?s check -11.015732694251044 Where 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)
Where is the LPGA headquartered? louder -11.025372068809773 Where 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)
Where is the LPGA headquartered? She?ll -11.046878197301911 Where 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)
Where is the LPGA headquartered? Fellow teen phenom Morgan Pressel -11.093340932252008 Where 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)
Where is the LPGA headquartered? partner -11.094661951152975 Where 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)
Where is the LPGA headquartered? dire straits -11.107577750289657 Where 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)
Where is the LPGA headquartered? two -11.140563614570205 Where 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)
Where is the LPGA headquartered? ?This one -11.17488830183793 Where 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)
Where is the LPGA headquartered? action -11.18580411459076 Where 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)
Where is the LPGA headquartered? the wedding date -11.207314662957897 Where 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)
Where is the LPGA headquartered? The Legends Tour -11.211791409907333 Where 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)
Where is the LPGA headquartered? TGF -11.233245342142434 Where 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)
Where is the LPGA headquartered? a member -11.236171593066258 Where 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)
Where is the LPGA headquartered? women -11.237152546895437 Where 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)
Where is the LPGA headquartered? a great person and golfer -11.243557821917843 Where 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)
Where is the LPGA headquartered? Teenager Lexi Thompson -11.276765127687165 Where 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)
Where is the LPGA headquartered? I-95 -11.27763495241998 Where 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)
Where is the LPGA headquartered? best -11.318433761228682 Where 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)
Where is the LPGA headquartered? I95 -11.335225726692572 Where 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)
Where is the LPGA headquartered? the Evian Masters -11.361856757176572 Where 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)
Where is the LPGA headquartered? applications -11.373189487801545 Where 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)
Where is the LPGA headquartered? 13 -11.409788919182702 Where 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)
Where is the LPGA headquartered? a schedule -11.413895325885353 Where 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)
Where is the LPGA headquartered? a loss -11.466554943287978 Where 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)
Where is the LPGA headquartered? a defendent -11.594271670610032 Where 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)
Where is the LPGA headquartered? back in action -11.73759388826903 Where 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)
Where is the LPGA headquartered? the transsexual -11.761687776830247 Where 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)
Where is the LPGA headquartered? the guidance -11.802068414730316 Where 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)
Where is the LPGA headquartered? the lawsuit -11.80307434181867 Where 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)
Where is the LPGA headquartered? toils -11.818286504084995 Where 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)
Where is the LPGA headquartered? the air -11.88629512502875 Where 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)
Where is the LPGA headquartered? conservative -11.895836602829714 Where 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)
Where is the LPGA headquartered? a global tour -11.914020117424267 Where 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)
Where is the LPGA headquartered? the pack -11.916422399709354 Where 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)
Where is the LPGA headquartered? the field -12.028552582147077 Where 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)
Where is the LPGA headquartered? the verge -12.034020719421752 Where 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)
Where is the LPGA headquartered? 32 players -12.065770552374392 Where 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)
Where is the LPGA headquartered? The company -12.139961544349504 Where 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)
Where is the LPGA headquartered? the best -12.167441443671612 Where 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)
Where is the LPGA headquartered? 13 founders -12.25822780237897 Where 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)
Where is the LPGA headquartered? March 18-20 -12.266184521830292 Where 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)
Where is the LPGA headquartered? the big news -12.278780548497398 Where 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)
Where is the LPGA headquartered? The tournament -12.292927741724125 Where 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)
Where is the LPGA headquartered? The media -12.333149063831318 Where 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)
Where is the LPGA headquartered? the South?s 18 holes -12.350422958938193 Where 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)
Where is the LPGA headquartered? The 23-year-old Korean -12.380360449114862 Where 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)
Where is the LPGA headquartered? the first three events -12.453559096217955 Where 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)
Where is the LPGA headquartered? The ever popular LPGA International -12.455427204537534 Where 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)
Where is the LPGA headquartered? the finish -12.483040743189857 Where 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)
Where is the LPGA headquartered? The eight-stroke comeback -12.483984233340898 Where 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)
Where is the LPGA headquartered? finally -12.61931036949485 Where 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)
Where is the LPGA headquartered? 1989 -12.627392058192648 Where 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)
Where is the LPGA headquartered? the new tournament -12.837190291409796 Where 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)
Where is the LPGA headquartered? 1950 -12.840312418903979 Where 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)
Where is the LPGA headquartered? the board -12.902394500635793 Where 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)
Where is the LPGA headquartered? The same -12.945426784098508 Where 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)
Where is the LPGA headquartered? the 1990 Patty Berg Award -13.008693657200439 Where 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)
Where is the LPGA headquartered? the future -13.080669541943585 Where 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)
Where is the LPGA headquartered? the last few months -13.084273658544145 Where 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)
Where is the LPGA headquartered? the June 16th EWGA Web Caf? Lorena Ochoa -13.09914520538408 Where 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)
Where is the LPGA headquartered? 2009 -13.94992280617501 Where 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)
What plays did Shakespeare write? Titus Andronicus 0.7262661587464818 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Titus Andronicus) -> Titus Andronicus (5144ms)
What plays did Shakespeare write? Romeo and Juliet 0.5640218856631465 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Romeo and Juliet) -> Romeo and Juliet (5144ms)
What plays did Shakespeare write? Antony and Cleopatra 0.5640218856631465 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Antony and Cleopatra) -> Antony and Cleopatra (5144ms)
What plays did Shakespeare write? The Taming of the Shrew 0.49904816788331474 What 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)
What plays did Shakespeare write? A Midsummer Night's Dream 0.49904816788331474 What 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)
What plays did Shakespeare write? The Comedy of Errors 0.49904816788331474 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, The Comedy of Errors) -> The Comedy of Errors (5350ms)
What plays did Shakespeare write? The Two Gentlemen of Verona 0.44407040668499564 What 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)
What plays did Shakespeare write? Macbeth 0.045566782109230375 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Macbeth) -> Macbeth (5350ms)
What plays did Shakespeare write? Lord Strange -1.6103690360076737 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare and Marlowe, wrote plays for, Lord Strange) -> Lord Strange (5821ms)
What plays did Shakespeare write? a black and white union -1.778374167071881 What 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)
What plays did Shakespeare write? the Elizabethan age -1.7963559683453314 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, the Elizabethan age) -> the Elizabethan age (5821ms)
What plays did Shakespeare write? 1599?decades -1.8522972142414702 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1599?decades) -> 1599?decades (5821ms)
What plays did Shakespeare write? Elizabethan -1.894175468591165 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, Elizabethan) -> Elizabethan (5821ms)
What plays did Shakespeare write? England -1.9019346942114963 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, wrote his plays as, England) -> England (6573ms)
What plays did Shakespeare write? a comedy -1.923294140725447 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play as, a comedy) -> a comedy (6573ms)
What plays did Shakespeare write? unrhymed iambic pentameters -1.9315831149825065 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, unrhymed iambic pentameters) -> unrhymed iambic pentameters (6573ms)
What plays did Shakespeare write? Othello and Hamlet -1.9632360646315943 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, was writing plays such as, Othello and Hamlet) -> Othello and Hamlet (6573ms)
What plays did Shakespeare write? a Jew -1.9632360646315943 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, wrote a very different play about, a Jew) -> a Jew (6573ms)
What plays did Shakespeare write? the Queen?s pleasure -2.0445822675783782 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, is writing this play for, the Queen?s pleasure) -> the Queen?s pleasure (6573ms)
What plays did Shakespeare write? a novelist famous -2.195968291410339 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (a lost Shakespeare, play written by, a novelist famous) -> a novelist famous (6603ms)
What plays did Shakespeare write? two audiences -2.2333965643718594 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote a single play for, two audiences) -> two audiences (6603ms)
What plays did Shakespeare write? five or six years -2.319841378815428 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (?Shakespeare, had been writing plays for, five or six years) -> five or six years (6602ms)
What plays did Shakespeare write? historical figures -2.4119342589869133 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote many plays based on, historical figures) -> historical figures (6603ms)
What plays did Shakespeare write? be performed -2.4235680762681318 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays to, be performed) -> be performed (6603ms)
What plays did Shakespeare write? ago -2.8791810128274795 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays, ago) -> ago (6884ms)
What plays did Shakespeare write? iambic pentameter -2.9579955357360594 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, iambic pentameter) -> iambic pentameter (6884ms)
What plays did Shakespeare write? King Lear -3.0792371108025054 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (King Lear, Instance Of, play) (Shakespeare, wrote, King Lear) -> King Lear (7142ms)
What plays did Shakespeare write? Twelfth Night -3.098320832697277 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Twelfth Night, Instance Of, play) (Shakespeare, writes, Twelfth Night) -> Twelfth Night (7142ms)
What plays did Shakespeare write? 1597 -3.119880991731251 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1597) -> 1597 (7142ms)
What plays did Shakespeare write? 1605 -3.1857038804421194 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1605) -> 1605 (7218ms)
What plays did Shakespeare write? Shakespearean comedy -3.188247833258468 What 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)
What plays did Shakespeare write? enthusiasm -3.5176162545106724 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote plays with, enthusiasm) -> enthusiasm (7910ms)
What plays did Shakespeare write? Hamlet -3.5252831276947885 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Hamlet, Instance Of, play) (Shakespeare, wrote, Hamlet) -> Hamlet (7910ms)
What plays did Shakespeare write? actors -3.5987787629641845 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, actors) -> actors (7910ms)
What plays did Shakespeare write? about 400 years ago -3.6751761580327873 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays, about 400 years ago) -> about 400 years ago (8035ms)
What plays did Shakespeare write? about 400 years -3.6955772768967385 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, about 400 years) -> about 400 years (8036ms)
What plays did Shakespeare write? Othello -3.7090259611283125 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Othello, Instance Of, play) (Shakespeare, wrote, Othello) -> Othello (8036ms)
What plays did Shakespeare write? the richest era -3.7198857681116486 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, the richest era) -> the richest era (8454ms)
What plays did Shakespeare write? the mass public -3.7763153789182633 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote plays for, the mass public) -> the mass public (8455ms)
What plays did Shakespeare write? Twelfth-Night -3.783023319988106 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Twelfth-Night, Instance Of, play) (Shakespeare, writes, Twelfth Night) -> Twelfth-Night (8454ms)
What plays did Shakespeare write? good pm play -3.8999609832952165 What 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)
What plays did Shakespeare write? Romeo and Juliette -3.900069862268325 What 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)
What plays did Shakespeare write? The Tempest -3.9041782398355385 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (The Tempest, Instance Of, play) (Shakespeare, wrote, The Tempest) -> The Tempest (8574ms)
What plays did Shakespeare write? good play -3.990595782917221 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (good play, Instance Of, play) (Shakespeare, wrote, good plays) -> good play (8574ms)
What plays did Shakespeare write? Pericles -3.9938720847077223 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Pericles, Instance Of, play) (Shakespeare, wrote, Pericles) -> Pericles (8575ms)
What plays did Shakespeare write? Women -4.149260777943464 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Women, Instance Of, play) (Shakespeare, wrote, women) -> Women (8645ms)
What plays did Shakespeare write? Julius Caesar -4.182222456621341 What 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)
What plays did Shakespeare write? Poetry -4.192567187590093 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Poetry, Instance Of, play) (Shakespeare, wrote, poetry) -> Poetry (9203ms)
What plays did Shakespeare write? Dramatic poetry -4.21218005553021 What 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)
What plays did Shakespeare write? verse -4.245729535583075 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote this play entirely in, verse) -> verse (9406ms)
What plays did Shakespeare write? Henry VI -4.305083911556633 What 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)
What plays did Shakespeare write? performance -4.317612655532296 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, performance) -> performance (9649ms)
What plays did Shakespeare write? Henry VIII -4.401749625913214 What 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)
What plays did Shakespeare write? Troilus and Cressida -4.461242272890784 What 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)
What plays did Shakespeare write? rime -4.480106504031736 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, writes his plays sometimes in, rime) -> rime (10130ms)
What plays did Shakespeare write? King John -4.564387923276039 What 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)
What plays did Shakespeare write? Much Ado -4.601705018339971 What 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)
What plays did Shakespeare write? the time -4.605471079455384 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote this play, the time) -> the time (11116ms)
What plays did Shakespeare write? Henry V -4.610773975842333 What 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)
What plays did Shakespeare write? a number -4.7308158691135525 What 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)
What plays did Shakespeare write? A play -4.741547908367425 What 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)
What plays did Shakespeare write? Shylock -4.761883305956534 What 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)
What plays did Shakespeare write? 1610 -4.853694433489597 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare 's younger contemporaries, to write a play in, 1610) -> 1610 (12556ms)
What plays did Shakespeare write? Measure T -4.858356370727332 What 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)
What plays did Shakespeare write? Cymbeline -4.877217541088678 What 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)
What plays did Shakespeare write? The King and I -4.9322914945910865 What 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)
What plays did Shakespeare write? WORDS -4.93958587798673 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (WORDS, Instance Of, play) (Shakespeares, written, words) -> WORDS (14473ms)
What plays did Shakespeare write? King Henry VI -4.991371554383201 What 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)
What plays did Shakespeare write? order -5.064481316311256 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, writes a play in, order) -> order (16373ms)
What plays did Shakespeare write? ROMEO AND JULIET -5.12265759958359 What 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)
What plays did Shakespeare write? Romeo -5.252547282913424 What 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)
What plays did Shakespeare write? Santa -5.479327951701196 What 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)
What plays did Shakespeare write? still -5.481527365226704 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, is writing plays, still) -> still (18223ms)
What plays did Shakespeare write? Character -5.485226934232862 What 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)
What plays did Shakespeare write? The Story -5.557689176334936 What 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)
What plays did Shakespeare write? Roses -5.585127442804333 What 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)
What plays did Shakespeare write? Worms -5.618124251202868 What 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)
What plays did Shakespeare write? ENGLAND -5.945111790653822 What 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)
What plays did Shakespeare write? Merchant of Venice -5.978533310756854 What 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)
What plays did Shakespeare write? the top -6.394236130404073 What 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)
What plays did Shakespeare write? farce -6.7572407431163715 What 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)
The Orange Bowl is in what city? sunny Miami -9.589398708426053 The 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)
The Orange Bowl is in what city? West Virginia -9.634948387255555 The 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)
The Orange Bowl is in what city? 1935 -9.700603750120075 The 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)
The Orange Bowl is in what city? Penn State -9.726904932420087 The 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)
The Orange Bowl is in what city? diameter -9.75506716394776 The 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)
The Orange Bowl is in what city? UC -9.84908376765913 The 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)
The Orange Bowl is in what city? the City -9.85341498002527 The 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)
The Orange Bowl is in what city? Miami?s Little Havana -9.915175923569144 The 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)
The Orange Bowl is in what city? KU -9.925883769521457 The 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)
The Orange Bowl is in what city? the Seminoles -9.970689319722137 The 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)
The Orange Bowl is in what city? Dolphin Stadium -10.003749350020904 The 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)
The Orange Bowl is in what city? play -10.042412559039773 The 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)
The Orange Bowl is in what city? the Tigers -10.086519213930048 The 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)
The Orange Bowl is in what city? Iowa -10.239836325732613 The 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)
The Orange Bowl is in what city? Virginia Tech -10.330793117181384 The 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)
The Orange Bowl is in what city? Cincinnati -10.356788910891508 The 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)
The Orange Bowl is in what city? jest -10.366483100002014 The 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)
The Orange Bowl is in what city? The Hurricanes -10.36962240449209 The 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)
The Orange Bowl is in what city? the Dons -10.372738171620503 The 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)
The Orange Bowl is in what city? person -10.387939825076412 The 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)
The Orange Bowl is in what city? mid 1930 -10.392782302976203 The 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)
The Orange Bowl is in what city? the Miami Hurricanes -10.39948327203887 The 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)
The Orange Bowl is in what city? No. 1 -10.4682369313891 The 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)
The Orange Bowl is in what city? Paul Posluzny -10.54338836052853 The 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)
The Orange Bowl is in what city? the Alliance showcase -10.625828438226918 The 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)
The Orange Bowl is in what city? Miami -10.694603190927431 The 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)
The Orange Bowl is in what city? a major bowl -10.717078875204477 The 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)
The Orange Bowl is in what city? Step 3 -10.71806279712296 The 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)
The Orange Bowl is in what city? The Fiesta Bowl -10.732869224856717 The 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)
The Orange Bowl is in what city? the Orange Bowl game -10.764746519192073 The 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)
The Orange Bowl is in what city? 1933 -10.7846397401607 The 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)
The Orange Bowl is in what city? college officials -10.819251978454307 The 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)
The Orange Bowl is in what city? the Bucknell Bison -10.854223308037103 The 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)
The Orange Bowl is in what city? The Orange Bowl -10.87930954548024 The 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)
The Orange Bowl is in what city? UConn -10.892317374507266 The 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)
The Orange Bowl is in what city? Authorities Concept Scheme -10.900384297036824 The 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)
The Orange Bowl is in what city? 10-1 -10.925352386189761 The 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)
The Orange Bowl is in what city? the Wolverines -10.929856189877945 The 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)
The Orange Bowl is in what city? Topical Terms Concept Scheme -10.936119841815733 The 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)
The Orange Bowl is in what city? Ohio State -10.957501631638989 The 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)
The Orange Bowl is in what city? Marlins Park -10.963626473723998 The 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)
The Orange Bowl is in what city? stadiums -10.973384494898768 The 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)
The Orange Bowl is in what city? a game -10.995819227271221 The 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)
The Orange Bowl is in what city? the Hurricanes -11.017094175497084 The 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)
The Orange Bowl is in what city? ACC -11.037610978718906 The 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)
The Orange Bowl is in what city? 1933 and 1934 -11.039637800984641 The 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)
The Orange Bowl is in what city? the Board -11.082159019250234 The 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)
The Orange Bowl is in what city? Miami ! Jake -11.106836863406995 The 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)
The Orange Bowl is in what city? Several public health organizations -11.129890541474238 The 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)
The Orange Bowl is in what city? III -11.140530588269252 The 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)
The Orange Bowl is in what city? Missouri -11.142985480798187 The 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)
The Orange Bowl is in what city? Tonight ESPNU -11.165258471838754 The 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)
The Orange Bowl is in what city? the Seminole -11.182701690781894 The 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)
The Orange Bowl is in what city? The 1963 team -11.182972062544838 The 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)
The Orange Bowl is in what city? line -11.208489372749543 The 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)
The Orange Bowl is in what city? a live tiger -11.23068910875662 The 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)
The Orange Bowl is in what city? 1969 -11.235726304200556 The 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)
The Orange Bowl is in what city? A holding area -11.23978149574362 The 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)
The Orange Bowl is in what city? The Florida Lottery -11.262127989021455 The 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)
The Orange Bowl is in what city? a memorial service -11.264780600927038 The 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)
The Orange Bowl is in what city? home -11.292351065434614 The 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)
The Orange Bowl is in what city? Super Bowls II & III -11.296434731373186 The 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)
The Orange Bowl is in what city? The Mountaineers and Tigers -11.303193342287848 The 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)
The Orange Bowl is in what city? Mike Bellamy -11.345557603171425 The 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)
The Orange Bowl is in what city? Nebraska Cornhuskers -11.357934812831001 The 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)
The Orange Bowl is in what city? Mr. Abess -11.382201919027747 The 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)
The Orange Bowl is in what city? Georgia -11.384417118732893 The 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)
The Orange Bowl is in what city? seven miles -11.43303995331155 The 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)
The Orange Bowl is in what city? eight national champions -11.433485415421183 The 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)
The Orange Bowl is in what city? The Jayhawks -11.450105641344447 The 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)
The Orange Bowl is in what city? interesting -11.45582343698352 The 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)
The Orange Bowl is in what city? Mr. Trueba -11.472520512256049 The 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)
The Orange Bowl is in what city? 26 -11.475878364453171 The 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)
The Orange Bowl is in what city? a manufacturer consumer -11.477102900209404 The 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)
The Orange Bowl is in what city? Poms -11.499789851548842 The 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)
The Orange Bowl is in what city? the boys -11.512763738996375 The 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)
The Orange Bowl is in what city? Joe Robbie Stadium -11.518006797527926 The 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)
The Orange Bowl is in what city? 19-14 -11.529270583003935 The 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)
The Orange Bowl is in what city? Football -11.536931034117922 The 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)
The Orange Bowl is in what city? Records -11.540467832424604 The 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)
The Orange Bowl is in what city? a huge money-maker -11.544301962631758 The 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)
The Orange Bowl is in what city? the Orange Bowl -11.5737985961754 The 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)
The Orange Bowl is in what city? 50 different teams -11.58719599258573 The 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)
The Orange Bowl is in what city? a wild game -11.59293284711961 The 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)
The Orange Bowl is in what city? much controversy -11.599756176422344 The 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)
The Orange Bowl is in what city? Internships -11.60299094808449 The 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)
The Orange Bowl is in what city? a not-for-profit -11.66065238925325 The 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)
The Orange Bowl is in what city? 17 % -11.674279050066392 The 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)
The Orange Bowl is in what city? a mediocre matchup -11.677220321923947 The 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)
The Orange Bowl is in what city? the Orange Bowl Committee -11.688361622463567 The 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)
The Orange Bowl is in what city? the University -11.709337494916017 The 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)
The Orange Bowl is in what city? only Bowden -11.713397230136527 The 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)
The Orange Bowl is in what city? OU 13 -11.714952151539784 The 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)
The Orange Bowl is in what city? You?ll -11.746700949800548 The 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)
The Orange Bowl is in what city? a legendary event -11.747602901871462 The 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)
The Orange Bowl is in what city? NU?s single-game bowl record -11.785057318429564 The 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)
The Orange Bowl is in what city? the Miami area -11.791593681532712 The 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)
The Orange Bowl is in what city? an enjoyable experience -11.798384840680152 The 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)
The Orange Bowl is in what city? FOX -11.830522693931101 The 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)
The Orange Bowl is in what city? 37,000-seat Marlins Park -11.8328987361393 The 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)
The Orange Bowl is in what city? Key Biscayne -11.838880120754443 The 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)
The Orange Bowl is in what city? US Currency -11.839233431485473 The 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)
The Orange Bowl is in what city? Moore Park -11.85222667627465 The 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)
The Orange Bowl is in what city? South Florida -11.854339652053511 The 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)
The Orange Bowl is in what city? the 18-and-under crop -11.86643843762863 The 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)
The Orange Bowl is in what city? Complainant?s favor -11.873875006055835 The 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)
The Orange Bowl is in what city? a special one -11.878817205350868 The 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)
The Orange Bowl is in what city? a football game -11.890562204243452 The 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)
The Orange Bowl is in what city? the 1950s -11.904628630873477 The 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)
The Orange Bowl is in what city? the ACC champion -11.924825129808106 The 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)
The Orange Bowl is in what city? a special , special place -11.946930053346996 The 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)
The Orange Bowl is in what city? a Heisman winner -11.955669660067159 The 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)
The Orange Bowl is in what city? Virginia -11.963100234691149 The 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)
The Orange Bowl is in what city? the Rose Bowl -11.973741348119685 The 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)
The Orange Bowl is in what city? thousands -11.987177273294623 The 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)
The Orange Bowl is in what city? a unique twist -11.988457742048807 The 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)
The Orange Bowl is in what city? 62 parades -11.999952270667652 The 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)
The Orange Bowl is in what city? attention -12.005620234852447 The 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)
The Orange Bowl is in what city? Notre Dame -12.020780808714736 The 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)
The Orange Bowl is in what city? an ?at-large ? bowl game -12.028182036291552 The 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)
The Orange Bowl is in what city? an economic benefit -12.031214202023092 The 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)
The Orange Bowl is in what city? half its allotment -12.048536574409775 The 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)
The Orange Bowl is in what city? The Seminoles -12.055561210246571 The 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)
The Orange Bowl is in what city? white hankie-waving fans -12.068919705892199 The 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)
The Orange Bowl is in what city? a barbecue place -12.070576982523704 The 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)
The Orange Bowl is in what city? 64 players -12.083066899118926 The 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)
The Orange Bowl is in what city? Clemson -12.087836958783871 The 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)
The Orange Bowl is in what city? ACC champion Clemson -12.09190886853448 The 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)
The Orange Bowl is in what city? the Bowl Championship Series -12.10605600905891 The 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)
The Orange Bowl is in what city? a long time partner and friend -12.120156621539907 The 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)
The Orange Bowl is in what city? OU and Nebraska -12.125823359093209 The 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)
The Orange Bowl is in what city? a disappointment -12.126222897898536 The 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)
The Orange Bowl is in what city? January 3rd 2012 -12.171801631675475 The 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)
The Orange Bowl is in what city? 1984 -12.193095538626553 The 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)
The Orange Bowl is in what city? five BCS Bowl games -12.222200941667815 The 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)
The Orange Bowl is in what city? L football team -12.233511845838898 The 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)
The Orange Bowl is in what city? a state -12.241230124685835 The 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)
The Orange Bowl is in what city? Payton -12.280910184622178 The 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)
The Orange Bowl is in what city? Discover -12.302523173552974 The 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)
The Orange Bowl is in what city? The Rose Bowl -12.311115136078122 The 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)
The Orange Bowl is in what city? Simmons -12.320207112384084 The 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)
The Orange Bowl is in what city? bowl games -12.324362519080873 The 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)
The Orange Bowl is in what city? The King Mango Strut -12.32451515966646 The 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)
The Orange Bowl is in what city? The girls -12.343398792857622 The 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)
The Orange Bowl is in what city? FSU and Oklahoma -12.350412063840029 The 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)
The Orange Bowl is in what city? 2010 -12.38299615043778 The 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)
The Orange Bowl is in what city? a victory -12.383445406763062 The 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)
The Orange Bowl is in what city? the western side -12.385154062792806 The 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)
The Orange Bowl is in what city? hours -12.394330270236548 The 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)
The Orange Bowl is in what city? a speech -12.403781957499758 The 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)
The Orange Bowl is in what city? January -12.41943950306999 The 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)
The Orange Bowl is in what city? The games -12.419767455658983 The 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)
The Orange Bowl is in what city? The project -12.429558232305187 The 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)
The Orange Bowl is in what city? a candidate -12.434699251281527 The 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)
The Orange Bowl is in what city? Wednesday -12.446677413564915 The 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)
The Orange Bowl is in what city? the marching band -12.493361520222052 The 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)
The Orange Bowl is in what city? Argiz -12.494364447723822 The 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)
The Orange Bowl is in what city? VT -12.496491430872936 The 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)
The Orange Bowl is in what city? Echevarria -12.541286762780178 The 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)
The Orange Bowl is in what city? Frazier -12.59989898541268 The 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)
The Orange Bowl is in what city? The title game -12.608232622429126 The 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)
The Orange Bowl is in what city? The previous best -12.616984757853052 The 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)
The Orange Bowl is in what city? decades -12.625484633892086 The 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)
The Orange Bowl is in what city? a field -12.633643721238414 The 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)
The Orange Bowl is in what city? the Little Havana section -12.640612699100163 The 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)
The Orange Bowl is in what city? the audience -12.695618225356895 The 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)
The Orange Bowl is in what city? the Big East -12.696252612074122 The 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)
The Orange Bowl is in what city? the title -12.72840768221744 The 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)
The Orange Bowl is in what city? the Miami Field -12.735305050313624 The 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)
The Orange Bowl is in what city? the rose bowl -12.746027052921296 The 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)
The Orange Bowl is in what city? The game -12.817254848258424 The 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)
The Orange Bowl is in what city? now -12.820216131927362 The 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)
The Orange Bowl is in what city? plenty -12.895199880830292 The 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)
The Orange Bowl is in what city? Auburn -12.896397048456809 The 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)
The Orange Bowl is in what city? Jan -12.920142001908932 The 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)
The Orange Bowl is in what city? the conference football champion -12.931177411997428 The 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)
The Orange Bowl is in what city? the other five -12.93285027300021 The 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)
The Orange Bowl is in what city? Florida -12.933738492830422 The 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)
The Orange Bowl is in what city? Feist -12.956248709379423 The 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)
The Orange Bowl is in what city? a great game -12.956318853131082 The 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)
The Orange Bowl is in what city? 2012 -12.981089661210122 The 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)
The Orange Bowl is in what city? look-away bad -13.010805704081536 The 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)
The Orange Bowl is in what city? the second-lowest -13.01667662398705 The 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)
The Orange Bowl is in what city? Dolphins Stadium -13.034249581838978 The 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)
The Orange Bowl is in what city? The first Pryor-Arguello fight -13.05307155274322 The 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)
The Orange Bowl is in what city? the three times Clemson -13.056668946597028 The 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)
The Orange Bowl is in what city? wonderful condition -13.085174759488561 The 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)
The Orange Bowl is in what city? the controversy -13.147141213503701 The 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)
The Orange Bowl is in what city? the final reinforcement -13.147925664387412 The 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)
The Orange Bowl is in what city? The Bowl Alliance -13.150530135668134 The 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)
The Orange Bowl is in what city? Orlanda Calling -13.188099965614695 The 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)
The Orange Bowl is in what city? Sun Life Stadium -13.249235079398538 The 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)
The Orange Bowl is in what city? the second-oldest bowl game -13.264247545905711 The 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)
The Orange Bowl is in what city? Brigade 2506 -13.330631397402794 The 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)
The Orange Bowl is in what city? the last bowl game -13.429523027177765 The 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)
The Orange Bowl is in what city? Nebraska -13.46571346076868 The 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)
The Orange Bowl is in what city? the least-watched BCS game -13.494626033132178 The 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)
The Orange Bowl is in what city? a statement -13.5018049434154 The 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)
The Orange Bowl is in what city? Music -13.530958373988469 The 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)
The Orange Bowl is in what city? 1985 -13.54504740842409 The 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)
The Orange Bowl is in what city? the award -13.56072137854145 The 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)
The Orange Bowl is in what city? a sense -13.608055711359231 The 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)
The Orange Bowl is in what city? the brim -13.672742017744277 The 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)
The Orange Bowl is in what city? the worst rated BCS bowl telecast -13.710196434302379 The 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)
The Orange Bowl is in what city? the county -13.713340980816056 The 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)
The Orange Bowl is in what city? the worst I?ve -13.719371602898839 The 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)
The Orange Bowl is in what city? the family-unfriendly start time -13.736692743376368 The 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)
The Orange Bowl is in what city? annually -13.82343067310329 The 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)
The Orange Bowl is in what city? Fanfare -13.825587228194255 The 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)
The Orange Bowl is in what city? Saturday -13.843581063494625 The 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)
The Orange Bowl is in what city? Site -13.84500796508014 The 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)
The Orange Bowl is in what city? the most competitive events -13.912014334563617 The 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)
The Orange Bowl is in what city? the other three BCS Bowls -13.942900579268638 The 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)
The Orange Bowl is in what city? the fugitive -14.06239500110427 The 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)
The Orange Bowl is in what city? the attempt -14.065512053331057 The 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)
The Orange Bowl is in what city? the mall -14.164127869845224 The 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)
The Orange Bowl is in what city? The multiplatinum-selling singer -14.26414142406436 The 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)
The Orange Bowl is in what city? a stadium -14.288269648730367 The 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)
The Orange Bowl is in what city? the new years bass fishing -14.304533952578954 The 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)
The Orange Bowl is in what city? The ballpark -14.409311791946541 The 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)
The Orange Bowl is in what city? the many decades -14.439738945028159 The 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)
The Orange Bowl is in what city? the stadium -14.726579869600558 The 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)
The Orange Bowl is in what city? the controversy over last weeks -15.221163013362371 The 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)
What is the chemical formula for sulphur dioxide? gas -8.289679493625881 What 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)
What is the chemical formula for sulphur dioxide? Gases -8.981397844592681 What 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)
What is the chemical formula for sulphur dioxide? CARBON -9.282382886548172 What 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)
What is the chemical formula for sulphur dioxide? NITROGEN -9.282382886548172 What 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)
What is the chemical formula for sulphur dioxide? A study of the effect of sulphur dioxide on plants -9.392536897455953 What 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)
What is the chemical formula for sulphur dioxide? Pergamon Press -9.67276364245327 What 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)
What is the chemical formula for sulphur dioxide? Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine -9.71415680046612 What 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)
What is the chemical formula for sulphur dioxide? Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide -9.80563456456988 What 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)
What is the chemical formula for sulphur dioxide? Sulfur dioxide -9.857656228388695 What 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)
What is the chemical formula for sulphur dioxide? dangerous gas -10.272674234939634 What 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)
What is the chemical formula for sulphur dioxide? Ithaca -10.277227190228853 What 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)
What is the chemical formula for sulphur dioxide? toxic gas -10.475398001911614 What 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)
What is the chemical formula for sulphur dioxide? acid gas -10.482104099921225 What 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)
What is the chemical formula for sulphur dioxide? air -10.49447329812078 What 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)
What is the chemical formula for sulphur dioxide? haze-causing pollutant -10.495580439332043 What 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)
What is the chemical formula for sulphur dioxide? corrosion-promoting substance -10.495580439332043 What 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)
What is the chemical formula for sulphur dioxide? water-soluble contaminant -10.501319183157275 What 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)
What is the chemical formula for sulphur dioxide? polluting gas -10.501493039206988 What 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)
What is the chemical formula for sulphur dioxide? waste gas -10.527754319645592 What 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)
What is the chemical formula for sulphur dioxide? condensable gas -10.571861363353205 What 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)
What is the chemical formula for sulphur dioxide? nasty gas -10.57401037675963 What 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)
What is the chemical formula for sulphur dioxide? life-threatening -10.607180549482349 What 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)
What is the chemical formula for sulphur dioxide? pollution gas -10.613420643637042 What 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)
What is the chemical formula for sulphur dioxide? secondary gas -10.61542687097879 What 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)
What is the chemical formula for sulphur dioxide? test gas -10.615643760557791 What 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)
What is the chemical formula for sulphur dioxide? inorganic gas -10.618405814941731 What 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)
What is the chemical formula for sulphur dioxide? ambient gas -10.61867098345864 What 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)
What is the chemical formula for sulphur dioxide? compressed gas -10.624573907939308 What 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)
What is the chemical formula for sulphur dioxide? shielding gas -10.62712986472494 What 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)
What is the chemical formula for sulphur dioxide? atmospheric gas -10.631476690325641 What 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)
What is the chemical formula for sulphur dioxide? pollutant from the air -10.65336905447403 What 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)
What is the chemical formula for sulphur dioxide? Corrosion of Al -10.68673192012146 What 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)
What is the chemical formula for sulphur dioxide? chemical irritant -10.70718857075296 What 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)
What is the chemical formula for sulphur dioxide? product of combustion -10.722061697362745 What 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)
What is the chemical formula for sulphur dioxide? Coalcheck SDS -10.722467464900367 What 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)
What is the chemical formula for sulphur dioxide? component of acid deposition -10.750655279345976 What 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)
What is the chemical formula for sulphur dioxide? Burning of fossil fuels for power generation -10.75399882794058 What 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)
What is the chemical formula for sulphur dioxide? Sodium Sulphite Heptahydrate -10.758816776024917 What 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)
What is the chemical formula for sulphur dioxide? 9780725904609 -10.76354605195815 What 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)
What is the chemical formula for sulphur dioxide? severe respiratory irritant -10.767571850184758 What 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)
What is the chemical formula for sulphur dioxide? AQI -10.793605021369256 What 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)
What is the chemical formula for sulphur dioxide? chemical agent -10.802579586093794 What 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)
What is the chemical formula for sulphur dioxide? irritating and corrosive gas -10.803753066709913 What 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)
What is the chemical formula for sulphur dioxide? gaseous sulphur compound -10.807585706116875 What 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)
What is the chemical formula for sulphur dioxide? elevated combustion pollutant -10.857408884211901 What 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)
What is the chemical formula for sulphur dioxide? fossil fuels -10.85815611884027 What 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)
What is the chemical formula for sulphur dioxide? airborne particle and pollutant -10.860688673922665 What 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)
What is the chemical formula for sulphur dioxide? colourless, toxic gas -10.866529643059037 What 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)
What is the chemical formula for sulphur dioxide? Acid Gas A gas -10.866529643059037 What 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)
What is the chemical formula for sulphur dioxide? emissions -10.869030095595965 What 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)
What is the chemical formula for sulphur dioxide? colourless, non-flammable gas -10.882980708119378 What 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)
What is the chemical formula for sulphur dioxide? Potassium Metabisulphite -10.888340466605182 What 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)
What is the chemical formula for sulphur dioxide? sulphur compound -10.89212969793213 What 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)
What is the chemical formula for sulphur dioxide? conventional atmospheric contaminant -10.898181252768207 What 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)
What is the chemical formula for sulphur dioxide? fresh air air contaminant -10.907302011615345 What 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)
What is the chemical formula for sulphur dioxide? dangerous GHG gas -10.907302011615345 What 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)
What is the chemical formula for sulphur dioxide? harmful, colourless gas -10.907302011615345 What 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)
What is the chemical formula for sulphur dioxide? dangerous chemical -10.908752529147602 What 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)
What is the chemical formula for sulphur dioxide? preservative chemical -10.90918418998985 What 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)
What is the chemical formula for sulphur dioxide? chemical industry -10.910653576121566 What 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)
What is the chemical formula for sulphur dioxide? chemical additive -10.914196447422523 What 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)
What is the chemical formula for sulphur dioxide? gaseous emission -10.923415020876636 What 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)
What is the chemical formula for sulphur dioxide? hardcore toxic air pollutant -10.927722322917576 What 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)
What is the chemical formula for sulphur dioxide? group o acid gas -10.927722322917576 What 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)
What is the chemical formula for sulphur dioxide? injurious and harmful gas -10.927722322917576 What 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)
What is the chemical formula for sulphur dioxide? non-speci?c agent -10.930546983900333 What 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)
What is the chemical formula for sulphur dioxide? harmful by-products -10.9312316059019 What 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)
What is the chemical formula for sulphur dioxide? hot gas -10.939421652276637 What 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)
What is the chemical formula for sulphur dioxide? highly aggressive substance -10.94307520820335 What 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)
What is the chemical formula for sulphur dioxide? conventional monitoring parameter -10.94307520820335 What 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)
What is the chemical formula for sulphur dioxide? ClausMaster -10.94559009530703 What 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)
What is the chemical formula for sulphur dioxide? air quality indicator -10.968647032110827 What 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)
What is the chemical formula for sulphur dioxide? colorless or transparent gas -10.972616278352719 What 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)
What is the chemical formula for sulphur dioxide? particulate and noxious gas -10.972616278352719 What 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)
What is the chemical formula for sulphur dioxide? toxic and poisonous gas -10.972616278352719 What 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)
What is the chemical formula for sulphur dioxide? corrosive and irritating gas -10.972616278352719 What 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)
What is the chemical formula for sulphur dioxide? colourless, non-flammable, non-explosive gas -10.972616278352719 What 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)
What is the chemical formula for sulphur dioxide? local and regional pollutant -10.972616278352719 What 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)
What is the chemical formula for sulphur dioxide? active reducing agent -10.974711871875211 What 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)
What is the chemical formula for sulphur dioxide? air pollutant from motor vehicle -11.002234811849759 What 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)
What is the chemical formula for sulphur dioxide? colourless, irritating and reactive gas -11.006935115802513 What 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)
What is the chemical formula for sulphur dioxide? Gaua volcano -11.007598433209713 What 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)
What is the chemical formula for sulphur dioxide? volatile organic compound -11.023681700185849 What 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)
What is the chemical formula for sulphur dioxide? air quality -11.041759599493291 What 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)
What is the chemical formula for sulphur dioxide? fossil fuel -11.048500905788195 What 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)
What is the chemical formula for sulphur dioxide? Exhaust from a running car -11.048673397553879 What 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)
What is the chemical formula for sulphur dioxide? throat irritation -11.053529298660946 What 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)
What is the chemical formula for sulphur dioxide? Tamil Nadu, India TCP Limited -11.072054315998376 What 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)
What is the chemical formula for sulphur dioxide? gaseous precursor -11.08255420958902 What 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)
What is the chemical formula for sulphur dioxide? common preservative -11.110241732817796 What 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)
What is the chemical formula for sulphur dioxide? carbon dioxide -11.111167744394429 What 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)
What is the chemical formula for sulphur dioxide? Sulphuric acid -11.13093283003177 What 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)
What is the chemical formula for sulphur dioxide? bleaching agent -11.132539921663366 What 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)
What is the chemical formula for sulphur dioxide? inorganic substance -11.161186861340113 What 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)
What is the chemical formula for sulphur dioxide? precursor substance -11.17387538141786 What 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)
What is the chemical formula for sulphur dioxide? Coalcheck 24-7 -11.197757915884917 What 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)
What is the chemical formula for sulphur dioxide? outdoor pollutant -11.202555936103005 What 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)
What is the chemical formula for sulphur dioxide? toxic compound -11.21145703930104 What 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)
What is the chemical formula for sulphur dioxide? industrial pollutant -11.250048510933754 What 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)
What is the chemical formula for sulphur dioxide? a big success--is -11.26320757902851 What 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)
What is the chemical formula for sulphur dioxide? a toxin -11.282383255648778 What 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)
What is the chemical formula for sulphur dioxide? noxious pollutant -11.285802985847912 What 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)
What is the chemical formula for sulphur dioxide? toxic emission -11.285802985847912 What 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)
What is the chemical formula for sulphur dioxide? undesirable constituent -11.285802985847912 What 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)
What is the chemical formula for sulphur dioxide? metallic pollutant -11.285802985847912 What 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)
What is the chemical formula for sulphur dioxide? acidifying substance -11.285802985847912 What 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)
What is the chemical formula for sulphur dioxide? trace material -11.289682954022522 What 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)
What is the chemical formula for sulphur dioxide? pollution factor -11.290249219689414 What 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)
What is the chemical formula for sulphur dioxide? volatile fluid -11.291678366401706 What 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)
What is the chemical formula for sulphur dioxide? synthetic additive -11.294312157578776 What 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)
What is the chemical formula for sulphur dioxide? active substance -11.295178739624854 What 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)
What is the chemical formula for sulphur dioxide? anthropogenic stressors -11.295890903101895 What 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)
What is the chemical formula for sulphur dioxide? sulphuric acid -11.298026021081707 What 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)
What is the chemical formula for sulphur dioxide? particulate material -11.299861486040205 What 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)
What is the chemical formula for sulphur dioxide? dried fruits -11.302837478373478 What 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)
What is the chemical formula for sulphur dioxide? copper smelter -11.309364883504335 What 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)
What is the chemical formula for sulphur dioxide? power plant -11.309364883504335 What 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)
What is the chemical formula for sulphur dioxide? power station -11.309364883504335 What 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)
What is the chemical formula for sulphur dioxide? E201 -11.3211915301748 What 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)
What is the chemical formula for sulphur dioxide? soft drinks -11.323796931884083 What 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)
What is the chemical formula for sulphur dioxide? convenient reagent -11.326930647885913 What 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)
What is the chemical formula for sulphur dioxide? a bactericide -11.328486744607723 What 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)
What is the chemical formula for sulphur dioxide? tree bark -11.329785194806568 What 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)
What is the chemical formula for sulphur dioxide? PTB -11.333491789367743 What 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)
What is the chemical formula for sulphur dioxide? human health -11.340301465205936 What 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)
What is the chemical formula for sulphur dioxide? fossil fuel combustion -11.348146258960288 What 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)
What is the chemical formula for sulphur dioxide? power plants -11.360441247740406 What 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)
What is the chemical formula for sulphur dioxide? particulate matter -11.377432587845112 What 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)
What is the chemical formula for sulphur dioxide? a good reducing agent -11.383458457944197 What 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)
What is the chemical formula for sulphur dioxide? forest fire -11.383982479735128 What 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)
What is the chemical formula for sulphur dioxide? The electrical conductance of solutions in methylamine and ethylamine -11.38967961695048 What 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)
What is the chemical formula for sulphur dioxide? The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region -11.38967961695048 What 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)
What is the chemical formula for sulphur dioxide? harmful greenhouse gas -11.412103771488068 What 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)
What is the chemical formula for sulphur dioxide? a well established phenomenon -11.417058015506523 What 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)
What is the chemical formula for sulphur dioxide? HYDRANAL Composite 5 K -11.436644828691271 What 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)
What is the chemical formula for sulphur dioxide? a very dense gas -11.474466301282673 What 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)
What is the chemical formula for sulphur dioxide? a colourless gas -11.50664236949805 What 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)
What is the chemical formula for sulphur dioxide? traditional air pollutant -11.519089848385502 What 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)
What is the chemical formula for sulphur dioxide? common household gas -11.545045292114333 What 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)
What is the chemical formula for sulphur dioxide? prominent examples -11.566484710197466 What 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)
What is the chemical formula for sulphur dioxide? severe leaf damage -11.583437235033452 What 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)
What is the chemical formula for sulphur dioxide? a dense colourless gas -11.597926294839295 What 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)
What is the chemical formula for sulphur dioxide? a result -11.601339905535532 What 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)
What is the chemical formula for sulphur dioxide? criterion air contaminant -11.616985681001394 What 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)
What is the chemical formula for sulphur dioxide? a preservative -11.6385407768295 What 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)
What is the chemical formula for sulphur dioxide? Kalgoorlie -11.643914318017288 What 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)
What is the chemical formula for sulphur dioxide? Kwinana -11.643914318017288 What 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)
What is the chemical formula for sulphur dioxide? Tazzetti -11.643914318017288 What 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)
What is the chemical formula for sulphur dioxide? Collie -11.643914318017288 What 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)
What is the chemical formula for sulphur dioxide? Aromax -11.66433462931952 What 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)
What is the chemical formula for sulphur dioxide? 200 ppm -11.665726080138475 What 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)
What is the chemical formula for sulphur dioxide? serious questions -11.68254653820653 What 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)
What is the chemical formula for sulphur dioxide? transboundary air pollutant -11.702652004992842 What 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)
What is the chemical formula for sulphur dioxide? major phytotoxicants -11.70997988138114 What 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)
What is the chemical formula for sulphur dioxide? dangerous air pollutant -11.710877537523013 What 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)
What is the chemical formula for sulphur dioxide? acceptable limits -11.712333040646893 What 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)
What is the chemical formula for sulphur dioxide? Biomass -11.724520809999785 What 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)
What is the chemical formula for sulphur dioxide? criterion air pollutant -11.732563032820988 What 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)
What is the chemical formula for sulphur dioxide? 15 ppm -11.75567936798824 What 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)
What is the chemical formula for sulphur dioxide? 56 percent -11.75862714519899 What 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)
What is the chemical formula for sulphur dioxide? 65 percent -11.772665860333088 What 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)
What is the chemical formula for sulphur dioxide? acid rain -11.7831140353241 What 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)
What is the chemical formula for sulphur dioxide? coal containing sulphur -11.784368271794982 What 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)
What is the chemical formula for sulphur dioxide? lower worldwide -11.805173824914817 What 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)
What is the chemical formula for sulphur dioxide? a gas -11.823091333737949 What 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)
What is the chemical formula for sulphur dioxide? a known preservative -11.85948969155038 What 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)
What is the chemical formula for sulphur dioxide? a natural substance -11.862267467130348 What 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)
What is the chemical formula for sulphur dioxide? significant pollutant -11.903319780291614 What 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)
What is the chemical formula for sulphur dioxide? various industries -11.911704982489207 What 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)
What is the chemical formula for sulphur dioxide? 4.2 percent -11.933403153509628 What 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)
What is the chemical formula for sulphur dioxide? a common preservative -11.936540073463771 What 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)
What is the chemical formula for sulphur dioxide? a commercial preservative -11.938894822927015 What 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)
What is the chemical formula for sulphur dioxide? 500 km -11.94297184282808 What 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)
What is the chemical formula for sulphur dioxide? sulphur trioxide -11.973432738246741 What 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)
What is the chemical formula for sulphur dioxide? recent years -11.988464065172266 What 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)
What is the chemical formula for sulphur dioxide? visibility problems -12.003662965931163 What 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)
What is the chemical formula for sulphur dioxide? more than 99 -12.03263006348975 What 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)
What is the chemical formula for sulphur dioxide? to 17 times -12.036398898352466 What 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)
What is the chemical formula for sulphur dioxide? an indicator pollutant -12.095528672528188 What 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)
What is the chemical formula for sulphur dioxide? Smelting operations -12.118226854866096 What 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)
What is the chemical formula for sulphur dioxide? Earth -12.118466908534396 What 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)
What is the chemical formula for sulphur dioxide? Agra -12.142496541253678 What 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)
What is the chemical formula for sulphur dioxide? building materials -12.14386672477346 What 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)
What is the chemical formula for sulphur dioxide? a pungent odour -12.219185495830686 What 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)
What is the chemical formula for sulphur dioxide? Volcanoes -12.233408642974853 What 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)
What is the chemical formula for sulphur dioxide? 44 -12.336735479861307 What 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)
What is the chemical formula for sulphur dioxide? global climatic cooling -12.351670121804304 What 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)
What is the chemical formula for sulphur dioxide? fresh pet meats -12.356993651216301 What 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)
What is the chemical formula for sulphur dioxide? such a universal additive -12.357070248786416 What 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)
What is the chemical formula for sulphur dioxide? stacks and disperses -12.418003303426389 What 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)
What is the chemical formula for sulphur dioxide? a colourless gas with a strong odour -12.419863065705963 What 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)
What is the chemical formula for sulphur dioxide? Europe -12.421827491784102 What 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)
What is the chemical formula for sulphur dioxide? similar effects -12.468039931804716 What 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)
What is the chemical formula for sulphur dioxide? 300 -12.509042138467946 What 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)
What is the chemical formula for sulphur dioxide? a high energy density -12.54556767436759 What 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)
What is the chemical formula for sulphur dioxide? rotten eggs -12.620121995480536 What 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)
What is the chemical formula for sulphur dioxide? 4.6 m -12.662061477330377 What 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)
What is the chemical formula for sulphur dioxide? power stations -12.675375418588384 What 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)
What is the chemical formula for sulphur dioxide? more than 60 percent -12.69106225102799 What 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)
What is the chemical formula for sulphur dioxide? minor reactions -12.706365771670868 What 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)
What is the chemical formula for sulphur dioxide? recent decades -12.718660149948043 What 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)
What is the chemical formula for sulphur dioxide? 89 -12.742470352388253 What 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)
What is the chemical formula for sulphur dioxide? preserve the taste of wine -12.773657676973759 What 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)
What is the chemical formula for sulphur dioxide? urban areas -12.792154067324647 What 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)
What is the chemical formula for sulphur dioxide? the major causes -12.831889651337487 What 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)
What is the chemical formula for sulphur dioxide? a high level -12.840516326360211 What 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)
What is the chemical formula for sulphur dioxide? the air -12.884705268083518 What 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)
What is the chemical formula for sulphur dioxide? chemical -12.886301708923734 What 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)
What is the chemical formula for sulphur dioxide? the atmosphere ? -12.889854439848989 What 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)
What is the chemical formula for sulphur dioxide? the wine making process -12.952090415195704 What 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)
What is the chemical formula for sulphur dioxide? the main causes -12.964454729848157 What 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)
What is the chemical formula for sulphur dioxide? a haze -12.974225771730946 What 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)
What is the chemical formula for sulphur dioxide? the winter months -12.999204155875676 What 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)
What is the chemical formula for sulphur dioxide? the southeast -13.022663388448922 What 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)
What is the chemical formula for sulphur dioxide? a minimum -13.036392755224231 What 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)
What is the chemical formula for sulphur dioxide? the most important factor -13.081183263526947 What 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)
What is the chemical formula for sulphur dioxide? atmosphere -13.082777675694762 What 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)
What is the chemical formula for sulphur dioxide? the solution -13.118156731920136 What 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)
What is the chemical formula for sulphur dioxide? mold -13.1320703743051 What 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)
What is the chemical formula for sulphur dioxide? water -13.133167271809025 What 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)
What is the chemical formula for sulphur dioxide? volcanoes -13.158223159259068 What 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)
What is the chemical formula for sulphur dioxide? preservative -13.168238745992564 What 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)
What is the chemical formula for sulphur dioxide? a necessary 'disinfectant ' -13.177343341626653 What 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)
What is the chemical formula for sulphur dioxide? 2007 -13.17960005830567 What 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)
What is the chemical formula for sulphur dioxide? the volcano -13.182874866759247 What 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)
What is the chemical formula for sulphur dioxide? the picture -13.20315076924652 What 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)
What is the chemical formula for sulphur dioxide? species -13.24169544535864 What 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)
What is the chemical formula for sulphur dioxide? nose -13.247683105919215 What 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)
What is the chemical formula for sulphur dioxide? the atmosphere -13.25242958768587 What 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)
What is the chemical formula for sulphur dioxide? the color -13.261633025927702 What 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)
What is the chemical formula for sulphur dioxide? the burning -13.27023874289366 What 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)
What is the chemical formula for sulphur dioxide? the stratosphere -13.288742352700908 What 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)
What is the chemical formula for sulphur dioxide? the combustion -13.332132581504844 What 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)
What is the chemical formula for sulphur dioxide? sulphuric acids -13.398415565107946 What 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)
What is the chemical formula for sulphur dioxide? zinc -13.422318347372698 What 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)
What is the chemical formula for sulphur dioxide? component -13.426124922574475 What 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)
What is the chemical formula for sulphur dioxide? humans -13.429499216681522 What 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)
What is the chemical formula for sulphur dioxide? refrigerant -13.441170496010221 What 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)
What is the chemical formula for sulphur dioxide? yeast -13.442035503604256 What 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)
What is the chemical formula for sulphur dioxide? fume -13.480495790764987 What 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)
What is the chemical formula for sulphur dioxide? sterilant -13.486371171318781 What 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)
What is the chemical formula for sulphur dioxide? selenium -13.50707292488766 What 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)
What is the chemical formula for sulphur dioxide? rhenium -13.50707292488766 What 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)
What is the chemical formula for sulphur dioxide? boiler -13.53154656902057 What 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)
What is the chemical formula for sulphur dioxide? rock -13.53154656902057 What 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)
What is the chemical formula for sulphur dioxide? limestone -13.53154656902057 What 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)
What is the chemical formula for sulphur dioxide? dolomite -13.53154656902057 What 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)
What is the chemical formula for sulphur dioxide? incinerator -13.53154656902057 What 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)
What is the chemical formula for sulphur dioxide? high concentrations -13.543502765419506 What 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)
What is the chemical formula for sulphur dioxide? the interior -13.564143671894655 What 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)
What is the chemical formula for sulphur dioxide? xylene -13.585600334232362 What 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)
What is the chemical formula for sulphur dioxide? benzene -13.585600334232362 What 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)
What is the chemical formula for sulphur dioxide? toluene -13.585600334232362 What 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)
What is the chemical formula for sulphur dioxide? volcano -13.590398483731256 What 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)
What is the chemical formula for sulphur dioxide? ocean -13.590398483731256 What 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)
What is the chemical formula for sulphur dioxide? the acid rain -13.611141026922464 What 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)
What is the chemical formula for sulphur dioxide? calcium -13.612153061003069 What 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)
What is the chemical formula for sulphur dioxide? sodium -13.612153061003069 What 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)
What is the chemical formula for sulphur dioxide? magnesium -13.612153061003069 What 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)
What is the chemical formula for sulphur dioxide? girls -13.674630299082967 What 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)
What is the chemical formula for sulphur dioxide? the same effecto -13.70212043461266 What 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)
What is the chemical formula for sulphur dioxide? the bean plant -13.841916628937186 What 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)
What is the chemical formula for sulphur dioxide? nucleation and growth -13.873784171074313 What 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)
What is the chemical formula for sulphur dioxide? the chemical formula -13.924270966075149 What 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)
What is the chemical formula for sulphur dioxide? wine -13.9268563957885 What 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)
What is the chemical formula for sulphur dioxide? areas -14.044817414636704 What 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)
What is the chemical formula for sulphur dioxide? plants -14.083394459642157 What 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)
What is the chemical formula for sulphur dioxide? smelters -14.088143075313386 What 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)
What is the chemical formula for sulphur dioxide? fireworks -14.098032538897575 What 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)
What is the chemical formula for sulphur dioxide? around 500 tonnes/day -14.111271600143105 What 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)
What is the chemical formula for sulphur dioxide? the reduction -14.162512892417276 What 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)
What is the chemical formula for sulphur dioxide? health -14.408573697833113 What 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)
What is the chemical formula for sulphur dioxide? the wine industry -14.443034459554967 What 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)
What is the chemical formula for sulphur dioxide? effect -14.513876621992823 What 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)
What is the chemical formula for sulphur dioxide? bleaching -14.545837971431043 What 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)
What is the chemical formula for sulphur dioxide? applications -14.879683854561398 What 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)
What is the chemical formula for sulphur dioxide? toxic -15.239808521602432 What 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)
What is the chemical formula for sulphur dioxide? assemblage -15.258173848749047 What 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)
What is the chemical formula for sulphur dioxide? reductions -15.75065307130792 What 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)
Where is Venezuela? Maracaibo -0.4804764322558752 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Maracaibo) -> Maracaibo (3355ms)
Where is Venezuela? Caracas -0.5308111214186638 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Caracas) -> Caracas (3355ms)
Where is Venezuela? Moscow -0.6184164865497651 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, would be signed in, Moscow) -> Moscow (3355ms)
Where is Venezuela? Countries -1.0236735349725692 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, Countries) -> Countries (3355ms)
Where is Venezuela? Miraflores -1.1246454666975618 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, Miraflores) -> Miraflores (3355ms)
Where is Venezuela? Britain -1.1657108199639568 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Britain) -> Britain (3355ms)
Where is Venezuela? Bolivars -1.208087726112286 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Bolivars) -> Bolivars (3518ms)
Where is Venezuela? North America -1.2982974321837053 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, North America) -> North America (3517ms)
Where is Venezuela? south America -1.7846310119335982 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, south America) -> south America (3517ms)
Where is Venezuela? Pool A -1.8920757566462114 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, Pool A) -> Pool A (3518ms)
Where is Venezuela? STATES -2.1207353665002087 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, STATES) -> STATES (3518ms)
Where is Venezuela? conformity -2.1360565681792814 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, conformity) -> conformity (3517ms)
Where is Venezuela? solidarity -2.1425121314087674 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, solidarity) -> solidarity (3568ms)
Where is Venezuela? South American Countries -2.1482242470993684 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, South American Countries) -> South American Countries (3567ms)
Where is Venezuela? single digits -2.1944524786637505 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, single digits) -> single digits (3567ms)
Where is Venezuela? good shape -2.2068312463859874 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, good shape) -> good shape (3567ms)
Where is Venezuela? first place -2.2174416413060305 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, first place) -> first place (3567ms)
Where is Venezuela? light -2.2231647621551986 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, light) -> light (3567ms)
Where is Venezuela? desperate need -2.2510411461660604 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, desperate need) -> desperate need (3610ms)
Where is Venezuela? slavery -2.2515236640336096 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, were in, slavery) -> slavery (3610ms)
Where is Venezuela? a better situation -2.259141865635275 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a better situation) -> a better situation (3610ms)
Where is Venezuela? fourth place -2.3030836125839143 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, fourth place) -> fourth place (3610ms)
Where is Venezuela? a strategic location -2.3311541118561143 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a strategic location) -> a strategic location (3610ms)
Where is Venezuela? recessions -2.3655851854393264 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, recessions) -> recessions (3610ms)
Where is Venezuela? need -2.3866807062004405 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, need) -> need (3695ms)
Where is Venezuela? Northern South America -2.403650535964786 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Northern South America) -> Northern South America (3695ms)
Where is Venezuela? fact -2.412939631733078 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, fact) -> fact (3695ms)
Where is Venezuela? the Perija mountains -2.4204580978173578 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Perija mountains) -> the Perija mountains (3695ms)
Where is Venezuela? second place -2.4463236541418825 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, second place) -> second place (3695ms)
Where is Venezuela? a critical situation -2.4478036243378654 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a critical situation) -> a critical situation (3695ms)
Where is Venezuela? oil -2.4553046401343606 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been awash in, oil) -> oil (3759ms)
Where is Venezuela? a state -2.4626827691572446 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a state) -> a state (3760ms)
Where is Venezuela? the US Congress -2.4906276813332857 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is being prepared in, the US Congress) -> the US Congress (3759ms)
Where is Venezuela? the Yellow Fever zone -2.502122262654426 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Yellow Fever zone) -> the Yellow Fever zone (3760ms)
Where is Venezuela? a similar suitation -2.5158868731613158 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a similar suitation) -> a similar suitation (3759ms)
Where is Venezuela? South America -2.626171538495637 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a country in, South America) -> South America (3760ms)
Where is Venezuela? Recently -2.7960808413022695 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been in the news, Recently) -> Recently (3811ms)
Where is Venezuela? contact -2.9456000211572464 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, contact) -> contact (3811ms)
Where is Venezuela? danger -2.9587377589039017 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, danger) -> danger (3811ms)
Where is Venezuela? Colombia -2.9603779483030808 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be all in, $x) -> (Venezuela, are all active in, Colombia) -> Colombia (4618ms)
Where is Venezuela? shambles -2.9932820984144497 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, shambles) -> shambles (3842ms)
Where is Venezuela? line -3.0066096733673344 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, were in, line) -> line (3842ms)
Where is Venezuela? discussions -3.032351130730291 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, discussions) -> discussions (3842ms)
Where is Venezuela? a mess -3.046134667664461 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a mess) -> a mess (3842ms)
Where is Venezuela? Tripoli -3.090829250267732 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, Tripoli) -> Tripoli (3903ms)
Where is Venezuela? control -3.0940806656968336 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, control) -> control (3903ms)
Where is Venezuela? Italy -3.100276159903097 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Brazil , Venezuela and Argentina, are also strong in, Italy) -> Italy (4307ms)
Where is Venezuela? trouble -3.1016461969182902 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, trouble) -> trouble (3903ms)
Where is Venezuela? turmoil -3.1144817845607857 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, turmoil) -> turmoil (3903ms)
Where is Venezuela? Havana -3.1771846891585884 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arrived in, Havana) -> Havana (4090ms)
Where is Venezuela? Haiti -3.19758580802254 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, happened in, Haiti) -> Haiti (4090ms)
Where is Venezuela? Baghdad -3.2179223060569413 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, gathered in, Baghdad) -> Baghdad (4090ms)
Where is Venezuela? the Middle East -3.2294730490159838 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Middle East) -> the Middle East (4090ms)
Where is Venezuela? Barcelona -3.2381942886663815 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, works in, Barcelona) -> Barcelona (4091ms)
Where is Venezuela? Quito -3.248869251713681 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, held in, Quito) -> Quito (4185ms)
Where is Venezuela? point -3.2606164268515228 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a case in, point) -> point (4185ms)
Where is Venezuela? Latin America -3.2888700940730367 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is the only country in, Latin America) -> Latin America (4185ms)
Where is Venezuela? July -3.3848929670412184 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was formally accepted in, July) -> July (4185ms)
Where is Venezuela? Cuba -3.417412764873423 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remains in, Cuba) -> Cuba (4237ms)
Where is Venezuela? Puerto Rico -3.576509721635208 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also popular in, Puerto Rico) -> Puerto Rico (4308ms)
Where is Venezuela? political turmoil -3.7678197674899803 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, political turmoil) -> political turmoil (4308ms)
Where is Venezuela? fifth place -3.7795862926526693 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, fifth place) -> fifth place (4343ms)
Where is Venezuela? the 60 meterband -3.7805421247317614 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, the 60 meterband) -> the 60 meterband (4343ms)
Where is Venezuela? English -3.788028786715161 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, now am reading in, English) -> English (4539ms)
Where is Venezuela? Saudi Arabia -3.820565545599858 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be then in, $x) -> (Venezuela, are larger then those in, Saudi Arabia) -> Saudi Arabia (4576ms)
Where is Venezuela? northern South America -3.857463463907936 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a country in, northern South America) -> northern South America (4343ms)
Where is Venezuela? ruins -3.8631833862691956 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, ruins) -> ruins (4343ms)
Where is Venezuela? Asuncion -3.8660203905983117 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, met in, Asuncion) -> Asuncion (4372ms)
Where is Venezuela? Los Angeles -3.8942708228868765 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, raised in, Los Angeles) -> Los Angeles (4372ms)
Where is Venezuela? February -3.920467472226517 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, warned in, February) -> February (4372ms)
Where is Venezuela? a state of political turmoil -3.963369094372764 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a state of political turmoil) -> a state of political turmoil (4428ms)
Where is Venezuela? political and social hatred -3.963369094372764 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is boiling in, political and social hatred) -> political and social hatred (4428ms)
Where is Venezuela? September -3.9744035805255375 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, starts in, September) -> September (4428ms)
Where is Venezuela? the Americas -4.018689273528114 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, only be in, $x) -> (Venezuela, is the only state in, the Americas) -> the Americas (4428ms)
Where is Venezuela? the government power -4.029874042294728 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, the government power) -> the government power (4539ms)
Where is Venezuela? the midst -4.042137231529782 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the midst) -> the midst (4540ms)
Where is Venezuela? the thrall -4.050495075759802 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the thrall) -> the thrall (4539ms)
Where is Venezuela? the wings -4.056749001397028 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the wings) -> the wings (4576ms)
Where is Venezuela? more than 20 tax treaties -4.058398947976511 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, more than 20 tax treaties) -> more than 20 tax treaties (4576ms)
Where is Venezuela? the process -4.0673339154577794 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the process) -> the process (4576ms)
Where is Venezuela? the provision -4.07178038102485 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the provision) -> the provision (4576ms)
Where is Venezuela? the semifinals -4.088580133454864 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the semifinals) -> the semifinals (4577ms)
Where is Venezuela? the grip -4.127912228606901 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the grip) -> the grip (4618ms)
Where is Venezuela? the southern state -4.135977780685986 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the southern state) -> the southern state (4618ms)
Where is Venezuela? the middle -4.183189290524982 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the middle) -> the middle (4683ms)
Where is Venezuela? the region -4.193407433652023 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the region) -> the region (4682ms)
Where is Venezuela? the energy sector -4.203176790406045 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the energy sector) -> the energy sector (4682ms)
Where is Venezuela? the crapper -4.207882257842201 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the crapper) -> the crapper (4682ms)
Where is Venezuela? the throes -4.228283376706152 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the throes) -> the throes (4682ms)
Where is Venezuela? the interests -4.285407179753926 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is being run in, the interests) -> the interests (4718ms)
Where is Venezuela? talks -4.4756415966045 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, talks) -> talks (4745ms)
Where is Venezuela? progress -4.560180215196898 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a work in, progress) -> progress (4796ms)
Where is Venezuela? an international pageant -4.57380689127649 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, an international pageant) -> an international pageant (4797ms)
Where is Venezuela? political limbo -4.575914452883151 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Venezuela, would be in, political limbo) -> political limbo (4797ms)
Where is Venezuela? any danger -4.665810108969874 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be nt in, $x) -> (Venezuela, is n?t in, any danger) -> any danger (4910ms)
Where is Venezuela? a news conference -4.670248989276057 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, highlighted in, a news conference) -> a news conference (4910ms)
Where is Venezuela? editorials -4.717277986854089 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be often in, $x) -> (Venezuela, was often found in, editorials) -> editorials (4910ms)
Where is Venezuela? critical condition -4.724334449173315 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, critical condition) -> critical condition (4938ms)
Where is Venezuela? the 2010 Great Place -4.724771499377173 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been included in, the 2010 Great Place) -> the 2010 Great Place (4937ms)
Where is Venezuela? the Senate hearings -4.770592079549372 Where 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)
Where is Venezuela? second position -4.773143613026381 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remained in, second position) -> second position (4937ms)
Where is Venezuela? the Caribbean port city -4.796197291093622 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, established in, the Caribbean port city) -> the Caribbean port city (4970ms)
Where is Venezuela? a very early morning -4.822723252042584 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a very early morning) -> a very early morning (4970ms)
Where is Venezuela? Ch?vez -4.826516544364228 Where 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)
Where is Venezuela? tenth spot -4.831500653330884 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, falls in, tenth spot) -> tenth spot (5082ms)
Where is Venezuela? the Report -4.835986206165917 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, contained in, the Report) -> the Report (5082ms)
Where is Venezuela? a political crisis -4.842356196803459 Where 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)
Where is Venezuela? Spanish hands -4.869701776026262 Where 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)
Where is Venezuela? June -4.88687007253915 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, June) -> June (5108ms)
Where is Venezuela? Italy and Paris -4.902793016795268 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, lived in, Italy and Paris) -> Italy and Paris (5141ms)
Where is Venezuela? force -4.911688630806282 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Bolivia and Venezuela, would still be in, force) -> force (5141ms)
Where is Venezuela? the Seminar -4.91910083461719 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the Seminar) -> the Seminar (5164ms)
Where is Venezuela? jail -4.922821566128298 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, jail) -> jail (5164ms)
Where is Venezuela? the U.S. -4.925033755683689 Where 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)
Where is Venezuela? an unseemly tug-of-war -4.939538463782462 Where 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)
Where is Venezuela? international forums -4.967932049879534 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, also was active in, international forums) -> international forums (5278ms)
Where is Venezuela? low-A ball -4.973137968642491 Where 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)
Where is Venezuela? a more vulnerable position -4.974906341444684 Where 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)
Where is Venezuela? small rocks -4.980226499125298 Where 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)
Where is Venezuela? particular -5.004885103863593 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, headed in, particular) -> particular (5340ms)
Where is Venezuela? a very good position -5.0402724102352945 Where 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)
Where is Venezuela? recession -5.04218825864289 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, recession) -> recession (5341ms)
Where is Venezuela? the United Nations -5.072479258594904 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, passed in, the United Nations) -> the United Nations (5340ms)
Where is Venezuela? a painful economic crisis -5.108499729182701 Where 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)
Where is Venezuela? the north of South America -5.223305720427524 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is located in, the north of South America) -> the north of South America (5460ms)
Where is Venezuela? Syria -5.2493902910764065 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, has shipped fuel to, Syria) -> Syria (5460ms)
Where is Venezuela? 2004 -5.349139244691232 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, 2004) -> 2004 (5484ms)
Where is Venezuela? projects -5.378764241895472 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also investing in, projects) -> projects (5484ms)
Where is Venezuela? a year -5.394553639759182 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Venezuela, would be in, a year) -> a year (5485ms)
Where is Venezuela? Iran -5.4203928666071155 Where 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)
Where is Venezuela? news -5.431049555805797 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, mentions in, news) -> news (5507ms)
Where is Venezuela? possession -5.441969686090886 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be always in, $x) -> (Venezuela, has always been in, possession) -> possession (5571ms)
Where is Venezuela? a report -5.4646239709291935 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be ever in, $x) -> (Venezuela, has ever been mentioned in, a report) -> a report (5571ms)
Where is Venezuela? Russia -5.494438302694533 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has recently bought from, Russia) -> Russia (5597ms)
Where is Venezuela? power -5.503785156374572 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, power) -> power (5597ms)
Where is Venezuela? Libya -5.520080024540104 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, talk in, $x) -> (Venezuela, held talks in, Libya) -> Libya (5812ms)
Where is Venezuela? a change -5.562604279750159 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a change) -> a change (5812ms)
Where is Venezuela? Brazil -5.569469879052374 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has regional support from, Brazil) -> Brazil (6080ms)
Where is Venezuela? fifth -5.596394520902654 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, finished in, fifth) -> fifth (6081ms)
Where is Venezuela? mid September -5.6242339918628 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, returned in, mid September) -> mid September (6081ms)
Where is Venezuela? numbers -5.629109839361587 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, defended in, numbers) -> numbers (6081ms)
Where is Venezuela? records -5.641488607083824 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, listed in, records) -> records (6299ms)
Where is Venezuela? discounted heating oil -5.649846500950645 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in providing, discounted heating oil) -> discounted heating oil (6299ms)
Where is Venezuela? second -5.690054923444419 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, came in, second) -> second (6337ms)
Where is Venezuela? the news -5.690164649018165 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been in, the news) -> the news (6337ms)
Where is Venezuela? the tropics -5.749723890316345 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is entirely situated in, the tropics) -> the tropics (6389ms)
Where is Venezuela? the global oil market -5.7629367424478755 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is an important player in, the global oil market) -> the global oil market (6391ms)
Where is Venezuela? terms -5.784829727070369 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also a regional leader in, terms) -> terms (6391ms)
Where is Venezuela? the United States -5.793182655096079 Where 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)
Where is Venezuela? Friday -5.798742041219727 Where 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)
Where is Venezuela? the Western Hemisphere -5.865766390624008 Where 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)
Where is Venezuela? chemical pollution -6.078506774121333 Where 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)
Where is Venezuela? illiteracy -6.116325688438909 Where 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)
Where is Venezuela? different agencies -6.180189475102518 Where 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)
Where is Venezuela? a ton -6.268996393909639 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, a ton) -> a ton (6977ms)
Where is Venezuela? a nuclear reactor -6.274071236448638 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in purchasing, a nuclear reactor) -> a nuclear reactor (6977ms)
Where is Venezuela? more than 30 countries -6.3914301309913775 Where 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)
Where is Venezuela? 50 countries -6.394082690194667 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be almost in, $x) -> (Venezuela ! ? campaign, is organized in almost, 50 countries) -> 50 countries (7052ms)
Where is Venezuela? Dave Navarro -6.398908860514723 Where 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)
Where is Venezuela? the aftermath -6.446221821619423 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, faced in, the aftermath) -> the aftermath (7107ms)
Where is Venezuela? the market -6.450589743338666 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, might be in, $x) -> (Venezuela, might be in, the market) -> the market (7107ms)
Where is Venezuela? Bolivia due -6.484120181460068 Where 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)
Where is Venezuela? tens -6.490546587865297 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, had been shipping, tens) -> tens (7133ms)
Where is Venezuela? the lush valleys -6.514369585867835 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, flourished in, the lush valleys) -> the lush valleys (7273ms)
Where is Venezuela? the post-War era -6.522327368882294 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, experienced in, the post-War era) -> the post-War era (7273ms)
Where is Venezuela? the hands -6.537294180382859 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, 's in, the hands) -> the hands (7274ms)
Where is Venezuela? Gran Colombia -6.564318446441131 Where 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)
Where is Venezuela? the cross-hairs -6.587211702810029 Where 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)
Where is Venezuela? the park -6.627546920872456 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, installed in, the park) -> the park (7466ms)
Where is Venezuela? the country -6.636569523415583 Where 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)
Where is Venezuela? financial institutions -6.650085634095693 Where 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)
Where is Venezuela? the course -6.651420269915834 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the course) -> the course (7504ms)
Where is Venezuela? the fields -6.664863804464443 Where 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)
Where is Venezuela? the project -6.70280479203555 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, will also be involved in, the project) -> the project (7679ms)
Where is Venezuela? the eyes -6.708209268192635 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be too in, $x) -> (Venezuela, was too boring in, the eyes) -> the eyes (7679ms)
Where is Venezuela? the congress -6.721472222315969 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, were also present in, the congress) -> the congress (7679ms)
Where is Venezuela? the fight -6.72500902062265 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be firmly in, $x) -> (Venezuela, is firmly committed in, the fight) -> the fight (7679ms)
Where is Venezuela? the air -6.72846150045286 Where 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)
Where is Venezuela? the movement -6.753283604024589 Where 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)
Where is Venezuela? the worse position -6.758608578184974 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be certainly in, $x) -> (Venezuela, is certainly in, the worse position) -> the worse position (7716ms)
Where is Venezuela? the top twenty -6.760111999383124 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, ranked in, the top twenty) -> the top twenty (7716ms)
Where is Venezuela? the amber zone -6.767058295807527 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also in, the amber zone) -> the amber zone (7716ms)
Where is Venezuela? the line -6.8010500524605595 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also found in, the line) -> the line (7716ms)
Where is Venezuela? the second round -6.808908530426807 Where 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)
Where is Venezuela? the side -6.847892761094707 Where 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)
Where is Venezuela? the parliamentary front -6.862039954321432 Where 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)
Where is Venezuela? oil sales -6.87547256974697 Where 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)
Where is Venezuela? the group -6.885833748665814 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be currently in, $x) -> (Venezuela, is currently seeking membership in, the group) -> the group (7864ms)
Where is Venezuela? 1991 and 1996 -6.904740241334908 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, issued in, 1991 and 1996) -> 1991 and 1996 (7910ms)
Where is Venezuela? two million barrels -6.905474680753191 Where 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)
Where is Venezuela? any outside group -6.926820634267662 Where 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)
Where is Venezuela? a previous marriage -6.9577675272221065 Where 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)
Where is Venezuela? high prices -6.9913670847844305 Where 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)
Where is Venezuela? Ch?vez supporters -7.070944862226726 Where 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)
Where is Venezuela? a financial windfall -7.08155525714677 Where 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)
Where is Venezuela? a friendly America -7.121706970572648 Where 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)
Where is Venezuela? an average -7.127141277936033 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, an average) -> an average (8135ms)
Where is Venezuela? December 1999 -7.140885635288056 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, suffered in, December 1999) -> December 1999 (8135ms)
Where is Venezuela? April 2002 -7.143732180153906 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, failed in, April 2002) -> April 2002 (8135ms)
Where is Venezuela? three percent -7.1637856464946505 Where 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)
Where is Venezuela? the Portuguese word -7.1743959887124 Where 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)
Where is Venezuela? Church influence -7.222142686799154 Where 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)
Where is Venezuela? a chain -7.244396085681899 Where 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)
Where is Venezuela? 2010 -7.698167152067176 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, continued in, 2010) -> 2010 (11031ms)
Where is Venezuela? 2008 -7.806229877461371 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, launched in, 2008) -> 2008 (12513ms)
Where is Venezuela? 2005 -7.839894003150951 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, said in, 2005) -> 2005 (12711ms)
Where is Venezuela? a lack -7.841280848280653 Where 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)
Where is Venezuela? 1979 -7.906700761078008 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, won in, 1979) -> 1979 (13043ms)
Where is Venezuela? more fuel -7.925750202326394 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, to ship, more fuel) -> more fuel (13043ms)
Where is Venezuela? 1976 -7.98124798808864 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be actually in, $x) -> (Venezuela, was actually nationalized in, 1976) -> 1976 (13239ms)
Where is Venezuela? the list -7.984872683693514 Where 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)
Where is Venezuela? the National Endowment -7.993491920637634 Where 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)
Where is Venezuela? 364,000 barrels -8.003216932208899 Where 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)
Where is Venezuela? the mid-20th century -8.149439167279331 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, began in, the mid-20th century) -> the mid-20th century (13409ms)
Where is Venezuela? 100,000 bbl/day -8.379224057402475 Where 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)
Where is Venezuela? domestic shortfalls -8.490162576349242 Where 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)
Where is Venezuela? 8 to 15 percent -8.538016866635779 Where 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)
Where is Venezuela? August 2004 -8.592961015418108 Where 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)
Where is Venezuela? 8.4 % -8.611150104240107 Where 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)
Where is Venezuela? 1.32 million barrels -8.63753894302177 Where 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)
Where is Venezuela? 3.1 million barrels -8.640583806720358 Where 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)
Where is Venezuela? 13 to 20 -8.649917710744006 Where 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)
Where is Venezuela? 800 -8.674183311580386 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has increased from about, 800) -> 800 (13857ms)
Where is Venezuela? 3-1 down -8.682960712868686 Where 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)
Where is Venezuela? the native word -8.69365892821756 Where 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)
Where is Venezuela? the heavy Trades -8.800219486529077 Where 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)
Where is Venezuela? the late 1950s -8.851187927804233 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arose in, the late 1950s) -> the late 1950s (14174ms)
Where is Venezuela? the year 1937 -8.898721576055593 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, decreed in, the year 1937) -> the year 1937 (14265ms)
Where is Venezuela? Venezuela -8.907614450487545 Where 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)
Where is Venezuela? 2006 -9.16347744367923 Where 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)
Where is Venezuela? October 12 Columbus Day -9.187510110907432 Where 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)
Who developed potlatch? the Floss -11.909661141720475 Who developed potlatch? -> who develop [ potlatch ] ? -> what be potlatch create ? -> $x: (potlatch, create, $x) -> (The Potlatch dentist, created, the Floss) -> the Floss (5163ms)
Who developed potlatch? the animals -14.324874586228214 Who developed potlatch? -> who develop [ potlatch ] ? -> who invite potlatch ? -> $x: ($x, invite, potlatch) -> (the animals, were invited to, Raven?s Potlatch) -> the animals (8990ms)
Who developed potlatch? Canada -14.967938086510578 Who 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)
Who was the first Triple Crown Winner? Sir Barton -6.844627237613594 Who 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)
Who was the first Triple Crown Winner? Big Country -6.926591170104114 Who 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)
Who was the first Triple Crown Winner? Smarty Jones -6.97260184790684 Who 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)
Who was the first Triple Crown Winner? Scott Frost -7.286184689729099 Who 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)
Who was the first Triple Crown Winner? he?ll -7.444887242196669 Who 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)
Who was the first Triple Crown Winner? Big Brown -7.58869461365065 Who 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)
Who was the first Triple Crown Winner? SWA -8.254610223249244 Who 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)
Who was the first Triple Crown Winner? Secretariat -8.620988727073467 Who 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)
Who was the first Triple Crown Winner? Mickey Mantle -8.80442921504045 Who 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)
Who was the first Triple Crown Winner? Steve Cauthen -8.852483374743791 Who 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)
Who was the first Triple Crown Winner? racing great -8.854363998427774 Who 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)
Who was the first Triple Crown Winner? Rogers Hornsby -8.85970627695853 Who 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)
Who was the first Triple Crown Winner? Albert Pujols -8.867299209801613 Who 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)
Who was the first Triple Crown Winner? Chuck Klein -8.872884493607742 Who 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)
Who was the first Triple Crown Winner? legendary horse -8.89930468938326 Who 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)
Who was the first Triple Crown Winner? renowned horse -8.917206197221 Who 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)
Who was the first Triple Crown Winner? Kemp -9.060485761079274 Who 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)
Who was the first Triple Crown Winner? each age group -9.204337511181354 Who 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)
Who was the first Triple Crown Winner? a Hawaiian -9.240052473340846 Who 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)
Who was the first Triple Crown Winner? 19-12 -9.247239131718265 Who 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)
Who was the first Triple Crown Winner? Windsor Lad -9.268585365784396 Who 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)
Who was the first Triple Crown Winner? Charismatic -9.321858810441368 Who 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)
Who was the first Triple Crown Winner? Ted Williams -9.358241692238552 Who 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)
Who was the first Triple Crown Winner? Lou Gehrig -9.38781638406164 Who 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)
Who was the first Triple Crown Winner? Gannon Volk -9.40445944800269 Who 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)
Who was the first Triple Crown Winner? Sadie -9.41985580824585 Who 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)
Who was the first Triple Crown Winner? Joe Medwick -9.433919873020585 Who 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)
Who was the first Triple Crown Winner? Super Saver -9.504332131320474 Who 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)
Who was the first Triple Crown Winner? Pujols -9.523530880822982 Who 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)
Who was the first Triple Crown Winner? Twickenham see Wales -9.530646277796302 Who 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)
Who was the first Triple Crown Winner? Jake Cody -9.572559278027407 Who 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)
Who was the first Triple Crown Winner? state park system -9.575936108105992 Who 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)
Who was the first Triple Crown Winner? Trevor -9.606317825608507 Who 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)
Who was the first Triple Crown Winner? behold Hansel -9.65883264136595 Who 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)
Who was the first Triple Crown Winner? Seattle Slew -9.72282560573535 Who 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)
Who was the first Triple Crown Winner? T-ara -9.728279294089031 Who 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)
Who was the first Triple Crown Winner? Barbaro -9.74307548824676 Who 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)
Who was the first Triple Crown Winner? John John -9.747330512778293 Who 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)
Who was the first Triple Crown Winner? time and Wales -9.76173556941751 Who 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)
Who was the first Triple Crown Winner? Jewett and Barnes -9.775141805774687 Who 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)
Who was the first Triple Crown Winner? any horse -9.804556705058094 Who 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)
Who was the first Triple Crown Winner? a horse -9.846060058248748 Who 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)
Who was the first Triple Crown Winner? Shafter V. Shoemaker -9.854420183279448 Who 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)
Who was the first Triple Crown Winner? champion -9.949284734210018 Who 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)
Who was the first Triple Crown Winner? Only Yastrzemski , Robinson , and Mantle -9.96609042910906 Who 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)
Who was the first Triple Crown Winner? a jockey -9.970583897029604 Who 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)
Who was the first Triple Crown Winner? a racehorse -9.990985015893555 Who 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)
Who was the first Triple Crown Winner? trainer -9.993652758710258 Who 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)
Who was the first Triple Crown Winner? Ty Cobb -9.993963847188374 Who 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)
Who was the first Triple Crown Winner? Yaz -10.018373397387636 Who 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)
Who was the first Triple Crown Winner? charset=UTF-8 120322 Big Bang -10.07060664207587 Who 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)
Who was the first Triple Crown Winner? 1919 -10.106132885671437 Who 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)
Who was the first Triple Crown Winner? The 31-length victory -10.114110155193835 Who 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)
Who was the first Triple Crown Winner? category -10.119101098940844 Who 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)
Who was the first Triple Crown Winner? rarity -10.160262840027514 Who 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)
Who was the first Triple Crown Winner? gift -10.164992095010563 Who 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)
Who was the first Triple Crown Winner? Don -10.178217126991493 Who 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)
Who was the first Triple Crown Winner? horse -10.190529994361203 Who 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)
Who was the first Triple Crown Winner? player -10.192149737092674 Who 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)
Who was the first Triple Crown Winner? Carl Yastrzemski -10.200510890415803 Who 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)
Who was the first Triple Crown Winner? sweetie -10.212129836831526 Who 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)
Who was the first Triple Crown Winner? Hank Aaron -10.251807876412947 Who 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)
Who was the first Triple Crown Winner? Ireland scoring -10.286936423127116 Who 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)
Who was the first Triple Crown Winner? Wales -10.297091787855969 Who 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)
Who was the first Triple Crown Winner? the horses -10.341645810006058 Who 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)
Who was the first Triple Crown Winner? hes -10.407872422231698 Who 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)
Who was the first Triple Crown Winner? any team -10.416690111150093 Who 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)
Who was the first Triple Crown Winner? Big Red -10.488509561734022 Who 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)
Who was the first Triple Crown Winner? Citation -10.509656078901624 Who 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)
Who was the first Triple Crown Winner? Big Bang -10.510318139935052 Who 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)
Who was the first Triple Crown Winner? A player -10.604253832410278 Who 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)
Who was the first Triple Crown Winner? Sande -10.613361925802476 Who 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)
Who was the first Triple Crown Winner? The Welsh team -10.642272748725274 Who 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)
Who was the first Triple Crown Winner? 2005 Mark Long -10.698167568062269 Who 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)
Who was the first Triple Crown Winner? a super horse -10.717359414995077 Who 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)
Who was the first Triple Crown Winner? a famous racehorse -10.717359414995077 Who 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)
Who was the first Triple Crown Winner? Fisk -10.72399368803998 Who 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)
Who was the first Triple Crown Winner? Bell -10.740749178358337 Who 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)
Who was the first Triple Crown Winner? Foxx -10.747745724216594 Who 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)
Who was the first Triple Crown Winner? Ruth -10.747745724216594 Who 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)
Who was the first Triple Crown Winner? Paul Hines -10.887768833254075 Who 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)
Who was the first Triple Crown Winner? Pletcher -10.939559321785868 Who 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)
Who was the first Triple Crown Winner? the favourite -11.004754997865662 Who 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)
Who was the first Triple Crown Winner? Vader -11.089666851450975 Who 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)
Who was the first Triple Crown Winner? Affirmed -11.136808398031027 Who 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)
Who was the first Triple Crown Winner? Beachley -11.158155016474696 Who 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)
Who was the first Triple Crown Winner? Mantle -11.16688877602111 Who 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)
Who was the first Triple Crown Winner? Efland -11.175433986403242 Who 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)
Who was the first Triple Crown Winner? Assault -11.2177878300441 Who 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)
Who was the first Triple Crown Winner? Whirlaway -11.232262654234278 Who 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)
Who was the first Triple Crown Winner? Scotland -11.252663773098229 Who 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)
Who was the first Triple Crown Winner? Cody -11.349842081668791 Who 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)
Who was the first Triple Crown Winner? the horse -11.638558894040218 Who 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)
Who was the first Triple Crown Winner? Williams -11.778979358201813 Who 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)
Who was the first Triple Crown Winner? Ireland -11.795909076583149 Who 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)
Who was the first Triple Crown Winner? Robinson -11.795909076583149 Who 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)
Who was the first Triple Crown Winner? Gehrig -11.80121032781419 Who 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)
Who was the first Triple Crown Winner? the legendary racehorse -11.83058529533946 Who 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)
Who was the first Triple Crown Winner? Misawa -11.842012565542094 Who 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)
Who was the first Triple Crown Winner? Kawada -11.856487389732271 Who 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)
Who was the first Triple Crown Winner? Klein -11.856487389732271 Who 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)
Who was the first Triple Crown Winner? Hornsby -11.856487389732271 Who 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)
Who was the first Triple Crown Winner? Smitty -11.86815015189239 Who 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)
Who was the first Triple Crown Winner? Lajoie -11.876888508596224 Who 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)
Who was the first Triple Crown Winner? Medwick -11.876888508596224 Who 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)
Who was the first Triple Crown Winner? Frankel -11.876888508596224 Who 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)
Who was the first Triple Crown Winner? Kershaw -12.011092331008019 Who 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)
Who was the first Triple Crown Winner? Gainsborough -12.019830687711853 Who 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)
Who was the first Triple Crown Winner? Koufax -12.123996748933285 Who 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)
Who was the first Triple Crown Winner? the guy -12.26961147218178 Who 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)
Who was the first Triple Crown Winner? The team -12.295313842276771 Who 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)
Who was the first Triple Crown Winner? the major reasons -12.437051729068276 Who 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)
Who was the first Triple Crown Winner? the great horse -12.454810030837455 Who 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)
How far does a laser pointer shine? Author Topic -13.768836007560557 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a 405nm wave length -13.84554867094364 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a 650nm wave length -13.84554867094364 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a 532nm wave length -13.888180759419967 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 5 miles -13.98145725873473 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 1 mW -14.063708700253736 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The R800 Pro -14.13109384736592 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 200mW -14.212440050312704 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? eBay -14.226746676268018 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 60 times brighter -14.236855501723943 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 1W or so -14.295490057934426 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a 19-year-old man -14.300673712480725 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The FLIR P660 model -14.341532951346244 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a drop -14.371252694033116 How 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)
How far does a laser pointer shine? 60 seconds -14.375356021912312 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? less than $ 15. -14.380259003169721 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The S3 Krypton -14.437044573603089 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? sound -14.460753939528738 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? afterimage -14.50142704100213 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? less than $ 40 -14.64958684774288 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a modification -14.663704317897182 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a pilot -14.737721189369813 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? one example--shine -14.7510243314638 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a patentable process -14.751973085992152 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a prankster -14.778604858408263 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a 3D mouse -14.797698033452708 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? someone?s eyes -14.80212173835965 How 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)
How far does a laser pointer shine? inertia and friction -14.803869430526627 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a cat -14.817766573965894 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? A HeNe laser -14.852944299340196 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? built-in -14.876878296632995 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a laser diode -14.891421199617735 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Today?s invention -14.896097313951218 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? police -14.908098751986106 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? presentations -14.914673054582249 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a flashlight -14.92416172793008 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Wal-Mart -14.933575544184656 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? miles -14.933920404349616 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? pilots -14.935638662094336 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a very basic model -14.954891773344457 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the Intelligent Remote -14.959312758052235 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a similar way -14.962457357268207 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a great one -14.982748688006875 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? SkyFOX helicopter -15.005291083336795 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Can -15.011470440941164 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a beam angle -15.015901425554544 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? BORING -15.0163482455692 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? LASER light -15.019438223861226 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Justin Stouder -15.021827407243215 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a police officer -15.022582770374903 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a miniature camera -15.024152388185346 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? pizza cutter knife -15.02592076098754 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Tristan -15.030504171959409 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? A nice recent solution -15.037122162692338 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? several laser wavelengths -15.039710206470666 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a telescope -15.04265471453323 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? afterimage , flashblindness and glare -15.061331499702698 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? an option -15.063648123641299 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a commercial success -15.065416496443492 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? five millennia -15.066310767812821 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? FuzeBox -15.079930460603928 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Smart Dot -15.091942457392454 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? A company -15.092563267972249 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The LED flashlight -15.113399446979844 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? astronomers -15.116949308277585 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a bright laser end ?spot? -15.125713646574825 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? presenters -15.130594517039404 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? good use -15.130892300657091 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a very visible BLUE beam & -15.14415530748272 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? an adjustable stand -15.153138194292373 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? just about everyone -15.162286013626192 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? there own right -15.174358931430165 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Personal Edition -15.174409099189933 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? one man -15.185839112383817 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a few hundred nanometers -15.187279801520264 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? less coherent and less stable -15.190766484769473 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? front -15.193044911088231 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? preclinical evaluation -15.195269376577276 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a power source -15.195579721270253 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Tech Gadgets Mysteries -15.197847335387372 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? A test -15.203472936157455 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? great use -15.213680546092547 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? StarPointer ? -15.220836498029652 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? blind a pilot -15.223859601951624 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a pet?s toy -15.22848175329854 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? an arrow -15.232766139494435 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? an event -15.238384046601714 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a beam diameter -15.240609239324167 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a great trade show giveaway -15.249501323797196 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a great tool -15.25317864049359 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? an LED flashlight -15.29044016003698 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? A Thurston County man -15.300014769674409 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Students -15.317516063514745 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? four juveniles -15.319622685129694 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? string play -15.327057697867039 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? use -15.338633625436096 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? David Banach -15.346591408450555 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? high quality material -15.36641657104534 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? VIP presenters -15.373780988329953 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? pens -15.422233824528707 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? tools and methods -15.426606604981586 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? green light -15.436156132197116 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a laser line -15.446550956627576 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the order -15.450875005440695 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a visible green or red light -15.475237489469437 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Basic experiements -15.494046320315423 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? metal material -15.499185438906007 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? presentation -15.571362403019792 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? responsible persons -15.586941727967789 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Laser -15.626240626815969 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? coordination -15.644659444438265 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the bottom -15.65227864320421 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the internet -15.656051693960489 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the bill -15.666296700176423 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? applications -15.675883906000983 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a hot merchandise -15.693481881282727 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? equipment -15.698923183700737 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? night -15.69982177046932 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? pain -15.704618150579044 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a .5 MW laser -15.711816014292443 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Each room -15.738624672368804 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the JAC. -15.739669021304575 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? low output power -15.74316466341285 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? fun -15.778587478788465 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? I?ve -15.792173328253478 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 5milliwatts -15.797270423901516 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? rel=shortlink September 15 -15.803525216941836 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a path -15.827250523333607 How 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)
How far does a laser pointer shine? Pierre -15.858188804175025 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? excellent and efficiency -15.895073269083408 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? to 500 ft -15.89647951599643 How 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)
How far does a laser pointer shine? a good aiming device -15.936695125085153 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 10 times -15.96664142683592 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the gelatin -15.976292832220018 How 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)
How far does a laser pointer shine? More details -15.985332248719633 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a particularly nasty quote -15.987029814247942 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the camera -15.989093941889436 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the annoyance -15.989970318867977 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the game -16.01208310453172 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a better result -16.016471710221495 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a wonderful present -16.01729138119763 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? charset=UTF-8 -16.022606865540492 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Izwan -16.03929569490249 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? officers -16.058131002921066 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Accept-Encoding -16.060681610001566 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the applications -16.07044014483622 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the teams -16.136644188809804 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the site -16.148423540041463 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 23 local stores -16.15235102644403 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? certain parts -16.18566437917012 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 30ft -16.186342514530853 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the organizers -16.19306849996518 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the back -16.217890603536908 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 100 participants -16.252657337849815 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? much output power -16.273959410577305 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the group -16.275002041316334 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? cat owners -16.28776392571314 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a beam -16.306699852223677 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a range -16.31459306711088 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the aircraft -16.314897242886907 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the teen -16.322675095383428 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a place -16.345349398566874 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the sample -16.365315430055354 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the package -16.370620601164227 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a very good light beam -16.37204079782685 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? two years -16.399233483462694 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a while -16.40085988303634 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a small button which -16.40303785854106 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a step -16.40389705307212 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the mirror -16.405988531528745 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? classrooms -16.41367564496937 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? CBC News -16.415609017179133 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? continuous wave -16.422269502866634 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the researchers -16.42278828395876 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? very dangerous -16.437755555880486 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a forbidden activity -16.44605872531542 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the army -16.44866625825393 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a momentary switch -16.45488412379767 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the lectern -16.459860018998214 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? available -16.485849617831448 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? hand -16.512732128544904 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Laser diode -16.517623677817397 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the podium -16.523823050988447 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? two categories -16.53111088282295 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? great -16.531953106790393 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? ideal -16.531953106790393 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the place -16.54288814088747 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the remote -16.54410948666767 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? necessary -16.546248701863448 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a dangerous object -16.552401022399074 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a Cat Lady -16.555937820705758 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a pinch -16.558830483645277 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a prohibited item -16.570576948540573 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the view -16.580612885129895 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a great two-in-one device -16.6054528915947 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a selection -16.60864637511108 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? InfraRed -16.615109071616054 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? laser -16.6232305098463 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the mouse -16.63871864373779 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a bright beam -16.6436076207293 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? computer -16.66762580811971 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a diffraction grating -16.694043454167755 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? 2008 -16.707427509786008 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? everyday life -16.7147986002507 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a dead giveaway -16.721356429822276 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? laser-scopes -16.729439376511117 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a ballpoint pen -16.73430718123355 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a green beam -16.746040321247087 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a trip -16.750117991164558 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Digit -16.7528292244632 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a parked car -16.7676983495244 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a high quality -16.781969910361525 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? market -16.782442379672013 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? One of the first items -16.78634324709988 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? penalties -16.79366696179274 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a very visible BLUE beam -16.795770001179353 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a recent development -16.799976429546106 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? order -16.81768065407796 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a real notebook Touchpad -16.81885439854528 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? computers -16.834182544065637 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a sleek design -16.83970896998445 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the wiimote motion sensor -16.855636204828674 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? children -16.88415453409262 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? cheap Posts -16.890959885386923 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The lines -16.894673676647113 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The remote -16.903894238355047 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a wide range -16.93088051173248 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? touchpad and keyboard device -16.93989282076116 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? FORBIDDEN -16.944051255280986 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? teachers -16.94735987907026 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? toys -16.956137280358558 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? day -16.95699043563351 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? engineers -16.957542954024944 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? ?F/?C switchable -16.968217981538327 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? each team -16.978177847146164 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? ?special equipment -16.984525746657955 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The boy -16.992134253316863 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a real notbook Touchpad -16.99752301871719 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? A curious parrot -16.997537471786973 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? effective tools -16.998290773059907 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? laser diodes -16.999567211254007 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? refraction -17.000411695563592 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? walls -17.00153477992222 How 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)
How far does a laser pointer shine? The device -17.009619384453927 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? different output power -17.013863376208196 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the best light source -17.014299825105173 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? business -17.018095687097 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Infrared Laser Pointer Kit -17.01916854731707 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? ABSOLUTELY -17.022744846322183 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The light -17.02774891662063 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? helpful tools -17.034115470642387 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? nice pen-shaped presentation remote -17.03698045269148 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? temporary blindness -17.04311649675364 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the sun -17.058509724885244 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Continue reading -17.0646899007613 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? available Material -17.066363936915128 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? plugs-and-plays -17.066850624574275 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? discussion groups -17.071934846273354 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? Safe -17.073574602993492 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? night sky observation -17.07493804113007 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The remote controller -17.080679269253686 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The ranger -17.084815118363547 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a long beam range -17.08865994560788 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The first sale -17.089521238669242 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the night sky -17.09766510637353 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The laser -17.107205177500354 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? maximums -17.108636188494103 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a blast footprint -17.1098305676882 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The presenters -17.114515026563314 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? PowerPoint presenter -17.115246677251843 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? PowerPoint , MediaPlayer and -17.11532245236643 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? a few examples -17.1256709296671 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the flashlight -17.126695509772862 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The remote control -17.14522566706816 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The easiest way -17.165562217804858 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The laptops -17.20553727026928 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The presentation friendly IR remote -17.216197780246794 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The light source -17.272786395046808 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the external video screen -17.374670315369425 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the microscopic contents -17.497603475320165 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the longarm machine -17.52261229246125 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? wall -17.52757031178682 How 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)
How far does a laser pointer shine? the robot torch -17.54004494959575 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The upper half -17.6547381143499 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the drawing tool -17.671790462534872 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? the best choice -17.711830606601485 How far does a laser pointer shine? -> How does a 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)
How far does a laser pointer shine? The buyer -17.918348393534544 How far does a laser pointer shine? -> How does a 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)
What does ACLU stand for? American Civil Liberties Union -3.0691838113034104 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, American Civil Liberties Union) -> American Civil Liberties Union (6151ms)
What does ACLU stand for? ?American? Civil Liberties Union -3.158441553780713 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, ?American? Civil Liberties Union) -> ?American? Civil Liberties Union (6151ms)
What does ACLU stand for? American -3.255027813933534 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stood for, American) -> American (6151ms)
What does ACLU stand for? human rights -3.267944237106466 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stand up for, human rights) -> human rights (6152ms)
What does ACLU stand for? Sgt -3.414453867889174 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, stood up for, Sgt) -> Sgt (6152ms)
What does ACLU stand for? Anti-Christian Lawyers -3.499285585380715 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, Anti-Christian Lawyers) -> Anti-Christian Lawyers (7454ms)
What does ACLU stand for? free speech -3.5781552009317603 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, took a controversial stand for, free speech) -> free speech (7454ms)
What does ACLU stand for? Anti Christian Litigation Union -3.605891310987964 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stood for, Anti Christian Litigation Union) -> Anti Christian Litigation Union (7455ms)
What does ACLU stand for? the 2nd Amendment -3.8985343908874146 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stood up for, the 2nd Amendment) -> the 2nd Amendment (7454ms)
What does ACLU stand for? the Anti-Christian Liberal Union -3.9176506853798774 What 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)
What does ACLU stand for? the Fourth Amendment -3.9768089317439808 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU-NC, has been stood up for, the Fourth Amendment) -> the Fourth Amendment (7455ms)
What does ACLU stand for? a basic public right -4.043428822732192 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, has stood up for, a basic public right) -> a basic public right (7477ms)
What does ACLU stand for? principle -5.352793266296581 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stands for, principle) -> principle (7521ms)
What does ACLU stand for? the whole Bill -5.575919601672851 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, will now actually stand up for, the whole Bill) -> the whole Bill (7521ms)
What does ACLU stand for? the civil rights and liberties -5.72181220243411 What 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)
What does ACLU stand for? the ACLU -6.131296075766042 What 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)
What does ACLU stand for? the rights -6.279011047571592 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU?s butt, stands for, the rights) -> the rights (7539ms)
What does ACLU stand for? little chance -6.299494887997889 What 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)
What does ACLU stand for? the American Legion -6.4416569415244975 What 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)
What does ACLU stand for? the United States Supreme Court -6.542835789070075 What 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)
What does ACLU stand for? the United States -6.60719560102023 What 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)
What does ACLU stand for? the Supreme Court -6.631560884671702 What 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)
What does ACLU stand for? expansion -6.6690765224068125 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU-MN, has always stood for, expansion) -> expansion (7540ms)
What does ACLU stand for? a suit -6.997366860893534 What 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)
What does ACLU stand for? a case -7.037966398846049 What 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)
What does ACLU stand for? the very center -8.041731495676782 What 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)
What does ACLU stand for? prayer -8.407579358311775 What 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)
What does ACLU stand for? the war -8.513489625863048 What 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)
What does ACLU stand for? brainwashing -8.55982047868329 What 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)
What does ACLU stand for? constitutional law -8.816656628653952 What 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)
What does ACLU stand for? conservatives -8.866459128712911 What 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)
What does ACLU stand for? themselves -8.903492033696992 What 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)
What does ACLU stand for? law -9.290946107298867 What 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)
What does ACLU stand for? same-sex couples -9.352019064188509 What 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)
What does ACLU stand for? Montana -9.760355061129566 What 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)
What does ACLU stand for? full force -9.814758852775565 What 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)
What does ACLU stand for? weeks -9.831480246637955 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, be silent for, $x) -> (The ACLU, has been silent for, weeks) -> weeks (7907ms)
What does ACLU stand for? full page ad propaganda war -9.853162618869106 What 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)
What does ACLU stand for? full-page advertisements today -9.895879035841286 What 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)
What does ACLU stand for? Senator Jeanne Kohl-Welles -9.905251568414538 What 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)
What does ACLU stand for? a lawsuit -9.920121131882315 What 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)
What does ACLU stand for? the Richard Fine case -9.928380059853048 What 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)
What does ACLU stand for? a nationwide class action suit -9.955854775330362 What 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)
What does ACLU stand for? Ed Barocas -9.96496174867533 What 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)
What does ACLU stand for? the CIA -9.974071041886482 What 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)
What does ACLU stand for? racial and ethnic profiling -9.99356386621351 What 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)
What does ACLU stand for? ?the border? -10.010129432904643 What 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)
What does ACLU stand for? the US Communist Party -10.037300713794531 What 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)
What does ACLU stand for? Apple -10.041731558026594 What 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)
What does ACLU stand for? a moratorium -10.063361173440283 What 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)
What does ACLU stand for? FBI -10.064874253257528 What 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)
What does ACLU stand for? LGBT equality -10.094339916603452 What 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)
What does ACLU stand for? the City -10.112357771011665 What 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)
What does ACLU stand for? various lawsuits -10.146015209724741 What 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)
What does ACLU stand for? County Counsel -10.146564465377622 What 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)
What does ACLU stand for? the PGC. -10.159961167722061 What 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)
What does ACLU stand for? Keith and Food -10.16717806571178 What 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)
What does ACLU stand for? several states -10.175010088086015 What 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)
What does ACLU stand for? Governor Romney -10.194371934159378 What 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)
What does ACLU stand for? state legislators -10.202912170044169 What 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)
What does ACLU stand for? Ibarra?s resignation -10.216614403351628 What 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)
What does ACLU stand for? Facebook -10.216783740021402 What 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)
What does ACLU stand for? sponsors Rep. Edith Ajello -10.232297251242692 What 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)
What does ACLU stand for? free-speech -10.243277822383913 What 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)
What does ACLU stand for? the PATRIOT Act -10.245579466092469 What 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)
What does ACLU stand for? radio advertisements -10.24982638660167 What 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)
What does ACLU stand for? Human rights -10.332278174376848 What 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)
What does ACLU stand for? road checks -10.345217674897924 What 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)
What does ACLU stand for? Senate passage -10.352854307612482 What 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)
What does ACLU stand for? religious freedom -10.382647690876599 What 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)
What does ACLU stand for? Free Speech -10.419097589204119 What 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)
What does ACLU stand for? local police -10.438632755783512 What 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)
What does ACLU stand for? Sacramento -10.469044852196994 What 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)
What does ACLU stand for? the Lawyers ? Committee -10.495276207397207 What 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)
What does ACLU stand for? police action -10.52387114971414 What 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)
What does ACLU stand for? a court challenge -10.534885358215917 What 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)
What does ACLU stand for? PLEASE SHARE YOUR THOUGHTS -10.553051047371216 What 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)
What does ACLU stand for? busy defending pornographers -10.560120787230215 What 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)
What does ACLU stand for? a town -10.576256900974403 What 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)
What does ACLU stand for? Free speech -10.582301063737454 What 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)
What does ACLU stand for? One example -10.612637266766331 What 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)
What does ACLU stand for? a host -10.612935953751682 What 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)
What does ACLU stand for? a Canadian -10.619322788774815 What 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)
What does ACLU stand for? a joke -10.638816269144613 What 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)
What does ACLU stand for? Taser policies -10.675497604571413 What 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)
What does ACLU stand for? a wide range -10.689962189383204 What 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)
What does ACLU stand for? today?s lawsuit -10.691827022306043 What 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)
What does ACLU stand for? community members -10.70085510018792 What 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)
What does ACLU stand for? the GOP -10.705974215532768 What 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)
What does ACLU stand for? two years -10.744678404652873 What 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)
What does ACLU stand for? CAPPS II -10.74961789080203 What 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)
What does ACLU stand for? legal counsel Steven Shapiro -10.75387500233434 What 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)
What does ACLU stand for? a peer harassment case -10.754674851992672 What 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)
What does ACLU stand for? Today?s case -10.761678643931688 What 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)
What does ACLU stand for? the Tax Commission -10.76528519421042 What 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)
What does ACLU stand for? Media Matters -10.77496281270092 What 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)
What does ACLU stand for? an equal opportunity employer -10.806991439657224 What 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)
What does ACLU stand for? Muslims -10.817613109952099 What 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)
What does ACLU stand for? a tool -10.829380773450998 What 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)
What does ACLU stand for? Revise Release -10.836777149315404 What 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)
What does ACLU stand for? Metro -10.849091474910534 What 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)
What does ACLU stand for? a professor -10.85775944394492 What 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)
What does ACLU stand for? the Death Penalty -10.87871822543471 What 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)
What does ACLU stand for? Good ! Mom -10.879495673188453 What 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)
What does ACLU stand for? the Secretary -10.900206685616554 What 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)
What does ACLU stand for? August 5 -10.900597027995872 What 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)
What does ACLU stand for? Aiding and abetting -10.91397936444958 What 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)
What does ACLU stand for? tough prosecutors -10.91990309042865 What 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)
What does ACLU stand for? Humanities -10.928421110722757 What 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)
What does ACLU stand for? A good example -10.953768279521874 What 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)
What does ACLU stand for? Meetings -10.98854657653175 What 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)
What does ACLU stand for? Rodd Monts -10.996098730727617 What 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)
What does ACLU stand for? a voluntary organization -11.013724330500576 What 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)
What does ACLU stand for? the TSA -11.017624615803303 What 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)
What does ACLU stand for? substantial efforts -11.021019619601317 What 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)
What does ACLU stand for? CAIR -11.022459112858476 What 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)
What does ACLU stand for? Prayer -11.024997385092732 What 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)
What does ACLU stand for? just where -11.035986378399587 What 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)
What does ACLU stand for? FOR?s virtual office -11.038437755075767 What 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)
What does ACLU stand for? help him -11.047231803753467 What 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)
What does ACLU stand for? Second question -11.060700509109672 What 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)
What does ACLU stand for? ACLJ? -11.067820400001672 What 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)
What does ACLU stand for? particular significance -11.078492473504724 What 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)
What does ACLU stand for? 280,000 -11.092660280693819 What 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)
What does ACLU stand for? professional organization -11.096902499415165 What 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)
What does ACLU stand for? the Matrix -11.097374651510163 What 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)
What does ACLU stand for? the New York case -11.126669427616564 What 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)
What does ACLU stand for? Principle -11.156751880966578 What 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)
What does ACLU stand for? original sources -11.167697154417755 What 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)
What does ACLU stand for? an excellent point -11.200321581606886 What 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)
What does ACLU stand for? oppose policies -11.229684503224394 What 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)
What does ACLU stand for? Romero -11.244601100045974 What 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)
What does ACLU stand for? a long hair -11.244907548646921 What 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)
What does ACLU stand for? Lee Rowland -11.25680542020658 What 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)
What does ACLU stand for? Treme -11.25759707145528 What 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)
What does ACLU stand for? civilian privacy -11.259379578335587 What 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)
What does ACLU stand for? Ann Beeson -11.319548277828732 What 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)
What does ACLU stand for? New Policy -11.34424124514595 What 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)
What does ACLU stand for? Caroline -11.348669430218715 What 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)
What does ACLU stand for? 01-05-06 @ 1:02 -11.354363025313772 What 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)
What does ACLU stand for? America -11.371986223824448 What 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)
What does ACLU stand for? 2003 -11.39781342105327 What 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)
What does ACLU stand for? THE DIFFERENCE ? 39 Drumm Street -11.480342189437149 What 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)
What does ACLU stand for? Olivares -11.508435946440677 What 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)
What does ACLU stand for? Education -11.541186001820567 What 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)
What does ACLU stand for? a corporation -11.582661448861185 What 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)
What does ACLU stand for? Shows -11.58280785782231 What 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)
What does ACLU stand for? church and state -11.58397338584625 What 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)
What does ACLU stand for? staff profession -11.589450095151282 What 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)
What does ACLU stand for? the information -11.592793215822338 What 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)
What does ACLU stand for? Expansion -11.624630327764098 What 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)
What does ACLU stand for? legalization -11.665828358658821 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, defines, legalization) -> legalization (8522ms)
What does ACLU stand for? patriotism -11.703347191843072 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, apparently defines, patriotism) -> patriotism (8522ms)
What does ACLU stand for? Irina | Dec 30 , 2005 4:19:01 -11.733011566615907 What 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)
What does ACLU stand for? the legislative front -11.748329218593954 What 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)
What does ACLU stand for? legislation -11.769430239797575 What 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)
What does ACLU stand for? litigation -11.812020671645477 What 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)
What does ACLU stand for? the states -11.850011283531451 What 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)
What does ACLU stand for? the use -11.868620779676899 What 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)
What does ACLU stand for? the motions -11.945106824418291 What 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)
What does ACLU stand for? The residents -11.984123634694722 What 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)
What does ACLU stand for? bad -11.990957731723118 What 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)
What does ACLU stand for? out -12.005432555913295 What 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)
What does ACLU stand for? the same script -12.049811139181756 What 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)
What does ACLU stand for? the case -12.06413125594241 What 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)
What does ACLU stand for? legislators -12.064370513630246 What 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)
What does ACLU stand for? the education system -12.094965996057926 What 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)
What does ACLU stand for? the halls -12.096054314095076 What 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)
What does ACLU stand for? the constitutionality -12.110030026527976 What 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)
What does ACLU stand for? the textbook -12.117853017091964 What 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)
What does ACLU stand for? involved in -12.120268859129554 What 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)
What does ACLU stand for? the extent -12.125076340025242 What 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)
What does ACLU stand for? the wheel -12.137047922085031 What 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)
What does ACLU stand for? nowhere to be found -12.147515133304145 What 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)
What does ACLU stand for? the parents -12.147646428897762 What 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)
What does ACLU stand for? privacy -12.153664079199604 What 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)
What does ACLU stand for? documents -12.156787623444998 What 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)
What does ACLU stand for? right up there -12.167916252168098 What 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)
What does ACLU stand for? simply unable to handle -12.186499363972043 What 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)
What does ACLU stand for? the courts -12.190303600807745 What 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)
What does ACLU stand for? a party -12.206886184359178 What 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)
What does ACLU stand for? a member -12.206886184359178 What 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)
What does ACLU stand for? opposed to them -12.208349241986046 What 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)
What does ACLU stand for? strategies -12.220446090128416 What 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)
What does ACLU stand for? the time -12.223569232354626 What 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)
What does ACLU stand for? the county -12.245655314809557 What 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)
What does ACLU stand for? full of crap -12.246142479258356 What 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)
What does ACLU stand for? part of an effort -12.285126709926256 What 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)
What does ACLU stand for? right at the top of the list -12.31761356881617 What 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)
What does ACLU stand for? reforms -12.331845526129445 What 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)
What does ACLU stand for? the actual hill -12.340496693607951 What 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)
What does ACLU stand for? The case -12.377098876305624 What 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)
What does ACLU stand for? The issue -12.387080214450275 What 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)
What does ACLU stand for? out there -12.410308990468481 What 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)
What does ACLU stand for? the community -12.413300461148008 What 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)
What does ACLU stand for? 2008 -12.437988841994152 What 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)
What does ACLU stand for? right there -12.442561832529275 What 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)
What does ACLU stand for? suit -12.44420319015793 What 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)
What does ACLU stand for? 2007 -12.450633815435904 What 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)
What does ACLU stand for? The question -12.456314685091147 What 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)
What does ACLU stand for? the other two authors -12.463349397816954 What 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)
What does ACLU stand for? 2005 -12.46756353381724 What 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)
What does ACLU stand for? protections -12.469924466702498 What 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)
What does ACLU stand for? worried about -12.477437775583404 What 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)
What does ACLU stand for? 2006 -12.478791079722056 What 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)
What does ACLU stand for? conjunction -12.49955058685627 What 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)
What does ACLU stand for? discrimination -12.509902257432431 What 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)
What does ACLU stand for? coordination -12.521128408396937 What 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)
What does ACLU stand for? the most important church-state cases -12.521556764503835 What 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)
What does ACLU stand for? members -12.52742813020942 What 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)
What does ACLU stand for? terrorist organization -12.535262883809711 What 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)
What does ACLU stand for? coalition -12.53792816082695 What 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)
What does ACLU stand for? The real Thomas Jefferson -12.556994813786979 What 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)
What does ACLU stand for? companies -12.559515668898454 What 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)
What does ACLU stand for? The brief -12.592432804163797 What 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)
What does ACLU stand for? difficult -12.598410937270854 What 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)
What does ACLU stand for? The common-sense -12.620756382950862 What 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)
What does ACLU stand for? the authorised director -12.646298799748223 What 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)
What does ACLU stand for? the right questions -12.668403775989407 What 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)
What does ACLU stand for? a communist front -12.676928264845412 What 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)
What does ACLU stand for? The following statement -12.690722593011856 What 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)
What does ACLU stand for? a liberal organization -12.702939463276564 What 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)
What does ACLU stand for? The ruling -12.721997458987039 What 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)
What does ACLU stand for? the resolution -12.727194413441243 What 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)
What does ACLU stand for? The interactive forum -12.735453880839444 What 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)
What does ACLU stand for? the challenge -12.73727548710328 What 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)
What does ACLU stand for? the most dangerous groups -12.743411663853903 What 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)
What does ACLU stand for? The newest one -12.750733417683204 What 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)
What does ACLU stand for? The eight groups -12.750733417683204 What 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)
What does ACLU stand for? the hell -12.808340334851756 What 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)
What does ACLU stand for? nation -12.819297213287932 What 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)
What does ACLU stand for? the pro-choice movement -12.83102595755976 What 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)
What does ACLU stand for? the workers -12.849404279359867 What 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)
What does ACLU stand for? the activities -12.875264710749807 What 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)
What does ACLU stand for? the report -12.882184165946057 What 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)
What does ACLU stand for? the laws -12.89662957071385 What 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)
What does ACLU stand for? the lawsuit -12.910632641114324 What 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)
What does ACLU stand for? the window -12.941251903105316 What 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)
What does ACLU stand for? the suit -12.998660188881468 What 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)
What does ACLU stand for? the school -13.020765112420357 What 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)
What does ACLU stand for? government -13.093198709129034 What 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)
What does ACLU stand for? the most -13.186302366885847 What 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)
What does ACLU stand for? The other anomaly -13.216597005850888 What 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)
What does ACLU stand for? groups -13.237798881308205 What 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)
What does ACLU stand for? liberals -13.310301009789399 What 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)
What does ACLU stand for? persons -13.338470179866171 What 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)
What does ACLU stand for? inmates -13.34802860531471 What 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)
What does ACLU stand for? comment -13.38244772844858 What 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)
What does ACLU stand for? behalf -13.433048623330883 What 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)
What does ACLU stand for? the scapegoat -13.638753429744693 What 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)
What does ACLU stand for? insane -14.015835484303466 What 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)
What does ACLU stand for? asleep -14.015835484303466 What 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)
What does ACLU stand for? upset -14.015835484303466 What 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)
What does ACLU stand for? terrorists -14.044109486356541 What 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)
What does ACLU stand for? fascists -14.064289868805785 What 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)
What does ACLU stand for? the nations foremost guardian of liberty -14.179104638397455 What 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)
What does ACLU stand for? the problem -14.249160361358921 What 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)
What does ACLU stand for? the heck -14.257060488062788 What 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)
What does ACLU stand for? right -14.51940927967021 What 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)
What does ACLU stand for? wrong -14.532382041568273 What 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)
What does ACLU stand for? successful -14.54215106940705 What 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)
What does ACLU stand for? good -14.545879837970462 What 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)
What does ACLU stand for? correct -14.60518427674733 What 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)
What does ACLU stand for? great -14.608685015296576 What 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)
What does ACLU stand for? important -14.61375518687261 What 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)
What does ACLU stand for? genuine -14.61375518687261 What 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)
What does ACLU stand for? present -14.61880079917923 What 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)
What does ACLU stand for? therefore -14.619659100937508 What 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)
What does ACLU stand for? involved -14.619659100937508 What 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)
What does ACLU stand for? active -14.640060219801459 What 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)
What does ACLU stand for? beloved -14.640060219801459 What 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)
What does ACLU stand for? worried -14.640060219801459 What 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)
What does ACLU stand for? liberal -14.640060219801459 What 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)
What does ACLU stand for? controversial -14.640060219801459 What 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)
What does ACLU stand for? around -14.640060219801459 What 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)
What does ACLU stand for? still -14.67893891353899 What 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)
What is the highest dam in the U.S.? Bhakra village -11.782560888284621 What 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)
What is the highest dam in the U.S.? North America -11.802274292208711 What 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)
What is the highest dam in the U.S.? a narrow gorge -11.84175301619404 What 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)
What is the highest dam in the U.S.? Condit -12.349178006622235 What 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)
What is the highest dam in the U.S.? The main dam -14.846909066273982 What 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)
What is the highest dam in the U.S.? power -15.832647758002775 What 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)
Where is the world's largest meteorite? Hoba meteorite -11.023010757106308 Where 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)
What is the largest variety of cactus? tip -14.918732874633445 What 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)
What is the largest variety of cactus? Nature -17.06470872471208 What 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)
What is the largest variety of cactus? The garden -17.06967100151267 What 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)
What is the largest variety of cactus? the garden -17.341435670154752 What 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)
What is the largest variety of cactus? nature -18.73680722729617 What 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)
What are coral reefs? gray-areas -4.1561581354428085 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, gray-areas) -> gray-areas (5670ms)
What are coral reefs? species-rich community -4.211625741254346 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, species-rich community) -> species-rich community (5670ms)
What are coral reefs? near-shore environment -4.260238965883286 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, near-shore environment) -> near-shore environment (5670ms)
What are coral reefs? healthy coastal ecosystem -4.59756413059656 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, healthy coastal ecosystem) -> healthy coastal ecosystem (5670ms)
What are coral reefs? sensitive benthic community -4.612346971500723 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive benthic community) -> sensitive benthic community (5670ms)
What are coral reefs? critical coastal habitat -4.660970654933626 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical coastal habitat) -> critical coastal habitat (5670ms)
What are coral reefs? world's ecosystem -4.677096316288021 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, world's ecosystem) -> world's ecosystem (5832ms)
What are coral reefs? natural barrier -4.701911088775759 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural barrier) -> natural barrier (5831ms)
What are coral reefs? coastal zone feature -4.748506120423492 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal zone feature) -> coastal zone feature (5831ms)
What are coral reefs? sensitive coastal ecosystem -4.7737575810439665 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive coastal ecosystem) -> sensitive coastal ecosystem (5832ms)
What are coral reefs? coastal marine habitat -4.800189604456312 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal marine habitat) -> coastal marine habitat (5832ms)
What are coral reefs? shallow marine area -4.81472968701976 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shallow marine area) -> shallow marine area (5831ms)
What are coral reefs? marine organism -4.819811626569198 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine organism) -> marine organism (5855ms)
What are coral reefs? great location for diving -4.820225591076687 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, great location for diving) -> great location for diving (5855ms)
What are coral reefs? marine turtle habitat -4.8238691681535935 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine turtle habitat) -> marine turtle habitat (5856ms)
What are coral reefs? key coastal habitat -4.8261353158439295 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, key coastal habitat) -> key coastal habitat (5855ms)
What are coral reefs? natural and historical resource -4.83283611361275 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural and historical resource) -> natural and historical resource (5855ms)
What are coral reefs? potential tourist attraction -4.8372230945341 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, potential tourist attraction) -> potential tourist attraction (5855ms)
What are coral reefs? spectacular dive site -4.8427193457705435 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, spectacular dive site) -> spectacular dive site (5876ms)
What are coral reefs? natural water area -4.843550427391042 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural water area) -> natural water area (5876ms)
What are coral reefs? short, word -4.843590415777836 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, short, word) -> short, word (5876ms)
What are coral reefs? importance source of food -4.846343853381237 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral reef, Instance Of, importance source of food) -> importance source of food (5876ms)
What are coral reefs? protected natural resource -4.851528368552905 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, protected natural resource) -> protected natural resource (5876ms)
What are coral reefs? benthic community -4.876388434128503 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic community) -> benthic community (5876ms)
What are coral reefs? ecologically vital area -4.882117049969242 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ecologically vital area) -> ecologically vital area (5894ms)
What are coral reefs? active, living community -4.891237808816379 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, active, living community) -> active, living community (5894ms)
What are coral reefs? Natural ecosystem s -4.891237808816379 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, Natural ecosystem s) -> Natural ecosystem s (5894ms)
What are coral reefs? ancient historical site -4.893867811076828 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ancient historical site) -> ancient historical site (5894ms)
What are coral reefs? large, complex structure -4.894074199291191 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, large, complex structure) -> large, complex structure (5894ms)
What are coral reefs? shallow coastal area -4.894455349070922 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shallow coastal area) -> shallow coastal area (5894ms)
What are coral reefs? underwater habitat -4.909316454215925 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, underwater habitat) -> underwater habitat (5941ms)
What are coral reefs? tourist attraction -4.9098562235010785 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, tourist attraction) -> tourist attraction (5941ms)
What are coral reefs? bit of a letdown -4.9125741641268945 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, bit of a letdown) -> bit of a letdown (5942ms)
What are coral reefs? marine management issue -4.923244712007243 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine management issue) -> marine management issue (5942ms)
What are coral reefs? beautiful shallow water habitat -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful shallow water habitat) -> beautiful shallow water habitat (5962ms)
What are coral reefs? intertidal and marine ecosystem -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, intertidal and marine ecosystem) -> intertidal and marine ecosystem (5962ms)
What are coral reefs? stressed and marginal environment -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, stressed and marginal environment) -> stressed and marginal environment (5942ms)
What are coral reefs? fragile and complicated substructure -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fragile and complicated substructure) -> fragile and complicated substructure (5962ms)
What are coral reefs? fragile and important ecosystem -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fragile and important ecosystem) -> fragile and important ecosystem (5942ms)
What are coral reefs? fish and invertebrate species -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fish and invertebrate species) -> fish and invertebrate species (5962ms)
What are coral reefs? Ecosystem A bio logical community -4.962708898374194 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, Ecosystem A bio logical community) -> Ecosystem A bio logical community (5962ms)
What are coral reefs? key resource -4.97107275172417 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, key resource) -> key resource (5962ms)
What are coral reefs? delicate and fragile ecosystem -4.971349701522278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, delicate and fragile ecosystem) -> delicate and fragile ecosystem (5979ms)
What are coral reefs? essential part of the maritime Eco system -4.990197778973354 What 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)
What are coral reefs? critical habitat -4.9926671694002 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical habitat) -> critical habitat (5979ms)
What are coral reefs? iconic system -5.0018482877702155 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, iconic system) -> iconic system (5979ms)
What are coral reefs? oligotrophic environment -5.018401363975568 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, oligotrophic environment) -> oligotrophic environment (5979ms)
What are coral reefs? shore habitat -5.070856801684402 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shore habitat) -> shore habitat (5979ms)
What are coral reefs? coastal zone -5.077498535130999 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal zone) -> coastal zone (6104ms)
What are coral reefs? solid object -5.079152013065301 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, solid object) -> solid object (6104ms)
What are coral reefs? water resource -5.079842677501047 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, water resource) -> water resource (6104ms)
What are coral reefs? biogenic habitat -5.087005410121426 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biogenic habitat) -> biogenic habitat (6104ms)
What are coral reefs? benthic resource -5.10254094888953 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic resource) -> benthic resource (6104ms)
What are coral reefs? healthy environment -5.102773308485888 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, healthy environment) -> healthy environment (6104ms)
What are coral reefs? ecosystem type -5.10939555882063 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ecosystem type) -> ecosystem type (6148ms)
What are coral reefs? land barrier -5.119931556733319 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, land barrier) -> land barrier (6148ms)
What are coral reefs? marine component -5.12774767395412 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine component) -> marine component (6148ms)
What are coral reefs? cal structure -5.136123132769108 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, cal structure) -> cal structure (6149ms)
What are coral reefs? aquatic organism -5.140107642203326 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic organism) -> aquatic organism (6149ms)
What are coral reefs? beautiful resource -5.165004857317525 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful resource) -> beautiful resource (6149ms)
What are coral reefs? beautiful organism -5.183283818972342 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful organism) -> beautiful organism (6233ms)
What are coral reefs? distinctive community -5.192880271650182 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, distinctive community) -> distinctive community (6234ms)
What are coral reefs? critical ecosystem -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical ecosystem) -> critical ecosystem (6234ms)
What are coral reefs? marine structure -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine structure) -> marine structure (6234ms)
What are coral reefs? calcareous substrate -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, calcareous substrate) -> calcareous substrate (6234ms)
What are coral reefs? common ecosystem -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, common ecosystem) -> common ecosystem (6271ms)
What are coral reefs? offshore habitat -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, offshore habitat) -> offshore habitat (6233ms)
What are coral reefs? maritime resource -5.203501176510549 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, maritime resource) -> maritime resource (6271ms)
What are coral reefs? closed ecosystem -5.206243020789414 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, closed ecosystem) -> closed ecosystem (6271ms)
What are coral reefs? bottom area -5.206852319245673 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, bottom area) -> bottom area (6272ms)
What are coral reefs? underwater site -5.208237089188721 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, underwater site) -> underwater site (6271ms)
What are coral reefs? deepwater habitat -5.208237089188721 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, deepwater habitat) -> deepwater habitat (6271ms)
What are coral reefs? sensitive system -5.208984864761854 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive system) -> sensitive system (6332ms)
What are coral reefs? threatened area -5.208984864761854 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, threatened area) -> threatened area (6333ms)
What are coral reefs? aquatic community -5.211726709347144 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic community) -> aquatic community (6333ms)
What are coral reefs? prime candidate -5.2189149866437345 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, prime candidate) -> prime candidate (6333ms)
What are coral reefs? aquatic species -5.224674503629908 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic species) -> aquatic species (6333ms)
What are coral reefs? awesome place -5.227420740510586 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, awesome place) -> awesome place (6332ms)
What are coral reefs? biological system -5.230095146477658 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biological system) -> biological system (6419ms)
What are coral reefs? excellent spot -5.231327977442454 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, excellent spot) -> excellent spot (6419ms)
What are coral reefs? amazing place -5.232704761951023 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, amazing place) -> amazing place (6419ms)
What are coral reefs? florida water -5.237317254315618 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, florida water) -> florida water (6419ms)
What are coral reefs? limestone formation -5.237317254315618 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, limestone formation) -> limestone formation (6419ms)
What are coral reefs? wonderful place -5.24052040022961 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, wonderful place) -> wonderful place (6419ms)
What are coral reefs? aquaculture facility -5.241886994269684 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Reef Corals, Instance Of, aquaculture facility) -> aquaculture facility (6442ms)
What are coral reefs? romantic restaurant -5.243213691779865 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, romantic restaurant) -> romantic restaurant (6442ms)
What are coral reefs? benthic habitat -5.259513136543912 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic habitat) -> benthic habitat (6442ms)
What are coral reefs? habitat and community -5.567778283874873 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, habitat and community) -> habitat and community (6459ms)
What are coral reefs? National Monument -5.8105576834098525 What 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)
What are coral reefs? topic -6.888010359967717 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, topic) -> topic (6765ms)
What are coral reefs? community -6.9242392993413295 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, community) -> community (6765ms)
What are coral reefs? structure -7.01954773751422 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, structure) -> structure (6775ms)
What are coral reefs? species -7.0305891825185345 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, species) -> species (6776ms)
What are coral reefs? system -7.073139118030009 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, system) -> system (6775ms)
What are coral reefs? entity -7.242652086027924 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, entity) -> entity (6775ms)
What are coral reefs? attraction -7.291217314593251 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, attraction) -> attraction (6775ms)
What are coral reefs? location -7.330330692107864 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, location) -> location (6785ms)
What are coral reefs? project -7.362272172754137 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, project) -> project (6785ms)
What are coral reefs? food -7.38026351474802 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, food) -> food (6785ms)
What are coral reefs? biomes -7.402721279695028 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biomes) -> biomes (6785ms)
What are coral reefs? brand -7.424624158375828 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, brand) -> brand (6785ms)
What are coral reefs? Daughters of a Coral Dawn -9.736262952096581 What 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)
What are coral reefs? Bowman-Biltmore Hotels -9.77524718276448 What 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)
What are coral reefs? habitat -9.890997514238514 What 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)
What are coral reefs? pacific.noun.01 -10.021613778540596 What 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)
What are coral reefs? world war ii.noun.01 -10.128820412877317 What 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)
What are coral reefs? FDA OTC monograph part 333e -10.167804643545217 What 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)
What are coral reefs? Uttara Kannada -10.236707701026663 What 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)
What are coral reefs? Sea Pictures -10.261983492045506 What 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)
What are coral reefs? South Florida -10.369401915791846 What 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)
What are coral reefs? km -10.372331577294894 What 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)
What are coral reefs? Hard corals -10.374953874543111 What 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)
What are coral reefs? Acroporids -10.386287361377503 What 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)
What are coral reefs? Grand Cayman -10.397855306238695 What 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)
What are coral reefs? Palmyra Atoll -10.40181937180844 What 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)
What are coral reefs? lobster.noun.01 -10.557646950224207 What 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)
What are coral reefs? African coral reefs -10.630111684226277 What 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)
What are coral reefs? Mnemba Atoll -10.667303530726201 What 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)
What are coral reefs? conservation -10.668457642232557 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> $x: (coral reefs, modelling, $x) -> (coral reefs, create models for, conservation) -> conservation (6812ms)
What are coral reefs? Coral Reef Alliance -10.752329852777901 What 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)
What are coral reefs? Coral Reef Place -10.7913140834458 What 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)
What are coral reefs? AES Coral Reef LLC -10.7913140834458 What 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)
What are coral reefs? Le R?cif de corail -10.823800942335716 What 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)
What are coral reefs? rain forests -10.838257836169221 What 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)
What are coral reefs? Environmental guidelines for reef coral harvesting operations -10.851289822934875 What 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)
What are coral reefs? Environmental issues with coral reefs -10.874851720591296 What 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)
What are coral reefs? Pisces guide to watching fishes -10.874851720591296 What 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)
What are coral reefs? A guide to the coral reefs of the Caribbean -10.874851720591296 What 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)
What are coral reefs? Pulau Hantu -10.922200880947827 What 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)
What are coral reefs? The Yucatan Peninsula -10.935767394572768 What 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)
What are coral reefs? Scholastic's the magic school bus takes a dive: a book about coral reefs -10.955458212573795 What 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)
What are coral reefs? Coral reefs & islands: the natural history of a threatened paradise -10.955458212573795 What 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)
What are coral reefs? A field guide to the coral reef fishes of the Indian and West Pacific Oceans -10.976953277102462 What 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)
What are coral reefs? Aqaba -10.980637589288152 What 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)
What are coral reefs? recreational fishing -11.009336956448731 What 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)
What are coral reefs? Giftun Island -11.02208004173669 What 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)
What are coral reefs? Montserrat -11.05003672430184 What 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)
What are coral reefs? ?coral reef? -11.077503440712773 What 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)
What are coral reefs? HOH -11.079128712753553 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, is part of, HOH) -> HOH (8657ms)
What are coral reefs? Porto de Galinhas -11.100529294327837 What 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)
What are coral reefs? Garden -11.104882033728487 What 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)
What are coral reefs? The Bahamas -11.105997613311954 What 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)
What are coral reefs? Anguilla -11.120837153158131 What 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)
What are coral reefs? Barbados -11.165732629242878 What 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)
What are coral reefs? Kayangel -11.182467813545637 What 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)
What are coral reefs? type of underwater environment -11.183224939442912 What 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)
What are coral reefs? Lakshadweep -11.212595140928537 What 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)
What are coral reefs? Florida -11.216131939235218 What 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)
What are coral reefs? the City -11.217764762984359 What 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)
What are coral reefs? Hurghada -11.223299971714725 What 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)
What are coral reefs? Sea Aquarium beachCura?ao -11.22660678510221 What 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)
What are coral reefs? Antigua -11.243636522451421 What 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)
What are coral reefs? relatively little -11.258365822340098 What 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)
What are coral reefs? The Cahuita National Park -11.306146446234155 What 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)
What are coral reefs? the Dry Tortugas National Park -11.339484667466998 What 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)
What are coral reefs? the Great Barrier Reef -11.374594680627357 What 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)
What are coral reefs? the Great Mayan Reef -11.408512546653267 What 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)
What are coral reefs? Red algae -11.427615982605381 What 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)
What are coral reefs? a chain -11.505585161115878 What 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)
What are coral reefs? Live rocks -11.526416676144287 What 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)
What are coral reefs? a group -11.553907752786614 What 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)
What are coral reefs? marine ecosystem -11.569501460073216 What 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)
What are coral reefs? The Great Barrier Reef -11.620007244395563 What 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)
What are coral reefs? The Keys -11.632259915806872 What 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)
What are coral reefs? Guam -11.662113614358224 What 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)
What are coral reefs? the IRIS peer-to-peer network project -11.675270546890179 What 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)
What are coral reefs? Coral Reef -11.681552764124124 What 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)
What are coral reefs? Belize -11.68395554908317 What 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)
What are coral reefs? the REA teams -11.684837646011136 What 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)
What are coral reefs? Grace Bay -11.6941651514061 What 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)
What are coral reefs? Cura?ao -11.714999129400482 What 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)
What are coral reefs? the Nephtheidae family -11.739813145229267 What 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)
What are coral reefs? New Caledonia -11.742111369140261 What 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)
What are coral reefs? the Reef -11.745032020311498 What 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)
What are coral reefs? Senunu Bay -11.809873456734014 What 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)
What are coral reefs? Cahuita -11.834167264520945 What 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)
What are coral reefs? cone snails -11.869270156634649 What 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)
What are coral reefs? a biologically diverse Earth -11.873301330491067 What 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)
What are coral reefs? Cancun -11.889339150587315 What 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)
What are coral reefs? the Mesoamerican Barrier Reef System -11.89055790284134 What 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)
What are coral reefs? global warming -11.893302562373721 What 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)
What are coral reefs? the Miami-Dade School District -11.894551620286057 What 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)
What are coral reefs? Chalky Mount -11.910857427527706 What 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)
What are coral reefs? Roatan -11.922289201638753 What 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)
What are coral reefs? The Great Calusa Blueway -11.925199113302964 What 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)
What are coral reefs? an obvious heraldic display -11.925925780503563 What 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)
What are coral reefs? a reef?s ecosystem -11.926874686951987 What 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)
What are coral reefs? the National parks -11.927849562446138 What 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)
What are coral reefs? the Great Barrier Reef Marine Park -11.928578392409149 What 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)
What are coral reefs? a general idea -11.936530756934806 What 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)
What are coral reefs? the Marietas ? marine life -11.937452664648523 What 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)
What are coral reefs? Cahuita National Park -11.948680210553338 What 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)
What are coral reefs? Koh Samui -11.955630299586936 What 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)
What are coral reefs? the Ongame network -11.996821330978987 What 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)
What are coral reefs? the Isidella genus -12.001672762365734 What 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)
What are coral reefs? Ongame network -12.019108037057482 What 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)
What are coral reefs? the Lee County School District -12.033733376272053 What 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)
What are coral reefs? 20,000 acres -12.046391641605851 What 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)
What are coral reefs? a consolidation trend -12.10145351586634 What 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)
What are coral reefs? a larger effort -12.108258749992265 What 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)
What are coral reefs? BIMP-EAGA -12.124125673408047 What 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)
What are coral reefs? the Presbyterian Church -12.138533094598294 What 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)
What are coral reefs? expedition itineraries -12.159242451607788 What 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)
What are coral reefs? Mexico?s Marine National Park -12.16516157323502 What 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)
What are coral reefs? prehistoric and now extinct worms -12.269870133962336 What 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)
What are coral reefs? 2?5 % -12.307377300175116 What 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)
What are coral reefs? tiny organisms -12.316079614499039 What 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)
What are coral reefs? a gradual transition -12.318305602179585 What 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)
What are coral reefs? a marine preserve -12.32964112680503 What 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)
What are coral reefs? a bit -12.373968774003659 What 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)
What are coral reefs? a reef -12.46322803820329 What 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)
What are coral reefs? mass spawning -12.586663046722078 What 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)
What are coral reefs? the United States Army Corps -12.613679769605323 What 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)
What are coral reefs? the Act -12.688648488022785 What 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)
What are coral reefs? The islands -12.808851269211871 What 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)
What are coral reefs? The hospital -12.834557559184699 What 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)
What are coral reefs? the red sea -12.83955952788626 What 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)
What are coral reefs? The refuge -12.84958893881252 What 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)
What are coral reefs? executive order -12.86215695659188 What 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)
What are coral reefs? the same latitude -12.955389422094171 What 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)
What are coral reefs? the least -13.06328478320393 What 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)
What are coral reefs? phylum copper cadmium granules -13.068572486064014 What 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)
What are coral reefs? the northern tip -13.073415009069631 What 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)
What are coral reefs? The underwater park -13.08137279208409 What 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)
What are coral reefs? the program -13.192613013848652 What 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)
What are coral reefs? the 2011 Tour de Turtles marathon -13.223844336607765 What 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)
What are coral reefs? the action -13.256210709837069 What 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)
What are coral reefs? the newer castle -13.263735472773181 What 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)
What are coral reefs? phylum -13.321787816257599 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are part of, phylum) -> phylum (8939ms)
What are coral reefs? function -13.35749313205551 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (coral reefs, were meant to, function) -> function (7186ms)
What are coral reefs? the summertime experience -13.438122688821867 What 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)
What are coral reefs? awareness -13.495939463219697 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (The Reef, is meant to raise, awareness) -> awareness (7771ms)
What are coral reefs? the same eco-system -13.528566043512205 What 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)
What are coral reefs? corals -13.593497661019907 What 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)
What are coral reefs? the famous Great Barrier Reef -13.594732714166769 What 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)
What are coral reefs? the diving experience -13.63073745802694 What 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)
What are coral reefs? the only stretch -13.634307450551644 What 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)
What are coral reefs? the interesting sightings -13.659586374043633 What 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)
What are coral reefs? the cobra family -13.660078308651727 What 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)
What are coral reefs? the reef ecosystem -13.669739797123349 What 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)
What are coral reefs? the aquarium -13.674417378764812 What 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)
What are coral reefs? the ship -13.678371248435923 What 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)
What are coral reefs? the foundation -13.714898194597613 What 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)
What are coral reefs? the reef -13.731721605698167 What 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)
What are coral reefs? algae -13.73466344732296 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (healthy reefs, mean keeping, algae) -> algae (7770ms)
What are coral reefs? the ocean environment -13.739591471451286 What 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)
What are coral reefs? the larger Gala Coral group -13.754622798376813 What 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)
What are coral reefs? the story -13.816837749346645 What 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)
What are coral reefs? the park?s vision -13.829937110311828 What 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)
What are coral reefs? the discussion -13.89657463618693 What 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)
What are coral reefs? management -13.905313636230987 What 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)
What are coral reefs? the cycle -13.979624643808652 What 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)
What are coral reefs? the ultimate -13.982926610305052 What 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)
What are coral reefs? the intricate food -14.02886367041691 What 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)
What are coral reefs? the article -14.034936773899087 What 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)
What are coral reefs? the hobby -14.05697712931072 What 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)
What are coral reefs? the food -14.077209942473129 What 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)
What are coral reefs? the new marine reserve -14.0984825739047 What 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)
What are coral reefs? the coral ecosystem -14.111978246165886 What 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)
What are coral reefs? the answer -14.138611793773924 What 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)
What are coral reefs? trouble -14.269584249562005 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (SAVE A REEF, mean by, trouble) -> trouble (7770ms)
What are coral reefs? the placing steel and concrete -14.337300536864767 What 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)
What are coral reefs? millions -14.340320057588745 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (reefs, could mean economic trouble for, millions) -> millions (7783ms)
What are coral reefs? the structures -14.600884931577948 What 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)
What are coral reefs? the river -14.656440455106846 What 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)
What are coral reefs? mussels -16.197702864789843 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (the reefs, created by, mussels) -> mussels (7784ms)
What companies manufacture golf clubs? Callaway Golf Company -5.089554218274531 What 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)
What companies manufacture golf clubs? Nike Golf -5.9576372684302985 What 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)
What companies manufacture golf clubs? the U.S. -7.422329864991506 What 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)
What companies manufacture golf clubs? Callaway Company -7.710656374245925 What 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)
What companies manufacture golf clubs? Callaway company -7.83982473762403 What 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)
What companies manufacture golf clubs? Golf -7.885810410181837 What 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)
What companies manufacture golf clubs? Golfers Inc -8.014526182687597 What 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)
What companies manufacture golf clubs? Callaway Golf Co. -8.318009647688235 What 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)
What companies manufacture golf clubs? Cleveland golf -8.36009875824664 What 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)
What companies manufacture golf clubs? Callaway -8.424495669633277 What 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)
What companies manufacture golf clubs? Instance IH -8.433703531899502 What 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)
What companies manufacture golf clubs? Goodwill -8.471538248697687 What 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)
What companies manufacture golf clubs? Titanium Metals -8.53092328307725 What 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)
What companies manufacture golf clubs? Callaway Golf CO -8.55837536641778 What 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)
What companies manufacture golf clubs? Titanium Metal -8.562632150892084 What 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)
What companies manufacture golf clubs? Callaway golf -8.713346852207945 What 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)
What companies manufacture golf clubs? Guest -8.860489299697925 What 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)
What companies manufacture golf clubs? Etc -8.860685638687603 What 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)
What companies manufacture golf clubs? NikeGolf -8.864785041478232 What 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)
What companies manufacture golf clubs? Cleveland Golf -8.907242076463591 What 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)
What companies manufacture golf clubs? NIKE Golf -8.945674406118815 What 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)
What companies manufacture golf clubs? Guests -8.963331349923031 What 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)
What companies manufacture golf clubs? Callaway Golf -8.969104602971898 What 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)
What companies manufacture golf clubs? Com -9.130043200653432 What 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)
What companies manufacture golf clubs? Country Club -9.21477226556282 What 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)
What companies manufacture golf clubs? 3Balls . com -9.215507255823407 What 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)
What companies manufacture golf clubs? GOLF -9.712135149041318 What 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)
What companies manufacture golf clubs? Seth Raynor -10.528989948965203 What 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)
What companies manufacture golf clubs? John Harbottlem -10.528989948965203 What 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)
What companies manufacture golf clubs? Jack Nicklaus -10.528989948965203 What 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)
What companies manufacture golf clubs? guests -10.690456793510112 What 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)
What companies manufacture golf clubs? executive -10.702295006221823 What 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)
What companies manufacture golf clubs? Arnold Palmer -10.772331795006792 What 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)
What companies manufacture golf clubs? William Powell -10.772331795006792 What 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)
What companies manufacture golf clubs? guest -10.773508161992236 What 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)
What companies manufacture golf clubs? Harold B. Lamb -10.889094465644247 What 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)
What companies manufacture golf clubs? Charles B. Macdonald -10.889094465644247 What 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)
What companies manufacture golf clubs? A. W. Tillinghast -10.916583346243407 What 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)
What companies manufacture golf clubs? Chattanooga -11.156060542255357 What 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)
What companies manufacture golf clubs? kennel area -11.420978307795925 What 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)
What companies manufacture golf clubs? Eye contact -11.64426645707995 What 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)
What companies manufacture golf clubs? New York City -11.919853338264895 What 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)
What companies manufacture golf clubs? key contact -11.963492601464361 What 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)
What companies manufacture golf clubs? The corporation -12.178362171463714 What 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)
What companies manufacture golf clubs? Phoenix -12.266588483495834 What 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)
What companies manufacture golf clubs? Gary Player -12.336381601946877 What 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)
What companies manufacture golf clubs? Greg Norman -12.422525467514314 What 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)
What companies manufacture golf clubs? Colin Montgomerie -12.6316120291615 What 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)
What companies manufacture golf clubs? The Jack Nicklaus -12.643796092691499 What 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)
What companies manufacture golf clubs? Nike -12.653206583940452 What 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)
What companies manufacture golf clubs? Wood -12.722325474959025 What 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)
What companies manufacture golf clubs? Landmark Golf Company -12.7371535918179 What 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)
What companies manufacture golf clubs? Golf players -12.750996997047173 What 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)
What companies manufacture golf clubs? the Greg Norman -12.857946373242772 What 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)
What companies manufacture golf clubs? golf -12.89613150251028 What 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)
What companies manufacture golf clubs? the Jack Nicklaus -12.941065975645598 What 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)
What companies manufacture golf clubs? the Fred Couples -12.965624551475956 What 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)
What companies manufacture golf clubs? the Rees Jones -12.981739077118991 What 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)
What companies manufacture golf clubs? the top brand Golf Wedges -12.994383287766855 What 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)
What companies manufacture golf clubs? the Gary Player -12.998111410365873 What 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)
What companies manufacture golf clubs? Gary Panks -13.025757925443532 What 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)
What companies manufacture golf clubs? step -13.080886264237327 What 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)
What companies manufacture golf clubs? The Robert Cupp -13.095125265740622 What 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)
What companies manufacture golf clubs? The Rick Jacobson -13.09860141579788 What 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)
What companies manufacture golf clubs? sandy soils -13.10820548827812 What 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)
What companies manufacture golf clubs? Scotland James Braid -13.15073710234774 What 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)
What companies manufacture golf clubs? Bill Amick -13.167001081927996 What 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)
What companies manufacture golf clubs? a 250-acre spread -13.167234716212826 What 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)
What companies manufacture golf clubs? Jack Frei -13.184388353801658 What 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)
What companies manufacture golf clubs? The Henry Cotton -13.18848454722308 What 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)
What companies manufacture golf clubs? Tom Weiskopf -13.200463525594866 What 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)
What companies manufacture golf clubs? Chris King Gene Hamm -13.206245067422316 What 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)
What companies manufacture golf clubs? The Robert Trent Jones Jr -13.228242541902324 What 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)
What companies manufacture golf clubs? Tom Fazio -13.241608380857961 What 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)
What companies manufacture golf clubs? the Ron Kirby -13.257627057433446 What 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)
What companies manufacture golf clubs? Internet Software -13.268950045165207 What 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)
What companies manufacture golf clubs? Robert Mendralla -13.269099771485124 What 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)
What companies manufacture golf clubs? Hall-of-Famer Johnny Miller -13.277079369066751 What 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)
What companies manufacture golf clubs? the Crenshaw-Coore -13.296707361031356 What 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)
What companies manufacture golf clubs? the Tom Watson -13.305236633352903 What 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)
What companies manufacture golf clubs? the Donald Ross -13.320660264773727 What 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)
What companies manufacture golf clubs? the Joe Lee -13.322428637575921 What 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)
What companies manufacture golf clubs? the Tom Fazio -13.324335321742808 What 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)
What companies manufacture golf clubs? a young Greg Nash -13.349610325356963 What 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)
What companies manufacture golf clubs? Arthur Hills -13.352884239188025 What 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)
What companies manufacture golf clubs? the Nick Fold -13.372599435296948 What 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)
What companies manufacture golf clubs? Nicklaus -13.378348169726888 What 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)
What companies manufacture golf clubs? the Jack Nicklaus Signature -13.380636004262803 What 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)
What companies manufacture golf clubs? an Arnold Palmer -13.392136189077608 What 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)
What companies manufacture golf clubs? Master Designer Gray Player -13.422685226745385 What 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)
What companies manufacture golf clubs? PGA Member Jim Hardy -13.424534452655921 What 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)
What companies manufacture golf clubs? Well-known Meade & Garfield -13.431527248863235 What 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)
What companies manufacture golf clubs? The Greg Norman -13.452177265441538 What 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)
What companies manufacture golf clubs? Robert Cupp Jr. -13.457561169799515 What 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)
What companies manufacture golf clubs? The Arnold Palmer -13.46856092567958 What 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)
What companies manufacture golf clubs? the Old Tom Morris -13.468912449744298 What 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)
What companies manufacture golf clubs? TaylorMade -13.535218247856937 What 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)
What companies manufacture golf clubs? 1995 -13.552835543423765 What 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)
What companies manufacture golf clubs? 1603 -13.554460614849601 What 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)
What companies manufacture golf clubs? the Arnold Palmer -13.5848143983809 What 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)
What companies manufacture golf clubs? the Colin Montgomerie -13.586582771183092 What 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)
What companies manufacture golf clubs? the companies -13.586633894054794 What 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)
What companies manufacture golf clubs? a most enjoyable 27-hole Arthur Hills -13.602021888087997 What 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)
What companies manufacture golf clubs? 1923 -13.603234800713809 What 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)
What companies manufacture golf clubs? the 27 hole Arthur Hills -13.6503059189164 What 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)
What companies manufacture golf clubs? the last collaboration -13.669625578555802 What 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)
What companies manufacture golf clubs? golf bag # 101 -13.693304183511994 What 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)
What companies manufacture golf clubs? CA, Cleveland Golf -13.70107712825677 What 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)
What companies manufacture golf clubs? the 1923 -13.762139498392091 What 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)
What companies manufacture golf clubs? the 27-hole , Jack Nicklaus -13.840392474763599 What 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)
What companies manufacture golf clubs? Gil Hanse -13.859564204146988 What 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)
What companies manufacture golf clubs? Ping -13.90442204163323 What 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)
What companies manufacture golf clubs? Ted Robinson -13.9115829820715 What 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)
What companies manufacture golf clubs? the vicinity -13.984876092679336 What 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)
What companies manufacture golf clubs? the early 19th century -14.058188848739734 What 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)
What companies manufacture golf clubs? Bridgestone APM -14.06870963087181 What 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)
What companies manufacture golf clubs? 1950 Stanley Thomson -14.092983118693256 What 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)
What companies manufacture golf clubs? Bridgestone -14.113014477866574 What 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)
What companies manufacture golf clubs? Par -14.139368809219691 What 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)
What companies manufacture golf clubs? Taylor's -14.140697025400854 What 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)
What companies manufacture golf clubs? George Cobb -14.203155055921153 What 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)
What companies manufacture golf clubs? Norman -14.205868188268624 What 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)
What companies manufacture golf clubs? Taylor -14.212700551837045 What 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)
What companies manufacture golf clubs? contact -14.250592313774654 What 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)
What companies manufacture golf clubs? What type of degree -14.320941633843683 What 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)
What companies manufacture golf clubs? metal -14.38814752911765 What 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)
What companies manufacture golf clubs? Tillinghast -14.417252249345044 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Tillinghast, designed, BaltusrolGolf Club) -> Tillinghast (17110ms)
What companies manufacture golf clubs? the Palmer -14.437476202622207 What 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)
What companies manufacture golf clubs? celebration -14.491324569345448 What 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)
What companies manufacture golf clubs? wood -14.520983420947875 What 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)
What companies manufacture golf clubs? money -14.594393570808801 What 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)
What companies manufacture golf clubs? hardwood -14.616217923535189 What 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)
What companies manufacture golf clubs? golfing -14.94775886237193 What 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)
What companies manufacture golf clubs? China -14.972706060093994 What 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)
What companies manufacture golf clubs? Iron -15.041884715799991 What 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)
What companies manufacture golf clubs? the renowned Jack Nicklaus -15.152273369591637 What 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)
What companies manufacture golf clubs? the classic Ted Robinson -15.214638193244927 What 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)
What companies manufacture golf clubs? the nearby Nick Faldo -15.229669520170454 What 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)
What companies manufacture golf clubs? research -15.239961380961041 What 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)
What companies manufacture golf clubs? the importance -15.303230916339004 What 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)
What companies manufacture golf clubs? the par 72 6,795 yard Greg Norman -15.650412889312014 What 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)
What companies manufacture golf clubs? iron -16.775134553740703 What 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)
What companies manufacture golf clubs? quality -16.825928313116762 What 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)
What companies manufacture golf clubs? animal -16.829417456272925 What 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)
What operas has Caruso sung? La Boheme -3.295638499905553 What 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)
What operas has Caruso sung? Italian -7.494563450948262 What 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)
What is the phobia for number 13? ? Triskaidekaphobia -7.612715389179968 What 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)
What is the phobia for number 13? ? Triskaidekaphobia -7.833811384789662 What 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)
What is the phobia for number 13? Triskaidekaphobia -8.045619443797355 What 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)
What is the phobia for number 13? An example -8.317498805692743 What 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)
What is the phobia for number 13? Triskadekaphobia -8.869014285137357 What 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)
What is the phobia for number 13? triskaidekaphobia -9.988700536485387 What 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)
What is the phobia for number 13? widespread phobia -10.322694431815064 What 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)
What is the phobia for number 13? A NSN Number -10.33369877858137 What 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)
What is the phobia for number 13? learned, culture-specific social behavior -10.510717097701061 What 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)
What is the phobia for number 13? friggatriskaidekaphobia -10.542217786513508 What 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)
What is the phobia for number 13? the unknown -10.721873415882524 What 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)
What is the phobia for number 13? Friggatriskaidekaphobia -10.858538586092347 What 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)
What is the phobia for number 13? the cards -11.961709948341808 What 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)
What is the phobia for number 13? the hexadecimal letter D -12.01303091281164 What 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)
What is the phobia for number 13? phobia -12.474256751753238 What 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)
What is the phobia for number 13? championship -14.757029615056869 What 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)
Where is South Bend? Indiana 0.21936564364635291 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are planned in, Indiana) -> Indiana (3437ms)
Where is South Bend? Belfast -0.1950353907830663 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Tribune Jackson, was born in, Belfast) -> Belfast (3437ms)
Where is South Bend? Louisiana -0.21010178588094697 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Toledo Bend State Park, was the best park in, Louisiana) -> Louisiana (3437ms)
Where is South Bend? South Bend -0.4778131435380718 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Division, is held in, South Bend) -> South Bend (3437ms)
Where is South Bend? Northern Indiana -0.5726385562980835 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is located in, Northern Indiana) -> Northern Indiana (3732ms)
Where is South Bend? northern Indiana -1.031526874010083 Where is South Bend? -> $x: (South Bend, is in, $x) -> (Indiana South Bend, is located in, northern Indiana) -> northern Indiana (3732ms)
Where is South Bend? Bethel Cemetery -1.2370444586613751 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was buried in, Bethel Cemetery) -> Bethel Cemetery (3732ms)
Where is South Bend? bed -1.4364705361121983 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was found dead in, bed) -> bed (3822ms)
Where is South Bend? Authorities Concept Scheme -1.4715315599046548 Where 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)
Where is South Bend? the St Joseph County -1.4919764071169892 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend, is in, the St Joseph County) -> the St Joseph County (3822ms)
Where is South Bend? Geographic Names Concept Scheme -1.5040184187945707 Where 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)
Where is South Bend? St -1.5222822192060481 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is located in, St) -> St (3822ms)
Where is South Bend? tradition and rich -1.5831221596001697 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rich in, tradition and rich) -> tradition and rich (3840ms)
Where is South Bend? extreme danger -1.6224454818620129 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is believed to be in, extreme danger) -> extreme danger (3840ms)
Where is South Bend? snow -1.677237690858239 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is blanketed in, snow) -> snow (3840ms)
Where is South Bend? a pleasant setting -1.7218678754329109 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is a pleasant town in, a pleasant setting) -> a pleasant setting (3840ms)
Where is South Bend? Rice Cemetery -1.750360766578194 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was buried in, Rice Cemetery) -> Rice Cemetery (3840ms)
Where is South Bend? a successful career -1.8294421241840233 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was the latest stop in, a successful career) -> a successful career (3871ms)
Where is South Bend? the Eastern Standard Time Zone -1.8377316099598382 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is in, the Eastern Standard Time Zone) -> the Eastern Standard Time Zone (3870ms)
Where is South Bend? culture , heritage , history and fun -1.868504319353424 Where 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)
Where is South Bend? diverse and thriving neighborhoods -1.8766969341781643 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is seen in, diverse and thriving neighborhoods) -> diverse and thriving neighborhoods (3870ms)
Where is South Bend? the Quaker Room -1.8807255678751642 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Friends, have been worshiping in, the Quaker Room) -> the Quaker Room (3870ms)
Where is South Bend? the Ivy Tech network -1.896798653104579 Where 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)
Where is South Bend? the U.S. District Court -1.902765975989092 Where 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)
Where is South Bend? a three way tie -1.95276441783298 Where 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)
Where is South Bend? charge -2.0022113237250556 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, will be in, charge) -> charge (3894ms)
Where is South Bend? touch -2.051234460005909 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, will be in, touch) -> touch (3914ms)
Where is South Bend? New York -2.0996569297002394 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is now back in, New York) -> New York (3914ms)
Where is South Bend? ZEST -2.1393790689727457 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the Raymond-South Bend area, are detailed in, ZEST) -> ZEST (3914ms)
Where is South Bend? Joplin -2.139751767217941 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend resident, stopped in, Joplin) -> Joplin (3914ms)
Where is South Bend? Oakland -2.224699283896367 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, now lives in, Oakland) -> Oakland (3914ms)
Where is South Bend? a series -2.284680494933484 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is displayed in, a series) -> a series (3914ms)
Where is South Bend? history -2.539356792280051 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend/Mishawaka, is a community rich in, history) -> history (3936ms)
Where is South Bend? products -2.6309509068749897 Where is South Bend? -> $x: (South Bend, is in, $x) -> (The more south central bent, is also evident in, products) -> products (3936ms)
Where is South Bend? Uniontown -2.7592375034155774 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, lived in, Uniontown) -> Uniontown (3936ms)
Where is South Bend? Bloomington -2.860273633989606 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, will open a sixth in, Bloomington) -> Bloomington (3936ms)
Where is South Bend? Williamston -2.8662899963351878 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, raised in, Williamston) -> Williamston (3953ms)
Where is South Bend? the nation -2.8795985865078535 Where is South Bend? -> $x: (South Bend, is in, $x) -> (January 21 , 2010 South Bend, is the best city in, the nation) -> the nation (3953ms)
Where is South Bend? Detroit -3.0042300506290767 Where 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)
Where is South Bend? the north -3.157479084582973 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is in, the north) -> the north (3990ms)
Where is South Bend? auto insurance -3.18483963859911 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, provides services in, auto insurance) -> auto insurance (3990ms)
Where is South Bend? ghost hunting -3.245700385939175 Where 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)
Where is South Bend? the air -3.3261126380682793 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Applause, was in, the air) -> the air (4017ms)
Where is South Bend? the release -3.343573894701958 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was n?t included in, the release) -> the release (4017ms)
Where is South Bend? the heart -3.3684201230769926 Where is South Bend? -> $x: (South Bend, is in, $x) -> (Hilton South Bend hotel, is in, the heart) -> the heart (4017ms)
Where is South Bend? 1957. -3.4136851283401173 Where is South Bend? -> $x: (South Bend, is in, $x) -> (The South Bend Civic Theatre, was founded in, 1957.) -> 1957. (4017ms)
Where is South Bend? the movie -3.4605752783379478 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was featured in, the movie) -> the movie (4050ms)
Where is South Bend? the invasion -3.4658804494468223 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was involved in, the invasion) -> the invasion (4050ms)
Where is South Bend? the process -3.513130674994815 Where is South Bend? -> $x: (South Bend, is in, $x) -> (non-wing sprints South Bend Motor Speedway, is in, the process) -> the process (4050ms)
Where is South Bend? Studebaker -3.5466125587476953 Where 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)
Where is South Bend? the left hand menu -3.574015110828225 Where is South Bend? -> $x: (South Bend, is in, $x) -> (south bend, will be posted in, the left hand menu) -> the left hand menu (4131ms)
Where is South Bend? less than quarter -3.6383496697641147 Where 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)
Where is South Bend? the two following games -3.6696336706761175 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, were a rumor in, the two following games) -> the two following games (4163ms)
Where is South Bend? the same way -3.713052335128335 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Cash Advance loans, are repaid in, the same way) -> the same way (4163ms)
Where is South Bend? the country -3.732569214888895 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rising faster than anywhere else in, the country) -> the country (4163ms)
Where is South Bend? ?very critical condition -3.7514426153236746 Where 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)
Where is South Bend? a hotel cause -3.802875016587132 Where 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)
Where is South Bend? the top five -3.819220641646848 Where is South Bend? -> $x: (South Bend, is in, $x) -> (1937 South Bend Medical Laboratory, was rated in, the top five) -> the top five (4179ms)
Where is South Bend? simple and powerful ways -3.8289385014198754 Where 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)
Where is South Bend? the U.S. Army -3.8312690858556726 Where 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)
Where is South Bend? third place -3.8392263856986624 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, came in, third place) -> third place (4211ms)
Where is South Bend? CONJUNCTION -3.9055214586684084 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (SOUTH BEND, WILL GIVE A TALK IN, CONJUNCTION) -> CONJUNCTION (4211ms)
Where is South Bend? an article -3.914283926087264 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Tribune, Included in, an article) -> an article (4231ms)
Where is South Bend? several finance roles -3.9213575227006263 Where 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)
Where is South Bend? a Gift suitable -3.9351919661310486 Where 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)
Where is South Bend? the United States Army -3.9400052026318297 Where 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)
Where is South Bend? HCAHPS scores -3.944853553820445 Where 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)
Where is South Bend? the College Junior Women -4.007054486031973 Where 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)
Where is South Bend? assets -4.158190711649436 Where 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)
Where is South Bend? zoology -4.1654927151295205 Where 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)
Where is South Bend? fifth -4.489894911391543 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> ('s South Bend team, came in, fifth) -> fifth (4583ms)
Where is South Bend? excess -4.510012752583871 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, stood in, excess) -> excess (4583ms)
Where is South Bend? 1979 -4.624539686046826 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was founded in, 1979) -> 1979 (4884ms)
Where is South Bend? 1877 -4.695911470556429 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was the founding in, 1877) -> 1877 (4884ms)
Where is South Bend? 1933 -4.718702023102288 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Symphony, was founded in, 1933) -> 1933 (4884ms)
Where is South Bend? 2008 -4.750667144426996 Where is South Bend? -> $x: (South Bend, is in, $x) -> (IU South Bend, was formed in, 2008) -> 2008 (5013ms)
Where is South Bend? 1903 -4.751615898955348 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Railroad, was started in, 1903) -> 1903 (5013ms)
Where is South Bend? early September -4.828152329935964 Where 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)
Where is South Bend? the mid-30 -4.846986656104891 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are expected to be in, the mid-30) -> the mid-30 (5012ms)
Where is South Bend? music -4.886095033202119 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, has many notable offerings in, music) -> music (5013ms)
Where is South Bend? the bottom -5.131214478181456 Where 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)
Where is South Bend? the top -5.177113248767022 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, bounced back in, the top) -> the top (5170ms)
Where is South Bend? 83 -5.372201211284459 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (second and South Bend, came in at, 83) -> 83 (5307ms)
Where is South Bend? the Sept. 11 attacks -5.509494420805543 Where 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)
Where is South Bend? the wrong location -5.5228951861602384 Where 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)
Where is South Bend? the economic world -5.610430799319288 Where 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)
Where is South Bend? the towns -5.648116604562396 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, grew up in, the towns) -> the towns (5383ms)
Where is South Bend? the rankings -5.73045321866596 Where 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)
Where is South Bend? the tenth -5.741311823504236 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, won in, the tenth) -> the tenth (5408ms)
Where is South Bend? the school orchestra -5.77096258061766 Where 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)
Where is South Bend? the finals -5.783654045433905 Where 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)
Where is South Bend? Danny Graber -5.817240769807382 Where 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)
Where is South Bend? the second inning -5.849164184348471 Where 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)
Where is South Bend? the seventh -5.909139923837546 Where 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)
Where is South Bend? 1865 -6.145154193799628 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was incorporated as a city in, 1865) -> 1865 (5723ms)
Where is South Bend? the 1940 ?s -6.190084337053852 Where 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)
Where is South Bend? May 1903 -6.204910945606 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, probably occurred in, May 1903) -> May 1903 (5811ms)
Where is South Bend? 1824 -6.779146147255182 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, returned in, 1824) -> 1824 (5993ms)
Where is South Bend? 1970 -6.803027253018821 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, unionized in, 1970) -> 1970 (5993ms)
Where is South Bend? 1954 -7.012835564361076 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, finished second in, 1954) -> 1954 (6013ms)
Where is South Bend? 1991 -7.086124679245189 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Chocolate Factory, opened in, 1991) -> 1991 (6048ms)
Where is South Bend? the suit -7.168931764289206 Where 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)
Where is South Bend? Hounslow -12.568844099602648 Where 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)
Where is South Bend? London -12.568844099602648 Where 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)
Where is South Bend? Dadeville -12.568844099602648 Where 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)
Where is South Bend? Southall -12.568844099602648 Where 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)
Where is South Bend? Kentucky -12.568844099602648 Where 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)
Where is South Bend? Wiota -12.568844099602648 Where 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)
Where is South Bend? Macedonia -12.568844099602648 Where 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)
Where is South Bend? Soho -13.00664052426518 Where 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)
Where is South Bend? Bend -13.00664052426518 Where 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)
Where is South Bend? Crna -13.00664052426518 Where 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)
Where is South Bend? Gunnersbury Park -13.07705278256507 Where 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)
Where is South Bend? Taylor County -13.120102764323553 Where 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)
Where is South Bend? Madison Parish -13.120102764323553 Where 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)
Where is South Bend? Volga Bulgaria -13.120102764323553 Where 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)
Where is South Bend? Piccadilly Circus -13.120102764323553 Where 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)
Where is South Bend? Mississippi River -13.120102764323553 Where 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)
Where is South Bend? Sabine River -13.120102764323553 Where 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)
Where is South Bend? Central London -13.120102764323553 Where 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)
Where is South Bend? Woodford, Wisconsin -13.633419072240372 Where 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)
Where is South Bend? St. Mary Parish -13.633419072240372 Where 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)
Where is South Bend? Fort Pillow State Park -13.633419072240372 Where 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)
Where is South Bend? Bent Creek Vineyard -13.633419072240372 Where 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)
Where is South Bend? Kansas -14.131938677272435 Where 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)
Where is South Bend? Lompoc -14.181537956452654 Where 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)
Where is South Bend? Greece -14.334473117564222 Where 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)
Where is South Bend? Ghana -14.389194107216127 Where 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)
Where is South Bend? Hoover -14.790529493386869 Where 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)
Where is South Bend? Time -14.857801379081156 Where 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)
Where is South Bend? Central Oregon -14.858887859445879 Where 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)
Where is South Bend? Ssion -14.877102134193427 Where 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)
Where is South Bend? Deschutes County -14.955358935188174 Where 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)
Where is South Bend? Divers -15.038254574151523 Where 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)
Where is South Bend? Northwest Texas -15.419513215795075 Where 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)
Where is South Bend? furniture making -15.423006616189655 Where 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)
Where is South Bend? guitar solo -15.431271904521958 Where 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)
Where is South Bend? a lot -15.435216978992571 Where 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)
Where is South Bend? central Oregon -15.495013670634332 Where 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)
Where is South Bend? central oregon -15.513974047659541 Where 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)
Where is South Bend? family reunions -15.5864242770641 Where 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)
Where is South Bend? an ongoing station -15.60948346820398 Where 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)
Where is South Bend? superlative form -15.713485618051436 Where 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)
Where is South Bend? ETS. -15.74348928855339 Where 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)
Where is South Bend? men?s -15.758877915773674 Where 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)
Where is South Bend? downtown Bend -15.765758004316265 Where 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)
Where is South Bend? communication -15.839943041473527 Where 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)
Where is South Bend? ?Country driving? -15.843780667376356 Where 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)
Where is South Bend? an off road race -15.849835552417733 Where 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)
Where is South Bend? summer -15.885921314055793 Where 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)
Where is South Bend? beer -15.939857369652518 Where 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)
Where is South Bend? acres -15.949048389923707 Where 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)
Where is South Bend? thirty five countries -15.953172994156063 Where 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)
Where is South Bend? romantic comedies -15.954206138129475 Where 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)
Where is South Bend? an England squad -15.969237465055002 Where 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)
Where is South Bend? a quiet location -15.972317496143718 Where 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)
Where is South Bend? a little troublesome -15.98081024236907 Where 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)
Where is South Bend? John Brock -16.09118523914819 Where 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)
Where is South Bend? each guide -16.149639360352005 Where 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)
Where is South Bend? access -16.353091977808404 Where 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)
Where is South Bend? the United States -16.45494141693412 Where 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)
Where is South Bend? the Second Chance -16.480338754447118 Where 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)
Where is South Bend? adventures -16.482989563246342 Where 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)
Where is South Bend? a squeak -16.51559072920771 Where 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)
Where is South Bend? physio -16.53276161464175 Where 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)
Where is South Bend? space -16.63157802040787 Where 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)
Where is South Bend? action -16.68233577096718 Where 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)
Where is South Bend? home -16.765976092550282 Where 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)
Where is South Bend? 18 employees -16.95809724859261 Where 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)
Where is South Bend? You guys -17.08701620756748 Where 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)
Where is South Bend? the customer end -17.49816182905997 Where 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)
Where is South Bend? 22 counties -17.662689637343327 Where 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)
Where is South Bend? the underwire -17.668814364562472 Where 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)
Where is South Bend? the whole problem -17.716666475974396 Where 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)
Where is South Bend? The scoring -17.90174149827007 Where 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)
Where is South Bend? the scrutiny Judge Adams -17.925928313155055 Where 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)
Where is South Bend? the main Kiowa camp -17.95086166274794 Where 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)
Who is Alberto Tomba? italian star -1.665290881034979 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, italian star) -> italian star (2283ms)
Who is Alberto Tomba? famous skier -1.665290881034979 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, famous skier) -> famous skier (2283ms)
Who is Alberto Tomba? charismatic sportsman -1.7345061399660882 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, charismatic sportsman) -> charismatic sportsman (2283ms)
Who is Alberto Tomba? mixed drink -1.7678751612196053 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, mixed drink) -> mixed drink (2283ms)
Who is Alberto Tomba? alpine skiier -1.775633802004088 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, alpine skiier) -> alpine skiier (2283ms)
Who is Alberto Tomba? ski champion -2.13078071345731 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, ski champion) -> ski champion (2283ms)
Who is Alberto Tomba? big mane -2.216447037448759 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, big mane) -> big mane (2373ms)
Who is Alberto Tomba? ace skier -2.216447037448759 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, ace skier) -> ace skier (2374ms)
Who is Alberto Tomba? big star -2.3542232836235963 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Sex symbol skier Alberto Tomba, Instance Of, big star) -> big star (2373ms)
Who is Alberto Tomba? popular former champion -2.4311479925972534 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Olympic champions Alberto Tomba, Instance Of, popular former champion) -> popular former champion (2374ms)
Who is Alberto Tomba? friend of mine -2.4334426133569664 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, friend of mine) -> friend of mine (2373ms)
Who is Alberto Tomba? Italian retired alpine ski racer -2.4363275068891292 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian retired alpine ski racer) -> Italian retired alpine ski racer (2374ms)
Who is Alberto Tomba? retired professional alpine skier of Italian nationality -2.4375551070496835 Who 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)
Who is Alberto Tomba? famous Italian Alpine skier -2.44461301655552 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, famous Italian Alpine skier) -> famous Italian Alpine skier (2534ms)
Who is Alberto Tomba? Italian Olympic alpine skier -2.44461301655552 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian Olympic alpine skier) -> Italian Olympic alpine skier (2534ms)
Who is Alberto Tomba? Italian retired skier -2.4505227413227635 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian retired skier) -> Italian retired skier (2534ms)
Who is Alberto Tomba? flamboyant Italian skier -2.4505227413227635 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, flamboyant Italian skier) -> flamboyant Italian skier (2534ms)
Who is Alberto Tomba? big money player -2.4740242635379346 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, big money player) -> big money player (2565ms)
Who is Alberto Tomba? retired Italian alpine skier -2.4895069719906626 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, retired Italian alpine skier) -> retired Italian alpine skier (2565ms)
Who is Alberto Tomba? world Alpine Ski champion -2.4895069719906626 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, world Alpine Ski champion) -> world Alpine Ski champion (2565ms)
Who is Alberto Tomba? skier, Olympic gold medal winner -2.521993830880578 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, skier, Olympic gold medal winner) -> skier, Olympic gold medal winner (2565ms)
Who is Alberto Tomba? champion -2.884959184551226 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, champion) -> champion (2565ms)
Who is Alberto Tomba? 44 year old Italian Celebrity -2.8959251217059245 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, 44 year old Italian Celebrity) -> 44 year old Italian Celebrity (2580ms)
Who is Alberto Tomba? Italian skier -2.966153592776112 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian skier) -> Italian skier (2580ms)
Who is Alberto Tomba? Italian gent -3.0110475482112538 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian gent) -> Italian gent (2594ms)
Who is Alberto Tomba? star -3.0598125482538743 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, star) -> star (2594ms)
Who is Alberto Tomba? athlete -3.10008542910595 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Tomba Alberto, Instance Of, athlete) -> athlete (2595ms)
Who is Alberto Tomba? artist -3.1267357840236656 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, artist) -> artist (2595ms)
Who is Alberto Tomba? Italian -3.764041141775003 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian) -> Italian (2635ms)
Who is Alberto Tomba? young my favourite athlete -9.588341913446182 Who 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)
Who is Alberto Tomba? the Albertville Games -9.973891005574322 Who 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)
Who is Alberto Tomba? Italy -10.41648068275037 Who 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)
Who is Alberto Tomba? 1996 Gustavo Thoeni -10.75930359069563 Who 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)
Who is Alberto Tomba? the hell -10.806657800660606 Who 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)
Who is Alberto Tomba? retirement -11.399586909523983 Who 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)
Who is Alberto Tomba? 50 ski wins -12.626709218452993 Who 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)
Who is Alberto Tomba? the most flamboyant skier -13.204975628400069 Who 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)
Where is it? Akron -12.742922272407274 Where 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)
Where is it? Odessa -13.07029416654097 Where 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)
Where is it? San Francisco -13.620346464366907 Where 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)
Where is it? college football -13.729022363548166 Where 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)
Where is it? Dover Mall -13.80907172591846 Where 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)
Where is it? Nottingham -13.970563075927458 Where 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)
Where is it? Indian River Mall -14.365438015593762 Where 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)
Where is it? Black -14.490786371851831 Where 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)
Where is it? Ashford -14.679875531052296 Where 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)
Where is it? Craig -14.740020747210504 Where 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)
Where is it? James -14.888912980461841 Where 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)
Where is it? Sam Morales -14.893792492602675 Where 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)
Where is it? Moira -14.929139756302527 Where 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)
Where is it? Ryan -15.219056445154946 Where 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)
Where is it? Michael Wolf -15.323679169652236 Where 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)
Where is it? migrated sites -15.331925886350087 Where 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)
Where is it? Jonathan Brown -15.33605548352 Where 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)
Where is it? Darrell Hoberer -15.362015219958149 Where 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)
Where is it? monetary terms -15.391796169831078 Where 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)
Where is it? UC Berkeley -15.39344289718463 Where 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)
Where is it? Maneet Puri -15.405596861906108 Where 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)
Where is it? Austria and Germany -15.432269042470494 Where 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)
Where is it? government health facilities -15.451864068171766 Where 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)
Where is it? the ITER Center -15.524863409330516 Where 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)
Where is it? cooking -15.5580789284068 Where 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)
Where is it? THE GUY -15.605432970816146 Where 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)
Where is it? Armco IT -15.64622504631652 Where 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)
Where is it? Active@ Data Studio -15.64887760551981 Where 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)
Where is it? The Service Desk -15.670177897356599 Where 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)
Where is it? Joe -15.679829676111137 Where 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)
Where is it? Kingston Adult Education -15.68520927698442 Where 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)
Where is it? Roy -15.696897581372586 Where 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)
Where is it? the Biozentrum , Basel , -15.717570919497657 Where 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)
Where is it? Jeremy LaCroix -15.71844594947383 Where 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)
Where is it? BREVCO SERVICES -15.726374313065905 Where 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)
Where is it? an appointment -15.77009222553559 Where 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)
Where is it? QC ? BREVCO SERVICES -15.783205506041302 Where 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)
Where is it? The IT guys -15.795529229007782 Where 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)
Where is it? The IT Surgery -15.867373744860508 Where 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)
Where is it? knowledge -15.881538019679075 Where 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)
Where is it? critical issues -15.929267583471693 Where 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)
Where is it? Printer drivers -15.949440313735217 Where 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)
Where is it? GoCertify -15.968892625368522 Where 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)
Where is it? the NFL -15.987242264192295 Where 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)
Where is it? DORADO Personnel -15.988489112530372 Where 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)
Where is it? recently Helen -15.992845529110893 Where 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)
Where is it? an Apprentice -16.022088617390402 Where 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)
Where is it? business -16.064959658571517 Where 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)
Where is it? Wells based company -16.07225941511143 Where 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)
Where is it? automobiles -16.087694506834676 Where 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)
Where is it? repairs -16.141392889500136 Where 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)
Where is it? conversations -16.24095896845266 Where 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)
Where is it? a number -16.263265354789795 Where 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)
Where is it? Polokwane -16.273241439984268 Where 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)
Where is it? Grove City -16.45511157927478 Where 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)
Where is it? a file -16.470641158091126 Where 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)
Where is it? Comspan Communications -16.518006177161865 Where 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)
Where is it? components -16.65686132740358 Where 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)
Where is it? a recent report -16.815735732179437 Where 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)
Where is it? An opportunity -16.89015301912936 Where 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)
Where is it? artificial fireplaces -16.901280829516793 Where 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)
Where is it? high demand -16.938591546230597 Where 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)
Where is it? noise rejection issues -16.948143288500155 Where 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)
Where is it? the IT Industry -16.95262884133519 Where 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)
Where is it? Seren Group ?We -16.953120828645577 Where 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)
Where is it? common -16.972590327275316 Where 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)
Where is it? Britain -17.008289625839296 Where 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)
Where is it? PC systems -17.00968852169738 Where 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)
Where is it? work -17.17810688033378 Where 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)
Where is it? the definition -17.236743438057946 Where 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)
Where is it? the customer service range -17.276303893561224 Where 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)
Where is it? a heart attack -17.31372637020117 Where 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)
Where is it? CNS -17.41032064615322 Where 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)
Where is it? the can -17.455961626580237 Where 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)
Where is it? commerce -17.50324756159194 Where 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)
Where is it? The same company -17.67902280038551 Where 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)
Where is it? departments -17.72276336459087 Where 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)
Where is it? a look -17.737176588743097 Where 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)
Where is it? case -17.84756398008375 Where 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)
Where is it? The applicant -17.871941804274186 Where 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)
Where is it? 2011 Box .net -18.030781754877655 Where 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)
Where is it? IT skills -18.034545381651213 Where 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)
Where is it? Each production -18.301754716772027 Where 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)
Where is it? situations -18.328906239773193 Where 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)
Where is it? 1598 -18.40540202728914 Where 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)
Where is it? the summer -18.532239336966548 Where 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)
Where is it? Sedo -18.723028006305025 Where 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)
Where is it? the device -19.017429761997896 Where 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)
Where is it? the 1890?s -19.03196851030928 Where 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)
Where is it? applicants -19.1940670031243 Where 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)
Where is it? the hundreds and there?s -19.51505923219317 Where 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)
Where is it? the latest skills -20.60345740339165 Where 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)
Where is it? 1995 -20.746592656533902 Where 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)
Where is it? The certificate -21.22048674727283 Where 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)
What is the gestation period for humans? matter of common knowledge -9.538350662590812 What 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)
What is the gestation period for humans? approximate length of time -10.057027927613195 What 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)
What is the gestation period for humans? random variable -10.076852101040513 What 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)
What is the gestation period for humans? haphazard process -10.358265073093081 What 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)
What is the gestation period for humans? good analogy -10.385313092746973 What 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)
What is the gestation period for humans? low budget, sad excuse -12.065683307603658 What 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)
What is the gestation period for humans? silly little flick -12.06705814767502 What 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)
What is the gestation period for humans? week -12.070659803869807 What 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)
What is the gestation period for humans? pair of yin -12.082784778265612 What 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)
What is the gestation period for humans? element of these social structure -12.371613934539763 What 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)
What is the gestation period for humans? structural repair or change -12.389089447799105 What 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)
What is the gestation period for humans? non-viral factor -12.401427746900785 What 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)
What is the gestation period for humans? fun film -12.415218523397758 What 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)
What is the gestation period for humans? non-profit group of volunteer -12.426237012403764 What 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)
What is the gestation period for humans? awesome film -12.475996141309437 What 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)
What is the gestation period for humans? separate film -12.480937837040695 What 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)
What is the gestation period for humans? topic -12.6320357762995 What 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)
What is the gestation period for humans? crucial element -12.70588393215573 What 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)
What is the gestation period for humans? funny movie -12.733956140258822 What 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)
What is the gestation period for humans? affective venture -12.746258364252954 What 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)
What is the gestation period for humans? contradictory topic -12.746258364252954 What 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)
What is the gestation period for humans? life style -12.751426237763408 What 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)
What is the gestation period for humans? helpful information -12.7631312514629 What 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)
What is the gestation period for humans? local factor -12.766499059119516 What 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)
What is the gestation period for humans? film -14.25714770935138 What 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)
What is the gestation period for humans? a decade -14.618484183373498 What 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)
What is the gestation period for humans? mockumentary -14.620617391809198 What 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)
What is the gestation period for humans? contributor -14.960319683208173 What 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)
What is the gestation period for humans? factor -14.968440049769189 What 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)
What is the gestation period for humans? element -15.003300907072749 What 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)
What is the gestation period for humans? subject -15.007289787871166 What 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)
What is the gestation period for humans? concern -15.01469537807284 What 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)
What is the gestation period for humans? Florida -15.312209269994622 What 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)
What is the gestation period for humans? gene tests -15.603836777340199 What 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)
What is the gestation period for humans? the survival level -16.595293098788684 What 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)
What is the gestation period for humans? the news -16.656200784538402 What 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)
What is the gestation period for humans? the train tracks -16.72629049257722 What 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)
What is the gestation period for humans? the rise -16.74671637321678 What 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)
What is the gestation period for humans? the land-fast ice -16.802624209220586 What 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)
What is the gestation period for humans? the increase -16.851733725267582 What 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)
What is the gestation period for humans? a glacial lake -16.944079328134848 What 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)
What is the gestation period for humans? Europe -17.06981139713664 What 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)
What is the gestation period for humans? the Kodiak Archipelago -17.0718883753762 What 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)
What is the gestation period for humans? human injuries -17.116332328384722 What 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)
What is the gestation period for humans? unintentional harassment -17.197286279538503 What 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)
What is the gestation period for humans? several ways -17.22148725954533 What 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)
What is the gestation period for humans? close proximity -17.24414879122416 What 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)
What is the gestation period for humans? two French caves -17.308797685430388 What 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)
What is the gestation period for humans? damaged property -17.366168042942043 What 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)
What is the gestation period for humans? number -17.5220626018171 What 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)
What is the gestation period for humans? the same habitat -18.34106458110011 What 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)
What is the gestation period for humans? bear mortality -18.702810683320457 What 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)
What is the gestation period for humans? the bear -18.7483708699003 What 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)
What is the gestation period for humans? the form -18.750515262216705 What 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)
What is the gestation period for humans? the park -18.778809595967857 What 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)
What is the gestation period for humans? food -18.883171041806502 What 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)
What is the gestation period for humans? the planet -18.904257220602087 What 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)
What is the gestation period for humans? the spot -18.93146434195552 What 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)
What is the gestation period for humans? cities -19.494007606804484 What 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)
Where is it based? Doctorate -6.8930291307462985 Where 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)
Where is it based? Science -8.851339559381197 Where 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)
Where is it based? Cronote -9.543535480629773 Where 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)
Where is it based? California -9.918778297341609 Where 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)
Where is it based? Qatar -10.02406236475673 Where 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)
Where is it based? Students -10.090084294033197 Where 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)
Where is it based? customer behaviour -10.135276413804867 Where 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)
Where is it based? home plate -10.16179148945677 Where 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)
Where is it based? American -10.18883880555039 Where 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)
Where is it based? sports equipment -10.206916297322117 Where 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)
Where is it based? Acupuncture -10.246010983927638 Where 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)
Where is it based? geometric shape -10.283492464705489 Where 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)
Where is it based? Google -10.295716954194422 Where 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)
Where is it based? continuity -10.317330720685934 Where 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)
Where is it based? Arafat -10.32312710154448 Where 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)
Where is it based? Oregon -10.339825939778072 Where 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)
Where is it based? NEW -10.343051706003669 Where 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)
Where is it based? South American person -10.343051706003669 Where 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)
Where is it based? nursing -10.379232368719675 Where 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)
Where is it based? the Milky Way -10.419699898507835 Where 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)
Where is it based? business -10.421976045801715 Where 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)
Where is it based? USC. -10.459677250971225 Where 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)
Where is it based? automation -10.526893394985422 Where 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)
Where is it based? granularity -10.541924774613243 Where 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)
Where is it based? Researchers -10.561094095520511 Where 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)
Where is it based? Barbara J. Stapleton -10.605069149946157 Where 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)
Where is it based? Next -10.699872974284201 Where 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)
Where is it based? interconnectivity -10.714343336323463 Where 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)
Where is it based? porosity -10.736448259862353 Where 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)
Where is it based? Mumbengegwi -10.74745855985494 Where 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)
Where is it based? Cambridge -10.778633918634394 Where 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)
Where is it based? Christ -10.789207737406025 Where 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)
Where is it based? IT equipment provider and specialises -11.1300621631637 Where 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)
Where is it based? interesting concept -11.374646700115596 Where 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)
Where is it based? socio-political concept -11.436366832697193 Where 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)
Where is it based? management system -11.454487558340814 Where 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)
Where is it based? substantive issue -11.460046395168774 Where 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)
Where is it based? local agency -11.469096700510523 Where 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)
Where is it based? programme -12.231454367342854 Where 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)
Where is it based? issue -12.313485172314625 Where 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)
================================================
FILE: oqa-data/predictions/oqa-webquestions.txt
================================================
[File too large to display: 23.4 MB]
================================================
FILE: oqa-data/predictions/oqa-wikianswers.txt
================================================
[File too large to display: 46.0 MB]
================================================
FILE: oqa-data/predictions/paralex-trec.txt
================================================
What does SIDS stand for? Simulated Interaction Device 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Simulated Interaction Device) -> Simulated Interaction Device (3584ms)
What does SIDS stand for? Sudden Infant Death Syndrome 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SIDS SIDS, stands for, Sudden Infant Death Syndrome) -> Sudden Infant Death Syndrome (3671ms)
What does SIDS stand for? ?security identifier ? 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (?sid ?, stands for, ?security identifier ?) -> ?security identifier ? (3585ms)
What does SIDS stand for? Sound Interface Device 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Sound Interface Device) -> Sound Interface Device (3584ms)
What does SIDS stand for? civil rights 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (Sid McMath, stood for, civil rights) -> civil rights (3584ms)
What does SIDS stand for? System 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID SID, stands for, System) -> System (3671ms)
What does SIDS stand for? Speed Indicator Device 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Speed Indicator Device) -> Speed Indicator Device (3584ms)
What does SIDS stand for? Multi-resolution Seamless Image Database 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (MrSID, stands for, Multi-resolution Seamless Image Database) -> Multi-resolution Seamless Image Database (3670ms)
What does SIDS stand for? MrSID Generation 3 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (MrSID Generation 2, stands for, MrSID Generation 3) -> MrSID Generation 3 (3584ms)
What does SIDS stand for? Sketching 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Sketching) -> Sketching (3670ms)
What does SIDS stand for? line -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (his friend Sid, stood in, line) -> line (3670ms)
What does SIDS stand for? the doorway -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stands in, the doorway) -> the doorway (3671ms)
What does SIDS stand for? front -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stands in, front) -> front (3670ms)
What does SIDS stand for? countless elections -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stood in, countless elections) -> countless elections (3670ms)
What does SIDS stand for? the hall -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Nana , Sue and Sid, were all standing in, the hall) -> the hall (3670ms)
What does SIDS stand for? a hot head -0.222222222222 What does SIDS stand for? -> $x: (sids, be know for, $x) -> (Sid, is also known for having, a hot head) -> a hot head (3697ms)
What does SIDS stand for? specific types -0.222222222222 What does SIDS stand for? -> $x: (sids, be know for, $x) -> (Will , Clint or Sid, are known for making, specific types) -> specific types (3697ms)
What does SIDS stand for? bow ties -0.222222222222 What does SIDS stand for? -> $x: (sids, be know for, $x) -> (Sid, was well-known for wearing, bow ties) -> bow ties (3697ms)
What does SIDS stand for? Hoon -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Hoon, was standing next to, Sid) -> Hoon (3699ms)
What does SIDS stand for? The lion -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (The lion, stood outside, Sid?s office building) -> The lion (3699ms)
What does SIDS stand for? Mickey -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Mickey, stands across from, Yen Sid?s desk) -> Mickey (3697ms)
What does SIDS stand for? MG2 -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (MG2, stands for, MrSID Generation 2) -> MG2 (3699ms)
What does SIDS stand for? Nana -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Nana, stood next to, Sid) -> Nana (3699ms)
What does SIDS stand for? ?SB7 ,? -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (?SB7 ,?, stood for, ?Sid Beckerman tune # 7.?) -> ?SB7 ,? (3697ms)
What does SIDS stand for? Kong Li -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Kong Li, was already standing too close to, Sid) -> Kong Li (3697ms)
What does SIDS stand for? The old woman -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (The old woman, stood beside, Sid) -> The old woman (3697ms)
What does SIDS stand for? Kurt Lauderdale -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Kurt Lauderdale, stood toe to toe with, Sid Vicious) -> Kurt Lauderdale (3699ms)
What does SIDS stand for? MrSID Generation 2 -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (MrSID Generation 2, stands for, MrSID Generation 3) -> MrSID Generation 2 (3697ms)
What does SIDS stand for? green eyes -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (green eyes, stood, Sid) -> green eyes (3699ms)
What does SIDS stand for? land -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (land, stood, SidMar) -> land (3704ms)
What does SIDS stand for? MG4 -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (MG4, stands for, MrSID Generation 4) -> MG4 (3697ms)
What does SIDS stand for? second base -0.444444444442 What does SIDS stand for? -> $x: (sids, stand on, $x) -> (Sid Bream, stood on, second base) -> second base (3704ms)
What does SIDS stand for? a grey reflective plain -0.444444444442 What does SIDS stand for? -> $x: (sids, stand on, $x) -> (? Sid, stands on, a grey reflective plain) -> a grey reflective plain (3704ms)
What does SIDS stand for? too ? chatting -0.555555555553 What does SIDS stand for? -> $x: (sids, be stand, $x) -> (Sid Vicious, would have been standing there, too ? chatting) -> too ? chatting (3704ms)
What does SIDS stand for? the whole interview -0.555555555553 What does SIDS stand for? -> $x: (sids, be stand, $x) -> (LOL Sid, was standing so far back during, the whole interview) -> the whole interview (3704ms)
What does SIDS stand for? so far back during the whole interview -0.555555555553 What 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)
What does SIDS stand for? Lowe -0.555555555553 What does SIDS stand for? -> $x: (sids, be stand, $x) -> (Sid, was standing behind, Lowe) -> Lowe (3704ms)
How many times has he married? Manuel 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Manuel, married, three times) -> Manuel (3006ms)
How many times has he married? The King 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The King, married, six times) -> The King (2992ms)
How many times has he married? Colette 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Colette, married, three times) -> Colette (2993ms)
How many times has he married? Newt Gingrich 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Newt Gingrich, married, three times) -> Newt Gingrich (2976ms)
How many times has he married? The daughter of Aristotle 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The daughter of Aristotle, married, three times) -> The daughter of Aristotle (2992ms)
How many times has he married? A hyperactive heterosexual , Philby 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A hyperactive heterosexual , Philby, married, four times) -> A hyperactive heterosexual , Philby (2828ms)
How many times has he married? Thomas 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Thomas, married, three times) -> Thomas (3006ms)
How many times has he married? Barbara Hutton 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Barbara Hutton, married, seven times) -> Barbara Hutton (3006ms)
How many times has he married? Zsa Zsa Gabor 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Zsa Zsa Gabor, married, nine times) -> Zsa Zsa Gabor (2702ms)
How many times has he married? The story 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The story, marries, three times) -> The story (2976ms)
How many times has he married? Grandfather 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Grandfather, married, four times) -> Grandfather (2702ms)
How many times has he married? Couple 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Couple, married, shortest time) -> Couple (2992ms)
How many times has he married? Aaron 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Aaron, married, againthis time) -> Aaron (2993ms)
How many times has he married? A glamourous Austrian actress 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A glamourous Austrian actress, married, six times) -> A glamourous Austrian actress (3006ms)
How many times has he married? women 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (women, married, multiple times) -> women (3016ms)
How many times has he married? Margaret 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Margaret, married, three times) -> Margaret (3006ms)
How many times has he married? Eli C. Hale 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Eli C. Hale, married, second time) -> Eli C. Hale (2702ms)
How many times has he married? Dick 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Dick, married, five times) -> Dick (2993ms)
How many times has he married? a Elijah Throckmorton 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a Elijah Throckmorton, married, 3 times) -> a Elijah Throckmorton (2641ms)
How many times has he married? Betty Lou Beets 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Betty Lou Beets, married, five times) -> Betty Lou Beets (3016ms)
How many times has he married? Salim 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Salim, marries, time) -> Salim (3016ms)
How many times has he married? Sam 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Sam, married, 3 times) -> Sam (2642ms)
How many times has he married? Bertrand Russell 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Bertrand Russell, married, four times) -> Bertrand Russell (2977ms)
How many times has he married? Personal Life Stokowski 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Personal Life Stokowski, married, three times) -> Personal Life Stokowski (2977ms)
How many times has he married? Gazzara 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Gazzara, married, three times) -> Gazzara (3006ms)
How many times has he married? Mary 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Mary, married, three times) -> Mary (3016ms)
How many times has he married? Kerouac 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Kerouac, married, three times) -> Kerouac (2702ms)
How many times has he married? Sagan 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Sagan, married, three times) -> Sagan (2641ms)
How many times has he married? Davy 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Davy, married, three times) -> Davy (3016ms)
How many times has he married? The girl 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The girl, married, several times) -> The girl (2829ms)
How many times has he married? Zoroaster 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Zoroaster, married, three times) -> Zoroaster (2976ms)
How many times has he married? Newt 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Newt, married, three times) -> Newt (2829ms)
How many times has he married? Northern California 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Northern California, married, three times) -> Northern California (3006ms)
How many times has he married? Elizabeth Taylor 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Elizabeth Taylor, married, eight times) -> Elizabeth Taylor (2992ms)
How many times has he married? Robert Hanson 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Robert Hanson, married, four times) -> Robert Hanson (2641ms)
How many times has he married? a story of 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a story of, married, 23 times) -> a story of (3006ms)
How many times has he married? Aristotle 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Aristotle, married, three times) -> Aristotle (2977ms)
How many times has he married? So-called experts 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (So-called experts, married, several times) -> So-called experts (3006ms)
How many times has he married? Tom 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Tom, married, five times) -> Tom (2829ms)
How many times has he married? A former drug addict 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A former drug addict, married, five times) -> A former drug addict (2992ms)
How many times has he married? Kishore Kumar 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Kishore Kumar, married, four times) -> Kishore Kumar (2828ms)
How many times has he married? Curtis 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Curtis, married, six times) -> Curtis (2976ms)
How many times has he married? Ira 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Ira, married, four times) -> Ira (2830ms)
How many times has he married? John 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (John, married, four times) -> John (3016ms)
How many times has he married? Charles 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Charles, married, three times) -> Charles (3006ms)
How many times has he married? Beisner 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Beisner, married, three times) -> Beisner (3016ms)
How many times has he married? a father 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a father, married, four times) -> a father (2992ms)
How many times has he married? Scarlett 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Scarlett, married, three times) -> Scarlett (3006ms)
How many times has he married? Williams 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Williams, married, four times) -> Williams (2992ms)
How many times has he married? Davis 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Davis, married, three times) -> Davis (2977ms)
How many times has he married? a man 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a man, married, multiple times) -> a man (2976ms)
How many times has he married? Cora 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Cora, married, four times) -> Cora (2829ms)
How many times has he married? Muhammad 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Muhammad, married, eleven times) -> Muhammad (3006ms)
How many times has he married? David 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (David, married, eight times) -> David (2702ms)
How many times has he married? Delphine 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Delphine, married, eight times) -> Delphine (3016ms)
How many times has he married? a Solar Empire 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a Solar Empire, married, real time) -> a Solar Empire (3016ms)
How many times has he married? William 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (William, married, four times) -> William (2992ms)
How many times has he married? Andrew 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Andrew, married, three times) -> Andrew (2992ms)
How many times has he married? Hemingway 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Hemingway, married, four times) -> Hemingway (2992ms)
How many times has he married? Maud 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Maud, married, 3 times) -> Maud (3016ms)
How many times has he married? Archibald 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Archibald, married, 3 times) -> Archibald (2641ms)
How many times has he married? Newley 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Newley, married, three times) -> Newley (2702ms)
How many times has he married? James 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (James, married, three times) -> James (2993ms)
How many times has he married? one man 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (one man, married, eight times) -> one man (3006ms)
How many times has he married? Charles Howe Sr 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Charles Howe Sr, married, four times) -> Charles Howe Sr (2976ms)
How many times has he married? a woman 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a woman, marrying, seven times) -> a woman (3006ms)
How many times has he married? a person 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a person, married, three times) -> a person (2976ms)
How many times has he married? Henry 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Henry, married, six times) -> Henry (2976ms)
How many times has he married? Woody 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Woody, married, 3 times) -> Woody (2992ms)
How many times has he married? A woman 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A woman, married, three times) -> A woman (2641ms)
How many times has he married? Hemmings 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Hemmings, married, four times) -> Hemmings (3006ms)
How many times has he married? the Colonial themes 0.222222222222 How many times has he married? -> $x: ($x, marry, victorian) -> (the Colonial themes, would be married to, Victorian fussiness) -> the Colonial themes (3016ms)
How many times has he married? the Tyrannosaurus Rex 0.222222222222 How many times has he married? -> $x: ($x, marry, stegosaurus) -> (the Tyrannosaurus Rex, married to, the Stegosaurus) -> the Tyrannosaurus Rex (3016ms)
How many times has he married? 4.5 % Muslims 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (4.5 % Muslims, marry, Hindu , Jain or Sikh) -> 4.5 % Muslims (3016ms)
How many times has he married? the same caste 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (the same caste, marry, a Sikh) -> the same caste (3024ms)
How many times has he married? a bride 0.222222222222 How many times has he married? -> $x: ($x, marry, victorian) -> (a bride, was married, prior to the Victorian era) -> a bride (3024ms)
How many times has he married? Mahendra Pratap 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (Mahendra Pratap, married a lady from, a Jat Sikh family) -> Mahendra Pratap (3016ms)
How many times has he married? Sunday Sweepstakes 0.222222222222 How many times has he married? -> $x: ($x, marry, time square) -> (Sunday Sweepstakes, Get Married in, Times Square) -> Sunday Sweepstakes (3016ms)
How many times has he married? Omar Abdullah 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (Omar Abdullah, is married to, a Sikh) -> Omar Abdullah (3016ms)
How many times has he married? The trouble 0.222222222221 How many times has he married? -> $x: ($x, be marry of, time) -> (The trouble, is you?re married all of, the time) -> The trouble (3024ms)
How many times has he married? A man 0.222222222221 How 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)
How many times has he married? the tobaccos 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, to marry, the tobaccos) -> the tobaccos (3038ms)
How many times has he married? a daughter 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, marries, a daughter) -> a daughter (3031ms)
How many times has he married? Ciel 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, then marry, Ciel) -> Ciel (3048ms)
How many times has he married? a hockey player 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, even marry, a hockey player) -> a hockey player (3038ms)
How many times has he married? Olive Nathan 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time Grandpa Estes, married, Olive Nathan) -> Olive Nathan (3038ms)
How many times has he married? deacons 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, married, deacons) -> deacons (3043ms)
How many times has he married? Jones 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (Three-times, married, Jones) -> Jones (3048ms)
How many times has he married? Bernadette 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (The many times, married, Bernadette) -> Bernadette (3038ms)
How many times has he married? Wynette 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the same time Jones, married, Wynette) -> Wynette (3043ms)
How many times has he married? a second wife 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (this time, married, a second wife) -> a second wife (3038ms)
How many times has he married? the Temple 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, get married at, the Temple) -> the Temple (3037ms)
How many times has he married? a secret agent 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, a secret agent) -> a secret agent (3037ms)
How many times has he married? Torch Lake 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, were married on, Torch Lake) -> Torch Lake (3048ms)
How many times has he married? the handsome avacado-farmer 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (her time, marry, the handsome avacado-farmer) -> the handsome avacado-farmer (3048ms)
How many times has he married? the pleasures 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (Time, marries, the pleasures) -> the pleasures (3024ms)
How many times has he married? the first time 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, got married for, the first time) -> the first time (3031ms)
How many times has he married? actress Talisa Soto 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (one-time beau Benjamin Bratt, married, actress Talisa Soto) -> actress Talisa Soto (3038ms)
How many times has he married? chain 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the first time, marry, chain) -> chain (3052ms)
How many times has he married? the Roman Catholic Church 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, were married in, the Roman Catholic Church) -> the Roman Catholic Church (3043ms)
How many times has he married? a sculptor 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, would marry, a sculptor) -> a sculptor (3048ms)
How many times has he married? a cutlass blade 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times, married to, a cutlass blade) -> a cutlass blade (3031ms)
How many times has he married? a Frenchman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, eventually marries, a Frenchman) -> a Frenchman (3048ms)
How many times has he married? 18 years 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, have been married for, 18 years) -> 18 years (3052ms)
How many times has he married? a Midianite priest 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, married the daughter of, a Midianite priest) -> a Midianite priest (3024ms)
How many times has he married? technological components 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (timeRAZOR, marries, technological components) -> technological components (3048ms)
How many times has he married? bananas 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (most of the time, marry, bananas) -> bananas (3038ms)
How many times has he married? awareness metrics 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (peak usage time, marry, awareness metrics) -> awareness metrics (3052ms)
How many times has he married? four times 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (three times, married, four times) -> four times (3025ms)
How many times has he married? two years later 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, two years later) -> two years later (3052ms)
How many times has he married? Ayaka 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, Ayaka) -> Ayaka (3048ms)
How many times has he married? each year 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, are married, each year) -> each year (3024ms)
How many times has he married? now 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a long time, married, now) -> now (3048ms)
How many times has he married? a wife 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times, is being married to, a wife) -> a wife (3048ms)
How many times has he married? again 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, again) -> again (3052ms)
How many times has he married? a Tasmanian 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times, is actually married to, a Tasmanian) -> a Tasmanian (3048ms)
How many times has he married? the lead guitarist 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a Time, married, the lead guitarist) -> the lead guitarist (3038ms)
How many times has he married? actor Dijimon Hounsou 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, only get married to, actor Dijimon Hounsou) -> actor Dijimon Hounsou (3043ms)
How many times has he married? a Jeffery 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (My own x times granny Sarah Broadway, married, a Jeffery) -> a Jeffery (3031ms)
How many times has he married? the suspense 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (The timed challenges, marry, the suspense) -> the suspense (3038ms)
How many times has he married? the love 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the Sunday Times fashion journalist, married, the love) -> the love (3031ms)
How many times has he married? the next day 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, were married, the next day) -> the next day (3031ms)
How many times has he married? Louis 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (good time, marry, Louis) -> Louis (3043ms)
How many times has he married? later 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, later) -> later (3038ms)
How many times has he married? a fellow international student 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, a fellow international student) -> a fellow international student (3052ms)
How many times has he married? a non-Jewish woman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, a non-Jewish woman) -> a non-Jewish woman (3031ms)
How many times has he married? July 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, was married in, July) -> July (3031ms)
How many times has he married? the niece 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, is married to, the niece) -> the niece (3031ms)
How many times has he married? Hadassah 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, finally marry, Hadassah) -> Hadassah (3031ms)
How many times has he married? each other 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, are married to, each other) -> each other (3031ms)
How many times has he married? fellow student Yuana Parisia 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, fellow student Yuana Parisia) -> fellow student Yuana Parisia (3043ms)
How many times has he married? Helen 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, Helen) -> Helen (3043ms)
How many times has he married? a rock star 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (A Time , Vallerie Bertinelli, married, a rock star) -> a rock star (3024ms)
How many times has he married? the couple 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, the couple) -> the couple (3043ms)
How many times has he married? a fellow parishioner 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (two and sometimes three times, married, a fellow parishioner) -> a fellow parishioner (3052ms)
How many times has he married? a child 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a time, marry, a child) -> a child (3024ms)
How many times has he married? the heir 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (A short time, married, the heir) -> the heir (3024ms)
How many times has he married? Agnese 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time Alfredo, married, Agnese) -> Agnese (3043ms)
How many times has he married? reports 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (my time, marry, reports) -> reports (3043ms)
How many times has he married? the parties 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, the parties) -> the parties (3031ms)
How many times has he married? a Dutch woman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, married, a Dutch woman) -> a Dutch woman (3038ms)
How many times has he married? an Iraqi staffer 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a Times reporter, married, an Iraqi staffer) -> an Iraqi staffer (3024ms)
How many times has he married? pop singer 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a one-time radio DJ, married, pop singer) -> pop singer (3043ms)
How many times has he married? the person 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (first time cohabitors, marry, the person) -> the person (3031ms)
How many times has he married? a Welsh gentleman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (Time, married, a Welsh gentleman) -> a Welsh gentleman (3031ms)
How many times has he married? priests 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, priests) -> priests (3024ms)
How many times has he married? the flavors 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, to marry, the flavors) -> the flavors (3037ms)
How many times has he married? fellow activist Chris Hatch 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, fellow activist Chris Hatch) -> fellow activist Chris Hatch (3048ms)
How many times has he married? the next woman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, the next woman) -> the next woman (3048ms)
How many times has he married? Carl 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a full-time student, marries, Carl) -> Carl (3031ms)
How many times has he married? Allene Wyman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, marry, Allene Wyman) -> Allene Wyman (3024ms)
How many times has he married? Paul McCartney 10 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a time-machine and travel, marry, Paul McCartney 10) -> Paul McCartney 10 (3043ms)
How many times has he married? the wrong reasons 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times people, marry for, the wrong reasons) -> the wrong reasons (3037ms)
How many times has he married? geometric architecture 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (The Two Timing Collection, marries, geometric architecture) -> geometric architecture (3048ms)
How many times has he married? a nice Jewish man -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (a Sikh, eventually decided to marry, a nice Jewish man) -> a nice Jewish man (3052ms)
How many times has he married? Hindus -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (Sikhs, marry with, Hindus) -> Hindus (3052ms)
How many times has he married? the children -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (the Hmong or Punjabi Sikhs, marry, the children) -> the children (3052ms)
How many times has he married? Barbara Irving -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (the Victorian Railways, married, Barbara Irving) -> Barbara Irving (3052ms)
How many times has he married? wigs and bustles -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (The Victorian wedding, get married in, wigs and bustles) -> wigs and bustles (3055ms)
How many times has he married? the gruff master -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (a Victorian gothic, marries, the gruff master) -> the gruff master (3055ms)
How many times has he married? 20 years -0.111111111111 How 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)
How many times has he married? local Chinese women -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (the Sikhs, married, local Chinese women) -> local Chinese women (3055ms)
How many times has he married? Mexican women -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (Sikh men, married, Mexican women) -> Mexican women (3055ms)
How many times has he married? Carolyn Hoef -0.111111111111 How 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)
How many times has he married? a long magazine feature -0.111111111111 How 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)
How many times has he married? a Sikh -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (all Sikh girls, is to marry, a Sikh) -> a Sikh (3052ms)
How many times has he married? a Methodist church -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (Victorians, will be married in, a Methodist church) -> a Methodist church (3052ms)
How many times has he married? three -0.111111111112 How many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, three) -> three (3055ms)
How many times has he married? two children -0.111111111112 How many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, two children) -> two children (3055ms)
How many times has he married? three whose wife -0.111111111112 How 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)
Where is the capital of the Mormon Church? Salt Lake City 2.77777777777 Where 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)
What was Sinatra's first recording? Disc 2 0.666666666665 What was Sinatra's first recording? -> $x: ($x, be recording of, sinatra) -> (Disc 2, is a recording of, Mr Sinatra) -> Disc 2 (500ms)
When was Limbaugh born? Missouri 0.33333333333 When was Limbaugh born? -> $x: (limbaugh, be bear in, $x) -> (Rush Limbaugh, was born in, Missouri) -> Missouri (2138ms)
When was Limbaugh born? Cape Girardeau 0.33333333333 When was Limbaugh born? -> $x: (rush limbaugh, be bear in, $x) -> (Rush Hudson Limbaugh III, was born in, Cape Girardeau) -> Cape Girardeau (2139ms)
When was Limbaugh born? 1951 0.33333333333 When was Limbaugh born? -> $x: (limbaugh, be bear in, $x) -> (Rush Limbaugh, was born in, 1951) -> 1951 (2138ms)
When was Limbaugh born? Bakersfield -0.0 When was Limbaugh born? -> $x: (limbaugh, live in, $x) -> (Limbaugh, live in, Bakersfield) -> Bakersfield (2211ms)
When was Limbaugh born? Jan . 12 -0.0 When was Limbaugh born? -> $x: (limbaugh, be bear on, $x) -> (Limbaugh and Stern, were both born on, Jan . 12) -> Jan . 12 (2138ms)
When was Limbaugh born? kidney failure -0.111111111111 When was Limbaugh born? -> $x: (rush limbaugh, die of, $x) -> (Rush Limbaugh, will die of, kidney failure) -> kidney failure (3380ms)
When was Limbaugh born? a heart attack -0.111111111111 When was Limbaugh born? -> $x: (limbaugh, die of, $x) -> (Limbaugh, dying of, a heart attack) -> a heart attack (3342ms)
When was Limbaugh born? cancer -0.111111111111 When was Limbaugh born? -> $x: (limbaugh, die of, $x) -> (Limbaugh, dies of, cancer) -> cancer (3415ms)
When was Limbaugh born? care -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does nt, care) -> care (3711ms)
When was Limbaugh born? right-wing talkmeister Rush Limbaugh use -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, right-wing talkmeister Rush Limbaugh use) -> right-wing talkmeister Rush Limbaugh use (3733ms)
When was Limbaugh born? significant moral character -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does n?t have, significant moral character) -> significant moral character (3733ms)
When was Limbaugh born? Heaton -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, so did, Heaton) -> Heaton (3711ms)
When was Limbaugh born? the matter -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (? Limbaugh, did n?t shy away from, the matter) -> the matter (3687ms)
When was Limbaugh born? the reputation -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does threaten, the reputation) -> the reputation (3746ms)
When was Limbaugh born? Republicans -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does the dirty work for, Republicans) -> Republicans (3718ms)
When was Limbaugh born? the subject -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (some research Rush Limbaugh, did on, the subject) -> the subject (3739ms)
When was Limbaugh born? the Democrat -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t like, the Democrat) -> the Democrat (3687ms)
When was Limbaugh born? the Republican Party -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t run, the Republican Party) -> the Republican Party (3746ms)
When was Limbaugh born? callers -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does take, callers) -> callers (3740ms)
When was Limbaugh born? n?t -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, n?t) -> n?t (3746ms)
When was Limbaugh born? a broad need classroom seats -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, a broad need classroom seats) -> a broad need classroom seats (3711ms)
When was Limbaugh born? the Chevy Volt -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (2011 Rush Limbaugh, does n?t like, the Chevy Volt) -> the Chevy Volt (3733ms)
When was Limbaugh born? the memo -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, clearly did n?t get, the memo) -> the memo (3746ms)
When was Limbaugh born? a living -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, do for, a living) -> a living (3696ms)
When was Limbaugh born? an effective job -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, really does, an effective job) -> an effective job (3732ms)
When was Limbaugh born? whine -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t, whine) -> whine (3719ms)
When was Limbaugh born? the same -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, the same) -> the same (3733ms)
When was Limbaugh born? funders -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done, funders) -> funders (3696ms)
When was Limbaugh born? spew -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, do are, spew) -> spew (3696ms)
When was Limbaugh born? the pill -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did any research on, the pill) -> the pill (3719ms)
When was Limbaugh born? a cup -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t even throw, a cup) -> a cup (3726ms)
When was Limbaugh born? the Little Timmy moniker -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did borrow, the Little Timmy moniker) -> the Little Timmy moniker (3711ms)
When was Limbaugh born? an apology -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did offer, an apology) -> an apology (3719ms)
When was Limbaugh born? women -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t give a damn about, women) -> women (3746ms)
When was Limbaugh born? ?EIB.? -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does n?t actually work for, ?EIB.?) -> ?EIB.? (3719ms)
When was Limbaugh born? decency -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t care about, decency) -> decency (3746ms)
When was Limbaugh born? a good job -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a good job) -> a good job (3732ms)
When was Limbaugh born? the United States -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, the United States) -> the United States (3726ms)
When was Limbaugh born? Monday Night Football -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did get fired from, Monday Night Football) -> Monday Night Football (3726ms)
When was Limbaugh born? the commercial time -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does hold back some of, the commercial time) -> the commercial time (3719ms)
When was Limbaugh born? a radio program -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a radio program) -> a radio program (3732ms)
When was Limbaugh born? still -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, still) -> still (3740ms)
When was Limbaugh born? girly men -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (the Rush Limbaugh Quilt, do, girly men) -> girly men (3740ms)
When was Limbaugh born? the political right -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does for, the political right) -> the political right (3687ms)
When was Limbaugh born? Wednesday -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t complain until, Wednesday) -> Wednesday (3740ms)
When was Limbaugh born? taxes -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (my BFF Rush Limbaugh, does n?t like, taxes) -> taxes (3593ms)
When was Limbaugh born? insult -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did more than, insult) -> insult (3696ms)
When was Limbaugh born? Saddam -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, Saddam) -> Saddam (3726ms)
When was Limbaugh born? call George Zimmerman -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t, call George Zimmerman) -> call George Zimmerman (3704ms)
When was Limbaugh born? a pay-podcast -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, just do, a pay-podcast) -> a pay-podcast (3696ms)
When was Limbaugh born? liberal searchlight -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, liberal searchlight) -> liberal searchlight (3711ms)
When was Limbaugh born? Clinton -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did this to, Clinton) -> Clinton (3740ms)
When was Limbaugh born? a nice job one day -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a nice job one day) -> a nice job one day (3704ms)
When was Limbaugh born? liberal breton -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, liberal breton) -> liberal breton (3732ms)
When was Limbaugh born? the doubt -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t get the benefit of, the doubt) -> the doubt (3726ms)
When was Limbaugh born? henchman cameo -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, is doing today?s, henchman cameo) -> henchman cameo (3719ms)
When was Limbaugh born? Wilson -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Racist Rush Limbaugh, naturally does n?t think, Wilson) -> Wilson (3704ms)
When was Limbaugh born? air -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does on, air) -> air (3726ms)
When was Limbaugh born? the time -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, were doing at, the time) -> the time (3740ms)
When was Limbaugh born? a cable TV station -0.222222222222 When 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)
When was Limbaugh born? alienate two-thirds -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does his best to, alienate two-thirds) -> alienate two-thirds (3711ms)
When was Limbaugh born? three solid days -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did for, three solid days) -> three solid days (3696ms)
When was Limbaugh born? Romney -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (( Limbaugh, does n?t even like, Romney) -> Romney (3696ms)
When was Limbaugh born? Howard?s forays -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, do a lot more damage than, Howard?s forays) -> Howard?s forays (3696ms)
When was Limbaugh born? an ?ideology -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t inject, an ?ideology) -> an ?ideology (3719ms)
When was Limbaugh born? the lesser-known FM station -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did move to, the lesser-known FM station) -> the lesser-known FM station (3704ms)
When was Limbaugh born? Fluke?s life -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did some research into, Fluke?s life) -> Fluke?s life (3726ms)
When was Limbaugh born? heart Hillary -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, really does, heart Hillary) -> heart Hillary (3733ms)
When was Limbaugh born? the attacks -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t stop with, the attacks) -> the attacks (3711ms)
When was Limbaugh born? President Obama -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (--radio talk-show host Rush Limbaugh, does, President Obama) -> President Obama (3719ms)
When was Limbaugh born? an impression of her -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, mocked Sawyer doing, an impression of her) -> an impression of her (3711ms)
When was Limbaugh born? YouTube or Facebook -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, apparently does n?t offend, YouTube or Facebook) -> YouTube or Facebook (3704ms)
When was Limbaugh born? men -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (( Limbaugh, pointedly does n?t suggest this to, men) -> men (3732ms)
When was Limbaugh born? the problem -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has nothing to do with, the problem) -> the problem (3740ms)
When was Limbaugh born? Hillary Clinton -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did for, Hillary Clinton) -> Hillary Clinton (3746ms)
When was Limbaugh born? the brand -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (" Rush Limbaugh, may have done more damage to, the brand) -> the brand (3732ms)
When was Limbaugh born? the cause -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done great harm to, the cause) -> the cause (3696ms)
When was Limbaugh born? Stoltenberg -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does have the advantage on, Stoltenberg) -> Stoltenberg (3594ms)
When was Limbaugh born? just call people names -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does nt, just call people names) -> just call people names (3687ms)
When was Limbaugh born? voters -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has done a fine service to, voters) -> voters (3687ms)
When was Limbaugh born? Jesse Jackson imitation -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, Jesse Jackson imitation) -> Jesse Jackson imitation (3746ms)
When was Limbaugh born? Republican water -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (? Limbaugh, does n?t carry, Republican water) -> Republican water (3696ms)
When was Limbaugh born? Bush -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did the right thing by, Bush) -> Bush (3711ms)
When was Limbaugh born? a radio talk show -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, a radio talk show) -> a radio talk show (3740ms)
When was Limbaugh born? the conservatives -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the conservatives) -> the conservatives (3704ms)
When was Limbaugh born? ?Machine Gun Preacher ? -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t see, ?Machine Gun Preacher ?) -> ?Machine Gun Preacher ? (3513ms)
When was Limbaugh born? a live show -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, a live show) -> a live show (3711ms)
When was Limbaugh born? torture -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done nothing but cheerlead for, torture) -> torture (3704ms)
When was Limbaugh born? 2000 -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did in, 2000) -> 2000 (3726ms)
When was Limbaugh born? the law student -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did issue an apology to, the law student) -> the law student (3687ms)
When was Limbaugh born? Fluke -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, Fluke) -> Fluke (3726ms)
When was Limbaugh born? the defense -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh?s comments, has anything to do with, the defense) -> the defense (3704ms)
When was Limbaugh born? radio segments -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, radio segments) -> radio segments (3733ms)
When was Limbaugh born? so -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, so) -> so (3719ms)
When was Limbaugh born? years -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has been doing for, years) -> years (3719ms)
When was Limbaugh born? big bucks -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does the same thing for really, big bucks) -> big bucks (3740ms)
When was Limbaugh born? advertisers -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has to do with, advertisers) -> advertisers (3719ms)
When was Limbaugh born? decades -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (All Rush Limbaugh, has done is work hard for, decades) -> decades (3740ms)
When was Limbaugh born? private behavior -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t share my opinion about, private behavior) -> private behavior (3733ms)
When was Limbaugh born? last week -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, last week) -> last week (3726ms)
When was Limbaugh born? ratings -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (1:39 pm Rush Limbaugh, is doing this for, ratings) -> ratings (3687ms)
When was Limbaugh born? the meaning -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t regret, the meaning) -> the meaning (3726ms)
When was Limbaugh born? a daily basis -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does on, a daily basis) -> a daily basis (3711ms)
When was Limbaugh born? Ms. Fluke -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did to, Ms. Fluke) -> Ms. Fluke (3696ms)
When was Limbaugh born? Honolulu Council -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, Did, Honolulu Council) -> Honolulu Council (3740ms)
When was Limbaugh born? drugs -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, doing, drugs) -> drugs (3712ms)
When was Limbaugh born? Thursday -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did his part on, Thursday) -> Thursday (3712ms)
When was Limbaugh born? the NYTimes -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has been doing a good job on, the NYTimes) -> the NYTimes (3704ms)
When was Limbaugh born? the obvious , -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the obvious ,) -> the obvious , (3740ms)
When was Limbaugh born? an excellent , good or fair job -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, is doing, an excellent , good or fair job) -> an excellent , good or fair job (3687ms)
When was Limbaugh born? Obama -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, Obama) -> Obama (3593ms)
When was Limbaugh born? an article -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did a riff on, an article) -> an article (3704ms)
When was Limbaugh born? n?t pay -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, n?t pay) -> n?t pay (3746ms)
When was Limbaugh born? Fine -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, Is Doing Just, Fine) -> Fine (3704ms)
When was Limbaugh born? a montage -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, is going to do, a montage) -> a montage (3593ms)
When was Limbaugh born? the word -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did use, the word) -> the word (3719ms)
When was Limbaugh born? the work nobody -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the work nobody) -> the work nobody (3726ms)
When was Limbaugh born? the Democrats -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, so did, the Democrats) -> the Democrats (3719ms)
When was Limbaugh born? parodies -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does tired, parodies) -> parodies (3593ms)
When was Limbaugh born? people names -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (?Limbaugh, does n?t just call, people names) -> people names (3746ms)
When was Limbaugh born? Democrats -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (RUSH LIMBAUGH, do, Democrats) -> Democrats (3704ms)
When was Limbaugh born? a sit-down interview -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has done, a sit-down interview) -> a sit-down interview (3704ms)
When was Limbaugh born? Sandra Fluke -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did to, Sandra Fluke) -> Sandra Fluke (3732ms)
When was Limbaugh born? Entergy v. Riverkeeper -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t include, Entergy v. Riverkeeper) -> Entergy v. Riverkeeper (3726ms)
When was Limbaugh born? any loss -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Stories Rush Limbaugh, does n?t seem to have suffered, any loss) -> any loss (3593ms)
When was Limbaugh born? an opening -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (an opening, did, Mr Limbaugh) -> an opening (3772ms)
When was Limbaugh born? Comments Frameshop -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Comments Frameshop, Did, Limbaugh) -> Comments Frameshop (3772ms)
When was Limbaugh born? Link -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (Link, do, RUSH Limbaugh) -> Link (3781ms)
When was Limbaugh born? a preview -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a preview, did, Rush Limbaugh) -> a preview (3752ms)
When was Limbaugh born? the heck -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the heck, does, Limbaugh) -> the heck (3762ms)
When was Limbaugh born? Dean -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Dean, even did an impersonation of, Limbaugh snorting coke) -> Dean (3767ms)
When was Limbaugh born? reply -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (reply, did, LImbaugh attack) -> reply (3781ms)
When was Limbaugh born? Oralmann -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Oralmann, does, a Limbaugh impression) -> Oralmann (3762ms)
When was Limbaugh born? cults -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (cults, do tend to develop, ( Rush Limbaugh anyone) -> cults (3757ms)
When was Limbaugh born? the Republican party -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the Republican party, is doing the same right now with, Limbaugh) -> the Republican party (3767ms)
When was Limbaugh born? occasion -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (occasion, does, Rush Limbaugh) -> occasion (3781ms)
When was Limbaugh born? UPDATE -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (UPDATE, Did n?t, the Advertisers Drop Rush Limbaugh) -> UPDATE (3776ms)
When was Limbaugh born? Even the NFL -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Even the NFL, did n?t want, Limbaugh) -> Even the NFL (3752ms)
When was Limbaugh born? the sisterhood -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the sisterhood, is doing battle with, Rush Limbaugh) -> the sisterhood (3757ms)
When was Limbaugh born? politicsathome -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (politicsathome, Does, Mr. Limbaugh) -> politicsathome (3762ms)
When was Limbaugh born? a really disgusting image -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a really disgusting image, so does, Limbaugh) -> a really disgusting image (3757ms)
When was Limbaugh born? Beck and -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Beck and, could do the same to, Limbaugh) -> Beck and (3752ms)
When was Limbaugh born? Franken -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Franken, does, a good Rush Limbaugh imitation) -> Franken (3772ms)
When was Limbaugh born? Olbermann -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Olbermann, Did, Limbaugh) -> Olbermann (3772ms)
When was Limbaugh born? Just another Hot site news -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Just another Hot site news, Does, Rush Limbaugh) -> Just another Hot site news (3777ms)
When was Limbaugh born? The liberals -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (The liberals, did this with, Rush Limbaugh) -> The liberals (3777ms)
When was Limbaugh born? 06/13/2011 -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (06/13/2011, Did, Limbaugh) -> 06/13/2011 (3781ms)
When was Limbaugh born? The Republican board members -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (The Republican board members, wont do anything to, Limbaugh) -> The Republican board members (3757ms)
When was Limbaugh born? the Classes -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the Classes, Does, Rush Limbaugh) -> the Classes (3767ms)
When was Limbaugh born? VIAGRA -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (VIAGRA, does sound like, Limbaugh) -> VIAGRA (3767ms)
When was Limbaugh born? a regular basis -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a regular basis, does, Limbaugh) -> a regular basis (3757ms)
When was Limbaugh born? home -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (home, so did, Rush Limbaugh) -> home (3777ms)
When was Limbaugh born? wodiej -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (wodiej, Did, Levin or Limbaugh endorse anyone) -> wodiej (3772ms)
When was Limbaugh born? Here?s one -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Here?s one, obviously does n?t listen to, Limbaugh) -> Here?s one (3762ms)
When was Limbaugh born? Barack ? Obama -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Barack ? Obama, did n?t take, Limbaugh?s bait) -> Barack ? Obama (3776ms)
When was Limbaugh born? Rush Limbaugh -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Rush Limbaugh, does, right-wing talkmeister Rush Limbaugh use) -> Rush Limbaugh (3746ms)
When was Limbaugh born? 12 August 2010 12:55 -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (12 August 2010 12:55, Do, Rush Limbaugh) -> 12 August 2010 12:55 (3781ms)
When was Limbaugh born? board -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (board, did, Limbaugh) -> board (3762ms)
When was Limbaugh born? BuzzFlash -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (BuzzFlash, does, Rush Limbaugh play) -> BuzzFlash (3772ms)
When was Limbaugh born? terrorists -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (terrorists, does, Rush Limbaugh) -> terrorists (3772ms)
When was Limbaugh born? Just -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (Just, do famed, women-bashers Rush Limbaugh) -> Just (3772ms)
When was Limbaugh born? more ] -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (more ], Did, some Rush Limbaugh dittohead call) -> more ] (3781ms)
When was Limbaugh born? much influence -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (much influence, did, Rush Limbaugh) -> much influence (3762ms)
When was Limbaugh born? the destruction -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the destruction, done to, Limbaugh) -> the destruction (3752ms)
When was Limbaugh born? the answer -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the answer, has to do with, Rush Limbaugh) -> the answer (3772ms)
When was Limbaugh born? KPUA -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (KPUA, does have three marvelous hours of, Rush Limbaugh) -> KPUA (3777ms)
When was Limbaugh born? Chafets -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Chafets, did ask, Limbaugh) -> Chafets (3777ms)
When was Limbaugh born? audience -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (audience, would do serious damage to, Limbaugh) -> audience (3757ms)
When was Limbaugh born? 127 other followers -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (127 other followers, do, Limbaugh) -> 127 other followers (3762ms)
When was Limbaugh born? the public protest -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the public protest, did to, Limbaugh) -> the public protest (3767ms)
When was Limbaugh born? anyone else -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (anyone else, does n?t fit the mold of, Mr. Limbaugh?s version) -> anyone else (3746ms)
When was Limbaugh born? President Reagan -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (President Reagan, did send, Limbaugh) -> President Reagan (3762ms)
When was Limbaugh born? fans -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (fans, do listen to, Limbaugh ? fans) -> fans (3777ms)
When was Limbaugh born? Rush -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Rush, did n?t go from, Rush Limbaugh) -> Rush (3762ms)
When was Limbaugh born? Bush Country -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Bush Country, makes do with, Rush Limbaugh) -> Bush Country (3777ms)
When was Limbaugh born? racist -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (racist, does, n?t Limbaugh) -> racist (3762ms)
When was Limbaugh born? the firm -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the firm, does n?t want to continue, Limbaugh?s advertising) -> the firm (3772ms)
When was Limbaugh born? The better question -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (The better question, does, Rush Limbaugh) -> The better question (3781ms)
When was Limbaugh born? a *huge* following -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (a *huge* following, does, Rush Limbaugh) -> a *huge* following (3772ms)
When was Limbaugh born? Insurance -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Insurance, did tape, Limbaugh) -> Insurance (3767ms)
When was Limbaugh born? the the health care bill -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (the the health care bill, did, Rush Limbaugh) -> the the health care bill (3757ms)
When was Limbaugh born? spinnerator -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (spinnerator, does, Hannity , Limbaugh , Curic , Walters) -> spinnerator (3757ms)
When was Limbaugh born? Procedure -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Procedure, Does, Limbaugh) -> Procedure (3762ms)
When was Limbaugh born? no time -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (no time, did, Rush Limbaugh) -> no time (3772ms)
When was Limbaugh born? the Columbia accident -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (the Columbia accident, is largely the doing of, Rush Limbaugh) -> the Columbia accident (3777ms)
When was Limbaugh born? Bill Maher -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Bill Maher, have to do with, Rush Limbaugh) -> Bill Maher (3772ms)
When was Limbaugh born? Zell Miller -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Zell Miller, does to, Rush Limbaugh?s medicine cabinet) -> Zell Miller (3776ms)
When was Limbaugh born? Answer -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Answer, does rush, limbaugh need viagra) -> Answer (3762ms)
When was Limbaugh born? 2002 * -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (2002 *, do, Rush Limbaugh) -> 2002 * (3772ms)
When was Limbaugh born? gumdrops -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (gumdrops, did, the decidedly nonfictional Rush Limbaugh) -> gumdrops (3762ms)
When was Limbaugh born? Questions -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Questions, Does, Rush Limbaugh) -> Questions (3757ms)
When was Limbaugh born? compassion -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (compassion, does, Rush Limbaugh) -> compassion (3772ms)
When was Limbaugh born? a hardscrabble existence -1.9999999999940001 When was Limbaugh born? -> $x: ($x, invent, limbaugh) -> (a hardscrabble existence, was totally invented by, Limbaugh) -> a hardscrabble existence (3789ms)
When was Limbaugh born? the talk-radio format -1.9999999999940001 When was Limbaugh born? -> $x: (limbaugh, invent, $x) -> (Limbaugh more or less, invented, the talk-radio format) -> the talk-radio format (3789ms)
When was Limbaugh born? the reprehensible slur ?feminazi -1.9999999999940001 When was Limbaugh born? -> $x: (limbaugh, invent, $x) -> (Limbaugh, invented, the reprehensible slur ?feminazi) -> the reprehensible slur ?feminazi (3789ms)
When was Limbaugh born? a couple weeks -1.9999999999940001 When was Limbaugh born? -> $x: (rush limbaugh, die, $x) -> (Rush Limbaugh, died, a couple weeks) -> a couple weeks (3789ms)
When was Limbaugh born? a piece -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, looks like, a piece) -> a piece (3795ms)
When was Limbaugh born? a new Kingfish -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, is starting to look like, a new Kingfish) -> a new Kingfish (3795ms)
When was Limbaugh born? a flaming liberal -2.111111111103 When was Limbaugh born? -> $x: (rush limbaugh, look like, $x) -> (Rush Limbaugh, look like, a flaming liberal) -> a flaming liberal (3792ms)
When was Limbaugh born? bushfailure -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (bushfailure, Looks like, Rush Limbaugh) -> bushfailure (3795ms)
When was Limbaugh born? the Teletubbies -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (the Teletubbies, looks a lot like, Rush Limbaugh) -> the Teletubbies (3796ms)
When was Limbaugh born? a hulking man -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (a hulking man, looked a bit like, Rush Limbaugh) -> a hulking man (3795ms)
When was Limbaugh born? Bill Clinton -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (Bill Clinton, look like, Rush Limbaugh) -> Bill Clinton (3795ms)
When was Limbaugh born? the political landscape -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (the political landscape, would look like without, Limbaugh) -> the political landscape (3789ms)
When was Limbaugh born? an independent thinker -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, an independent thinker) -> an independent thinker (3792ms)
When was Limbaugh born? Ted Kennedy -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, looks like, Ted Kennedy) -> Ted Kennedy (3795ms)
When was Limbaugh born? a mob -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (This anti-Limbaugh movement, is starting to look like, a mob) -> a mob (3792ms)
When was Limbaugh born? Susan B. Anthony -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, Susan B. Anthony) -> Susan B. Anthony (3795ms)
When was Limbaugh born? a nice guy -2.111111111103 When was Limbaugh born? -> $x: (rush limbaugh, look like, $x) -> (Rush Limbaugh, looks like, a nice guy) -> a nice guy (3795ms)
When was Limbaugh born? the Minnesota State Fair -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (the Minnesota State Fair, looked a whole lot like, Limbaugh) -> the Minnesota State Fair (3789ms)
When was Limbaugh born? a fool -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Limbaugh, was made to look like, a fool) -> a fool (3792ms)
When was Limbaugh born? sugar and honey -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, sugar and honey) -> sugar and honey (3792ms)
When was Limbaugh born? a beached whale -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Limbaugh, looks like, a beached whale) -> a beached whale (3795ms)
When was Limbaugh born? Guy -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (Guy, looks like, a rush limbaugh listener) -> Guy (3792ms)
When was Limbaugh born? types -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (types, look like, Rush Limbaugh) -> types (3792ms)
When was Limbaugh born? Michelle Sixta -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Michelle Sixta) -> Michelle Sixta (3801ms)
When was Limbaugh born? the same person -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, were ever married to, the same person) -> the same person (3798ms)
When was Limbaugh born? two years -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (61-year-old Limbaugh, has been married less than, two years) -> two years (3801ms)
When was Limbaugh born? 4 times -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (presumably Rush Limbaugh, has been married, 4 times) -> 4 times (3798ms)
When was Limbaugh born? four times -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Mr. Limbaugh, has been married, four times) -> four times (3801ms)
When was Limbaugh born? any woman -2.111111111104 When was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (any woman, have married, Rush Limbaugh) -> any woman (3801ms)
When was Limbaugh born? Jane Fonda -2.111111111104 When was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (Jane Fonda, marries, Rush Limbaugh) -> Jane Fonda (3801ms)
When was Limbaugh born? the very first time -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, was married for, the very first time) -> the very first time (3801ms)
When was Limbaugh born? David Limbaugh -2.111111111104 When was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (David Limbaugh, has been married to, Lisa Limbaugh) -> David Limbaugh (3798ms)
When was Limbaugh born? Lisa Limbaugh -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (David Limbaugh, has been married to, Lisa Limbaugh) -> Lisa Limbaugh (3803ms)
When was Limbaugh born? a blonde bombshell -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (?Rush Limbaugh, married, a blonde bombshell) -> a blonde bombshell (3803ms)
When was Limbaugh born? the fourth time -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, gets married for, the fourth time) -> the fourth time (3803ms)
When was Limbaugh born? Kathryn Rogers -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Kathryn Rogers) -> Kathryn Rogers (3798ms)
When was Limbaugh born? Marta Fitzgerald -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Marta Fitzgerald) -> Marta Fitzgerald (3801ms)
When was Limbaugh born? June 5 , 2010 -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Rush Limbaugh, were married on, June 5 , 2010) -> June 5 , 2010 (3798ms)
Who was the first person to set foot on the moon? Neil Armstrong 0.66666666668 Who 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)
Who was the first person to set foot on the moon? Buzz Lightyear 0.66666666668 Who 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)
Who was the first person to set foot on the moon? The Commander 0.66666666668 Who 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)
Who was the first person to set foot on the moon? the moon -1.8888888888909998 Who 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)
What does laser stand for? ALICE ALICE 0.7777777777789999 What does laser stand for? -> $x: ($x, be stand for, laser) -> (ALICE ALICE, is an acronym standing for, Accelerators and Lasers) -> ALICE ALICE (1544ms)
What does laser stand for? Laser light 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, Laser light) -> Laser light (1543ms)
What does laser stand for? a word 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (laser, actually stands for, a word) -> a word (1913ms)
What does laser stand for? ?Radiation ? 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (LASER, stands for, ?Radiation ?) -> ?Radiation ? (1940ms)
What does laser stand for? light amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (laser ?, stands for, light amplification) -> light amplification (1847ms)
What does laser stand for? freedom 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser direct structuring, stands for, freedom) -> freedom (1940ms)
What does laser stand for? Love 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (LASERS, stands for, Love) -> Love (1733ms)
What does laser stand for? Laser 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser eye surgery, stands for, Laser) -> Laser (1940ms)
What does laser stand for? Intense Pulsed Light 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (| Laser Hair Removal IPL, stands for, Intense Pulsed Light) -> Intense Pulsed Light (1733ms)
What does laser stand for? light amphlication 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (The laser, stands for, light amphlication) -> light amphlication (1847ms)
What does laser stand for? ?microwave amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (a ?laser, stands for, ?microwave amplification) -> ?microwave amplification (1544ms)
What does laser stand for? Light Amplified 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, Light Amplified) -> Light Amplified (1914ms)
What does laser stand for? more information 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (the Laser Engineer, stand for, more information) -> more information (1846ms)
What does laser stand for? unprecedented measuring speed 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (VERTILAS laser diodes, stand for, unprecedented measuring speed) -> unprecedented measuring speed (1940ms)
What does laser stand for? ?light amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, ?light amplification) -> ?light amplification (1913ms)
What does laser stand for? Light Amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (laser, stands for, Light Amplification) -> Light Amplification (1846ms)
What does laser stand for? quality 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Trotec?s laser engravers and cutters, stand for, quality) -> quality (1544ms)
What does laser stand for? Light wave Amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (the word laser, stands for, Light wave Amplification) -> Light wave Amplification (1940ms)
What does laser stand for? love and compassion 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Lasers, stand for, love and compassion) -> love and compassion (1733ms)
What does laser stand for? Light Amplification 0.666666666669 What does laser stand for? -> $x: (laser, be stand for, $x) -> (LASER, is an acronym standing for, Light Amplification) -> Light Amplification (1913ms)
What does laser stand for? the use 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, the use) -> the use (1913ms)
What does laser stand for? ?Light Amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (The word ?laser ?, stands for, ?Light Amplification) -> ?Light Amplification (1940ms)
What does laser stand for? the path 0.555555555558 What does laser stand for? -> $x: (laser, stand in, $x) -> (the lasers, unfortunately stood in, the path) -> the path (1940ms)
What does laser stand for? LISA 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LISA, stands for, Laser Interferometer Space Antenna) -> LISA (2588ms)
What does laser stand for? MOLA 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (MOLA, stands for, Mars Orbiter Laser Altimeter) -> MOLA (2621ms)
What does laser stand for? LASIK LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK LASIK, stands for, Laser Assisted In-Situ Keratomileusis) -> LASIK LASIK (2631ms)
What does laser stand for? LANAP 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LANAP, stands for, Laser Assisted New Attachment Procedure) -> LANAP (2588ms)
What does laser stand for? The word LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The word LASIK, stands for, Laser Assisted) -> The word LASIK (2621ms)
What does laser stand for? Epithelial and Lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Epithelial and Lasik, stands for, Laser) -> Epithelial and Lasik (2311ms)
What does laser stand for? Lasik Eye Surgery LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik Eye Surgery LASIK, stands for, Laser-Assisted) -> Lasik Eye Surgery LASIK (2621ms)
What does laser stand for? SLS 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (SLS, stands for, selective laser sintering) -> SLS (2391ms)
What does laser stand for? LDS 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LDS, stands for, Laser Direct Structuring) -> LDS (2249ms)
What does laser stand for? the surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (the surgery, stands for, Laser Assisted) -> the surgery (2249ms)
What does laser stand for? The acronym 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The acronym, stands for, laser-assisted) -> The acronym (1975ms)
What does laser stand for? CML 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (CML, stands for, Chirp Managed Laser) -> CML (2631ms)
What does laser stand for? LASIK Surgery LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK Surgery LASIK, stands for, Laser-Assisted) -> LASIK Surgery LASIK (2588ms)
What does laser stand for? text/html LASEK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (text/html LASEK, stands for, laser epithelial keratomileusis) -> text/html LASEK (2391ms)
What does laser stand for? clear Lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (clear Lasik, stands for, Laser-Assisted) -> clear Lasik (2310ms)
What does laser stand for? AVLIS 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (AVLIS, stands for, Atomic Vapor Laser Isotope Separation) -> AVLIS (2392ms)
What does laser stand for? MILES 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (MILES, stands for, Multiple Integrated Laser Engagement System) -> MILES (1975ms)
What does laser stand for? LANAP? 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LANAP?, stands for, Laser Assisted New Attachment Procedure) -> LANAP? (2621ms)
What does laser stand for? EVLT 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (EVLT, stands for, Endovenous Laser Treatment) -> EVLT (2621ms)
What does laser stand for? LASIK surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK surgery, stands for, Laser Assisted In-Situ Keratomileusis) -> LASIK surgery (2417ms)
What does laser stand for? Lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik, stands for, Laser in-situ Keratomileusis) -> Lasik (2621ms)
What does laser stand for? whish 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (whish, stands for, airborne laser optical link) -> whish (2631ms)
What does laser stand for? SLT 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (SLT, stands for, Selective Laser Trabeculoplasty) -> SLT (2621ms)
What does laser stand for? MALDI 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (MALDI, stands for, Matrix Assisted Laser Desorption) -> MALDI (2620ms)
What does laser stand for? CTLM 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (CTLM, stands for, Computed Tomography Laser Mammography) -> CTLM (2250ms)
What does laser stand for? a medical term 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (a medical term, stands for, Laser Assisted) -> a medical term (2587ms)
What does laser stand for? LLLT 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LLLT, stands for, Low Level Laser Therapy) -> LLLT (2248ms)
What does laser stand for? the LASIK procedure 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (the LASIK procedure, stands for, Laser-Assisted) -> the LASIK procedure (2249ms)
What does laser stand for? SlimLipo 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (SlimLipo, stands for, Selective Laser Induced Melting) -> SlimLipo (2588ms)
What does laser stand for? The term LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The term LASIK, stands for, Laser Assisted) -> The term LASIK (2621ms)
What does laser stand for? LADAR 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LADAR, stands for, Laser Detection) -> LADAR (1975ms)
What does laser stand for? HELEX 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (HELEX, stands for, High Energy Laser Experimental) -> HELEX (2311ms)
What does laser stand for? LD 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LD, stands for, LaserDisc) -> LD (2391ms)
What does laser stand for? LASEK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASEK, stands for, Laser Assisted Sub-Epithelial Keratomileus) -> LASEK (2587ms)
What does laser stand for? Laser eye surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Laser eye surgery, stands for, Laser) -> Laser eye surgery (2311ms)
What does laser stand for? NALA 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (NALA, stands for, Non Ablative Laser Ablation) -> NALA (2311ms)
What does laser stand for? an acronym 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (an acronym, stands for, Laser-assisted) -> an acronym (1975ms)
What does laser stand for? the most common 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (the most common, stands for, laser) -> the most common (2311ms)
What does laser stand for? The word lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The word lasik, stands for, laser) -> The word lasik (2588ms)
What does laser stand for? Lasik eye surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik eye surgery, stands for, a laser) -> Lasik eye surgery (2621ms)
What does laser stand for? VCSEL 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (VCSEL, stands for, Vertical-Cavity Surface-Emitting Laser) -> VCSEL (2588ms)
What does laser stand for? LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK, stands for, laser-assisted) -> LASIK (2631ms)
What does laser stand for? The SDL 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The SDL, stands for, Semiconductor Diode Laser) -> The SDL (2588ms)
What does laser stand for? deviantART ALR 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (deviantART ALR, stands for, Automatic Laser Rifle) -> deviantART ALR (2621ms)
What does laser stand for? lasik surgery ?LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (lasik surgery ?LASIK, stands for, Laser-Assisted) -> lasik surgery ?LASIK (2249ms)
What does laser stand for? laser adjustment 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (green laser beam tips, are so well known for, laser adjustment) -> laser adjustment (2632ms)
What does laser stand for? the sophistication 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Laser treatments, are known for, the sophistication) -> the sophistication (2632ms)
What does laser stand for? laser hair removal 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Cosmetica, is well known for, laser hair removal) -> laser hair removal (2631ms)
What does laser stand for? the highest level 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Leica Rugby laser levels, are known for, the highest level) -> the highest level (2632ms)
What does laser stand for? laser-cutting 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Excel, is well known industry-wide for, laser-cutting) -> laser-cutting (2632ms)
What does laser stand for? getting rid of unwanted hair 0.33333333333599996 What 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)
What does laser stand for? scar sufferers 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (laser treatment, is a well-known solution for, scar sufferers) -> scar sufferers (2631ms)
What does laser stand for? unusual behavior 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (lasers, are known for, unusual behavior) -> unusual behavior (2631ms)
What does laser stand for? long lasting ends 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (The laser treatment Greater, is known for, long lasting ends) -> long lasting ends (2631ms)
What does laser stand for? High-field magnets 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (High-field magnets, now stand beside, lasers and microscopes) -> High-field magnets (2662ms)
What does laser stand for? Harken 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Harken, have a long standing relationship with, the Laser fleet) -> Harken (2642ms)
What does laser stand for? contrast 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (contrast, just stands there with, his laser-eyes) -> contrast (2672ms)
What does laser stand for? the baseline EO payload DCoMPASS 0.22222222222599997 What 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)
What does laser stand for? high-field magnets 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (high-field magnets, stand beside, lasers and microscopes) -> high-field magnets (2642ms)
What does laser stand for? Han and Luke 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Han and Luke, stand fast with, their laser pistols) -> Han and Luke (2672ms)
What does laser stand for? threshold 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (threshold, has been a long-standing question in, laser theory) -> threshold (2652ms)
What does laser stand for? Ventana Research 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Ventana Research, stands out in, its laser-sharp focus) -> Ventana Research (2662ms)
What does laser stand for? the ImageREt 3600 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (the ImageREt 3600, stand out against, other laser printers) -> the ImageREt 3600 (2682ms)
What does laser stand for? Sandblasting cuts 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Sandblasting cuts, stands out more than, laser engraving) -> Sandblasting cuts (2652ms)
What does laser stand for? the Laser double-looping coaster 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (the Laser double-looping coaster, stands, Little Laser) -> the Laser double-looping coaster (2632ms)
What does laser stand for? the face of the sign 0.11111111111599997 What 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)
What does laser stand for? a good buy 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the LaserJet CP2025dn, stands as, a good buy) -> a good buy (2702ms)
What does laser stand for? magnets 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The laser, features a free-standing base with, magnets) -> magnets (2724ms)
What does laser stand for? the leading finest solution 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser Hair Removal, stands out as, the leading finest solution) -> the leading finest solution (2717ms)
What does laser stand for? 12 % electrical power 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (a green DPSS laser, stands at about, 12 % electrical power) -> 12 % electrical power (2724ms)
What does laser stand for? the competition 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (professional line laser, stands out from, the competition) -> the competition (2702ms)
What does laser stand for? pencil markups 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the long run laser, stands up to, pencil markups) -> pencil markups (2709ms)
What does laser stand for? the brightest 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the laser dot, just might stand out as, the brightest) -> the brightest (2709ms)
What does laser stand for? one more example 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser multifunctional printer, stands as, one more example) -> one more example (2702ms)
What does laser stand for? taller 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the HP Color LaserJet 3800dn, will stand even, taller) -> taller (2692ms)
What does laser stand for? Little Laser 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the Laser double-looping coaster, stands, Little Laser) -> Little Laser (2709ms)
What does laser stand for? time 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (this green laser pointer, stand the test of, time) -> time (2709ms)
What does laser stand for? success 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser, have been the long-standing measure of, success) -> success (2724ms)
What does laser stand for? the most utilized 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the laser printer, stands out as being, the most utilized) -> the most utilized (2724ms)
What does laser stand for? the rest 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (this laser, really does stand out above, the rest) -> the rest (2709ms)
What does laser stand for? waves 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser, standing, waves) -> waves (2709ms)
What does laser stand for? stimulated emission of radiation 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser, stands by, stimulated emission of radiation) -> stimulated emission of radiation (2724ms)
What does laser stand for? alone sources 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (deep UV lasers, stand, alone sources) -> alone sources (2709ms)
What does laser stand for? the ring 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the Celtic laser, stand out from, the ring) -> the ring (2717ms)
What does laser stand for? little Artoo 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (his long laser rifle slung, stands before, little Artoo) -> little Artoo (2692ms)
What does laser stand for? shoes 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser cut pumps, are all stand out, shoes) -> shoes (2717ms)
What does laser stand for? vibratory energy 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (lasers, stands, vibratory energy) -> vibratory energy (2709ms)
What does laser stand for? a high position 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (blue laser pen, is usually standing, a high position) -> a high position (2717ms)
What does laser stand for? the proof 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (?The new airborne laser scanning system, stood, the proof) -> the proof (2724ms)
What does laser stand for? the forefront 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (green laser pointer, has been standing at, the forefront) -> the forefront (2717ms)
What does laser stand for? a heavier model 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the HP LaserJet 4050n, stands out as, a heavier model) -> a heavier model (2724ms)
What does laser stand for? a building 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the Blue Laser Commander, is standing next to, a building) -> a building (2724ms)
What does laser stand for? corrosion 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (These pipe lasers, stand up to, corrosion) -> corrosion (2709ms)
What does laser stand for? 1/2 inch 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser cut numbers, stand, 1/2 inch) -> 1/2 inch (2692ms)
What does laser stand for? manual height adjustment 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (a high-precision laser, stand with, manual height adjustment) -> manual height adjustment (2702ms)
What does laser stand for? the top jammer 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The actual Laser Interceptor, stands out as, the top jammer) -> the top jammer (2692ms)
What does laser stand for? few seconds 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser PSU, can stand, few seconds) -> few seconds (2692ms)
What does laser stand for? a bit 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the lasers, stand out, a bit) -> a bit (2702ms)
What does laser stand for? UV rays 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the printed laser technology, stands up to, UV rays) -> UV rays (2709ms)
What does laser stand for? the best possible solution 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser treatment, stands out as, the best possible solution) -> the best possible solution (2709ms)
What does laser stand for? the leading jammer 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The actual Laser Interceptor, stands out as, the leading jammer) -> the leading jammer (2717ms)
What does laser stand for? one metre high 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The patented in-line laser equipment, stands, one metre high) -> one metre high (2702ms)
What does laser stand for? the end 0.11111111111499994 What does laser stand for? -> $x: ($x, symbolize, laser) -> (the end, has been symbolized as, LASER LIGHT POWER) -> the end (2730ms)
What does laser stand for? Microwave Amplification 0.111111111111 What does laser stand for? -> $x: (maser, stand for, $x) -> (Maser, stands for, Microwave Amplification) -> Microwave Amplification (2746ms)
What does laser stand for? ?means 0.111111111111 What does laser stand for? -> $x: (maser, stand for, $x) -> (maser, stood for, ?means) -> ?means (2745ms)
What does laser stand for? the few times 4.999944902550624E-12 What does laser stand for? -> $x: (laser, symbolize, $x) -> (Our laser-etched logo, symbolizes, the few times) -> the few times (2754ms)
What does laser stand for? unique -0.444444444442 What does laser stand for? -> $x: (maser, stand, $x) -> (Chris Maser, stands out as, unique) -> unique (2812ms)
Where is John Wayne airport? an unincorporated area 0.555555555555 Where 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)
Where is John Wayne airport? ORANGE COUNTY 0.555555555555 Where 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)
Where is John Wayne airport? Santa Ana 0.111111111109 Where is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Santa Ana) -> Santa Ana (2886ms)
Where is John Wayne airport? Irvine 0.111111111109 Where is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Irvine) -> Irvine (2885ms)
Where is John Wayne airport? Orange County 0.111111111109 Where is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Orange County) -> Orange County (2886ms)
Where is John Wayne airport? a classroom -0.0 Where 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)
Where is John Wayne airport? United States of America -0.0 Where is John Wayne airport? -> $x: ($x, contain, john wayne airport) -> (United States of America, Contains, John Wayne Airport) -> United States of America (2980ms)
Where is John Wayne airport? children -0.0 Where is John Wayne airport? -> $x: (john wayne airport, do, $x) -> (John Wayne Airport, did have a lot of, children) -> children (2905ms)
Where is John Wayne airport? the communities -0.0 Where is John Wayne airport? -> $x: ($x, surround, john wayne airport) -> (the communities, surrounding, John Wayne Airport) -> the communities (3076ms)
Where is John Wayne airport? a 5 percent bump -0.0 Where 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)
Where is John Wayne airport? UC Irvine shuttle service -0.0 Where 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)
Where is John Wayne airport? Orange -0.0 Where is John Wayne airport? -> $x: ($x, contain, john wayne airport) -> (Orange, Contains, John Wayne Airport) -> Orange (2981ms)
Where is John Wayne airport? early spring -0.111111111112 Where is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (John Wayne Airport, were performed in, early spring) -> early spring (3687ms)
Where is John Wayne airport? LA -0.111111111112 Where is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (John Wayne Airport ?, is the closest in, LA) -> LA (3200ms)
Where is John Wayne airport? distance -0.111111111112 Where is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (the John Wayne Airport, is in walking, distance) -> distance (3200ms)
Where is John Wayne airport? engine problems -0.222222222222 Where is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (John Wayne Airport, was being examined for, engine problems) -> engine problems (3688ms)
Where is John Wayne airport? a fee -0.222222222222 Where is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (John Wayne Airports, are available for, a fee) -> a fee (3687ms)
Where is John Wayne airport? groups -0.222222222222 Where is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (Our John Wayne Airport limousines, are perfect for, groups) -> groups (3687ms)
Where is John Wayne airport? Rental cars -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Rental cars, are available near, John Wayne Airport) -> Rental cars (3728ms)
Where is John Wayne airport? direct access -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (direct access, is only 20 minutes from, John Wayne Airport) -> direct access (3712ms)
Where is John Wayne airport? the plane -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the plane, was from, John Wayne Airport) -> the plane (3728ms)
Where is John Wayne airport? Orange County Airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Orange County Airport, was renamed, John Wayne Airport) -> Orange County Airport (3728ms)
Where is John Wayne airport? Anaheim -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Anaheim, is equidistant from, both John Wayne Airport) -> Anaheim (3725ms)
Where is John Wayne airport? the immediate answer -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the immediate answer, is, John Wayne Airport) -> the immediate answer (3726ms)
Where is John Wayne airport? The event -0.333333333333 Where 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)
Where is John Wayne airport? Allied Rent -0.333333333333 Where 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)
Where is John Wayne airport? a third Terminal C -0.333333333333 Where 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)
Where is John Wayne airport? UCI. UCI -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (UCI. UCI, is located close to, John Wayne Airport) -> UCI. UCI (3723ms)
Where is John Wayne airport? the city -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the city, is closely located to, John Wayne airport offering) -> the city (3728ms)
Where is John Wayne airport? Options -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Options, be the first to comment, John Wayne Airport Rate) -> Options (3725ms)
Where is John Wayne airport? Huntington Beach -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Huntington Beach, is close to, John Wayne Airport) -> Huntington Beach (3712ms)
Where is John Wayne airport? The nearest airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The nearest airport, is, John Wayne Airport) -> The nearest airport (3723ms)
Where is John Wayne airport? Air- Orange County?s only major airport -0.333333333333 Where 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)
Where is John Wayne airport? The hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The hotel, is 20 minutes from, John Wayne Airport) -> The hotel (3730ms)
Where is John Wayne airport? air cargo -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (air cargo, were moved through, John Wayne Airport) -> air cargo (3730ms)
Where is John Wayne airport? The Hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Hotel, Is 20 Minutes From, John Wayne Airport) -> The Hotel (3723ms)
Where is John Wayne airport? Fuddy -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Fuddy, will be based out of, John Wayne Airport) -> Fuddy (3728ms)
Where is John Wayne airport? Office -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Office, is located near, John Wayne Airport) -> Office (3723ms)
Where is John Wayne airport? The sleeping-hours ban -0.333333333333 Where 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)
Where is John Wayne airport? The closest airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The closest airport, is, John Wayne Airport) -> The closest airport (3728ms)
Where is John Wayne airport? the 405 Freeway -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the 405 Freeway, is, John Wayne Airport) -> the 405 Freeway (3687ms)
Where is John Wayne airport? rapper Snoop Dogg -0.333333333333 Where 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)
Where is John Wayne airport? a Car -0.333333333333 Where 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)
Where is John Wayne airport? A Car -0.333333333333 Where 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)
Where is John Wayne airport? The project -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The project, is located only minutes from, John Wayne Airport) -> The project (3687ms)
Where is John Wayne airport? Improvements -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Improvements, are underway at, John Wayne Airport) -> Improvements (3730ms)
Where is John Wayne airport? JetSuite?s move -0.333333333333 Where 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)
Where is John Wayne airport? The Santa Ana hotel -0.333333333333 Where 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)
Where is John Wayne airport? The news -0.333333333333 Where 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)
Where is John Wayne airport? Snoop Dogg -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Snoop Dogg, was detained at, John Wayne Airport) -> Snoop Dogg (3725ms)
Where is John Wayne airport? the east -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the east, is, John Wayne Airport and Irvine) -> the east (3728ms)
Where is John Wayne airport? An unused runway -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (An unused runway, is now, John Wayne Airport) -> An unused runway (3730ms)
Where is John Wayne airport? a Santa Ana man -0.333333333333 Where 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)
Where is John Wayne airport? the hotel -0.333333333333 Where 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)
Where is John Wayne airport? Lake Forest -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Lake Forest, is also accessible via, the John Wayne Airport) -> Lake Forest (3723ms)
Where is John Wayne airport? The Econolodge North -0.333333333333 Where 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)
Where is John Wayne airport? The closest commercial airports -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The closest commercial airports, are, John Wayne Airport) -> The closest commercial airports (3723ms)
Where is John Wayne airport? California -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (California, is just minutes away from, John Wayne Airport) -> California (3728ms)
Where is John Wayne airport? hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (hotel, is 2 miles from, the orange county-john wayne airport) -> hotel (3725ms)
Where is John Wayne airport? the Buddhist lecture -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the Buddhist lecture, was near, John Wayne Airport) -> the Buddhist lecture (3728ms)
Where is John Wayne airport? 1200 ? Time Zone -0.333333333333 Where 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)
Where is John Wayne airport? Disneyland -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Disneyland, are, John Wayne Airport) -> Disneyland (3723ms)
Where is John Wayne airport? Inn -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Inn, is located 16 miles from, Orange County/John Wayne Airport) -> Inn (3687ms)
Where is John Wayne airport? the new location -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the new location, is close to, John Wayne Airport) -> the new location (3728ms)
Where is John Wayne airport? the venue -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the venue, is, John Wayne Airport) -> the venue (3723ms)
Where is John Wayne airport? The airplanes -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The airplanes, were approaching, John Wayne Airport) -> The airplanes (3723ms)
Where is John Wayne airport? visiting Disneyland -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (visiting Disneyland, is, John Wayne Airport) -> visiting Disneyland (3730ms)
Where is John Wayne airport? ? Time Zone -0.333333333333 Where 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)
Where is John Wayne airport? The next closest airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The next closest airport, is, John Wayne Airport) -> The next closest airport (3725ms)
Where is John Wayne airport? SNA Auto Rental -0.333333333333 Where 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)
Where is John Wayne airport? a brand new terminal -0.333333333333 Where 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)
Where is John Wayne airport? an aircraft -0.333333333333 Where 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)
Where is John Wayne airport? The Econolodge -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Econolodge, Is Located Near, The John Wayne Airport) -> The Econolodge (3723ms)
Where is John Wayne airport? Campus Dr. -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Campus Dr., is close to, the John Wayne Airport) -> Campus Dr. (3725ms)
Where is John Wayne airport? Oasis -0.333333333333 Where 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)
When was the U.S. capitol built? the capital -0.0 When 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)
When was the U.S. capitol built? central Washington -0.0 When 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)
When was the U.S. capitol built? 1793 -0.0 When was the U.S. capitol built? -> $x: (u.s. capitol, start in, $x) -> (The U.S Capitol Building, started construction in, 1793) -> 1793 (1640ms)
When was the U.S. capitol built? black slaves -0.111111111111 When 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)
When was the U.S. capitol built? a full day -1.444444444438 When 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)
When was the U.S. capitol built? Benjamin Latrobe -1.4444444444400002 When was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (Benjamin Latrobe, also helped design, the U.S. Capitol) -> Benjamin Latrobe (1956ms)
When was the U.S. capitol built? the same man -1.4444444444400002 When was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (the same man, designed, the U.S. Capitol) -> the same man (2006ms)
When was the U.S. capitol built? Benjamin Henry Latrobe -1.4444444444400002 When 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)
When was the U.S. capitol built? an amateur architect -1.4444444444400002 When was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (an amateur architect, designed, the U.S. Capitol) -> an amateur architect (1918ms)
When was the U.S. capitol built? slave labor -1.5555555555490002 When 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)
When was the U.S. capitol built? a beehive -1.66666666666 When was the U.S. capitol built? -> $x: (u.s. capitol, look like, $x) -> (the U.S. Capitol, looks like, a beehive) -> a beehive (2007ms)
What was Bing Crosby's nickname? the Live Search API -0.8888888888920001 What 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)
What is the name of the airport in Amsterdam? Europe 0.111111111112 What 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)
What is the name of the airport in Amsterdam? the Netherlands 0.111111111112 What 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)
Who invented basketball? a pursuit 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, a pursuit) -> a pursuit (2678ms)
Who invented basketball? the USA 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, the USA) -> the USA (6860ms)
Who invented basketball? Canada 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in, Canada) -> Canada (6786ms)
Who invented basketball? December 1891 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, December 1891) -> December 1891 (6660ms)
Who invented basketball? 1946 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Wheelchair basketball, was invented in, 1946) -> 1946 (6660ms)
Who invented basketball? the 18th century 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, had n?t been invented in, the 18th century) -> the 18th century (6785ms)
Who invented basketball? the United States 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, the United States) -> the United States (6193ms)
Who invented basketball? a pursuit for an indoor game 2.1111111111080003 Who 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)
Who invented basketball? Almonte 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball Basketball, was actually invented in, Almonte) -> Almonte (6193ms)
Who invented basketball? 1892 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, 1892) -> 1892 (6785ms)
Who invented basketball? james 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in naismith by, james) -> james (2678ms)
Who invented basketball? North America 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, North America) -> North America (6785ms)
Who invented basketball? springfield 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, is invented in, springfield) -> springfield (6193ms)
Who invented basketball? 1861 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (The basketball, was invented in, 1861) -> 1861 (6193ms)
Who invented basketball? Massachusetts 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, Massachusetts) -> Massachusetts (6785ms)
Who invented basketball? America 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (O.K. basketball, was invented in, America) -> America (6660ms)
Who invented basketball? 1891 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball By 1936 Basketball, was invented in, 1891) -> 1891 (6860ms)
Who invented basketball? a YMCA gymnasium 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Content Filter Basketball, was invented in, a YMCA gymnasium) -> a YMCA gymnasium (4694ms)
Who invented basketball? December 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, December) -> December (2678ms)
Who invented basketball? the 1800?s 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in, the 1800?s) -> the 1800?s (6660ms)
Who invented basketball? Springfield 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball game, was invented in, Springfield) -> Springfield (6660ms)
Who invented basketball? a religious context 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, had been invented in, a religious context) -> a religious context (6660ms)
Who invented basketball? Oxy 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Oxy, develop into, competitive basketball players) -> Oxy (7677ms)
Who invented basketball? ImaginEngine 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (ImaginEngine, Games Developed, Nicktoons Basketball) -> ImaginEngine (7578ms)
Who invented basketball? Billy Packer 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Billy Packer, developed his love of, college basketball) -> Billy Packer (7753ms)
Who invented basketball? Nova Scotia Basketball 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Nova Scotia Basketball, develops the game of, basketball) -> Nova Scotia Basketball (6860ms)
Who invented basketball? the players 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the players, develop, high basketball IQ?s) -> the players (7753ms)
Who invented basketball? EC-NET Co.,Ltd. 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (EC-NET Co.,Ltd., Games Developed, Action Basketball) -> EC-NET Co.,Ltd. (7399ms)
Who invented basketball? High Voltage Software 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (High Voltage Software, Games Developed, World League Basketball) -> High Voltage Software (7736ms)
Who invented basketball? Traction mats 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Traction mats, developed for, Pro Basketball) -> Traction mats (7735ms)
Who invented basketball? coaching program 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (coaching program, has been developed by, Canada Basketball) -> coaching program (7718ms)
Who invented basketball? young men 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young men, develop as, basketball players) -> young men (7718ms)
Who invented basketball? HAL Laboratory 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (HAL Laboratory, Game Versions Developed, NCAA Basketball) -> HAL Laboratory (7735ms)
Who invented basketball? the respected coach 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the respected coach, had developed, the basketball program) -> the respected coach (7718ms)
Who invented basketball? the Simmenthal Club 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the Simmenthal Club, is credited with developing, basketball) -> the Simmenthal Club (6860ms)
Who invented basketball? The Newark , Ohio native 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (The Newark , Ohio native, developed a talent for, basketball) -> The Newark , Ohio native (7578ms)
Who invented basketball? Data Design Interactive 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Data Design Interactive, Games Developed, Kidz Sports Basketball) -> Data Design Interactive (6980ms)
Who invented basketball? Policies and procedures 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Policies and procedures, were developed so, basketball fans) -> Policies and procedures (7677ms)
Who invented basketball? study 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (study, need to be highly developed in, basketball) -> study (7735ms)
Who invented basketball? Tony Hinkle 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Tony Hinkle, developed, the modern day orange basketball) -> Tony Hinkle (7399ms)
Who invented basketball? Smartphones 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Smartphones, developed, College Basketball Bracket Challenge) -> Smartphones (7578ms)
Who invented basketball? kids 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (kids, develop, fundamental basketball skills) -> kids (7736ms)
Who invented basketball? The District 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (The District, develop, a new playfield and basketball courts) -> The District (7174ms)
Who invented basketball? Game Time Hoops participants 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Game Time Hoops participants, develop, their basketball skills) -> Game Time Hoops participants (7677ms)
Who invented basketball? young players 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young players, develop, their basketball skills) -> young players (7718ms)
Who invented basketball? Epyx 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Epyx, Games Developed, Street Sports Basketball) -> Epyx (7753ms)
Who invented basketball? 18 years 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (18 years, develop, basketball skills) -> 18 years (7677ms)
Who invented basketball? James Naismith 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (James Naismith, developed, basketball) -> James Naismith (7718ms)
Who invented basketball? Jeremy 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Jeremy, developed into, a basketball star) -> Jeremy (7736ms)
Who invented basketball? Europe 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Europe, is developing, great basketball) -> Europe (7735ms)
Who invented basketball? NBA Canada 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (NBA Canada, develop, amateur basketball) -> NBA Canada (7174ms)
Who invented basketball? the chance 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the chance, develop, a successful basketball program) -> the chance (7718ms)
Who invented basketball? Christian 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Christian, developed, the Christian Laettner Basketball Academy) -> Christian (6979ms)
Who invented basketball? turn 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (turn, developed, ideal Basketball new soccer cleats) -> turn (7735ms)
Who invented basketball? Konami 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Konami, Games Developed, Disney Sports Basketball) -> Konami (7578ms)
Who invented basketball? Naismith 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Naismith, developed, basketball) -> Naismith (6980ms)
Who invented basketball? Skyworks Interactive, Inc. 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Skyworks Interactive, Inc., Games Developed, Arcade Hoops Basketball) -> Skyworks Interactive, Inc. (7718ms)
Who invented basketball? Humongous Entertainment 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Humongous Entertainment, Games Developed, Backyard Basketball 2007) -> Humongous Entertainment (7718ms)
Who invented basketball? basketball 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (basketball, develop through, his summer basketball) -> basketball (7677ms)
Who invented basketball? Electronic Arts 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Electronic Arts, Games Developed, Team USA Basketball) -> Electronic Arts (7174ms)
Who invented basketball? Content Filter Netball 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Content Filter Netball, developed out of, basketball) -> Content Filter Netball (6980ms)
Who invented basketball? Air Max2 Uptempo system 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Air Max2 Uptempo system, was developed for, basketball models) -> Air Max2 Uptempo system (7735ms)
Who invented basketball? NR 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (NR, Develop, rock solid basketball fundamentals) -> NR (7753ms)
Who invented basketball? Participants 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Participants, develop, their basketball skills) -> Participants (6980ms)
Who invented basketball? the Rec Program 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the Rec Program, develops, the Intramural Basketball League) -> the Rec Program (6979ms)
Who invented basketball? equipment 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (equipment, develop, community basketball courts) -> equipment (7718ms)
Who invented basketball? shoes 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (shoes, was developed for, basketball) -> shoes (7174ms)
Who invented basketball? John 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (John, quickly developed a fondness for, wheelchair basketball) -> John (7677ms)
Who invented basketball? various positions 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (various positions, have been developed in, basketball) -> various positions (7753ms)
Who invented basketball? ?Clint 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (?Clint, developed a love for, basketball) -> ?Clint (7736ms)
Who invented basketball? Basketball Clinics 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Basketball Clinics, develops, basketball skills) -> Basketball Clinics (7718ms)
Who invented basketball? young athletes 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young athletes, develop, basketball skills) -> young athletes (6980ms)
Who invented basketball? the partnership 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the partnership, develop, the basketball strategy) -> the partnership (7718ms)
Who invented basketball? young people 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young people, develop, leadership , social and basketball skills) -> young people (7718ms)
Who invented basketball? a sudden 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (a sudden, develop, a higher basketball IQ or coaching knowledge) -> a sudden (7735ms)
Who invented basketball? Nets owner Mikhail Prokhorov 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Nets owner Mikhail Prokhorov, wants to help develop, basketball) -> Nets owner Mikhail Prokhorov (7399ms)
Who invented basketball? Nike 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Nike, has developed, Nike basketball shoes) -> Nike (7736ms)
Who invented basketball? Aicom 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Aicom, Games Developed, Ultimate Basketball) -> Aicom (7718ms)
Who invented basketball? Dan 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Dan, had developed a full-blown obsession with, basketball) -> Dan (7718ms)
Who invented basketball? Taito Corporation 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Taito Corporation, Game Versions Developed, Ultimate Basketball) -> Taito Corporation (7735ms)
Who invented basketball? Atari 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Atari, Game Versions Developed, Basketball) -> Atari (7677ms)
Who invented basketball? Backbone Entertainment 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Backbone Entertainment, Games Developed, Nicktoons Basketball) -> Backbone Entertainment (6980ms)
Who invented basketball? Richmond 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Richmond, developed, a basketball program) -> Richmond (6860ms)
Who invented basketball? Freeverse 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Freeverse, Games Developed, Flick NBA Basketball) -> Freeverse (7735ms)
Who invented basketball? Kids 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Kids, need to develop, basketball skills) -> Kids (7578ms)
Who invented basketball? shoe brands 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (shoe brands, were busy focusing on developing, basketball shoes) -> shoe brands (7718ms)
Who invented basketball? Tecmo 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Tecmo, Games Developed, Tecmo NBA Basketball) -> Tecmo (7677ms)
Who invented basketball? Hamza 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Hamza, developed interest in, basketball) -> Hamza (7400ms)
Who invented basketball? Sculptured Software 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Sculptured Software, Games Developed, NCAA Basketball) -> Sculptured Software (7578ms)
Who invented basketball? Children 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Children, will develop, basketball skills) -> Children (7718ms)
Who invented basketball? S6 pupils 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (S6 pupils, has been developing their skills in, basketball) -> S6 pupils (6860ms)
Who invented basketball? Hudson Soft 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Hudson Soft, Games Developed, Bill Laimbeer's Combat Basketball) -> Hudson Soft (7735ms)
Who invented basketball? The mission 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (The mission, is to develop, basketball skills) -> The mission (7677ms)
Who invented basketball? alumni 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (alumni, can be found, playing basketball) -> alumni (7770ms)
Who invented basketball? the Panthers 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the Panthers, are finding rare success in, basketball) -> the Panthers (7786ms)
Who invented basketball? SFGS 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (SFGS, find most rewarding about, coaching basketball) -> SFGS (7786ms)
Who invented basketball? close 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (close, find, the Pistons-Pacers basketball brawl) -> close (7802ms)
Who invented basketball? scott 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (scott, Find, the Best Basketball Camps) -> scott (7802ms)
Who invented basketball? play-for-pay 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (play-for-pay, found its way into, basketball) -> play-for-pay (7835ms)
Who invented basketball? Danny Ainge 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Danny Ainge, continues to find, basketball talent) -> Danny Ainge (7802ms)
Who invented basketball? the students 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the students, found, the new NCAA Basketball Brackets) -> the students (7786ms)
Who invented basketball? The amazon online marketplace 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (The amazon online marketplace, found, the actual basketball) -> The amazon online marketplace (7770ms)
Who invented basketball? Sports enthusiasts 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Sports enthusiasts, will find, professional basketball) -> Sports enthusiasts (7819ms)
Who invented basketball? a player 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (a player, find, the best basketball camp) -> a player (7770ms)
Who invented basketball? idea 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (idea, found on, Basketball mmorpgs) -> idea (7770ms)
Who invented basketball? Marbury 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Marbury, finds, basketball redemption) -> Marbury (7770ms)
Who invented basketball? family members 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (family members, found his passion in, basketball) -> family members (7770ms)
Who invented basketball? Basketball Fundraisers Can't 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Basketball Fundraisers Can't, find, the Basketball Shorts) -> Basketball Fundraisers Can't (7770ms)
Who invented basketball? 11 Ways 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (11 Ways, to find, your Basketball) -> 11 Ways (7786ms)
Who invented basketball? Day 23 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Day 23, Find, six baseball , football or basketball scores) -> Day 23 (7786ms)
Who invented basketball? Tosh APPS 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Tosh APPS, Find, pick-up basketball games) -> Tosh APPS (7786ms)
Who invented basketball? Rose 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Rose, can be found, playing basketball) -> Rose (7770ms)
Who invented basketball? Disease Control 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Disease Control, also found, basketball) -> Disease Control (7786ms)
Who invented basketball? Bo 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Bo, found, a basketball court) -> Bo (7786ms)
Who invented basketball? the eight oblong panels 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the eight oblong panels, found on, traditional basketballs) -> the eight oblong panels (7802ms)
Who invented basketball? the shorter end 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the shorter end, did n?t find much substance in, Basketball) -> the shorter end (7802ms)
Who invented basketball? so many talents 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (so many talents, found in, basketball game) -> so many talents (7835ms)
Who invented basketball? Manning 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Manning, found, Division I basketball role models) -> Manning (7818ms)
Who invented basketball? the best example 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the best example, is found in, ?Basketball ?) -> the best example (7802ms)
Who invented basketball? NCAA Games 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (NCAA Games, Find, college basketball game tickets) -> NCAA Games (7819ms)
Who invented basketball? Kobe Dream Season 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Kobe Dream Season, find, an Tony Parker Shoes basketball shoe) -> Kobe Dream Season (7786ms)
Who invented basketball? Basketball directory 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Basketball directory, to find, basketball links) -> Basketball directory (7802ms)
Who invented basketball? bumpy leather 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (bumpy leather, found on, a basketball) -> bumpy leather (7770ms)
Who invented basketball? A FREE 3 RING BINDER 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (A FREE 3 RING BINDER, Find, baseball basketball cards) -> A FREE 3 RING BINDER (7818ms)
Who invented basketball? the 28th , everyone 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the 28th , everyone, found, the basketball-only arena) -> the 28th , everyone (7802ms)
Who invented basketball? users 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (users, find, pick-up basketball games) -> users (7786ms)
Who invented basketball? Said Rageah 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Said Rageah, can sometimes be found, playing basketball) -> Said Rageah (7753ms)
Who invented basketball? the eight panels 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the eight panels, found on, traditional basketballs) -> the eight panels (7786ms)
Who invented basketball? 3 inches 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (3 inches, found, basketball) -> 3 inches (7786ms)
Who invented basketball? Tribunal 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Tribunal, finds, Basketball player) -> Tribunal (7753ms)
Who invented basketball? N?diaye 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (N?diaye, did n?t find, basketball) -> N?diaye (7786ms)
Who invented basketball? Can't 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Can't, find, the basketball referee uniforms) -> Can't (7770ms)
Who invented basketball? different neighbourhoods 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (different neighbourhoods, find, a vacant basketball court) -> different neighbourhoods (7818ms)
Who invented basketball? Greg 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Greg, can be found, playing basketball) -> Greg (7818ms)
Who invented basketball? tennis partners 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (tennis partners, find, a regular pickup basketball game) -> tennis partners (7753ms)
Who invented basketball? Milford 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Milford, found, their basketballs) -> Milford (7802ms)
Who invented basketball? No 2011-2012 events 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (No 2011-2012 events, were found for, Basketball) -> No 2011-2012 events (7818ms)
Who invented basketball? videos 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (videos, find, basketball equipment) -> videos (7770ms)
Who invented basketball? businessmen 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (businessmen, found the new game of, basketball) -> businessmen (7818ms)
Who invented basketball? can i 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (can i, find, vintage NBA basketball jersey) -> can i (7770ms)
Who invented basketball? Grade 5 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Grade 5, can find information about, Upward Basketball) -> Grade 5 (7753ms)
Who invented basketball? football 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (football, find the open man in, basketball) -> football (7786ms)
Who invented basketball? Davis 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Davis, found solace in, basketball) -> Davis (7786ms)
Who invented basketball? No results 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (No results, were found for, Basketball Shop) -> No results (7802ms)
Who invented basketball? the offseason 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the offseason, find, free basketball predictions) -> the offseason (7770ms)
Who invented basketball? Brown 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Brown, found solace in, basketball) -> Brown (7770ms)
Who invented basketball? Araragi 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Araragi, finds, Kanbaru?s basketball uniform) -> Araragi (7818ms)
Who invented basketball? Mike 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Mike, found, a basketball-sized rock) -> Mike (7802ms)
Who invented basketball? USC 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (USC, find, a basketball version) -> USC (7802ms)
Who invented basketball? Garcia 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Garcia, found his love for, basketball) -> Garcia (7802ms)
Who invented basketball? Basketball coaches 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Basketball coaches, can find, basketball equipment) -> Basketball coaches (7818ms)
Who invented basketball? You?ll 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (You?ll, find a variety of, basketball sneakers) -> You?ll (7753ms)
Who invented basketball? Sam Young Official Website 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Sam Young Official Website, Find, Sam Young basketball speaker) -> Sam Young Official Website (7835ms)
Who invented basketball? APPS 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (APPS, Find, pick-up basketball games) -> APPS (7835ms)
Who invented basketball? professional hoops 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (professional hoops, are found throughout, Basketball Forum) -> professional hoops (7819ms)
Who invented basketball? Kenny 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Kenny, can be found, playing basketball) -> Kenny (7753ms)
Who invented basketball? Search ebay 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Search ebay, directly to find, used Basketball) -> Search ebay (7818ms)
Who invented basketball? students 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (students, find, basketball scholarships) -> students (7753ms)
Who invented basketball? NFL Gear 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (NFL Gear, Find, youth and teen college basketball shorts) -> NFL Gear (7802ms)
Who invented basketball? Champions 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Champions, finds, Canadian-style basketball) -> Champions (7835ms)
Who invented basketball? writing 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (writing, found, a minute rotating metal basketball) -> writing (7835ms)
Who invented basketball? Sports fans 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Sports fans, will find tickets to, National Basketball) -> Sports fans (7818ms)
Who invented basketball? Lackner 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Lackner, found, two other former Harvard basketball players) -> Lackner (7835ms)
Who invented basketball? Jeff 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Jeff, finds, a basketball backboard) -> Jeff (7818ms)
Who invented basketball? a friend 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (a friend, find, this the best basketball song) -> a friend (7802ms)
Who invented basketball? friends 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (friends, find common ground through, basketball) -> friends (7818ms)
Who invented basketball? Narron 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Narron, has found his calling coaching, girls ' basketball) -> Narron (7786ms)
Who invented basketball? innovators 1.333333333332 Who invented basketball? -> $x: ($x, have invent, basketball) -> (innovators, have invented the game of, basketball and volleyball) -> innovators (7835ms)
Who invented basketball? Biddy Ball 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (Biddy Ball, is exactly like, basketball) -> Biddy Ball (7835ms)
Who invented basketball? the rule 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (the rule, can?t be exactly the same as, basketball) -> the rule (7835ms)
Who invented basketball? Oklahoma 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (Oklahoma, is n?t exactly playing, its best basketball) -> Oklahoma (7835ms)
Who invented basketball? BFF Brackets 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (BFF Brackets, is exactly like, the college basketball tourney) -> BFF Brackets (7835ms)
Who invented basketball? Colorado 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (our Basketball Bags, are made in, Colorado) -> Colorado (7851ms)
Who invented basketball? the off-season 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (the next level Basketball players, are made in, the off-season) -> the off-season (7851ms)
Who invented basketball? the Bahamas 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (PHIL SMITH BASKETBALL CLASSIC History, was made in, the Bahamas) -> the Bahamas (7851ms)
Who invented basketball? the winter 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (basketball teams, are made in, the winter) -> the winter (7851ms)
Who invented basketball? the summer 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (A basketball player, is made in, the summer) -> the summer (7851ms)
Who invented basketball? excellence 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> ('s basketball programs, have a storied history of, excellence) -> excellence (8004ms)
Who invented basketball? Apple 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Apple, has now introduced, ESPN iScore Basketball Scorekeeper) -> Apple (8026ms)
Who invented basketball? Hanno Mottola 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (Hanno Mottola, invent game of, basketball) -> Hanno Mottola (7942ms)
Who invented basketball? James naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (James naismith, invented the game of, basketball) -> James naismith (8015ms)
Who invented basketball? Canadian drillmaster 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was originally invented by, Canadian drillmaster) -> Canadian drillmaster (7851ms)
Who invented basketball? Canadian Dr. James Naismith 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, Canadian Dr. James Naismith) -> Canadian Dr. James Naismith (7897ms)
Who invented basketball? Huffman 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Huffman, introduced, the basketball) -> Huffman (7968ms)
Who invented basketball? a rugby coach 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a rugby coach) -> a rugby coach (7981ms)
Who invented basketball? three-point shooting 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (three-point shooting, was introduced to, college basketball) -> three-point shooting (7992ms)
Who invented basketball? Boys Basketball Students 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Boys Basketball Students, will be introduced to, basketball) -> Boys Basketball Students (8015ms)
Who invented basketball? MacKinnon 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (MacKinnon, was quickly introduced to, basketball) -> MacKinnon (8015ms)
Who invented basketball? Johnson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Johnson, introduced a fast-paced style of, basketball) -> Johnson (8015ms)
Who invented basketball? a canadian 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a canadian) -> a canadian (7992ms)
Who invented basketball? Nike Tn Requin Pas Cher 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Nike Tn Requin Pas Cher, was introduced as, a basketball shoes) -> Nike Tn Requin Pas Cher (8026ms)
Who invented basketball? Quick Draw 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Quick Draw, will be introduced to, basketball skills) -> Quick Draw (7913ms)
Who invented basketball? an individual 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (only basketball, was invented by, an individual) -> an individual (7981ms)
Who invented basketball? the Nike Dunk 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the Nike Dunk, was introduced as, a technical basketball sneaker) -> the Nike Dunk (7882ms)
Who invented basketball? Phog Allen 1.222222222221 Who invented basketball? -> $x: ($x, be inventor of, basketball) -> (Phog Allen, was the inventor of, basketball) -> Phog Allen (7956ms)
Who invented basketball? active students 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (the Science Guy Basketball, was invented by, active students) -> active students (8026ms)
Who invented basketball? The company 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (The company, also introduced, new basketball teasers) -> The company (7956ms)
Who invented basketball? Haruko 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Haruko, introduced him to, the Shohoku basketball team) -> Haruko (7927ms)
Who invented basketball? dribbling 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (dribbling, was introduced in, basketball) -> dribbling (7956ms)
Who invented basketball? physician 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (physician, invented the game of, basketball) -> physician (7851ms)
Who invented basketball? a Canadian , Dr. James A. Naismith 1.222222222221 Who 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)
Who invented basketball? YMCA instructors 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball and volleyball, were invented by, YMCA instructors) -> YMCA instructors (8015ms)
Who invented basketball? 1917 Converse 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (1917 Converse, introduced, the All-Star basketball shoe) -> 1917 Converse (7882ms)
Who invented basketball? a physical education teacher 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a physical education teacher) -> a physical education teacher (7956ms)
Who invented basketball? 1891 Dr. Naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (1891 Dr. Naismith, invented the game of, Basketball) -> 1891 Dr. Naismith (8004ms)
Who invented basketball? uncle Jed 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (uncle Jed, introduced her to, basketball) -> uncle Jed (8015ms)
Who invented basketball? superstar players 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (Basketball, has a rich history of, superstar players) -> superstar players (8004ms)
Who invented basketball? and excellence 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> ('s basketball, has a grand history of winning, and excellence) -> and excellence (7968ms)
Who invented basketball? Philip Bryant 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, Philip Bryant) -> Philip Bryant (7968ms)
Who invented basketball? Hope Mills 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Hope Mills, introduced, the new ABA professional basketball team) -> Hope Mills (7897ms)
Who invented basketball? Baden 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Baden, introduces, the Perfection basketball series) -> Baden (7942ms)
Who invented basketball? success 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (Cincinnati basketball, has a rich history of, success) -> success (7897ms)
Who invented basketball? Stein 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Stein, was introduced as, ICC?s third womens basketball coach) -> Stein (8004ms)
Who invented basketball? Sports 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Sports, introduced include, soccer , basketball) -> Sports (7992ms)
Who invented basketball? The project 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (The project, will introduce, a Midnight Basketball program) -> The project (7969ms)
Who invented basketball? short 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (short, introduce about, the kobe 5 basketball shoes) -> short (7942ms)
Who invented basketball? rock 1.222222222221 Who invented basketball? -> $x: ($x, be inventor of, basketball) -> (rock, only is the inventor of, basketball) -> rock (7913ms)
Who invented basketball? Romney 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Romney, is introducing, basketball) -> Romney (7981ms)
Who invented basketball? 1st grade 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (1st grade, are also introduced to, basketball) -> 1st grade (7897ms)
Who invented basketball? Nike Tn Requin 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Nike Tn Requin, was introduced as, a basketball shoes) -> Nike Tn Requin (7866ms)
Who invented basketball? Hinson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Hinson, formally introduced as, men???s basketball coach) -> Hinson (7866ms)
Who invented basketball? physical education 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (physical education, invented the game of, basketball) -> physical education (7981ms)
Who invented basketball? the security technology 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the security technology, is introduced to, the basketball shoes) -> the security technology (8004ms)
Who invented basketball? Canadian James Naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (Canadian James Naismith, invented the game of, basketball) -> Canadian James Naismith (7867ms)
Who invented basketball? men 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Both basketball and volleyball, were invented by, men) -> men (7942ms)
Who invented basketball? tightness 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (A women varsity basketball player, had a history of, tightness) -> tightness (7942ms)
Who invented basketball? the league 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the league, helped to introduce, basketball) -> the league (7981ms)
Who invented basketball? james naismith 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, james naismith) -> james naismith (7956ms)
Who invented basketball? the new defense McGuire 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the new defense McGuire, introduced to, college basketball) -> the new defense McGuire (7981ms)
Who invented basketball? Taylor 1.222222222221 Who invented basketball? -> $x: ($x, be invent, basketball) -> (Taylor, is also credited with inventing, a basketball) -> Taylor (8026ms)
Who invented basketball? speakers Bill Walton Bill Walton 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (speakers Bill Walton Bill Walton, was introduced to, basketball) -> speakers Bill Walton Bill Walton (7897ms)
Who invented basketball? Converse 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Converse, introduced, the All-Star basketball shoe) -> Converse (7927ms)
Who invented basketball? Trent Johnson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Trent Johnson, has been introduced as, the new basketball coach) -> Trent Johnson (7866ms)
Who invented basketball? Taylor Allan 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Taylor Allan, recently introduced, Basketball game Credit) -> Taylor Allan (7992ms)
Who invented basketball? leather-based upper 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (leather-based upper, was introduced on, basketball shoes) -> leather-based upper (7882ms)
Who invented basketball? exactly what 1.222222222221 Who invented basketball? -> $x: ($x, be origin of, basketball) -> (exactly what, is the origin of, basketball) -> exactly what (8015ms)
Who invented basketball? a winter team sport 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (a winter team sport, invented the game of, basketball) -> a winter team sport (7942ms)
Who invented basketball? Larson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Larson, was introduced as, the 8th head men?s basketball coach) -> Larson (8004ms)
Who invented basketball? SLAM DUNK 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (SLAM DUNK, has been credited with introducing, basketball) -> SLAM DUNK (7942ms)
Who invented basketball? None 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (None, Introduce, backyard basketball) -> None (8026ms)
Who invented basketball? Tim Miles 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Tim Miles, introduced as, the new NU basketball coach) -> Tim Miles (7968ms)
Who invented basketball? a man 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was a game invented by, a man) -> a man (8004ms)
Who invented basketball? offense 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (offense, will be introduced to, young basketball players) -> offense (7867ms)
Who invented basketball? a Canadian 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Canadian) -> a Canadian (7897ms)
Who invented basketball? Agau 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Agau, was introduced to, basketball) -> Agau (7927ms)
Who invented basketball? leagues 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (leagues, are introduced to, new basketball ideas) -> leagues (7897ms)
Who invented basketball? 1869 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, 1869) -> 1869 (7992ms)
Who invented basketball? rallying 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (the Hudson girls basketball team, has had a history of, rallying) -> rallying (7882ms)
Who invented basketball? the YMCA 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was a game invented by, the YMCA) -> the YMCA (7866ms)
Who invented basketball? the 3-point line 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the 3-point line, was being introduced to, college basketball) -> the 3-point line (8015ms)
Who invented basketball? Stewart 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Stewart, introduced, former basketball star Kareem Abdul-Jabbar) -> Stewart (7866ms)
Who invented basketball? We?ll 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (We?ll, introduce, the OWLS basketball teams) -> We?ll (8004ms)
Who invented basketball? a Scottish American 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Scottish American) -> a Scottish American (7956ms)
Who invented basketball? a native 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a native) -> a native (8015ms)
Who invented basketball? OH Ohio 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (OH Ohio, will introduce, its new head basketball coach) -> OH Ohio (8026ms)
Who invented basketball? Cascade 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Cascade, was introduced as, the 18th men?s basketball coach) -> Cascade (7942ms)
Who invented basketball? seven years 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (seven years, was soon introduced to, wheelchair basketball) -> seven years (8004ms)
Who invented basketball? inventor 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (inventor, invented the game of, basketball) -> inventor (7981ms)
Who invented basketball? a Y.M.C.A. official 1.222222222221 Who 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)
Who invented basketball? popularity 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (Basketball, has enjoyed a long history of, popularity) -> popularity (8026ms)
Who invented basketball? The YMCA 1.222222222221 Who invented basketball? -> $x: ($x, be invent, basketball) -> (The YMCA, is credited with inventing, Basketball) -> The YMCA (7897ms)
Who invented basketball? a Canadian baseball football 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a Canadian baseball football) -> a Canadian baseball football (7912ms)
Who invented basketball? Judi W. My son Flynn 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Judi W. My son Flynn, was introduced to, basketball) -> Judi W. My son Flynn (7927ms)
Who invented basketball? Dr. James Naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (Dr. James Naismith, invented the game of, basketball) -> Dr. James Naismith (8026ms)
Who invented basketball? the NBA 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the NBA, introduced, a new basketball) -> the NBA (8004ms)
Who invented basketball? Ujiri 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Ujiri, was introduced to, basketball) -> Ujiri (7992ms)
Who invented basketball? Ms Galley 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Ms Galley, is introducing, basketball) -> Ms Galley (7927ms)
Who invented basketball? Tex 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Tex, was discovered by, the basketball ambassadors) -> Tex (8026ms)
Who invented basketball? Connor 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Connor, has discovered, basketball) -> Connor (8026ms)
Who invented basketball? summer 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (summer, discovered, Duke Basketball) -> summer (8026ms)
Who invented basketball? Shanghai 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Shanghai, was discovered too late for, basketball) -> Shanghai (8026ms)
Who invented basketball? Wolfgang Amadeus Naismith 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Wolfgang Amadeus Naismith, discovered, basketball) -> Wolfgang Amadeus Naismith (8026ms)
Who invented basketball? Buddhist statuary 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Buddhist statuary, was discovered beneath, a basketball court) -> Buddhist statuary (8026ms)
Who invented basketball? DIY Gino 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (DIY Gino, creates, a patio and basketball court) -> DIY Gino (8141ms)
Who invented basketball? Antonio and Marco 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Antonio and Marco, are doing, basketball) -> Antonio and Marco (8224ms)
Who invented basketball? the RPI 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the RPI, originally was created for, basketball) -> the RPI (8231ms)
Who invented basketball? The Butler Way 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The Butler Way, created the hullabaloo in, college basketball) -> The Butler Way (8204ms)
Who invented basketball? first 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented, first) -> first (8112ms)
Who invented basketball? the Harlem Globetrotters 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the Harlem Globetrotters, do in, basketball) -> the Harlem Globetrotters (8080ms)
Who invented basketball? Color 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Color, is especially designed for, basketball players) -> Color (8217ms)
Who invented basketball? Alan Miller 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Alan Miller, Games Designed, Basketball) -> Alan Miller (8141ms)
Who invented basketball? expertise 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (expertise, goes into designing, basketballs shoes) -> expertise (8178ms)
Who invented basketball? The biggest misconception 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The biggest misconception, has nothing to do with, basketball) -> The biggest misconception (8070ms)
Who invented basketball? Middlebury and MIT 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Middlebury and MIT, have made an impact in, basketball) -> Middlebury and MIT (8141ms)
Who invented basketball? Missouri 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Missouri, to create, an enduring basketball rivalry with Auburn) -> Missouri (8244ms)
Who invented basketball? Air Jordan 9 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Air Jordan 9, is designed according to, basketball players) -> Air Jordan 9 (8101ms)
Who invented basketball? fun 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (fun, has created, an online NCAA basketball tournament bracket) -> fun (8244ms)
Who invented basketball? San Ignacio 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the ATLIB Basketball Nationals, took place in, San Ignacio) -> San Ignacio (8237ms)
Who invented basketball? Marquette 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Marquette, does playing, basketball) -> Marquette (8170ms)
Who invented basketball? the downtown arena 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the downtown arena, had been designed for, basketball) -> the downtown arena (8231ms)
Who invented basketball? Nike and Adidas 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Nike and Adidas, have been making, great basketball shoes) -> Nike and Adidas (8112ms)
Who invented basketball? the coaches 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (the coaches, have helped make, Five-Star Basketball one) -> the coaches (8244ms)
Who invented basketball? CCTV 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (CCTV, jointly created, the first ';entertainment basketball ') -> CCTV (8080ms)
Who invented basketball? Chicopee 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Chicopee, has been making headlines on, the basketball court) -> Chicopee (8238ms)
Who invented basketball? Castro 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Castro, created, a youth basketball league) -> Castro (8037ms)
Who invented basketball? a rich tradition 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a rich tradition, has made his mark in, college basketball) -> a rich tradition (8217ms)
Who invented basketball? Bishop Ryan 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Bishop Ryan, has made their name in, Midget Girls Basketball) -> Bishop Ryan (8224ms)
Who invented basketball? The idea 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The idea, is to create, basketball team) -> The idea (8122ms)
Who invented basketball? Broback 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Broback, is done with, basketball) -> Broback (8048ms)
Who invented basketball? light 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (light, was created on, the basketball court) -> light (8231ms)
Who invented basketball? the shoe 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the shoe, is created for, basketball) -> the shoe (8161ms)
Who invented basketball? Adidas and Nike 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Adidas and Nike, have been making, good basketball shoes) -> Adidas and Nike (8244ms)
Who invented basketball? Dean 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Dean, did with, basketball) -> Dean (8131ms)
Who invented basketball? sport 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (sport, do activities such as, Basketball) -> sport (8131ms)
Who invented basketball? the canadian cation instructor 1.11111111111 Who invented basketball? -> $x: ($x, invent in, basketball) -> (the canadian cation instructor, invented in, basketball) -> the canadian cation instructor (8250ms)
Who invented basketball? the opportunity 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the opportunity, design, their own basketball jerseys) -> the opportunity (8150ms)
Who invented basketball? Tallaght students 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Tallaght students, create, a Wonderland P3 Basketball) -> Tallaght students (8150ms)
Who invented basketball? Adrian Hayes 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Adrian Hayes, has made, basketball) -> Adrian Hayes (8170ms)
Who invented basketball? The Kobe Dunks shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The Kobe Dunks shoes, is designed for, basketball athletes) -> The Kobe Dunks shoes (8059ms)
Who invented basketball? Progress 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Progress, has been made on, the basketball court relocation) -> Progress (8238ms)
Who invented basketball? fun activities 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (fun activities, are designed around, basketball drills) -> fun activities (8203ms)
Who invented basketball? 1922 Mr. Angel Cabrera 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (1922 Mr. Angel Cabrera, created, the first basketball team) -> 1922 Mr. Angel Cabrera (8070ms)
Who invented basketball? the city 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the city, creates, a community basketball court) -> the city (8204ms)
Who invented basketball? The Nike Hyperdrunk Shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The Nike Hyperdrunk Shoes, are designed for, basketball players) -> The Nike Hyperdrunk Shoes (8231ms)
Who invented basketball? March Madness 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (March Madness, has made, college basketball) -> March Madness (8178ms)
Who invented basketball? a YMCA 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented at, a YMCA) -> a YMCA (8121ms)
Who invented basketball? Mano 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Mano, created, the Excalibur Basketball Club) -> Mano (8203ms)
Who invented basketball? Radio Philippines Network 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Radio Philippines Network, TV programs Created, The Basketball Show) -> Radio Philippines Network (8080ms)
Who invented basketball? The case 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The case, is designed to hold, one full size basketball) -> The case (8187ms)
Who invented basketball? Tennis 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Tennis, so does, basketball) -> Tennis (8178ms)
Who invented basketball? Mike Hummel 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Mike Hummel, created, Advantage Basketball Camps) -> Mike Hummel (8059ms)
Who invented basketball? the rules book 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the rules book, will be created for, collegiate basketball) -> the rules book (8048ms)
Who invented basketball? The French 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (The French, have made inroads in, women?s basketball) -> The French (8244ms)
Who invented basketball? The Lady Tigers 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (The Lady Tigers, have made, basketball look) -> The Lady Tigers (8150ms)
Who invented basketball? David Trubridge 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (David Trubridge, created, these Basketball Lights) -> David Trubridge (8224ms)
Who invented basketball? the NBL 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the NBL, has created, a basketball sneaker) -> the NBL (8210ms)
Who invented basketball? a couple 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented, a couple) -> a couple (8161ms)
Who invented basketball? TRP 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (TRP, created, the Resurrection Basketball League) -> TRP (8224ms)
Who invented basketball? He Ruiji 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (He Ruiji, Films production designed, Woman Basketball Player No. 5) -> He Ruiji (8187ms)
Who invented basketball? Halifax 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the men?s basketball championship, is taking place in, Halifax) -> Halifax (8112ms)
Who invented basketball? a lot 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (a lot, to do with, basketball) -> a lot (8132ms)
Who invented basketball? a new AD 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a new AD, has made commitment to, men 's and women 's basketball) -> a new AD (8195ms)
Who invented basketball? Torgerson 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Torgerson, created, the Ole Miss basketball network) -> Torgerson (8224ms)
Who invented basketball? God 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (God, created, bingo , basketball and beer) -> God (8178ms)
Who invented basketball? kobe 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (kobe, is done with, basketball) -> kobe (8037ms)
Who invented basketball? Licensed Highest Quality 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Licensed Highest Quality, do, basketball) -> Licensed Highest Quality (8244ms)
Who invented basketball? n21 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n21, Create, a basketball cake) -> n21 (8187ms)
Who invented basketball? Boise st 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Boise st, did nothing in, basketball) -> Boise st (8037ms)
Who invented basketball? the end 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (America Basketball, was invented at, the end) -> the end (8070ms)
Who invented basketball? the centre 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the centre, was originally designed for, basketball games) -> the centre (8121ms)
Who invented basketball? Small ball hoops 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Small ball hoops, were created with, basketball game players) -> Small ball hoops (8059ms)
Who invented basketball? a floor 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a floor, is somewhat uniquely designed for, basketball) -> a floor (8069ms)
Who invented basketball? the Tunit sports balls 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the Tunit sports balls, were created for, basketball quests) -> the Tunit sports balls (8070ms)
Who invented basketball? Dena Roth 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Dena Roth, Film sets designed, Love & Basketball) -> Dena Roth (8141ms)
Who invented basketball? Legends Showcase 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Legends Showcase, creates, a truly unique basketball experience) -> Legends Showcase (8101ms)
Who invented basketball? the deeper question 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the deeper question, does, basketball) -> the deeper question (8112ms)
Who invented basketball? a Freshman 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a Freshman, has decided to make, basketball) -> a Freshman (8231ms)
Who invented basketball? the contributions Pat 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (the contributions Pat, has made to, women?s basketball) -> the contributions Pat (8187ms)
Who invented basketball? the gym 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (a basketball game, taking place in, the gym) -> the gym (8091ms)
Who invented basketball? Michael Jordan 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Michael Jordan, did for, basketball) -> Michael Jordan (8237ms)
Who invented basketball? The Discovery Channel 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The Discovery Channel, have to do with, basketball) -> The Discovery Channel (8187ms)
Who invented basketball? NBA Live 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (NBA Live, did for, basketball) -> NBA Live (8091ms)
Who invented basketball? The program 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The program, is designed to improve, the basketball skills) -> The program (8178ms)
Who invented basketball? Upward 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Upward, was designed to teach, basketball skills) -> Upward (8048ms)
Who invented basketball? Dez 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Dez, created, custom Wholesale Nike Basketball Shoes) -> Dez (8161ms)
Who invented basketball? UF 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (UF, is doing very well in, Basketball) -> UF (8170ms)
Who invented basketball? compromises 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (compromises, had to be made to, his basketball philosophy) -> compromises (8238ms)
Who invented basketball? The diagrams 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The diagrams, were created with, Basketball Playbook 010) -> The diagrams (8037ms)
Who invented basketball? Ayman Idais Academy 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Ayman Idais Academy, is to create, a lifetime basketball program) -> Ayman Idais Academy (8244ms)
Who invented basketball? Ruth E. Carter 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Ruth E. Carter, Costume Design for Film, Love & Basketball) -> Ruth E. Carter (8141ms)
Who invented basketball? Christopher Nowak 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Christopher Nowak, Films production designed, The Basketball Diaries) -> Christopher Nowak (8195ms)
Who invented basketball? Beaver Falls 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (a college basketball team, took place in, Beaver Falls) -> Beaver Falls (8187ms)
Who invented basketball? a year 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a year, ago has made, her college basketball choice) -> a year (8237ms)
Who invented basketball? two years 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had been invented, two years) -> two years (8170ms)
Who invented basketball? athletes 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (athletes, created, a competitive basketball team) -> athletes (8131ms)
Who invented basketball? Nike shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Nike shoes, are meticulously designed to make, your basketball) -> Nike shoes (8178ms)
Who invented basketball? play 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (play, do for, basketball) -> play (8131ms)
Who invented basketball? Bill Clinton 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Bill Clinton, created, midnight basketball) -> Bill Clinton (8101ms)
Who invented basketball? Dan Gilbert 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Dan Gilbert, create, a basketball team) -> Dan Gilbert (8131ms)
Who invented basketball? Jordan shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Jordan shoes, have been designed for, basketball players) -> Jordan shoes (8112ms)
Who invented basketball? sale 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (sale, was n?t created, f?r basketball) -> sale (8238ms)
Who invented basketball? Luck 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Luck, does play a part in, basketball) -> Luck (8091ms)
Who invented basketball? Players 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Players, can create, their own basketball player) -> Players (8048ms)
Who invented basketball? Football teams 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Football teams, as do, Basketball) -> Football teams (8238ms)
Who invented basketball? ten miles 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had just been invented only, ten miles) -> ten miles (8150ms)
Who invented basketball? does sport 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (does sport, does, basketball) -> does sport (8231ms)
Who invented basketball? super lightweight shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (super lightweight shoes, designed for, basketball) -> super lightweight shoes (8091ms)
Who invented basketball? Madison Square Garden 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> ('s basketball game, took place in, Madison Square Garden) -> Madison Square Garden (8217ms)
Who invented basketball? the team?s student managers 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the team?s student managers, created, a basketball half-court) -> the team?s student managers (8244ms)
Who invented basketball? the Internet 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (the Internet, has made, college basketball merchandise) -> the Internet (8224ms)
Who invented basketball? Lucas Oil 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Lucas Oil, was designed to host, basketball) -> Lucas Oil (8141ms)
Who invented basketball? the secret basketball players 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the secret basketball players, create, a new basketball player) -> the secret basketball players (8048ms)
Who invented basketball? Harriet Zucker 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Harriet Zucker, Film sets designed, The Basketball Diaries) -> Harriet Zucker (8244ms)
Who invented basketball? Richard 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Richard, had many attributes to make, a fine basketball coach) -> Richard (8121ms)
Who invented basketball? the arena 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the arena, was custom-designed as, a basketball venue) -> the arena (8238ms)
Who invented basketball? a $ 100,000 project 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (a $ 100,000 project, created, a hometown basketball camp) -> a $ 100,000 project (8187ms)
Who invented basketball? June 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (his own basketball camp, will take place in, June) -> June (8238ms)
Who invented basketball? a street 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (a street, can also be used to create, basketball courts) -> a street (8048ms)
Who invented basketball? Yao Ming 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Yao Ming, created with, a basketball) -> Yao Ming (8224ms)
Who invented basketball? The congressional version 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The congressional version, has nothing to do with, basketball) -> The congressional version (8080ms)
Who invented basketball? the foot or ankle 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the foot or ankle, does occur in, basketball) -> the foot or ankle (8178ms)
Who invented basketball? Nike Blazer 1.11111111111 Who invented basketball? -> $x: ($x, first make, basketball) -> (Nike Blazer, was first made as, the basketball sneaker) -> Nike Blazer (8161ms)
Who invented basketball? The shootAndstar 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The shootAndstar, is designed for, your basketball player) -> The shootAndstar (8080ms)
Who invented basketball? young 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (young, does to play, basketball) -> young (8224ms)
Who invented basketball? Mitchell 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Mitchell, has made, the U.S. U-19 basketball squad) -> Mitchell (8224ms)
Who invented basketball? ?The investment 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (?The investment, has been made to, basketball) -> ?The investment (8091ms)
Who invented basketball? hist?ria 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (hist?ria, do, basketball) -> hist?ria (8178ms)
Who invented basketball? Stephen Schramm 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Stephen Schramm, create, the perfect ACC basketball player) -> Stephen Schramm (8101ms)
Who invented basketball? Williams ? boot camp workouts 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Williams ? boot camp workouts, did n?t require, basketballs) -> Williams ? boot camp workouts (8112ms)
Who invented basketball? Lyons 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Lyons, decided to create, the DONS Basketball League) -> Lyons (8141ms)
Who invented basketball? a strong training club 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (a strong training club, created, a Division 1 basketball team) -> a strong training club (8210ms)
Who invented basketball? LeBron 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (LeBron, is doing the same for, basketball) -> LeBron (8195ms)
Who invented basketball? Nike Company 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Nike Company, has designed, many basketball shoes) -> Nike Company (8141ms)
Who invented basketball? youth 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (youth, have made, their school basketball team) -> youth (8210ms)
Who invented basketball? the Air Force One shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the Air Force One shoes, were designed for, basketball players) -> the Air Force One shoes (8132ms)
Who invented basketball? Rome 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Rome, has made tremendous strides as, a basketball player) -> Rome (8091ms)
Who invented basketball? The Blazers center 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The Blazers center, may be done with, basketball) -> The Blazers center (8091ms)
Who invented basketball? Britain 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Britain, does in, basketball) -> Britain (8161ms)
Who invented basketball? the conference 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the conference, did revolve around, basketball) -> the conference (8178ms)
Who invented basketball? a diversion 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented as, a diversion) -> a diversion (8250ms)
Who invented basketball? The entire area 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The entire area, has a design around, the basketball game look) -> The entire area (8178ms)
Who invented basketball? Air Jordan 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Air Jordan, has unveiled a new design of, their basketball kicks) -> Air Jordan (8048ms)
Who invented basketball? further north 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented, further north) -> further north (8132ms)
Who invented basketball? Wang Yuebai 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Wang Yuebai, Films production designed, Woman Basketball Player No. 5) -> Wang Yuebai (8080ms)
Who invented basketball? Michael Snaer 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Michael Snaer, created, a basketball culture) -> Michael Snaer (8037ms)
Who invented basketball? a Frank Gehry 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a Frank Gehry, designed, basketball arena) -> a Frank Gehry (8150ms)
Who invented basketball? Calipari 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Calipari, has made, major-college basketball) -> Calipari (8210ms)
Who invented basketball? Basketball Jones 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Basketball Jones, does stunts with, basketballs) -> Basketball Jones (8195ms)
Who invented basketball? originally 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented, originally) -> originally (8161ms)
Who invented basketball? yup 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (yup, i do especially, basketball) -> yup (8231ms)
Who invented basketball? technical college 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (technical college, creates the need for, college basketball) -> technical college (8121ms)
Who invented basketball? Tom 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Tom, helped design, the nike basketball shoes) -> Tom (8231ms)
Who invented basketball? CBS Sports 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (CBS Sports, TV programs Created, College Basketball on CBS) -> CBS Sports (8217ms)
Who invented basketball? 100 years 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented more than, 100 years) -> 100 years (8112ms)
Who invented basketball? office supplies 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (office supplies, have to do with, basketball) -> office supplies (8059ms)
Who invented basketball? 1968 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (The first basketball skills competition, took place in, 1968) -> 1968 (8170ms)
Who invented basketball? ?Tone ? 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (?Tone ?, has made quite a splash in, the basketball world) -> ?Tone ? (8141ms)
Who invented basketball? schools 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (schools, doing well in, basketball) -> schools (8187ms)
Who invented basketball? hes 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (hes, done with, basketball) -> hes (8244ms)
Who invented basketball? a non-contact sport 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented as, a non-contact sport) -> a non-contact sport (8132ms)
Who invented basketball? so many Asians 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (so many Asians, do love, basketball) -> so many Asians (8195ms)
Who invented basketball? a center 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (a center, does in, basketball) -> a center (8059ms)
Who invented basketball? Production I.G 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Production I.G, TV programs Created, Kuroko's Basketball) -> Production I.G (8059ms)
Who invented basketball? Kobe 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Kobe, is done with, basketball) -> Kobe (8187ms)
Who invented basketball? man 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (man, did, basketball) -> man (8141ms)
Who invented basketball? a hall 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a hall, designed for, basketball) -> a hall (8161ms)
Who invented basketball? two venues 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Basketball competition, will take place in, two venues) -> two venues (8224ms)
Who invented basketball? Loyola 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Loyola, are doing pretty well playing, basketball) -> Loyola (8150ms)
Who invented basketball? Mr. Onitsuka 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Mr. Onitsuka, created the first pair of, basketball shoes) -> Mr. Onitsuka (8217ms)
Who invented basketball? Nike company 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Nike company, design the shoes for, the NBA basketball players) -> Nike company (8170ms)
Who invented basketball? cheap 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (cheap, designed exclusively shoe for, the NBA basketball player) -> cheap (8161ms)
Who invented basketball? the company 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the company, has created a standardized line for, basketball) -> the company (8204ms)
Who invented basketball? Infront 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Infront, has created tremendous momentum for, Chinese basketball) -> Infront (8048ms)
Who invented basketball? Illinois 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Illinois, has made a great choice for, its basketball coach) -> Illinois (8161ms)
Who invented basketball? A Pose 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (A Pose, Has nothing to do with, basketball) -> A Pose (8170ms)
Who invented basketball? David C. Robinson 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (David C. Robinson, Costume Design for Film, The Basketball Diaries) -> David C. Robinson (8037ms)
Who invented basketball? everybody 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (everybody, was doing, basketball) -> everybody (8048ms)
Who invented basketball? n20 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n20, Create, a basketball cake) -> n20 (8048ms)
Who invented basketball? the EBAL 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Spartans basketball team, took over first place in, the EBAL) -> the EBAL (8210ms)
Who invented basketball? Imma 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Imma, do, basketball) -> Imma (8131ms)
Who invented basketball? flat black 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (flat black, are designed for, the ProStar Basketball ceiling fan) -> flat black (8203ms)
Who invented basketball? Michael Jordans 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Michael Jordans, did with, basketball) -> Michael Jordans (8080ms)
Who invented basketball? Harlem?s dancehalls 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (basketball games, took place in, Harlem?s dancehalls) -> Harlem?s dancehalls (8238ms)
Who invented basketball? The original Nike Dunk 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The original Nike Dunk, was created as, a basketball shoe) -> The original Nike Dunk (8080ms)
Who invented basketball? The cable 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (The cable, could have been made around, a basketball) -> The cable (8203ms)
Who invented basketball? customers 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (customers, to create, their own basketball shoe) -> customers (8121ms)
Who invented basketball? Gampel Pavilion 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (men?s basketball, also took place in, Gampel Pavilion) -> Gampel Pavilion (8231ms)
Who invented basketball? football strategy 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (football strategy, have to do with, basketball) -> football strategy (8112ms)
Who invented basketball? Tadatoshi Fujimaki 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Tadatoshi Fujimaki, Fictional universes created, Kuroko's Basketball) -> Tadatoshi Fujimaki (8231ms)
Who invented basketball? Gonzaga 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Gonzaga, has done in, basketball) -> Gonzaga (8217ms)
Who invented basketball? Grant Township 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball registration, to take place in, Grant Township) -> Grant Township (8203ms)
Who invented basketball? Calgary 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> ('s Basketball Championship, set to take place in, Calgary) -> Calgary (8170ms)
Who invented basketball? Cisco 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Cisco, created, The Wiz Kids basketball team) -> Cisco (8112ms)
Who invented basketball? girls 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (girls, was very first created with, basketball gamers) -> girls (8178ms)
Who invented basketball? more than 120 years ago 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball Shoes, was invented, more than 120 years ago) -> more than 120 years ago (8244ms)
Who invented basketball? The Jordans 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The Jordans, are being created for, basketball players) -> The Jordans (8210ms)
Who invented basketball? the record 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the record, did particularly well in, basketball) -> the record (8059ms)
Who invented basketball? NIKE DUNK shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (NIKE DUNK shoes, is designed for, professional basketball player) -> NIKE DUNK shoes (8150ms)
Who invented basketball? etc 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (etc, might have made an impact on, basketball) -> etc (8217ms)
Who invented basketball? consumers 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (consumers, compete to create, college basketball videos) -> consumers (8210ms)
Who invented basketball? Diamonds 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Diamonds, are created from, a basketball-sized piece) -> Diamonds (8141ms)
Who invented basketball? Pro-Keds 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Pro-Keds, were specifically designed for, basketball) -> Pro-Keds (8231ms)
Who invented basketball? Bethany 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Bethany, has also made an impact on, the basketball court) -> Bethany (8161ms)
Who invented basketball? the first anime sport 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the first anime sport, i did try to play, basketball) -> the first anime sport (8231ms)
Who invented basketball? great fabrics 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (great fabrics, design, your own basketball socks) -> great fabrics (8210ms)
Who invented basketball? Adidas Crazy 8 shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Adidas Crazy 8 shoes, are designed for, large basketball fans) -> Adidas Crazy 8 shoes (8131ms)
Who invented basketball? a decade 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had been invented only about, a decade) -> a decade (8224ms)
Who invented basketball? he?s 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (he?s, does n?t play, basketball) -> he?s (8070ms)
Who invented basketball? South Africa 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (South Africa, did like, basketball) -> South Africa (8070ms)
Who invented basketball? a zone defense 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (a zone defense, does in, basketball) -> a zone defense (8121ms)
Who invented basketball? Berlin 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Euroleague Basketball Final Four, took place in, Berlin) -> Berlin (8132ms)
Who invented basketball? even more coaches 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (even more coaches, have made, Five-Star Basketball camps) -> even more coaches (8070ms)
Who invented basketball? the University 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented at, the University) -> the University (8161ms)
Who invented basketball? Columbia 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball competition, will take place in, Columbia) -> Columbia (8195ms)
Who invented basketball? the awarded team 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the awarded team, creates for, Euroleague Basketball) -> the awarded team (8224ms)
Who invented basketball? September 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (5-12 Basketball, will take place in, September) -> September (8037ms)
Who invented basketball? Even every year brands 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Even every year brands, create, basketball sneakers) -> Even every year brands (8187ms)
Who invented basketball? A new award 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (A new award, was created in, basketball) -> A new award (8070ms)
Who invented basketball? Lost Boys 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Lost Boys, created, a 'quantum basketball) -> Lost Boys (8204ms)
Who invented basketball? a shoe 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a shoe, designed for, basketball) -> a shoe (8080ms)
Who invented basketball? Malaysia 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Asian Basketball Championship, took place in, Malaysia) -> Malaysia (8161ms)
Who invented basketball? n26 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n26, Create, a basketball cake) -> n26 (8122ms)
Who invented basketball? n19 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n19, Create, a basketball cake) -> n19 (8195ms)
Who invented basketball? winner 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (winner, has designed, the most comprehensive basketball) -> winner (8244ms)
Who invented basketball? the school gym 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (A basketball game, was taking place in, the school gym) -> the school gym (8204ms)
Who invented basketball? Adidas 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Adidas, has created, a new basketball sneaker) -> Adidas (8210ms)
Who invented basketball? ability 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (ability, goes into designing, basketballs shoes) -> ability (8037ms)
Who invented basketball? St . Louis 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> ('s Basketball Championship, takes place in, St . Louis) -> St . Louis (8231ms)
Who invented basketball? Custom 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Custom, design, your kids basketball uniform) -> Custom (8101ms)
Who invented basketball? Dude Perfect 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Dude Perfect, has made, trick-shot basketball videos) -> Dude Perfect (8091ms)
Who invented basketball? power programs 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (power programs, sometimes do in, basketball) -> power programs (8132ms)
Who invented basketball? Wittenberg 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Wittenberg, are doing so in, basketball) -> Wittenberg (8244ms)
Who invented basketball? aficionados 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (aficionados, can create, their own AF25 Nike basketball shoe) -> aficionados (8132ms)
Who invented basketball? Smart 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Smart, has done so in, basketball) -> Smart (8112ms)
Who invented basketball? Leonard Hamilton 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Leonard Hamilton, has made the game of, basketball boring) -> Leonard Hamilton (8204ms)
Who invented basketball? Tennessee 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Tennessee, did in, basketball) -> Tennessee (8224ms)
Who invented basketball? Local students 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Local students, create, basketball-playing robots) -> Local students (8210ms)
Who invented basketball? michael jordan 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (michael jordan, did with, basketball) -> michael jordan (8195ms)
Who invented basketball? no decision 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (no decision, has been made on, basketball player Xavier Blount) -> no decision (8170ms)
Who invented basketball? KU 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (KU, usually does better at, basketball) -> KU (8238ms)
Who invented basketball? the rules 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the rules, created, basketball) -> the rules (8203ms)
Who invented basketball? a recreational sport 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented as, a recreational sport) -> a recreational sport (8069ms)
Who invented basketball? n17 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n17, Create, a basketball cake) -> n17 (8080ms)
Who invented basketball? 64 :00 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (64 :00, do, basketball) -> 64 :00 (8170ms)
Who invented basketball? Scott and Kidd 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Scott and Kidd, created, a basketball symphony) -> Scott and Kidd (8187ms)
Who invented basketball? NBC Sports 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (NBC Sports, TV programs Created, College Basketball on NBC) -> NBC Sports (8101ms)
Who invented basketball? Colin 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Colin, has also done videos for, basketball) -> Colin (8037ms)
Who invented basketball? The shoe 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The shoe, is designed for, basketball) -> The shoe (8069ms)
Who invented basketball? BHC BLOG Ethan Anderson 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (BHC BLOG Ethan Anderson, has created, the Select Basketball Blog) -> BHC BLOG Ethan Anderson (8217ms)
Who invented basketball? the Hornets 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (All home basketball games, take place in, the Hornets) -> the Hornets (8132ms)
Who invented basketball? the lakers 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the lakers, did in, basketball) -> the lakers (8141ms)
Who invented basketball? books 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (books, still do well at, basketball) -> books (8112ms)
Who invented basketball? retro Jordan Shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (retro Jordan Shoes, was designed for, basketball player.To) -> retro Jordan Shoes (8037ms)
Who invented basketball? March or April 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball events, take place in, March or April) -> March or April (8048ms)
Who invented basketball? The Masonites 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The Masonites, are doing more than, basketball) -> The Masonites (8080ms)
Who invented basketball? I?ll 1.11111111111 Who invented basketball? -> $x: ($x, first make, basketball) -> (I?ll, make the first substitution in, pickup basketball history) -> I?ll (8080ms)
Who invented basketball? Beth 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Beth, is done playing, basketball) -> Beth (8244ms)
Who invented basketball? Three players 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Three players, have made the cut for, Miss Basketball) -> Three players (8231ms)
Who invented basketball? n24 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n24, Create, a basketball cake) -> n24 (8217ms)
Who invented basketball? Kyle 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Kyle, decided to do something with, basketball) -> Kyle (8187ms)
Who invented basketball? Jordan 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Jordan, eventually did return to, basketball) -> Jordan (8141ms)
Who invented basketball? Travis 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Travis, did, basketball) -> Travis (8238ms)
Who invented basketball? Sneakers 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Sneakers, were designed for, basketball or tennis) -> Sneakers (8170ms)
Who invented basketball? Saturday?s 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (boys and girls basketball, will take place in, Saturday?s) -> Saturday?s (8250ms)
Who invented basketball? Finally Spalding 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Finally Spalding, has created, a new basketball) -> Finally Spalding (8131ms)
Who invented basketball? Trevor 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Trevor, has made the transition to, basketball) -> Trevor (8217ms)
Who invented basketball? Adam Smith 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Adam Smith, have to do with, basketball) -> Adam Smith (8059ms)
Who invented basketball? Basketball 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball (8250ms)
Who invented basketball? december th 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (basketball, invented, december th) -> december th (8266ms)
Who invented basketball? period 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (the best basketball, ever invented, period) -> period (8280ms)
Who invented basketball? Sheex 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> ('s basketball coaches, invented, Sheex) -> Sheex (8250ms)
Who invented basketball? rap fashion 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (a basketball player, invent, rap fashion) -> rap fashion (8280ms)
Who invented basketball? a few miles 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (Basketball, invented, a few miles) -> a few miles (8256ms)
Who invented basketball? American 0.999999999998 Who invented basketball? -> $x: (regulation, be invent in, $x) -> (Regulations & Subsidies Solar panels, were invented in, American) -> American (8285ms)
Who invented basketball? the 1600 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (The Slide Rule, had been invented in, the 1600) -> the 1600 (8284ms)
Who invented basketball? the Mid 19th century 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (Australian Rules football, was invented in, the Mid 19th century) -> the Mid 19th century (8284ms)
Who invented basketball? the 1620s 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (the slide rule, was invented in, the 1620s) -> the 1620s (8288ms)
Who invented basketball? the first place 0.999999999998 Who invented basketball? -> $x: (guard, be invent in, $x) -> (a rash guard, has been invented in, the first place) -> the first place (8288ms)
Who invented basketball? 1622 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (The slide rule, was invented in, 1622) -> 1622 (8285ms)
Who invented basketball? 1815 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (Log-log Slide Rules Log-log rules, were invented in, 1815) -> 1815 (8284ms)
Who invented basketball? 1858 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (Australian rules football, was invented in, 1858) -> 1858 (8288ms)
Who invented basketball? the beginning 0.999999999998 Who invented basketball? -> $x: (child, be invent in, $x) -> (child development, was invented in, the beginning) -> the beginning (8284ms)
Who invented basketball? 1870 0.999999999998 Who invented basketball? -> $x: (rim, be invent in, $x) -> (rim, was invented in, 1870) -> 1870 (8288ms)
Who invented basketball? 1632 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (the slide rule, was invented in, 1632) -> 1632 (8288ms)
Who invented basketball? 1884 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball bat, was invented in, 1884) -> 1884 (8288ms)
Who invented basketball? 1964 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Beep Baseball, was invented in, 1964) -> 1964 (8296ms)
Who invented basketball? England 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, England) -> England (8296ms)
Who invented basketball? 1883 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (The baseball glove, was invented in, 1883) -> 1883 (8303ms)
Who invented basketball? Cooperstown 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball, was invented in, Cooperstown) -> Cooperstown (8302ms)
Who invented basketball? 1839 ~ Contrary 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (~ Baseball, was Invented in, 1839 ~ Contrary) -> 1839 ~ Contrary (8299ms)
Who invented basketball? 1834 Tilton 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, 1834 Tilton) -> 1834 Tilton (8303ms)
Who invented basketball? a quaint rural town 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball, was invented in, a quaint rural town) -> a quaint rural town (8303ms)
Who invented basketball? the 1920s 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Metal baseball bats, were invented in, the 1920s) -> the 1920s (8292ms)
Who invented basketball? 1839 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, 1839) -> 1839 (8302ms)
Who invented basketball? Dan Biasone 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Dan Biasone, invented, basketball) -> Dan Biasone (8313ms)
Who invented basketball? the moment James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the moment James Naismith, invented, basketball) -> the moment James Naismith (8305ms)
Who invented basketball? a sports stringer 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (a sports stringer, invented, a college basketball team &) -> a sports stringer (8315ms)
Who invented basketball? United States educator 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (United States educator, invented, the game of basketball) -> United States educator (8305ms)
Who invented basketball? A Canadian doctor 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (A Canadian doctor, invented, Basketball) -> A Canadian doctor (8315ms)
Who invented basketball? Ont. 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Ont., invented, basketball) -> Ont. (8313ms)
Who invented basketball? Canadians 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Canadians, invented, Basketball) -> Canadians (8315ms)
Who invented basketball? Al Gore 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Al Gore, invented, Basketball-Reference) -> Al Gore (8315ms)
Who invented basketball? the white man 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the white man, invented, basketball) -> the white man (8305ms)
Who invented basketball? white man 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (white man, invented, basketball) -> white man (8308ms)
Who invented basketball? roller James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (roller James Naismith, invented, the modern basketball) -> roller James Naismith (8308ms)
Who invented basketball? a creative advertising agent 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (a creative advertising agent, invented, a basketball) -> a creative advertising agent (8313ms)
Who invented basketball? Basketball Canadian Dr James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball Canadian Dr James Naismith (8313ms)
Who invented basketball? 1891 James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (1891 James Naismith, invented, basketball) -> 1891 James Naismith (8313ms)
Who invented basketball? The guy 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The guy, invented, basketball) -> The guy (8310ms)
Who invented basketball? the same year James B. Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the same year James B. Naismith, invented, basketball) -> the same year James B. Naismith (8308ms)
Who invented basketball? the jews 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the jews, invented, basketball) -> the jews (8316ms)
Who invented basketball? the first try 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the first try, invented, basketball) -> the first try (8305ms)
Who invented basketball? a KU Coach 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (a KU Coach, invented, basketball) -> a KU Coach (8303ms)
Who invented basketball? the who 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the who, invented, the game basketball) -> the who (8308ms)
Who invented basketball? 1891 - James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (1891 - James Naismith, invents, basketball) -> 1891 - James Naismith (8311ms)
Who invented basketball? Canuck 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Canuck, invented, basketball) -> Canuck (8308ms)
Who invented basketball? Dr. Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Dr. Naismith, began inventing, basketball) -> Dr. Naismith (8313ms)
Who invented basketball? Mars 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Mars, invent, time travel or play basketball) -> Mars (8305ms)
Who invented basketball? the movement 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the movement, invented, basketball and volleyball) -> the movement (8305ms)
Who invented basketball? Program Director James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Program Director James Naismith, invented, Basketball) -> Program Director James Naismith (8315ms)
Who invented basketball? history ?? 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (history ??, invented, basketball) -> history ?? (8311ms)
Who invented basketball? The Globetrotters 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The Globetrotters, invented, show basketball) -> The Globetrotters (8305ms)
Who invented basketball? the Canadian physical education instructor 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the Canadian physical education instructor, invented, basketball) -> the Canadian physical education instructor (8315ms)
Who invented basketball? YMCA instructor James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (YMCA instructor James Naismith, invented, basketball) -> YMCA instructor James Naismith (8313ms)
Who invented basketball? the person 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the person, invented, basketball) -> the person (8313ms)
Who invented basketball? Any other interesting facts James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Any other interesting facts James Naismith, invented, basketball) -> Any other interesting facts James Naismith (8315ms)
Who invented basketball? college students 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (college students, invented, basketball and volleyball) -> college students (8305ms)
Who invented basketball? YMCA members 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (YMCA members, invented, basketball) -> YMCA members (8315ms)
Who invented basketball? Company History 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Company History, invented, basketball) -> Company History (8313ms)
Who invented basketball? Basketball Dr. James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Basketball Dr. James Naismith, invented, basketball) -> Basketball Dr. James Naismith (8308ms)
Who invented basketball? the short time limit Dr. Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the short time limit Dr. Naismith, invented, basketball) -> the short time limit Dr. Naismith (8311ms)
Who invented basketball? The Canadian 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The Canadian, invented, the game of basketball) -> The Canadian (8311ms)
Who invented basketball? The Canadians 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The Canadians, invented, basketball) -> The Canadians (8311ms)
Who invented basketball? the country 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the country, invented, basketball) -> the country (8313ms)
Who invented basketball? A Canadian 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (A Canadian, invented, basketball) -> A Canadian (8303ms)
Who invented basketball? Europeans 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Europeans, invented, baseball , football and basketball) -> Europeans (8311ms)
What is it called by the Indians? church 0.888888888885 What is it called by the Indians? -> $x: ($x, be fear of, indian) -> (church, was fear of, Indian attack) -> church (1255ms)
What is it called by the Indians? Kashmiris 0.888888888885 What is it called by the Indians? -> $x: ($x, be fear of, indian) -> (Kashmiris, are losing their fear of, Indian criminal police) -> Kashmiris (1256ms)
What is it called by the Indians? the River 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the River, called by, the Indians Ouragon) -> the River (3084ms)
What is it called by the Indians? the State 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the State, were called by, the Indians and Gonzalez) -> the State (1255ms)
What is it called by the Indians? Penn Yan 0.444444444443 What 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)
What is it called by the Indians? Kevin Costner?s character 0.444444444443 What 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)
What is it called by the Indians? a large creek 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (a large creek, was called by, the Indians Catawba) -> a large creek (2245ms)
What is it called by the Indians? Pamlico Sound 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Pamlico Sound, called by, the Indians Roanoke Island) -> Pamlico Sound (3084ms)
What is it called by the Indians? Barrington 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Barrington, was then called by, its Indian names) -> Barrington (1373ms)
What is it called by the Indians? the Chief 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the Chief, is called by, the Indians) -> the Chief (3084ms)
What is it called by the Indians? Alaska?s largest river 0.444444444443 What 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)
What is it called by the Indians? the place 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the place, was called by, the Indians) -> the place (3084ms)
What is it called by the Indians? an election 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (an election, shall be called by, the present Indian council) -> an election (3084ms)
What is it called by the Indians? The river 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The river, was called by, the Indians Quinnehtuck) -> The river (2245ms)
What is it called by the Indians? the bay 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the bay, called by, the indians) -> the bay (1255ms)
What is it called by the Indians? Sam Houston 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Sam Houston, once was called by, the Indians) -> Sam Houston (3084ms)
What is it called by the Indians? Mark Gurath 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mark Gurath, was called by, Indian Landing Lutheran congregation) -> Mark Gurath (1255ms)
What is it called by the Indians? The creek 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The creek, was also called by, the Indians) -> The creek (2245ms)
What is it called by the Indians? the schools 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the schools, is called by, the Indian Association) -> the schools (2245ms)
What is it called by the Indians? The bridges 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The bridges, are called by, their Hopi Indian names) -> The bridges (3084ms)
What is it called by the Indians? Mind 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mind, was called by, Indian psychologists) -> Mind (1373ms)
What is it called by the Indians? the province 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the province, called Apalachen by, the Indians) -> the province (2245ms)
What is it called by the Indians? Kim 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Kim, was called by, the Indians) -> Kim (1373ms)
What is it called by the Indians? The whites 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The whites, are called from their swords by, the Indians) -> The whites (1373ms)
What is it called by the Indians? Westbrook parish 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Westbrook parish, was called by, its Indian name Pochaug) -> Westbrook parish (3084ms)
What is it called by the Indians? the east , contrary 0.444444444443 What 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)
What is it called by the Indians? height 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (height, is called by, the Indians 'Kolana ') -> height (3084ms)
What is it called by the Indians? the first congregation 0.444444444443 What 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)
What is it called by the Indians? Mount Graham 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mount Graham, called by, the ancient Hopi Indians) -> Mount Graham (2245ms)
What is it called by the Indians? Mr. Hridayesh Tripathi 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mr. Hridayesh Tripathi, were called by, Indian establishment) -> Mr. Hridayesh Tripathi (2245ms)
What is it called by the Indians? King Bowlegs 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (King Bowlegs, was called by, the Indians) -> King Bowlegs (1373ms)
What is it called by the Indians? the country 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the country, was called by, the Indians) -> the country (3084ms)
What is it called by the Indians? Disease Control -0.222222222222 What is it called by the Indians? -> $x: ($x, call by, cleveland) -> (Disease Control, was called in by, Cleveland doctors) -> Disease Control (3266ms)
What is it called by the Indians? federal troops -0.222222222222 What is it called by the Indians? -> $x: ($x, call by, cleveland) -> (federal troops, called out by, President Grover Cleveland) -> federal troops (3275ms)
What is it called by the Indians? Fai -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian press, referred to, Fai) -> Fai (3403ms)
What is it called by the Indians? the movie -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the movie, does n?t sound, Indian) -> the movie (3342ms)
What is it called by the Indians? Slate -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Slate, refers to, the American Indian Movement) -> Slate (3367ms)
What is it called by the Indians? the local newspapers -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the local newspapers, continued to refer to, the Indians) -> the local newspapers (3399ms)
What is it called by the Indians? Kalamkari -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Kalamkari, refers to, the Indian craft) -> Kalamkari (3318ms)
What is it called by the Indians? the narration -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the narration, sounds very, Indian- English) -> the narration (3371ms)
What is it called by the Indians? Hindu gods -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian clothes, even worshipped, Hindu gods) -> Hindu gods (3386ms)
What is it called by the Indians? Plains Indian Sign Language Glossed Text -0.666666666668 What 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)
What is it called by the Indians? 182/2 -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Mumbai Indians, raced to, 182/2) -> 182/2 (3395ms)
What is it called by the Indians? Etienne Lucier -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (Etienne Lucier, mentions his wife as, being a Spokane indian) -> Etienne Lucier (3342ms)
What is it called by the Indians? White poppy seeds -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (White poppy seeds, are often referred to as, ' Indian') -> White poppy seeds (3299ms)
What is it called by the Indians? a god -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the sun. Indians, worshiped the sun as, a god) -> a god (3291ms)
What is it called by the Indians? Iracema -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Iracema, refers to, an Indian female) -> Iracema (3352ms)
What is it called by the Indians? the indigenous population -0.666666666668 What 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)
What is it called by the Indians? a Maryland farmer -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (a Maryland farmer, raced, Indians) -> a Maryland farmer (3305ms)
What is it called by the Indians? Geologist -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Geologist, refer to, the earliest Indians) -> Geologist (3383ms)
What is it called by the Indians? the Platte River -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian word, refers to, the Platte River) -> the Platte River (3383ms)
What is it called by the Indians? a group -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, refer to, a group) -> a group (3362ms)
What is it called by the Indians? sweet potatoes -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, referred to, sweet potatoes) -> sweet potatoes (3380ms)
What is it called by the Indians? a common term -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (a common term, refered to, indians) -> a common term (3330ms)
What is it called by the Indians? B1-256 -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (B1-256, Sounds of, Indian America) -> B1-256 (3352ms)
What is it called by the Indians? The Muslims -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Muslims, referred to, the Indian people) -> The Muslims (3324ms)
What is it called by the Indians? Americans -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Americans, refer to, American Indians) -> Americans (3312ms)
What is it called by the Indians? the spirit -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshiped, the spirit) -> the spirit (3275ms)
What is it called by the Indians? demons -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, demons) -> demons (3399ms)
What is it called by the Indians? a warm , friendly officer -0.666666666668 What 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)
What is it called by the Indians? horses -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indians, have always raced, horses) -> horses (3403ms)
What is it called by the Indians? Canada -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Canada, have been referred to as, Indians) -> Canada (3318ms)
What is it called by the Indians? North India -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (North India, refer to, South Indians) -> North India (3401ms)
What is it called by the Indians? Redskin Indians -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Redskin Indians, refers to, literally skinning American Indians) -> Redskin Indians (3371ms)
What is it called by the Indians? HRT -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indian driver, raced for, HRT) -> HRT (3325ms)
What is it called by the Indians? the vernacular Indian languages -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, often refer to, the vernacular Indian languages) -> the vernacular Indian languages (3399ms)
What is it called by the Indians? The word REDSKINS -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The word REDSKINS, refers to, a DEAD Indian) -> The word REDSKINS (3342ms)
What is it called by the Indians? host -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian auto industry, is progressively racing ahead with, host) -> host (3389ms)
What is it called by the Indians? contact -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (contact, has referred to, Indians) -> contact (3318ms)
What is it called by the Indians? the Enemy -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indians, are still Racing, the Enemy) -> the Enemy (3393ms)
What is it called by the Indians? tsunamis -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (tsunamis, racing across, the Indian Ocean) -> tsunamis (3318ms)
What is it called by the Indians? zibethinus -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (zibethinus, refers to, the Indian civet) -> zibethinus (3318ms)
What is it called by the Indians? mamak -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (mamak, refers to, the Indian Muslims community) -> mamak (3291ms)
What is it called by the Indians? saints -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian villagers, can worship, saints) -> saints (3362ms)
What is it called by the Indians? Redskins -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Redskins, refer to, a DEAD Indian) -> Redskins (3389ms)
What is it called by the Indians? Tulsi -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (Tulsi, is worshipped in, Indian homes) -> Tulsi (3390ms)
What is it called by the Indians? the ?merciless Indian Savages -0.666666666668 What 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)
What is it called by the Indians? gold -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, gold) -> gold (3362ms)
What is it called by the Indians? DC 20013 -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (DC 20013, Sounds of, Indian Summer) -> DC 20013 (3383ms)
What is it called by the Indians? three times -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian Charlie, only raced, three times) -> three times (3318ms)
What is it called by the Indians? outfielder/DH Johnny Damon -0.666666666668 What 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)
What is it called by the Indians? the Vedas -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian?s Corporate Headquarters ?, refers to, the Vedas) -> the Vedas (3352ms)
What is it called by the Indians? Anasuya -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (Anasuya, sounds like, an Indian name) -> Anasuya (3318ms)
What is it called by the Indians? redskins -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to as, redskins) -> redskins (3357ms)
What is it called by the Indians? a sacred plant -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (a sacred plant, worshipped in, many Indian homes) -> a sacred plant (3342ms)
What is it called by the Indians? Hindus -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hindus, referred to, all Indians) -> Hindus (3376ms)
What is it called by the Indians? Nokia -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have worshiped, Nokia) -> Nokia (3380ms)
What is it called by the Indians? Charles Nagy -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Charles Nagy, was a young pitcher for, the Indians) -> Charles Nagy (3283ms)
What is it called by the Indians? a huge tidal wave -0.666666666668 What 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)
What is it called by the Indians? nearly every instance -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (nearly every instance, becomes the wife of, a blanket Indian) -> nearly every instance (3352ms)
What is it called by the Indians? Thayaparan -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (poor Indians, will soon be calling for, Thayaparan) -> Thayaparan (3336ms)
What is it called by the Indians? The child -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (The child, will legally still be called, an Indian) -> The child (3403ms)
What is it called by the Indians? the culture -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (South Indian culture, refers to, the culture) -> the culture (3383ms)
What is it called by the Indians? Hello Sunil? -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Hello Sunil?, sounds, an Indian name) -> Hello Sunil? (3401ms)
What is it called by the Indians? occasions Lewis and Clark -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (occasions Lewis and Clark, refer to, the Indians) -> occasions Lewis and Clark (3330ms)
What is it called by the Indians? a screen -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (The Indian government?s proposal, sounds more like, a screen) -> a screen (3395ms)
What is it called by the Indians? Progressive Field -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (the Indians, will now be called, Progressive Field) -> Progressive Field (3395ms)
What is it called by the Indians? hundreds -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (American Indian creationism ?, refers to, hundreds) -> hundreds (3325ms)
What is it called by the Indians? Time periods -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Time periods, refer to, the Indian fiscal year) -> Time periods (3395ms)
What is it called by the Indians? Chie -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, Chie) -> Chie (3312ms)
What is it called by the Indians? a contract extension -0.666666666668 What 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)
What is it called by the Indians? the guy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the guy, sounded, indian) -> the guy (3403ms)
What is it called by the Indians? Makula -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, are referred to as, Makula) -> Makula (3275ms)
What is it called by the Indians? the devil -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worship, the devil) -> the devil (3379ms)
What is it called by the Indians? the workers -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the workers, referred to as, ?Indians) -> the workers (3311ms)
What is it called by the Indians? the sun -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshipped, the sun) -> the sun (3401ms)
What is it called by the Indians? the customer service agent -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the customer service agent, sounded, Indian) -> the customer service agent (3330ms)
What is it called by the Indians? players -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Cleveland Indians, have a very good young crop of, players) -> players (3390ms)
What is it called by the Indians? American terms -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian programmer, sounds ridiculously low in, American terms) -> American terms (3318ms)
What is it called by the Indians? SKINNER -0.666666666668 What is it called by the Indians? -> $x: (indians, use to be call, $x) -> (the Indian Army, used to be called, SKINNER) -> SKINNER (3367ms)
What is it called by the Indians? the Antiquarian Society -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (the Antiquarian Society, Have our present race of, Indians) -> the Antiquarian Society (3386ms)
What is it called by the Indians? McMurry University athletes -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (McMurry University athletes, will still be called, " Indians) -> McMurry University athletes (3337ms)
What is it called by the Indians? Rafael Nadal -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Rafael Nadal, raced into, the Indian Wells quarter-finals) -> Rafael Nadal (3386ms)
What is it called by the Indians? a 14-4 lead -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indian, raced to, a 14-4 lead) -> a 14-4 lead (3399ms)
What is it called by the Indians? Harry -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (Harry, has a wife of, Malaysian Indian extraction) -> Harry (3283ms)
What is it called by the Indians? ?man meat -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (That Indian guy?s name, sounded like, ?man meat) -> ?man meat (3330ms)
What is it called by the Indians? the other matter -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian enrollment, referred to, the other matter) -> the other matter (3347ms)
What is it called by the Indians? the black giant -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the black giant, had been worshipped by, the Indians) -> the black giant (3379ms)
What is it called by the Indians? Native Americans -0.666666666668 What is it called by the Indians? -> $x: ($x, use to be call, indians) -> (Native Americans, used to be called, Indians) -> Native Americans (3357ms)
What is it called by the Indians? Samba -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (African Sounds Indian, Sounds, Samba) -> Samba (3330ms)
What is it called by the Indians? several countries -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (several countries, refer to, the Indian experience) -> several countries (3330ms)
What is it called by the Indians? the seventh day -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indian women, worship on, the seventh day) -> the seventh day (3347ms)
What is it called by the Indians? Ganesha -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The ancient indians, worshipped, Ganesha) -> Ganesha (3403ms)
What is it called by the Indians? the elvish tunes -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the elvish tunes, do sound sort of, Indian) -> the elvish tunes (3371ms)
What is it called by the Indians? the students -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (the students, raced to, an Indian restaurant) -> the students (3342ms)
What is it called by the Indians? The guy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The guy, sounded, Indian) -> The guy (3324ms)
What is it called by the Indians? first sight -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian, sounds at, first sight) -> first sight (3275ms)
What is it called by the Indians? di Resta -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (di Resta, would be racing for, the Indian-owned franchise) -> di Resta (3347ms)
What is it called by the Indians? God -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Inca Indians, worshipped the Sun as, God) -> God (3401ms)
What is it called by the Indians? a 20-6 lead -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (the Indians, raced out to, a 20-6 lead) -> a 20-6 lead (3403ms)
What is it called by the Indians? The song -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The song, refers to, Mardi Gras Indian groups) -> The song (3386ms)
What is it called by the Indians? Super Azarbayjan -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Super Azarbayjan, sounds like, an Indian super hero) -> Super Azarbayjan (3367ms)
What is it called by the Indians? line -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (line, are included other races such as, Indian) -> line (3352ms)
What is it called by the Indians? persons -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, refers to, persons) -> persons (3362ms)
What is it called by the Indians? EPIC -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (EPIC, refer to, the Hopi Indians) -> EPIC (3305ms)
What is it called by the Indians? the bass drum -0.666666666668 What 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)
What is it called by the Indians? Ogopogo -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, Ogopogo) -> Ogopogo (3299ms)
What is it called by the Indians? a Great Spirit -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshipped, a Great Spirit) -> a Great Spirit (3386ms)
What is it called by the Indians? the Creator -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (many American Indians, referred to, the Creator) -> the Creator (3352ms)
What is it called by the Indians? private e-mails -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (private e-mails, referred to, the Indians) -> private e-mails (3376ms)
What is it called by the Indians? the wind -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (The Indian, prefers the soft sound of, the wind) -> the wind (3399ms)
What is it called by the Indians? the walled city -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Ancient American Indian legends, refer to, the walled city) -> the walled city (3401ms)
What is it called by the Indians? the caste Chamar -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the way Indians, referred to, the caste Chamar) -> the caste Chamar (3336ms)
What is it called by the Indians? the Sun -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian no more, worshiped, the Sun) -> the Sun (3401ms)
What is it called by the Indians? odds -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (pokernews global new york indian casinos, greyhound racing, odds) -> odds (3383ms)
What is it called by the Indians? The Kundalini force -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Kundalini force, refers to, the ancient Indian idea) -> The Kundalini force (3336ms)
What is it called by the Indians? Rock & Roll -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (indigenous Native Indian, sounds with, Rock & Roll) -> Rock & Roll (3380ms)
What is it called by the Indians? Naxalism -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian leaders, have referred to, Naxalism) -> Naxalism (3403ms)
What is it called by the Indians? Hindu religion -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, is referring to, Hindu religion) -> Hindu religion (3305ms)
What is it called by the Indians? The author -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The author, refers to, the Indian) -> The author (3275ms)
What is it called by the Indians? ?amakulas -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (?amakulas, was used to refer to, Indians) -> ?amakulas (3399ms)
What is it called by the Indians? Ulips -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Ulips, are young products in, the Indian market) -> Ulips (3347ms)
What is it called by the Indians? First Nations -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Status Indian, refers to, First Nations) -> First Nations (3390ms)
What is it called by the Indians? a company -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (a company, will be called, an Indian company) -> a company (3299ms)
What is it called by the Indians? American actor Brian White -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (American actor Brian White, sounds upbeat about, Indian films) -> American actor Brian White (3379ms)
What is it called by the Indians? animals -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, animals) -> animals (3362ms)
What is it called by the Indians? Red Indians -0.666666666668 What 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)
What is it called by the Indians? Mamak -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Mamak, refers to, the Indian Muslims) -> Mamak (3399ms)
What is it called by the Indians? the Reservation -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian constitution, refers to, the Reservation) -> the Reservation (3336ms)
What is it called by the Indians? front -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian troops, kill young children right in, front) -> front (3357ms)
What is it called by the Indians? Oklahoma -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian, Sounds in, Oklahoma) -> Oklahoma (3371ms)
What is it called by the Indians? the tsunami -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (the tsunami, raced across, the Indian Ocean) -> the tsunami (3312ms)
What is it called by the Indians? Aani -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Aani, [is] a young girl in, a large Indian family) -> Aani (3371ms)
What is it called by the Indians? Agni -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian Brahmin priests, were worshiping, Agni) -> Agni (3305ms)
What is it called by the Indians? the Delta Force -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian television, referred to, the Delta Force) -> the Delta Force (3358ms)
What is it called by the Indians? a reptilian race -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian texts, refer to, a reptilian race) -> a reptilian race (3342ms)
What is it called by the Indians? Kamaljit -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Kamaljit, sounds though like, an Indian name) -> Kamaljit (3367ms)
What is it called by the Indians? drives -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Ounce ? sample and Indian sitar, sounds, drives) -> drives (3395ms)
What is it called by the Indians? the ornamental corn -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (?Indian Corn ?, refers to, the ornamental corn) -> the ornamental corn (3383ms)
What is it called by the Indians? disabilities -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian parents, have children/young adults with, disabilities) -> disabilities (3376ms)
What is it called by the Indians? The word -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The word, refers to, Indians) -> The word (3392ms)
What is it called by the Indians? Neal -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Neal, refers to, the Indian city) -> Neal (3376ms)
What is it called by the Indians? The caller -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The caller, sounded, Indian) -> The caller (3376ms)
What is it called by the Indians? Kerala -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Kerala, is a very young addition to, the Indian peninsula) -> Kerala (3312ms)
What is it called by the Indians? a contending position -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (INDIAN BROOM, raced to, a contending position) -> a contending position (3357ms)
What is it called by the Indians? The store manager -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The store manager, sounds, East Indian) -> The store manager (3390ms)
What is it called by the Indians? goalkeeper Sam Walker -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Indian team, YOUNG, goalkeeper Sam Walker) -> goalkeeper Sam Walker (3299ms)
What is it called by the Indians? the location -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Chippewa Indians, referred to, the location) -> the location (3390ms)
What is it called by the Indians? the Great Spirit -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, Worshiped, the Great Spirit) -> the Great Spirit (3395ms)
What is it called by the Indians? The agency -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (The agency, will reportedly be called, the Indian Agency) -> The agency (3376ms)
What is it called by the Indians? down -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, would send half a dozen of their young Lads, down) -> down (3347ms)
What is it called by the Indians? the Mission Church -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Wyandot Indians, worshipped at, the Mission Church) -> the Mission Church (3386ms)
What is it called by the Indians? rats -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, always worshipped, rats) -> rats (3336ms)
What is it called by the Indians? the indigenous people -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the indigenous people, are sometimes referred to as, Indians) -> the indigenous people (3283ms)
What is it called by the Indians? The Swami -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Swami, referred to, the Indian scientist) -> The Swami (3371ms)
What is it called by the Indians? Neem -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Ancient Indian texts, refer to, Neem) -> Neem (3367ms)
What is it called by the Indians? Uganda -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian and Chinese companies, have joined the race for, Uganda) -> Uganda (3357ms)
What is it called by the Indians? the way drums -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the way drums, can sound in, Indian classical music) -> the way drums (3371ms)
What is it called by the Indians? a quaver -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a quaver, sounded a little like, American Indian song) -> a quaver (3399ms)
What is it called by the Indians? no monsoon -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (no monsoon, must sound quite incredible to, the indian mind) -> no monsoon (3386ms)
What is it called by the Indians? town -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (town, sounds different from, the Indian food) -> town (3305ms)
What is it called by the Indians? the same kind -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the same kind, are still worshipped in, Indian villages today) -> the same kind (3386ms)
What is it called by the Indians? the Caribbean fuse -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (classical Indian music, here sounds from, the Caribbean fuse) -> the Caribbean fuse (3393ms)
What is it called by the Indians? The name sepoy -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The name sepoy, refers to, the Indian soldiers) -> The name sepoy (3357ms)
What is it called by the Indians? a fanged dwarf villain -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (a fanged dwarf villain, worshipped by, Inca Indians) -> a fanged dwarf villain (3367ms)
What is it called by the Indians? Hanson -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hanson, referred to, American Indian resistance) -> Hanson (3291ms)
What is it called by the Indians? the pale skin -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian society, generally worships, the pale skin) -> the pale skin (3283ms)
What is it called by the Indians? MARRIAGE -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (MARRIAGE, 're just sounding like, a traditional Indian housewife) -> MARRIAGE (3392ms)
What is it called by the Indians? The latter -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The latter, refer to, the Indian Army) -> The latter (3362ms)
What is it called by the Indians? asleep -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (the Indians, were sound, asleep) -> asleep (3383ms)
What is it called by the Indians? Fort Miami -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Fleeing Indians, raced toward, Fort Miami) -> Fort Miami (3371ms)
What is it called by the Indians? a French man -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a French man, sounds astonishingly like, an Indian) -> a French man (3401ms)
What is it called by the Indians? the beat -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the beat, sounds, a little West Indian) -> the beat (3330ms)
What is it called by the Indians? Vancouver -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (Vancouver, sounds like, Indian pop) -> Vancouver (3395ms)
What is it called by the Indians? the altar -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the altar, is worshiped in, most Indian people) -> the altar (3403ms)
What is it called by the Indians? Jamaica -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (?British West Indian colonies ?, refers to, Jamaica) -> Jamaica (3318ms)
What is it called by the Indians? either sex -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (either sex, have been taken prisoners young by, Indians) -> either sex (3299ms)
What is it called by the Indians? IUP -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (IUP, still will be called, the Indians) -> IUP (3376ms)
What is it called by the Indians? side -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the old Church white men and Indians, worshiped, side) -> side (3367ms)
What is it called by the Indians? Herb -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (?The Indians, won the race for, Herb) -> Herb (3393ms)
What is it called by the Indians? the fusion -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (the fusion, sounds like, traditional Indian music) -> the fusion (3389ms)
What is it called by the Indians? earlier -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Old Indian Lane, referred to, earlier) -> earlier (3401ms)
What is it called by the Indians? the bird -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the bird, was once worshipped by, the Mayan and Aztec Indians) -> the bird (3275ms)
What is it called by the Indians? Telugu and Kannada -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (two Indians translators, recorded sounds in, Telugu and Kannada) -> Telugu and Kannada (3399ms)
What is it called by the Indians? Kali -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an ancient Indian religious organization, worshiped, Kali) -> Kali (3371ms)
What is it called by the Indians? the developments -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian official, referred to, the developments) -> the developments (3305ms)
What is it called by the Indians? the goddess -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian cult, worshiped, the goddess) -> the goddess (3312ms)
What is it called by the Indians? the staple crops -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Early Indians, referred to, the staple crops) -> the staple crops (3352ms)
What is it called by the Indians? Jewish Standard Time -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Jewish Standard Time, sounds a lot like, Indian Standard Time) -> Jewish Standard Time (3362ms)
What is it called by the Indians? the variegated variety -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian corn, refers to, the variegated variety) -> the variegated variety (3352ms)
What is it called by the Indians? dentistry -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (dentistry, refer to, the Indian Dental Association) -> dentistry (3311ms)
What is it called by the Indians? control ? -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (The Indians, have several young players under, control ?) -> control ? (3283ms)
What is it called by the Indians? the caller -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the caller, sounds, Indian) -> the caller (3395ms)
What is it called by the Indians? a blast -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a blast, sounded like, an Indian snake charmer) -> a blast (3383ms)
What is it called by the Indians? suicidal -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (the Indian highways, will normally be called, suicidal) -> suicidal (3305ms)
What is it called by the Indians? soulful hip hop -0.666666666668 What 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)
What is it called by the Indians? Indians -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (the Indian Navy, will sound naive to, Indians) -> Indians (3312ms)
What is it called by the Indians? the terms -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the terms, refer generally to, Indians) -> the terms (3393ms)
What is it called by the Indians? indigenous peoples -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian government, refers to, indigenous peoples) -> indigenous peoples (3299ms)
What is it called by the Indians? Australia -0.666666666668 What is it called by the Indians? -> $x: (indians, wife, $x) -> (an Indian, killed his wife in, Australia) -> Australia (3324ms)
What is it called by the Indians? the goddess of death -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian cult, worshiped, the goddess of death) -> the goddess of death (3312ms)
What is it called by the Indians? Suneet and Raja Tulli -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to as, Suneet and Raja Tulli) -> Suneet and Raja Tulli (3347ms)
What is it called by the Indians? reelection -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (reelection, referred to, an Indian employee) -> reelection (3324ms)
What is it called by the Indians? the goddess Huitzilopochotli -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Zapotec Indians, worshipped, the goddess Huitzilopochotli) -> the goddess Huitzilopochotli (3379ms)
What is it called by the Indians? Eskimos -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (" Indians, refers to, Eskimos) -> Eskimos (3305ms)
What is it called by the Indians? Mango shake -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Mango shake, sounds perfect for, the Indian summer) -> Mango shake (3399ms)
What is it called by the Indians? PNC Park -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (PNC Park, sounds exceedingly similar to, the Indians) -> PNC Park (3367ms)
What is it called by the Indians? a place -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (an Indian term, referred to, a place) -> a place (3383ms)
What is it called by the Indians? Wen -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Wen, sounded unhappy with, the Indian media) -> Wen (3311ms)
What is it called by the Indians? Maguire -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Maguire, refers to, the Indians) -> Maguire (3376ms)
What is it called by the Indians? The Stallions -0.666666666668 What is it called by the Indians? -> $x: ($x, use to be call, indians) -> (The Stallions, used to be called, the Indians) -> The Stallions (3299ms)
What is it called by the Indians? I?ve -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (I?ve, always enjoyed the sound of, Indian music) -> I?ve (3318ms)
What is it called by the Indians? usually -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (an Indian, is referred to, usually) -> usually (3399ms)
What is it called by the Indians? British Sahibs -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, were referred to by, British Sahibs) -> British Sahibs (3399ms)
What is it called by the Indians? the band -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred both to, the band) -> the band (3275ms)
What is it called by the Indians? Taylor -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Native-Indian-like tom-tom, sounds from, Taylor) -> Taylor (3379ms)
What is it called by the Indians? terms -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (terms, refers to, Indians) -> terms (3283ms)
What is it called by the Indians? the treaty -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the treaty, refers to, ?Indian Kings and Queens?) -> the treaty (3352ms)
What is it called by the Indians? a younger version -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Ten Little Indians, sounds much like, a younger version) -> a younger version (3403ms)
What is it called by the Indians? term ?tribal? -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (term ?tribal?, refers to, an Indian tribe) -> term ?tribal? (3362ms)
What is it called by the Indians? The victim -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (The victim, was the ex-wife of, former Indian Ambassador) -> The victim (3403ms)
What is it called by the Indians? the saloon -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indians, then had raced for, the saloon) -> the saloon (3283ms)
What is it called by the Indians? the phone -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the phone, sounded, Indian) -> the phone (3347ms)
What is it called by the Indians? The Marietta Times THUD! -0.666666666668 What 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)
What is it called by the Indians? the alarm bells -0.666666666668 What 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)
What is it called by the Indians? Tituba -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (John Indian, playfully refers to, Tituba) -> Tituba (3352ms)
What is it called by the Indians? The voice -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (The voice, sounds like, old Indian) -> The voice (3392ms)
What is it called by the Indians? Kun Faya Kun -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Kun Faya Kun, sound like, an Indian melody) -> Kun Faya Kun (3383ms)
What is it called by the Indians? the mountains and valleys -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, referred to, the mountains and valleys) -> the mountains and valleys (3401ms)
What is it called by the Indians? Switzerland -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Switzerland, sounds to, Indians) -> Switzerland (3312ms)
What is it called by the Indians? the Venezuelan goddess -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the Venezuelan goddess, was worshipped by, the native Indians) -> the Venezuelan goddess (3362ms)
What is it called by the Indians? pictures -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian grammarian, refers to, pictures) -> pictures (3275ms)
What is it called by the Indians? ?Jefferson -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (?Jefferson, was referring only to, Indians) -> ?Jefferson (3389ms)
What is it called by the Indians? Mr. Abramoff -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Mr. Abramoff, referred to, these Indians) -> Mr. Abramoff (3357ms)
What is it called by the Indians? a deity -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian toddler Lakshmi Tatma, worshipped as, a deity) -> a deity (3389ms)
What is it called by the Indians? a date -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian policewomen, attacked a young woman on, a date) -> a date (3386ms)
What is it called by the Indians? First Nations peoples -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (First Nations peoples, refers to, the Indian people) -> First Nations peoples (3386ms)
What is it called by the Indians? a little trumpet -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (The Indians, sounded, a little trumpet) -> a little trumpet (3352ms)
What is it called by the Indians? the other doctors -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the other doctors, refer to, an Indian doctor) -> the other doctors (3337ms)
What is it called by the Indians? water -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (these Indians, worship, water) -> water (3392ms)
What is it called by the Indians? Eastern -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Eastern, sounds, Indian tabla player) -> Eastern (3336ms)
What is it called by the Indians? the Lo-Shu -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The ancient Indian seers, referred to, the Lo-Shu) -> the Lo-Shu (3383ms)
What is it called by the Indians? The last validation -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The last validation, refers to, my Indian heritage) -> The last validation (3324ms)
What is it called by the Indians? South Asia -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (South Asia, refers to, the Indian subcontinent) -> South Asia (3362ms)
What is it called by the Indians? March -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (An Indians Rep, will call you in, March) -> March (3376ms)
What is it called by the Indians? Gandhi&emdash ;he -0.666666666668 What 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)
What is it called by the Indians? Indica -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Indica, refers to, its Indian origin) -> Indica (3342ms)
What is it called by the Indians? the ballots -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the ballots, referred to, Indians) -> the ballots (3386ms)
What is it called by the Indians? 1 Cylan -0.666666666668 What 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)
What is it called by the Indians? a tea -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (a tea, sounded, Indian i .e) -> a tea (3403ms)
What is it called by the Indians? a contract -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, have signed a young player to, a contract) -> a contract (3392ms)
What is it called by the Indians? the Hindu demigods -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian cricketers, are worshipped like, the Hindu demigods) -> the Hindu demigods (3324ms)
What is it called by the Indians? snakes -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, snakes) -> snakes (3403ms)
What is it called by the Indians? the same legendary spot -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indians, refer to, the same legendary spot) -> the same legendary spot (3362ms)
What is it called by the Indians? lanes -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian cab-drivers, raced across, lanes) -> lanes (3330ms)
What is it called by the Indians? bad today -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian people, does n?t sound so, bad today) -> bad today (3291ms)
What is it called by the Indians? the island -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indians, referred to, the island) -> the island (3299ms)
What is it called by the Indians? historical figures -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Old Indian Days, refers to, historical figures) -> historical figures (3371ms)
What is it called by the Indians? a cow horn -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian, sounded, a cow horn) -> a cow horn (3403ms)
What is it called by the Indians? names -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (names, referring to, Indians) -> names (3376ms)
What is it called by the Indians? the term -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the term, often refers to, Indians) -> the term (3336ms)
What is it called by the Indians? the withdrawal -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian leaders, refers to, the withdrawal) -> the withdrawal (3291ms)
What is it called by the Indians? participation -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian economy, will be sounded with, participation) -> participation (3380ms)
What is it called by the Indians? the earth -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (American Indian traditions, refer to, the earth) -> the earth (3299ms)
What is it called by the Indians? Rahul -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Rahul, refers to, a prominent Indian actor) -> Rahul (3376ms)
What is it called by the Indians? Junglee .com -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (their Indian branch, will be called, Junglee .com) -> Junglee .com (3393ms)
What is it called by the Indians? Mound builders -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Mound builders, were a different race than, Indians) -> Mound builders (3395ms)
What is it called by the Indians? Abramoff -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Abramoff, referred to, his Indian clients) -> Abramoff (3392ms)
What is it called by the Indians? a 6th grade teacher -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (a 6th grade teacher, referred to, American Indians) -> a 6th grade teacher (3386ms)
What is it called by the Indians? Dev? -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian context, is worship of, Dev?) -> Dev? (3352ms)
What is it called by the Indians? The Hot Stone -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Hot Stone, refers to, the Oneida Indians) -> The Hot Stone (3283ms)
What is it called by the Indians? the Mexican cactus -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the Mexican cactus, was once worshiped by, Indian tribes) -> the Mexican cactus (3312ms)
What is it called by the Indians? the gods -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the gods, worshipped by, the Indians) -> the gods (3380ms)
What is it called by the Indians? Even the East India Company -0.666666666668 What 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)
What is it called by the Indians? the new King -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (Indian oligarch Tata, is sounding like, the new King) -> the new King (3347ms)
What is it called by the Indians? The original phrasing -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (The original phrasing, sounds like, the Indian band) -> The original phrasing (3390ms)
What is it called by the Indians? the music players -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (the music players, sounded like, Indian words) -> the music players (3357ms)
What is it called by the Indians? risk -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian sensibilities, puts young lives at, risk) -> risk (3403ms)
What is it called by the Indians? April 9 , 2010 -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian Express Eco, Sounds, April 9 , 2010) -> April 9 , 2010 (3275ms)
What is it called by the Indians? trees -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Native American Indians, refer to, trees) -> trees (3358ms)
What is it called by the Indians? Bengalis -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Bengalis, are the same race as, Indians) -> Bengalis (3367ms)
What is it called by the Indians? a defiant note -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian official, sounded, a defiant note) -> a defiant note (3395ms)
What is it called by the Indians? rivers -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have worshipped, rivers) -> rivers (3401ms)
What is it called by the Indians? One Maori site -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (One Maori site, referred to, Indian ambition) -> One Maori site (3367ms)
What is it called by the Indians? Snack -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Snack, enjoy the sounds of, live Indian music) -> Snack (3393ms)
What is it called by the Indians? Dalits -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Bigoted Indians, refer to, Dalits) -> Dalits (3362ms)
What is it called by the Indians? Atul -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Atul, is a young student of, Indian origin) -> Atul (3352ms)
What is it called by the Indians? the Formula 1 -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian GP, was the smooth race in, the Formula 1) -> the Formula 1 (3342ms)
What is it called by the Indians? spiced tea -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, normally refer to, spiced tea) -> spiced tea (3383ms)
What is it called by the Indians? Ankytrixx -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Ankytrixx, truly represents the sound of, Indian EDM.) -> Ankytrixx (3352ms)
What is it called by the Indians? Buddh International Circuit -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (2011 Indian Grand Prix, Race Track, Buddh International Circuit) -> Buddh International Circuit (3367ms)
What is it called by the Indians? a song sequence -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian movies, refers to, a song sequence) -> a song sequence (3324ms)
What is it called by the Indians? cricket -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (cricket, is worshiped in, India and Indians) -> cricket (3330ms)
What is it called by the Indians? Radha Krishna Portraits -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian love, worship, Radha Krishna Portraits) -> Radha Krishna Portraits (3367ms)
What is it called by the Indians? The Buddha -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Buddha, refers to, an Indian sage) -> The Buddha (3357ms)
What is it called by the Indians? Fools Crow -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Fools Crow, is a young warrior in, the Blackfeet Indian tribe) -> Fools Crow (3275ms)
What is it called by the Indians? garlic -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Egyptian and Indian cultures, referred to, garlic) -> garlic (3383ms)
What is it called by the Indians? one group -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshiped, one group) -> one group (3401ms)
What is it called by the Indians? corn and corn meal -0.666666666668 What 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)
What is it called by the Indians? the work -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the work, refers to, Indian) -> the work (3386ms)
What is it called by the Indians? Monkey God -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian Hindu, worships, Monkey God) -> Monkey God (3401ms)
What is it called by the Indians? one Supreme Being -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worship, one Supreme Being) -> one Supreme Being (3386ms)
What is it called by the Indians? protesters -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (protesters, sounds like, a Mardi Gras Indians song) -> protesters (3389ms)
What is it called by the Indians? a 5-1 lead -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (the Indian, raced to, a 5-1 lead) -> a 5-1 lead (3347ms)
What is it called by the Indians? The helicopters -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The helicopters, make the sound of, American Indian war drums) -> The helicopters (3342ms)
What is it called by the Indians? a body -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian people, refers to, a body) -> a body (3299ms)
What is it called by the Indians? Basil -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (Basil, is worshipped in, Indian culture) -> Basil (3380ms)
What is it called by the Indians? the poem -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the poem, refer to, Indian people) -> the poem (3337ms)
What is it called by the Indians? the bombers -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (the bombers, was a young man of, West Indian descent) -> the bombers (3336ms)
What is it called by the Indians? The Spanish -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Spanish, referred to, Indians) -> The Spanish (3324ms)
What is it called by the Indians? Coalinga -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (Coalinga, sounds like, an Indian name) -> Coalinga (3376ms)
What is it called by the Indians? the melodies -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian, sounds round out, the melodies) -> the melodies (3312ms)
What is it called by the Indians? a human -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a human, sounded like, an Indian accent) -> a human (3299ms)
What is it called by the Indians? Payuta -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Payuta, blends the sound of, the Indian sitar) -> Payuta (3379ms)
What is it called by the Indians? ?Hindus ? -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, were referred to as, ?Hindus ?) -> ?Hindus ? (3275ms)
What is it called by the Indians? different churches -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (West Indians, worshipped in, different churches) -> different churches (3390ms)
What is it called by the Indians? the shore -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indians, raced to, the shore) -> the shore (3389ms)
What is it called by the Indians? White Sage -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Cahuilla Indians, referred to, White Sage) -> White Sage (3291ms)
What is it called by the Indians? Ecuador -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Ecuador, are a mixed race of, the original Ameri-Indians) -> Ecuador (3318ms)
What is it called by the Indians? a road accident -0.666666666668 What 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)
What is it called by the Indians? Kurds -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Kurds, are a mixed race of, Indians) -> Kurds (3337ms)
What is it called by the Indians? the accordian -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the accordian, sounds from, the Indian Ocean) -> the accordian (3291ms)
What is it called by the Indians? Six Sigma and -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indian?s, also referred to, Six Sigma and) -> Six Sigma and (3342ms)
What is it called by the Indians? the cavarlymen -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, the cavarlymen) -> the cavarlymen (3336ms)
What is it called by the Indians? two particular local issues -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian Affairs, refers to, two particular local issues) -> two particular local issues (3358ms)
What is it called by the Indians? the ' Mother -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the ancient Indians, worshiped, the ' Mother) -> the ' Mother (3376ms)
What is it called by the Indians? Soundtrack -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Soundtrack, is deeply relaxing sound of, Indian Creek Canyon) -> Soundtrack (3401ms)
What is it called by the Indians? the Lenape -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Other Indians, referred to, the Lenape) -> the Lenape (3367ms)
What is it called by the Indians? 2 percussion -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (2 percussion, Sounds for, Indian music) -> 2 percussion (3318ms)
What is it called by the Indians? LMC -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (LMC, will continue to be called, a Indians) -> LMC (3312ms)
What is it called by the Indians? the general policy and laws -0.666666666668 What 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)
What is it called by the Indians? Rs -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Rs, refers to, the Indian currency) -> Rs (3275ms)
What is it called by the Indians? India -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, India) -> India (3401ms)
What is it called by the Indians? in -0.666666666668 What is it called by the Indians? -> $x: (indians, wife, $x) -> (an Indian, may bring only one wife, in) -> in (3305ms)
What is it called by the Indians? The ancient Greeks -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The ancient Greeks, referred to, the Indians) -> The ancient Greeks (3395ms)
What is it called by the Indians? literally skinning American Indians -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Redskin Indians, refers to, literally skinning American Indians) -> literally skinning American Indians (3330ms)
What is it called by the Indians? the coconut -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, refer to, the coconut) -> the coconut (3347ms)
What is it called by the Indians? a member -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, refers to, a member) -> a member (3386ms)
What is it called by the Indians? Japan -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Thursday Indian driver Narain Karthikeyan, now raced in, Japan) -> Japan (3291ms)
What is it called by the Indians? often -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship India, often) -> often (3325ms)
What is it called by the Indians? the Spanish and Columbus -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the native AmerIndians, worshiped, the Spanish and Columbus) -> the Spanish and Columbus (3383ms)
What is it called by the Indians? the beginning -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (the beginning, sounded like, an indian telemarketer) -> the beginning (3396ms)
What is it called by the Indians? Hawthorne briefly -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hawthorne briefly, refers to, Indians) -> Hawthorne briefly (3358ms)
What is it called by the Indians? depicts -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (depicts, refers to, an American Indian tribe) -> depicts (3393ms)
What is it called by the Indians? a Laloo Prasad Yadav -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have been worshipping, a Laloo Prasad Yadav) -> a Laloo Prasad Yadav (3399ms)
What is it called by the Indians? a woman -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (a woman, refers to, Indians) -> a woman (3305ms)
What is it called by the Indians? cow -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worship, cow) -> cow (3367ms)
What is it called by the Indians? a guy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (a guy, sound like, an Indian) -> a guy (3399ms)
What is it called by the Indians? An alert -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (An alert, was sounded in, the Indian capital) -> An alert (3283ms)
What is it called by the Indians? Kannada -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian English, sounds the same as, Kannada) -> Kannada (3376ms)
What is it called by the Indians? weird -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (weird, sounds like, an Indian snake-charmer) -> weird (3336ms)
What is it called by the Indians? a single season -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (33-year-old Indian Karthikeyan, raced, a single season) -> a single season (3393ms)
What is it called by the Indians? Thome -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Thome, was a young player with, the Cleveland Indians) -> Thome (3275ms)
What is it called by the Indians? the Indian Spice Enspicopedia -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian spices, refer to, the Indian Spice Enspicopedia) -> the Indian Spice Enspicopedia (3401ms)
What is it called by the Indians? Den Paradera -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Den Paradera, refers to, Paraguiri Indians) -> Den Paradera (3312ms)
What is it called by the Indians? Ashwagandha -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Ashwagandha, is referred to as, Indian Ginseng) -> Ashwagandha (3395ms)
What is it called by the Indians? a Greek word -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (Shawnee Indian Monocacy, sounds like, a Greek word) -> a Greek word (3362ms)
What is it called by the Indians? the sky -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (the sky, became the wife of, that same Alabama Indian) -> the sky (3347ms)
What is it called by the Indians? words -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (words, sounded like, an Indian language) -> words (3386ms)
What is it called by the Indians? a great game -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (New MOT Grunfeld Indian, Sounds like, a great game) -> a great game (3403ms)
What is it called by the Indians? Flat racing -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Flat racing, Horse races, McDowell's Indian Derby) -> Flat racing (3352ms)
What is it called by the Indians? Kissinger -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Kissinger, referred to, the Indians) -> Kissinger (3392ms)
What is it called by the Indians? Quanna Pakka -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (a Cherokee Indian, sounds like, Quanna Pakka) -> Quanna Pakka (3379ms)
What is it called by the Indians? the Indian Navy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the Indian Navy, will sound naive to, Indians) -> the Indian Navy (3352ms)
What is it called by the Indians? Christine Herdman -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Christine Herdman, referred to, Indian mascots) -> Christine Herdman (3283ms)
What is it called by the Indians? devils -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, devils) -> devils (3283ms)
What is it called by the Indians? Tamil names -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (the Indian names, mostly sounded like, Tamil names) -> Tamil names (3404ms)
What is it called by the Indians? an hour -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (these Indians, sounded the alarm about, an hour) -> an hour (3275ms)
What is it called by the Indians? the native people -0.666666666668 What 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)
What is it called by the Indians? the surge -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian, will be young as well as, the surge) -> the surge (3291ms)
What is it called by the Indians? the role -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The ancient Indian texts, referred to, the role) -> the role (3324ms)
What is it called by the Indians? Ohio -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Ohio, is the sound of, an indian yawning) -> Ohio (3347ms)
What is it called by the Indians? a newspaper reporter -0.666666666668 What is it called by the Indians? -> $x: (indians, wife, $x) -> (The Indian chief, introduced his wife to, a newspaper reporter) -> a newspaper reporter (3380ms)
What is it called by the Indians? the pack -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian companies, could eventually race ahead of, the pack) -> the pack (3305ms)
What is it called by the Indians? a snake god -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (a snake god, worshiped in, West Indian) -> a snake god (3342ms)
What is it called by the Indians? tibetan -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (tibetan, sounds, half chinese half indian) -> tibetan (3401ms)
What are pathogens? Specific diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Specific diseases, caused by, invasive pathogens) -> Specific diseases (7929ms)
What are pathogens? Diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Diseases, caused by, plant pathogens) -> Diseases (9629ms)
What are pathogens? ?An illness 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (?An illness, can be caused by, pathogens) -> ?An illness (5630ms)
What are pathogens? an infectious disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (an infectious disease, caused by, a pathogen) -> an infectious disease (5630ms)
What are pathogens? the condition 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the condition, is caused by, pathogens) -> the condition (6500ms)
What are pathogens? the root 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the root, causes of, pathogens) -> the root (8502ms)
What are pathogens? Human illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Human illnesses, caused by, foodborne pathogens) -> Human illnesses (6500ms)
What are pathogens? humans 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (humans, are caused by, pathogens) -> humans (3023ms)
What are pathogens? campylobacter 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (campylobacter, is a bacteria that causes, Pathogens) -> campylobacter (8574ms)
What are pathogens? The most diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The most diseases, are caused due to, pathogens) -> The most diseases (9629ms)
What are pathogens? a bacterial infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a bacterial infection, caused by, a pathogen) -> a bacterial infection (6672ms)
What are pathogens? a fungal infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a fungal infection, caused by, the pathogen) -> a fungal infection (9629ms)
What are pathogens? listeria 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (listeria, is a bacteria that causes, Pathogens) -> listeria (9229ms)
What are pathogens? Inflammation 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Inflammation, caused by, a pathogen) -> Inflammation (9629ms)
What are pathogens? the new diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the new diseases, have been caused by, pathogens) -> the new diseases (6500ms)
What are pathogens? more than 650 different disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (more than 650 different disease, causing, pathogens) -> more than 650 different disease (7062ms)
What are pathogens? chronic diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (chronic diseases, are caused by, pathogens) -> chronic diseases (3640ms)
What are pathogens? rots 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (rots, occur caused by, pathogens) -> rots (6672ms)
What are pathogens? humanity 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (humanity, are caused by, pathogens) -> humanity (9229ms)
What are pathogens? the yield losses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the yield losses, caused by, the pathogen) -> the yield losses (9629ms)
What are pathogens? the mortality 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the mortality, caused by, the pathogen) -> the mortality (7928ms)
What are pathogens? Malaria 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Malaria, is caused by, pathogens) -> Malaria (8573ms)
What are pathogens? infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infection, caused by, various pathogens) -> infection (3023ms)
What are pathogens? illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (illnesses, caused by, waterborne pathogens) -> illnesses (7928ms)
What are pathogens? Disease outbreaks 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Disease outbreaks, caused by, waterborne pathogens) -> Disease outbreaks (5630ms)
What are pathogens? shigella 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (shigella, is a bacteria that causes, Pathogens) -> shigella (8573ms)
What are pathogens? infection and damage 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infection and damage, is caused by, pathogens) -> infection and damage (7928ms)
What are pathogens? disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (disease, could be caused by, pathogens) -> disease (7062ms)
What are pathogens? plants 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (plants, are caused by, pathogens) -> plants (8574ms)
What are pathogens? Mastitis 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Mastitis, caused by, environmental pathogens) -> Mastitis (9629ms)
What are pathogens? illness 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (illness, can be caused by, pathogens) -> illness (7928ms)
What are pathogens? the Intercept Blood System 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the Intercept Blood System, causes, pathogens) -> the Intercept Blood System (9228ms)
What are pathogens? Illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Illnesses, caused by, pathogens) -> Illnesses (3640ms)
What are pathogens? bed bugs 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (bed bugs, cause, harm or spread pathogens) -> bed bugs (9229ms)
What are pathogens? viral meningitis 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (viral meningitis, is usually caused by, pathogens) -> viral meningitis (6500ms)
What are pathogens? the lower respiratory tract 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the lower respiratory tract, caused by, microbial pathogens) -> the lower respiratory tract (7928ms)
What are pathogens? mastitis 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (mastitis, causing, pathogens) -> mastitis (8502ms)
What are pathogens? Zoonotic diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Zoonotic diseases, are caused by, pathogens) -> Zoonotic diseases (7928ms)
What are pathogens? IL-10 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (IL-10, could be caused by, pathogens) -> IL-10 (3023ms)
What are pathogens? The diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The diseases, cause, these pathogens) -> The diseases (6672ms)
What are pathogens? diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (diseases, caused by, enteric pathogens) -> diseases (8502ms)
What are pathogens? Thinkable drugs 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Thinkable drugs, cause, pathogen like symptoms) -> Thinkable drugs (7062ms)
What are pathogens? seedlings 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (seedlings, caused, soil borne pathogens) -> seedlings (7062ms)
What are pathogens? diarrhea 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (diarrhea, is caused by, pathogens) -> diarrhea (6672ms)
What are pathogens? Upper Respiratory Tract Disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Upper Respiratory Tract Disease, caused by, the pathogen) -> Upper Respiratory Tract Disease (9629ms)
What are pathogens? Do bed bugs 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Do bed bugs, cause, harm or spread pathogens) -> Do bed bugs (8573ms)
What are pathogens? the infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the infection, caused, pathogens) -> the infection (9228ms)
What are pathogens? Infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Infection, is caused by, pathogens) -> Infection (6673ms)
What are pathogens? human cancer cases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (human cancer cases, were caused by, pathogens) -> human cancer cases (9629ms)
What are pathogens? Powdery mildew 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Powdery mildew, caused by, the pathogen) -> Powdery mildew (9228ms)
What are pathogens? Plant diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Plant diseases, are caused by, pathogens) -> Plant diseases (8502ms)
What are pathogens? 19th century cities 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (19th century cities, were caused by, pathogens) -> 19th century cities (7062ms)
What are pathogens? Staphylococcus 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Staphylococcus, is a bacteria that causes, Pathogens) -> Staphylococcus (7062ms)
What are pathogens? a disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a disease, caused by, some pathogen) -> a disease (3640ms)
What are pathogens? immunosuppression 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (immunosuppression, is also frequently caused by, pathogens) -> immunosuppression (3640ms)
What are pathogens? Disease symptoms 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Disease symptoms, can indeed be caused by, pathogens) -> Disease symptoms (3640ms)
What are pathogens? sensitivity response 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (sensitivity response, can cause a shift in, pathogen) -> sensitivity response (3639ms)
What are pathogens? Disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Disease, caused by, a pathogen) -> Disease (8574ms)
What are pathogens? a continuum of disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a continuum of disease, caused by, specific pathogens) -> a continuum of disease (9229ms)
What are pathogens? Human diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Human diseases, caused by, bacterial pathogens) -> Human diseases (3024ms)
What are pathogens? The disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The disease, is caused by, pathogens) -> The disease (8502ms)
What are pathogens? infections 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infections, caused by, intracellular pathogens) -> infections (6500ms)
What are pathogens? a condition 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a condition, caused by, the pathogen) -> a condition (3640ms)
What are pathogens? Immunology & An infectious disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Immunology & An infectious disease, is caused by, pathogens) -> Immunology & An infectious disease (8502ms)
What are pathogens? an infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (an infection, caused by, pathogens) -> an infection (9629ms)
What are pathogens? water related disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (water related disease, is caused by, pathogens) -> water related disease (3023ms)
What are pathogens? A technology 1.4444444444409998 What are pathogens? -> $x: ($x, invent, pathogen) -> (A technology, invented to detect, airborne terrorist pathogens) -> A technology (5630ms)
What are pathogens? hospital infections 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (hospital infections, are currently caused by, pathogens) -> hospital infections (6672ms)
What are pathogens? brain diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (brain diseases, actually ARE caused by, pathogens) -> brain diseases (9229ms)
What are pathogens? The illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The illnesses, caused by, pathogens) -> The illnesses (5630ms)
What are pathogens? the harm 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the harm, caused by, pathogens) -> the harm (8573ms)
What are pathogens? the inflammation 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the inflammation, was caused by, pathogens) -> the inflammation (8502ms)
What are pathogens? infectious diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infectious diseases, are caused by, pathogens) -> infectious diseases (9629ms)
What are pathogens? Sudden Oak Death 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Sudden Oak Death, caused by, the pathogen) -> Sudden Oak Death (9629ms)
What are pathogens? the problem 1.44444444444 What are pathogens? -> $x: ($x, re, pathogen) -> (the problem, were re-introduced as, the pathogen) -> the problem (9629ms)
What are pathogens? several others 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (several others, is most interested in, human pathogens) -> several others (9766ms)
What are pathogens? The sand layer 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The sand layer, is extremely effective in removing, pathogens) -> The sand layer (9796ms)
What are pathogens? plasmatoctyes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (plasmatoctyes, play a significant role in, pathogen defence) -> plasmatoctyes (9899ms)
What are pathogens? viruses 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (viruses, are included in, the pathogens) -> viruses (9766ms)
What are pathogens? the control 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the control, showed a natural decline in, the pathogen) -> the control (9825ms)
What are pathogens? no means 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (no means, is a magic bullet in, pathogen control) -> no means (9853ms)
What are pathogens? putative orthologs 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (putative orthologs, found in, plant pathogens) -> putative orthologs (9796ms)
What are pathogens? the leaves 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the leaves, were effective in controlling, bacterial pathogens) -> the leaves (9825ms)
What are pathogens? milk 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (milk, can target multiple early steps in, pathogen replication) -> milk (9766ms)
What are pathogens? mechanisms 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (mechanisms, involved in, pathogen recognition) -> mechanisms (9795ms)
What are pathogens? genome evolution 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (genome evolution, are well documented in, human pathogens) -> genome evolution (9853ms)
What are pathogens? DNA 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (DNA, found only in, certain pathogens) -> DNA (9796ms)
What are pathogens? Kyolic 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Kyolic, is also effective in killing, pathogens) -> Kyolic (9853ms)
What are pathogens? a T-cell 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a T-cell, will be in attacking, pathogens) -> a T-cell (9853ms)
What are pathogens? acid motif 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (acid motif, also occurs quite frequently in, pathogens) -> acid motif (9876ms)
What are pathogens? research 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (research, reported in, Foodborne Pathogens) -> research (9853ms)
What are pathogens? the molecular mechanisms 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the molecular mechanisms, involved in, pathogen) -> the molecular mechanisms (9825ms)
What are pathogens? the avrLm1 virulence 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the avrLm1 virulence, has diffused in, pathogen populations) -> the avrLm1 virulence (9877ms)
What are pathogens? proteins 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (proteins, involved in, host-pathogen interactions) -> proteins (9796ms)
What are pathogens? ozone 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (ozone, is very efficient in killing, pathogens) -> ozone (9795ms)
What are pathogens? thermal processes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (thermal processes, are effective in lowering, pathogen levels) -> thermal processes (9825ms)
What are pathogens? government data 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (government data, show a decline in, pathogen prevalence) -> government data (9825ms)
What are pathogens? genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (genes, involved in, host-pathogen interactions) -> genes (9876ms)
What are pathogens? active surveillance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (active surveillance, occurs in, equine pathogens) -> active surveillance (9766ms)
What are pathogens? low-grade beef trimmings 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (low-grade beef trimmings, are notoriously high in, pathogens) -> low-grade beef trimmings (9825ms)
What are pathogens? a spinal tap 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a spinal tap, showed a remarkable reduction in, pathogens) -> a spinal tap (9825ms)
What are pathogens? The program 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The program, includes training in, microbial pathogens) -> The program (9853ms)
What are pathogens? Broad patterns of resistance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Broad patterns of resistance, exist in, these pathogens) -> Broad patterns of resistance (9853ms)
What are pathogens? sex 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (sex, played an important role in, the pathogen) -> sex (9877ms)
What are pathogens? The center 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The center, also offers expertise in, pathogen biology) -> The center (9877ms)
What are pathogens? the intestines 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the intestines, may be important in countering, pathogens) -> the intestines (9766ms)
What are pathogens? host genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (host genes, involved in, pathogen defense) -> host genes (9853ms)
What are pathogens? antibiotic resistance genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (antibiotic resistance genes, present in, human pathogens) -> antibiotic resistance genes (9766ms)
What are pathogens? Stx2 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Stx2, are found in, this pathogen) -> Stx2 (9825ms)
What are pathogens? virulence 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (virulence, is maintained in, pathogens) -> virulence (9766ms)
What are pathogens? science teachers 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (science teachers, need to be trained in, Bloodborne Pathogens) -> science teachers (9877ms)
What are pathogens? OMV 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (OMV, has been extensively studied only in, pathogens) -> OMV (9796ms)
What are pathogens? Vermicast 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Vermicast, is low in, pathogens) -> Vermicast (9825ms)
What are pathogens? an enzyme 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (an enzyme, may apply in, pathogen destruction) -> an enzyme (9876ms)
What are pathogens? the program 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the program, may have their roots in, the pathogen) -> the program (9796ms)
What are pathogens? Diversity 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Diversity, was particularly high in, the pathogens) -> Diversity (9876ms)
What are pathogens? hosts 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (hosts, show an increase in, pathogens) -> hosts (9766ms)
What are pathogens? timing surveillance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (timing surveillance, can result in, new pathogens) -> timing surveillance (9825ms)
What are pathogens? Medicine researchers 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Medicine researchers, published in, PLoS Pathogens) -> Medicine researchers (9853ms)
What are pathogens? microorganisms 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (microorganisms, involved in, specific pathogen suppression) -> microorganisms (9766ms)
What are pathogens? Teacher 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Teacher, tends to get aggresive in, lethal pathogens) -> Teacher (9853ms)
What are pathogens? climate change 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (climate change, is a rise in, microbial pathogens) -> climate change (9876ms)
What are pathogens? Continual use 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Continual use, may result in, pathogen resistance) -> Continual use (9766ms)
What are pathogens? IRFs 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (IRFs, play an important role in, pathogen defense) -> IRFs (9853ms)
What are pathogens? the colon 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the colon, may be important in countering, pathogens) -> the colon (9877ms)
What are pathogens? clinicians 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (clinicians, have interests in, the pathogens) -> clinicians (9853ms)
What are pathogens? Enrofloxacin 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Enrofloxacin, was tested in, various pathogens) -> Enrofloxacin (9795ms)
What are pathogens? Wasmuth 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Wasmuth, undertook a PhD in, pathogen genomics) -> Wasmuth (9825ms)
What are pathogens? the two 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the two, were stationed in, pathogen) -> the two (9900ms)
What are pathogens? cellular interactions 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (cellular interactions, are effective in, pathogen control) -> cellular interactions (9766ms)
What are pathogens? resistance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (resistance, did develop first in, a pathogen) -> resistance (9825ms)
What are pathogens? more than 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (more than, are found in, the pathogen?s relatives) -> more than (9877ms)
What are pathogens? key S. Typhimurium genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (key S. Typhimurium genes, involved in, the pathogen 's ability) -> key S. Typhimurium genes (9825ms)
What are pathogens? articles 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (articles, published in, Gut Pathogens) -> articles (9795ms)
What are pathogens? LAgP 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (LAgP, would involve a reduction in, these pathogens) -> LAgP (9766ms)
What are pathogens? White blood cells 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (White blood cells, are involved in fighting, pathogens) -> White blood cells (9853ms)
What are pathogens? a micro-organism 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a micro-organism, leaves a hole in, a pathogen?s dungeon surface) -> a micro-organism (9877ms)
What are pathogens? The End Game 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The End Game, is Really Achievable in, Pathogen Reduction) -> The End Game (9825ms)
What are pathogens? Each center 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Each center, specializes in, certain pathogens) -> Each center (9877ms)
What are pathogens? a domain 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a domain, is involved in, pathogen entry) -> a domain (9796ms)
What are pathogens? phagocytosis 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (phagocytosis, play an active role in destroying, pathogens) -> phagocytosis (9766ms)
What are pathogens? a pathogen 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a pathogen, leaves a hole in, the pathogen?s cell membrane) -> a pathogen (9796ms)
What are pathogens? a study 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a study, published in, PLoS Pathogens) -> a study (9877ms)
What are pathogens? the system 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the system, punches massive holes in, the pathogen) -> the system (9766ms)
What are pathogens? such features 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (such features, are frequently observed in, pathogens) -> such features (9853ms)
What are pathogens? a new study 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a new study, published in, Foodborne Pathogens and Disease) -> a new study (9795ms)
What are pathogens? Chlorine 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Chlorine, is effective in killing, harmful pathogens) -> Chlorine (9899ms)
What are pathogens? The findings 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The findings, were published yesterday in, Foodborne Pathogens) -> The findings (9766ms)
What are pathogens? carbapenems 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (carbapenems, has developed in, this pathogen) -> carbapenems (9853ms)
What are pathogens? amends 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (amends, are primarily only interested in, pathogen contamination) -> amends (9853ms)
What are pathogens? Drug resistance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Drug resistance, occurs in, several classes of pathogens) -> Drug resistance (9877ms)
What are pathogens? significant strides 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (significant strides, have been made in reducing, pathogens) -> significant strides (9877ms)
What are pathogens? the role 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the role, play in, plant-pathogen interactions) -> the role (9796ms)
What are pathogens? Publication type 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (Publication type, Describes, the bacterial pathogen) -> Publication type (9922ms)
What are pathogens? a snap 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (our pathogen enemies, can be done in, a snap) -> a snap (9945ms)
What are pathogens? great caution 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, should be done with, great caution) -> great caution (9900ms)
What are pathogens? a class setting 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Bloodborne Pathogens, is done in, a class setting) -> a class setting (9968ms)
What are pathogens? subunit vaccines 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogen biology, do, subunit vaccines) -> subunit vaccines (9945ms)
What are pathogens? you sick 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (The pathogens, do make, you sick) -> you sick (9968ms)
What are pathogens? C. concisus 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (C. concisus, has been described as, an emergent pathogen) -> C. concisus (9899ms)
What are pathogens? the host 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Most pathogens, do better by letting, the host) -> the host (9945ms)
What are pathogens? decline 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (outside pathogens, often does lead to, decline) -> decline (9967ms)
What are pathogens? the initiation 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, is to be done prior to, the initiation) -> the initiation (9945ms)
What are pathogens? the New World 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Those pathogens, did n?t cross the ocean to, the New World) -> the New World (9922ms)
What are pathogens? the Rps genes 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (This pathogen, does adapt to, the Rps genes) -> the Rps genes (9967ms)
What are pathogens? irrigation water 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, can be done with, irrigation water) -> irrigation water (9922ms)
What are pathogens? a very different manner 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, do so in, a very different manner) -> a very different manner (9899ms)
What are pathogens? student Ardelle Grieger 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (student Ardelle Grieger, described, the pathogen race profile) -> student Ardelle Grieger (9899ms)
What are pathogens? the United States 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (dangerous pathogens, as is being done in, the United States) -> the United States (9945ms)
What are pathogens? the MPs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (nosocomial pathogen colonization, do, the MPs) -> the MPs (9900ms)
What are pathogens? the jump 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, does make, the jump) -> the jump (9945ms)
What are pathogens? selective enrichment 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, was done using, selective enrichment) -> selective enrichment (9945ms)
What are pathogens? a new means 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (potential pathogens, was done using, a new means) -> a new means (9899ms)
What are pathogens? us harm 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Pollution , chemicals , noise and pathogens, can do, us harm) -> us harm (9922ms)
What are pathogens? academic centers 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, could be done in, academic centers) -> academic centers (9968ms)
What are pathogens? the job 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (updated pathogen definitions, will do, the job) -> the job (9967ms)
What are pathogens? warm , moist conditions 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Bacterial pathogens, do well in, warm , moist conditions) -> warm , moist conditions (9945ms)
What are pathogens? a great job 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (fungal pathogens, can do, a great job) -> a great job (9968ms)
What are pathogens? the disease 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, little can be done to control, the disease) -> the disease (9899ms)
What are pathogens? parrots 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (other food-borne pathogens, do affect, parrots) -> parrots (9899ms)
What are pathogens? the body 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogens, directly do damage to, the body) -> the body (9945ms)
What are pathogens? human breast milk 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, so does, human breast milk) -> human breast milk (9945ms)
What are pathogens? the meat industry 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, is to do away with, the meat industry) -> the meat industry (9968ms)
What are pathogens? cultivation 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Pathogen detection, is done by, cultivation) -> cultivation (9945ms)
What are pathogens? nourishment 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, did n?t put, nourishment) -> nourishment (9922ms)
What are pathogens? Dictyostelium 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, could be done in, Dictyostelium) -> Dictyostelium (9945ms)
What are pathogens? damage 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Intraphagocytic pathogens, do, damage) -> damage (9945ms)
What are pathogens? S. dimidiatum 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (S. dimidiatum, was originally described as, a plant pathogen) -> S. dimidiatum (9945ms)
What are pathogens? state-certified labs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, should be done at, state-certified labs) -> state-certified labs (9968ms)
What are pathogens? dried blood 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Bloodborne pathogens, do live in, dried blood) -> dried blood (9922ms)
What are pathogens? a very long time 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, have been doing this for, a very long time) -> a very long time (9968ms)
What are pathogens? the trick 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen--genes, do, the trick) -> the trick (9922ms)
What are pathogens? paper logs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, is done on, paper logs) -> paper logs (9968ms)
What are pathogens? fish farms 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, do sometimes become established in, fish farms) -> fish farms (9923ms)
What are pathogens? USDA-style HACCP 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (USDA-style HACCP, was originally described as, a pathogen chase) -> USDA-style HACCP (9922ms)
What are pathogens? cell growth 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogen cells, does inhibit, cell growth) -> cell growth (9922ms)
What are pathogens? so 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (The majority of pathogens, do, so) -> so (9922ms)
What are pathogens? bacteria 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (bacteria, were first described as, pathogens) -> bacteria (9922ms)
What are pathogens? the HSE 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (this pathogen, do, the HSE) -> the HSE (9945ms)
What are pathogens? Employees 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (Employees, Describes the types of, bloodborne pathogens) -> Employees (9923ms)
What are pathogens? The virus 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (The virus, is described, inPLoS Pathogens today) -> The virus (9923ms)
What are pathogens? the incidence 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, does seem to increase, the incidence) -> the incidence (9900ms)
What are pathogens? a ?Doctrine 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, do indeed have, a ?Doctrine) -> a ?Doctrine (9900ms)
What are pathogens? rectal swabs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (enteric pathogens, do, rectal swabs) -> rectal swabs (9899ms)
What are pathogens? a reverse 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a mildew or pathogen ?, need to do, a reverse) -> a reverse (9900ms)
What are pathogens? the likelihood 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, does increase, the likelihood) -> the likelihood (9945ms)
What are pathogens? nurses 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, did, nurses) -> nurses (9922ms)
What are pathogens? methylmercury 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (bar pathogens, does a terrible job of keeping, methylmercury) -> methylmercury (9922ms)
What are pathogens? academic settings 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (highly virulent pathogens, will be done in, academic settings) -> academic settings (9900ms)
What are pathogens? health care workers 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (bloodborne pathogens, is real for, health care workers) -> health care workers (10054ms)
What are pathogens? severe infections 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, is responsible for, severe infections) -> severe infections (10199ms)
What are pathogens? cholera and dysentery 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (cholera and dysentery, must be done, one pathogen) -> cholera and dysentery (9968ms)
What are pathogens? the management 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (fungal pathogens, is essential for, the management) -> the management (10012ms)
What are pathogens? the Irish potato famine 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, were responsible for, the Irish potato famine) -> the Irish potato famine (10158ms)
What are pathogens? the response 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (dying pathogens, have been blamed for, the response) -> the response (10199ms)
What are pathogens? the damage 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the damage, done by, the pathogen) -> the damage (10117ms)
What are pathogens? tests 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (tests, are done for, pathogens) -> tests (10158ms)
What are pathogens? toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (toxins, are produced by, bacterial pathogens) -> toxins (10138ms)
What are pathogens? Copper compounds 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Copper compounds, do reduce, the pathogen) -> Copper compounds (10158ms)
What are pathogens? public-health protection 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is essential for, public-health protection) -> public-health protection (10199ms)
What are pathogens? cutaneous mycosis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogens, are responsible for, cutaneous mycosis) -> cutaneous mycosis (10199ms)
What are pathogens? the diseases 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the diseases, produced by, these pathogens) -> the diseases (10075ms)
What are pathogens? Globalisation 1.222222222218 What are pathogens? -> $x: ($x, define, pathogen) -> (Globalisation, defines the world of, pathogens) -> Globalisation (10033ms)
What are pathogens? the recognition event 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, are required for, the recognition event) -> the recognition event (10096ms)
What are pathogens? calcification 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Many pathogens, have been blamed for, calcification) -> calcification (10096ms)
What are pathogens? Toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Toxins, produced by, the pathogens) -> Toxins (10158ms)
What are pathogens? each species 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are different for, each species) -> each species (10178ms)
What are pathogens? use 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen, is safe for, use) -> use (10199ms)
What are pathogens? a substance 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (a substance, produced by, pathogens) -> a substance (10178ms)
What are pathogens? ?People 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (?People, do get sick from, pathogens) -> ?People (10178ms)
What are pathogens? scientists 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (scientists, can do little medically to fight, the pathogen) -> scientists (9968ms)
What are pathogens? Amanda Rose 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Amanda Rose, Does, Raw Milk Kill Pathogens) -> Amanda Rose (9990ms)
What are pathogens? The B cell 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The B cell, also produce antibodies against, the pathogen) -> The B cell (10012ms)
What are pathogens? The decay process 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The decay process, can produce, harmful pathogens) -> The decay process (9990ms)
What are pathogens? creationists 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (creationists, do, dangerous pathogens) -> creationists (10158ms)
What are pathogens? a sort procedure 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, is approved for, a sort procedure) -> a sort procedure (10138ms)
What are pathogens? various places 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, were recorded for, various places) -> various places (10054ms)
What are pathogens? a shelf-stable dried product 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (all pathogens, is necessary for, a shelf-stable dried product) -> a shelf-stable dried product (9990ms)
What are pathogens? the distinct set 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are responsible for, the distinct set) -> the distinct set (10012ms)
What are pathogens? proper identification 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is important for, proper identification) -> proper identification (10075ms)
What are pathogens? biosolids 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (biosolids, was done to eliminate, pathogens) -> biosolids (10096ms)
What are pathogens? Akonni 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Akonni, has done focuses on identifying, other pathogens?those) -> Akonni (10138ms)
What are pathogens? a very clean environment 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (a very clean environment, does reduce, total pathogen exposure) -> a very clean environment (10117ms)
What are pathogens? account growers 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (account growers, do require, pathogen testing) -> account growers (9990ms)
What are pathogens? the survival 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is essential for, the survival) -> the survival (9990ms)
What are pathogens? Bedbugs 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Bedbugs, do carry, a staggering 18 human pathogens) -> Bedbugs (10096ms)
What are pathogens? a biologist 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (detecting pathogens, was a job for, a biologist) -> a biologist (10199ms)
What are pathogens? destruction 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are collected for, destruction) -> destruction (10054ms)
What are pathogens? young beef and dairy cattle 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is consistent for, young beef and dairy cattle) -> young beef and dairy cattle (10158ms)
What are pathogens? farmer ] 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (farmer ], did opened the door to, the pathogens) -> farmer ] (10075ms)
What are pathogens? entry 1.222222222218 What are pathogens? -> $x: (pathogen, have point of, $x) -> (disease pathogens, have little point of, entry) -> entry (10012ms)
What are pathogens? Marine mammals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Marine mammals, neither do, pathogens and parasites) -> Marine mammals (10033ms)
What are pathogens? the organism 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is intended to be harmless for, the organism) -> the organism (10199ms)
What are pathogens? fumaric acid 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (fumaric acid, is produced by, the pathogens) -> fumaric acid (10054ms)
What are pathogens? SSC 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (SSC, have nothing to do with, pathogens or cleanliness) -> SSC (10033ms)
What are pathogens? laboratory tests 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (laboratory tests, must be done to confirm, pathogen identity) -> laboratory tests (10012ms)
What are pathogens? germination 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are harmful for, germination) -> germination (10054ms)
What are pathogens? any circumstances 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (any circumstances, does little to reduce, pathogens) -> any circumstances (9990ms)
What are pathogens? longer missions 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, will be important for, longer missions) -> longer missions (10033ms)
What are pathogens? the wound 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the wound, should be done to identify, the pathogen) -> the wound (10012ms)
What are pathogens? interurban transport 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (interurban transport, did for, biological pathogens) -> interurban transport (9968ms)
What are pathogens? the health 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, were bad for, the health) -> the health (10096ms)
What are pathogens? heal whatever tissue damage 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (heal whatever tissue damage, was done by, the pathogens) -> heal whatever tissue damage (10199ms)
What are pathogens? the first time 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, will be imported for, the first time) -> the first time (10138ms)
What are pathogens? colostrum 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is the primary reason for giving, colostrum) -> colostrum (10199ms)
What are pathogens? The big question 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The big question, does exposure to, virulent pathogens) -> The big question (10138ms)
What are pathogens? monetary loss 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (monetary loss, do, bacterial pathogens) -> monetary loss (10033ms)
What are pathogens? animals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (animals, did, other recent emerging pathogens) -> animals (10096ms)
What are pathogens? The procedure 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The procedure, produces, specific pathogen) -> The procedure (10138ms)
What are pathogens? effective bio-defense 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (this pathogen, are needed for, effective bio-defense) -> effective bio-defense (10117ms)
What are pathogens? nature 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (nature, was doing nothing to combat, the pathogen) -> nature (10158ms)
What are pathogens? biohazardous blood 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Bloodborne pathogen, is a synonym for, biohazardous blood) -> biohazardous blood (10199ms)
What are pathogens? society 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a huge challenge for, society) -> society (10117ms)
What are pathogens? the meat eater 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, be any worse for, the meat eater) -> the meat eater (10117ms)
What are pathogens? better management 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (such pathogens, is needed for, better management) -> better management (10199ms)
What are pathogens? artificial selection 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (artificial selection, can produce, pathogens) -> artificial selection (10012ms)
What are pathogens? John Hawks 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (John Hawks, did leprosy come from as, a human pathogen) -> John Hawks (10012ms)
What are pathogens? significance 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Candidate pathogens, were screened for, significance) -> significance (10117ms)
What are pathogens? the antigens 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the antigens, produced by, pathogens) -> the antigens (10178ms)
What are pathogens? the loss 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (This pathogen, is responsible for, the loss) -> the loss (10033ms)
What are pathogens? veterinarians 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (infectious pathogens, are indispensable for, veterinarians) -> veterinarians (10075ms)
What are pathogens? slaughter 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (foreign pathogens, are fair game for, slaughter) -> slaughter (10117ms)
What are pathogens? Stressed animals 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Stressed animals, are known to produce, pathogens) -> Stressed animals (10012ms)
What are pathogens? biological control 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are promising candidates for, biological control) -> biological control (10096ms)
What are pathogens? the toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the toxins, produced by, the pathogen) -> the toxins (10138ms)
What are pathogens? the milk 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the milk, has zero to do with, pathogens) -> the milk (10033ms)
What are pathogens? the pathogen 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the pathogen, produces a quality of, Heat or fire pathogen) -> the pathogen (10158ms)
What are pathogens? additional direction 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, may be referenced for, additional direction) -> additional direction (10054ms)
What are pathogens? antibacterial and anti-fungal chemicals 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (antibacterial and anti-fungal chemicals, produced by, pathogens) -> antibacterial and anti-fungal chemicals (9990ms)
What are pathogens? The blight 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The blight, was produced by, a fungal pathogen Bipolaris) -> The blight (10117ms)
What are pathogens? EMS personnel 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a significant risk for, EMS personnel) -> EMS personnel (9990ms)
What are pathogens? Tyson 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Tyson, does n?t allow, pathogen testing) -> Tyson (9990ms)
What are pathogens? more than 90 percent 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are responsible for, more than 90 percent) -> more than 90 percent (10199ms)
What are pathogens? The ability 1.222222222218 What are pathogens? -> $x: ($x, characterize, pathogen) -> (The ability, characterize, the relevant pathogen) -> The ability (10178ms)
What are pathogens? a majority 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are responsible for, a majority) -> a majority (10178ms)
What are pathogens? individuals 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is indicated for, individuals) -> individuals (10138ms)
What are pathogens? The disproportion 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The disproportion, did, pathogen) -> The disproportion (10199ms)
What are pathogens? Plants 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Plants, should be produced from, pathogen-free stock) -> Plants (10117ms)
What are pathogens? implementation 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (respiratory pathogens, are needed for, implementation) -> implementation (9990ms)
What are pathogens? metabolites 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (metabolites, produced by, a coral pathogen) -> metabolites (10033ms)
What are pathogens? ?Marine mammals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (?Marine mammals, neither do, pathogens and parasites) -> ?Marine mammals (10054ms)
What are pathogens? Meyer 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Meyer, did find, the same pathogen) -> Meyer (10075ms)
What are pathogens? gastroenteritis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Both pathogens, are responsible for, gastroenteritis) -> gastroenteritis (10054ms)
What are pathogens? weak points 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is looking for, weak points) -> weak points (10054ms)
What are pathogens? new vectors 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Pathogens, are always looking for, new vectors) -> new vectors (10096ms)
What are pathogens? several species 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are available for, several species) -> several species (10138ms)
What are pathogens? bark 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (bark, was done against, pathogens) -> bark (10117ms)
What are pathogens? The water 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The water, does n?t usually have time to gather, pathogens) -> The water (9990ms)
What are pathogens? pathogenicity 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (this pathogen, were tested for, pathogenicity) -> pathogenicity (10158ms)
What are pathogens? centuries 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogens, have been around for, centuries) -> centuries (9990ms)
What are pathogens? A metabolite 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (A metabolite, produced by, a pathogen) -> A metabolite (10075ms)
What are pathogens? summer 2000 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen indicators, was planned for, summer 2000) -> summer 2000 (10033ms)
What are pathogens? Emily Hagins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Emily Hagins, Films Produced, Pathogen) -> Emily Hagins (10158ms)
What are pathogens? HGE 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (HGE, does n?t seem related to, pathogens) -> HGE (10096ms)
What are pathogens? organic decomposition 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (organic decomposition, do to, the dormant pathogens) -> organic decomposition (10054ms)
What are pathogens? Class A biosolids 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Class A biosolids, don?t produce, the pathogens) -> Class A biosolids (10075ms)
What are pathogens? Neuraminidase 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Neuraminidase, is produced by, intestinal pathogens) -> Neuraminidase (10033ms)
What are pathogens? the positive selection 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen, was responsible for, the positive selection) -> the positive selection (10138ms)
What are pathogens? over 30 prosthesis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, has been joining for, over 30 prosthesis) -> over 30 prosthesis (10096ms)
What are pathogens? broilers 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (broilers, produces a wide variety of, pathogens) -> broilers (10075ms)
What are pathogens? every gardener 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (plant pathogens, are a challenge for, every gardener) -> every gardener (10012ms)
What are pathogens? water-borne diseases 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, are responsible for, water-borne diseases) -> water-borne diseases (10178ms)
What are pathogens? tick control 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, has been examined for, tick control) -> tick control (10178ms)
What are pathogens? mass dissemination 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (emerging pathogens, could be engineered for, mass dissemination) -> mass dissemination (10012ms)
What are pathogens? The ammonia 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The ammonia, does n?t always kill, the pathogens) -> The ammonia (10012ms)
What are pathogens? Personnel 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Personnel, do have access to, the pathogens) -> Personnel (10138ms)
What are pathogens? STT 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is very important for, STT) -> STT (10033ms)
What are pathogens? patient safety 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, is essential for, patient safety) -> patient safety (10096ms)
What are pathogens? Raw milk 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Raw milk, does kill, pathogens) -> Raw milk (10054ms)
What are pathogens? antibiotics 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (antibiotics, do kill, some pathogens) -> antibiotics (10138ms)
What are pathogens? DON 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (DON, is the mycotoxin produced by, the FHB-causing pathogen) -> DON (10138ms)
What are pathogens? the clock 1.222222222218 What are pathogens? -> $x: ($x, characterize, pathogen) -> (the clock, characterize, the pathogen) -> the clock (10033ms)
What are pathogens? the only national program testing 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the only national program testing, produce for, pathogens) -> the only national program testing (9968ms)
What are pathogens? a molecule 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (a molecule, produced by, a pathogen) -> a molecule (10075ms)
What are pathogens? motor vehicle accidents 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (motor vehicle accidents, does research on, bloodborne pathogens) -> motor vehicle accidents (10199ms)
What are pathogens? the greatest number 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is probably responsible for, the greatest number) -> the greatest number (10117ms)
What are pathogens? Very few studies 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Very few studies, have been done on, pathogens) -> Very few studies (10096ms)
What are pathogens? OSHA 1.222222222218 What are pathogens? -> $x: ($x, define, pathogen) -> (OSHA, defines, bloodborne pathogens) -> OSHA (10033ms)
What are pathogens? the work 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the work, has been done with, a fungal pathogen) -> the work (10054ms)
What are pathogens? the development 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (some pathogens, may be essential for, the development) -> the development (10138ms)
What are pathogens? 10 actinomycete isolates 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, were documented for, 10 actinomycete isolates) -> 10 actinomycete isolates (10054ms)
What are pathogens? the animals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the animals, did test positive for, the pathogen) -> the animals (10138ms)
What are pathogens? cultures and tests 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (cultures and tests, must be done to detect, the pathogens) -> cultures and tests (10096ms)
What are pathogens? leishmaniasis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is responsible for, leishmaniasis) -> leishmaniasis (10054ms)
What are pathogens? mortality and morbidity 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, are responsible for, mortality and morbidity) -> mortality and morbidity (10096ms)
What are pathogens? Chemicals 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Chemicals, produced by, pathogens) -> Chemicals (10075ms)
What are pathogens? contact infections 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is the prerequisite for, contact infections) -> contact infections (10012ms)
What are pathogens? vegetable production 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, was a more serious problem for, vegetable production) -> vegetable production (9990ms)
What are pathogens? a great many diseases 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are responsible for, a great many diseases) -> a great many diseases (10117ms)
What are pathogens? Sharma 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Sharma, have both done work on, the pathogens) -> Sharma (10158ms)
What are pathogens? bioterrorist attacks 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (potential pathogens, can be misused for, bioterrorist attacks) -> bioterrorist attacks (10178ms)
What are pathogens? a protein 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (a protein, produced by, the pathogen) -> a protein (10012ms)
What are pathogens? two severe outbreaks 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, was responsible for, two severe outbreaks) -> two severe outbreaks (10158ms)
What are pathogens? no safe level 1.222222222218 What are pathogens? -> $x: ($x, define, pathogen) -> (no safe level, defined for, a bloodborne pathogen) -> no safe level (10178ms)
What are pathogens? agricultural crops 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (fungal pathogens, have been developed for, agricultural crops) -> agricultural crops (10033ms)
What are pathogens? molecular networks 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (molecular networks, produce immune responses to, pathogens) -> molecular networks (10054ms)
What are pathogens? a UV air purifier 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a great place for, a UV air purifier) -> a UV air purifier (10178ms)
What are pathogens? The USDA 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The USDA, did, the pest and pathogen screening) -> The USDA (10117ms)
What are pathogens? detection 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, have been modified for, detection) -> detection (10075ms)
What are pathogens? tuberculosis and 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (tuberculosis and, does, the pathogen cause symtoms) -> tuberculosis and (10178ms)
What are pathogens? protective antigens 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen genomes, can be searched for, protective antigens) -> protective antigens (10158ms)
What are pathogens? Antibodies 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Antibodies, are produced specifically to, the invading pathogens) -> Antibodies (10096ms)
What are pathogens? the maturation 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (microbial pathogens, are crucial for, the maturation) -> the maturation (10117ms)
What are pathogens? HPV 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (HPV, does work for, other difficult pathogens) -> HPV (10054ms)
What are pathogens? secretion 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, were analyzed for, secretion) -> secretion (10178ms)
What are pathogens? High-level containment laboratories 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (High-level containment laboratories, do research on, pathogens) -> High-level containment laboratories (10178ms)
What are pathogens? long-distance dispersal 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogen, is well adapted for, long-distance dispersal) -> long-distance dispersal (9990ms)
What are pathogens? female homosexuality 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, also be responsible for, female homosexuality) -> female homosexuality (10075ms)
What are pathogens? A UV Water filter 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (A UV Water filter, will do the function of, pathogen killing) -> A UV Water filter (10012ms)
What are pathogens? an indefinite period 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, may be carried for, an indefinite period) -> an indefinite period (9990ms)
What are pathogens? the most part indiscriminate 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (new pathogens, are for, the most part indiscriminate) -> the most part indiscriminate (10158ms)
What are pathogens? The toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The toxins, produce, these pathogens) -> The toxins (10178ms)
What are pathogens? the lab 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the lab, would produce, airborne pathogens) -> the lab (10178ms)
What are pathogens? Air filters 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Air filters, do help eliminate, pollutants and pathogens) -> Air filters (10096ms)
What are pathogens? plaque 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (oral pathogens, be useful for controlling, plaque) -> plaque (10158ms)
What are pathogens? less than 10 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, have been identified for, less than 10) -> less than 10 (10075ms)
What are pathogens? More research 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (More research, should also be done into, pathogen survival) -> More research (10075ms)
What are pathogens? the laboratory 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the laboratory, will sometimes find, a second pathogen) -> the laboratory (10298ms)
What are pathogens? mprF 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (mprF, is found in, many bacterial pathogens) -> mprF (10335ms)
What are pathogens? patients 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (patients, were found to be positive for, pathogens) -> patients (10297ms)
What are pathogens? CWD and 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (CWD and, easily deal with, other pathogens) -> CWD and (10239ms)
What are pathogens? Wind evils 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (Wind evils, refer to, invisible pathogens) -> Wind evils (10259ms)
What are pathogens? factory farming 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (factory farming, create, dangerous food pathogens) -> factory farming (10259ms)
What are pathogens? 2002 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (2002, found very low incidence of, potential pathogens) -> 2002 (10354ms)
What are pathogens? 10 chickens 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (10 chickens, were found to contain, pathogens) -> 10 chickens (10336ms)
What are pathogens? a professor 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a professor, said finding, pathogens) -> a professor (10220ms)
What are pathogens? the processes 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the processes, has been found to kill, pathogens) -> the processes (10335ms)
What are pathogens? the common and 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the common and, recently found, pathogens) -> the common and (10298ms)
What are pathogens? the smallest genomes 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the smallest genomes, are found among, obligatory pathogens) -> the smallest genomes (10298ms)
What are pathogens? San Diego county 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (San Diego county, was found to be infected with, the pathogen) -> San Diego county (10239ms)
What are pathogens? reportable foods 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (reportable foods, likely be those found to contain, pathogens) -> reportable foods (10298ms)
What are pathogens? the US population 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the US population, were found to have, active XMRV pathogen) -> the US population (10220ms)
What are pathogens? a HACCP plan 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a HACCP plan, has been found to contain, pathogens) -> a HACCP plan (10317ms)
What are pathogens? The PezAT system 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The PezAT system, is found in, the major human pathogen) -> The PezAT system (10335ms)
What are pathogens? Heat 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (Heat, refers to, bacterial or viral pathogens) -> Heat (10354ms)
What are pathogens? Each chapter 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (Each chapter, deals with, a different pathogen) -> Each chapter (10279ms)
What are pathogens? the amoebas 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the amoebas, find, a pathogen) -> the amoebas (10317ms)
What are pathogens? Filters 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (Filters, only create a breeding ground for, pathogens) -> Filters (10317ms)
What are pathogens? genetic engineering 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (genetic engineering, contributed to creating, the new pathogens) -> genetic engineering (10354ms)
What are pathogens? the study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the study, found, the food-borne disease pathogen salmonella) -> the study (10317ms)
What are pathogens? Idaho 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Idaho, must be found free of, five bacterial pathogens) -> Idaho (10279ms)
What are pathogens? the magazine 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the magazine, found, these pathogens) -> the magazine (10219ms)
What are pathogens? two elk 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (two elk, were found with, the pathogen) -> two elk (10279ms)
What are pathogens? a national law 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (a national law, deals with, pathogens as a genetic resource) -> a national law (10335ms)
What are pathogens? The human immune system 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (The human immune system, creates antibodies to, pathogens) -> The human immune system (10335ms)
What are pathogens? God 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (God, created, parasites , pathogens , and predators) -> God (10239ms)
What are pathogens? FDA 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (FDA, found any sign of, pathogens) -> FDA (10317ms)
What are pathogens? researchers 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (researchers, find ways to combat, agricultural pathogens) -> researchers (10279ms)
What are pathogens? Entomologists 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Entomologists, have found, all the blood-born pathogens) -> Entomologists (10317ms)
What are pathogens? the kids 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the kids, was found to have, a pathogen) -> the kids (10335ms)
What are pathogens? The National Consumers League 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The National Consumers League, found, dangerous pathogens) -> The National Consumers League (10219ms)
What are pathogens? The infecting organism 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (The infecting organism, is referred to as, a pathogen) -> The infecting organism (10317ms)
What are pathogens? addition 1.1111111111079999 What are pathogens? -> $x: ($x, happen to, pathogen) -> (addition, happens to, pathogens) -> addition (10219ms)
What are pathogens? Bangladesh sunflower seed oil 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Bangladesh sunflower seed oil, was found to reduce, pathogens) -> Bangladesh sunflower seed oil (10219ms)
What are pathogens? Gene therapy experiments 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (Gene therapy experiments, may create, dangerous pathogens) -> Gene therapy experiments (10354ms)
What are pathogens? the single mitochondrion 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the single mitochondrion, found in, the blood borne pathogen) -> the single mitochondrion (10239ms)
What are pathogens? even individuals 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (even individuals, could create immensely, dangerous pathogens) -> even individuals (10354ms)
What are pathogens? tilmicosin 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (tilmicosin, were found among, veterinary pathogens) -> tilmicosin (10279ms)
What are pathogens? the GFP 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (the GFP, are dealing with, pathogens) -> the GFP (10259ms)
What are pathogens? the feces 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (the feces, create, more disease resistant pathogens) -> the feces (10335ms)
What are pathogens? Mark 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Mark, found, that considerable pathogen reductions) -> Mark (10219ms)
What are pathogens? The driver concept 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The driver concept, consists of finding, the correct pathogens) -> The driver concept (10298ms)
What are pathogens? a rare sugar 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a rare sugar, only found in, some human pathogens) -> a rare sugar (10219ms)
What are pathogens? Giardia 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Giardia, was found to be, the most prevalent pathogen) -> Giardia (10317ms)
What are pathogens? farms 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (farms, found, several pathogens) -> farms (10335ms)
What are pathogens? turn 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (turn, find, an invading pathogen) -> turn (10219ms)
What are pathogens? pathogenic toxins 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (pathogenic toxins, creates a hostile environment for, pathogens) -> pathogenic toxins (10317ms)
What are pathogens? tenderized steaks 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (tenderized steaks, found to contain, these pathogens) -> tenderized steaks (10298ms)
What are pathogens? an animal?s pH 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (an animal?s pH, creates a hostile environment for, pathogens) -> an animal?s pH (10239ms)
What are pathogens? immune selection 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (immune selection, create, more virulent pathogens) -> immune selection (10259ms)
What are pathogens? America 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (America, has created, some really horrible pathogens) -> America (10335ms)
What are pathogens? one independent agency 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (one independent agency, deals with, food-borne pathogens) -> one independent agency (10297ms)
What are pathogens? the papers 1.1111111111079999 What are pathogens? -> $x: ($x, happen to, pathogen) -> (the papers, happens to, pathogens) -> the papers (10220ms)
What are pathogens? public health agencies 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (public health agencies, must be prepared to deal with, pathogens) -> public health agencies (10335ms)
What are pathogens? new areas 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (new areas, created a new category of, pathogens) -> new areas (10335ms)
What are pathogens? places 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (places, create, pathogens) -> places (10278ms)
What are pathogens? Acidifying toxins 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (Acidifying toxins, are created by, microforms and pathogens) -> Acidifying toxins (10239ms)
What are pathogens? bacterial pathogen 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (bacterial pathogen, is referred to as, an endogenous pathogen) -> bacterial pathogen (10259ms)
What are pathogens? a model 1.1111111111079999 What are pathogens? -> $x: ($x, happen to, pathogen) -> (a model, will happen to, the pathogens) -> a model (10239ms)
What are pathogens? Wanzhou 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Wanzhou, found, the epidemic hemorrhagic fever pathogen) -> Wanzhou (10317ms)
What are pathogens? starlings 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (starlings, lack the ability to deal with, pathogens) -> starlings (10279ms)
What are pathogens? begonias 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (begonias, have been found susceptible to, this pathogen) -> begonias (10335ms)
What are pathogens? ?T-39? 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (?T-39?, were found to be more resistant to, this pathogen) -> ?T-39? (10259ms)
What are pathogens? the Asian soybean aphid 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the Asian soybean aphid, found little evidence of, pathogens) -> the Asian soybean aphid (10279ms)
What are pathogens? The researchers 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The researchers, found, several potentially dangerous pathogens) -> The researchers (10259ms)
What are pathogens? Farman 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Farman, found, the annual ryegrass pathogen) -> Farman (10335ms)
What are pathogens? a department study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a department study, found, the pathogens) -> a department study (10279ms)
What are pathogens? Gunner 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Gunner, find, your ?pathogen?) -> Gunner (10239ms)
What are pathogens? continued best efforts 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (continued best efforts, find, these pathogens) -> continued best efforts (10317ms)
What are pathogens? the refereeing process 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the refereeing process, can be found in, 'About Gut Pathogens ') -> the refereeing process (10354ms)
What are pathogens? microorganisms microbes 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (microorganisms microbes, found, pathogens) -> microorganisms microbes (10239ms)
What are pathogens? a parasitic relationship 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (a parasitic relationship, are referred to as, pathogens) -> a parasitic relationship (10317ms)
What are pathogens? The structures 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The structures, found on, these pathogens) -> The structures (10279ms)
What are pathogens? foreign proteins 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (foreign proteins, found on, infectious disease pathogens) -> foreign proteins (10278ms)
What are pathogens? SA 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (SA, found to be, the causative pathogen) -> SA (10239ms)
What are pathogens? either state 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (either state, have been found with, the pathogen) -> either state (10279ms)
What are pathogens? The study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The study, found, these pathogens) -> The study (10279ms)
What are pathogens? nine patients 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (nine patients, were found to have, the pathogens) -> nine patients (10298ms)
What are pathogens? future rule 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (future rule, finds common ground between, pathogen management) -> future rule (10219ms)
What are pathogens? the source 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (the source, create a new rapid test for, pathogens) -> the source (10259ms)
What are pathogens? gardeners 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (gardeners, deal organically with, pathogen and pest problems) -> gardeners (10317ms)
What are pathogens? taffeta 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (taffeta, creates, a reliable barrier to blood borne pathogens) -> taffeta (10354ms)
What are pathogens? dendritic cells 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (dendritic cells, find, pathogens) -> dendritic cells (10239ms)
What are pathogens? Investigators 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Investigators, are better at finding, foodborne pathogens) -> Investigators (10239ms)
What are pathogens? the lining 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (the lining, create a physical barrier to, pathogens) -> the lining (10354ms)
What are pathogens? similar structures 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (similar structures, are found in, several human pathogens) -> similar structures (10239ms)
What are pathogens? Smart 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Smart, found, the pathogen) -> Smart (10279ms)
What are pathogens? last year 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (last year, found, pathogens) -> last year (10317ms)
What are pathogens? projects 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (projects, deal with, host-pathogen interactions) -> projects (10219ms)
What are pathogens? raw , non-intact beef products 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (raw , non-intact beef products, found to have, these pathogens) -> raw , non-intact beef products (10259ms)
What are pathogens? the first viroid 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the first viroid, spent many years trying to find, the pathogen) -> the first viroid (10335ms)
What are pathogens? P. ramorum 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (P. ramorum, has found, the pathogen) -> P. ramorum (10298ms)
What are pathogens? Dr. Clark 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Dr. Clark, found that, it would kill various pathogens) -> Dr. Clark (10298ms)
What are pathogens? An ?attenuated ? vaccine 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (An ?attenuated ? vaccine, is created from, a pathogen) -> An ?attenuated ? vaccine (10259ms)
What are pathogens? genetic material 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (genetic material, create, new pathogens) -> genetic material (10219ms)
What are pathogens? aquariums 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (aquariums, can create the area for, pathogens) -> aquariums (10259ms)
What are pathogens? Lactococcus garvieae 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Lactococcus garvieae, was found to be, an opportunistic pathogen) -> Lactococcus garvieae (10278ms)
What are pathogens? virulent hasnt 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (virulent hasnt, then found, lungs pathogens) -> virulent hasnt (10335ms)
What are pathogens? products 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (products, found to have, these pathogens) -> products (10317ms)
What are pathogens? sick babies 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (sick babies, also found, dangerous waterborne pathogens) -> sick babies (10219ms)
What are pathogens? One study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (One study, found, common pathogens) -> One study (10259ms)
What are pathogens? protection 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (protection, is found from, foreign pathogens) -> protection (10239ms)
What are pathogens? Sanitizers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Sanitizers, hence can destroy, pathogens) -> Sanitizers (10443ms)
What are pathogens? An excellent comprehensive chapter 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (An excellent comprehensive chapter, is devoted to, pathogens) -> An excellent comprehensive chapter (10626ms)
What are pathogens? thin skin 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (thin skin, is more vulnerable to, pathogens) -> thin skin (10702ms)
What are pathogens? crop yield 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (crop yield, is lost to, pathogens) -> crop yield (10702ms)
What are pathogens? keratinocytes 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (keratinocytes, can kill, pathogens) -> keratinocytes (10626ms)
What are pathogens? Puccinia striiformis 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Puccinia striiformis, is conserved in, diverse fungal pathogens) -> Puccinia striiformis (10641ms)
What are pathogens? Disinfestants 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Disinfestants, are used to eliminate, pathogens) -> Disinfestants (10529ms)
What are pathogens? The proper treatment 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (The proper treatment, often is to eliminate, pathogens) -> The proper treatment (10657ms)
What are pathogens? Molecular tools 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Molecular tools, are used to detect, pathogens) -> Molecular tools (10426ms)
What are pathogens? Scientists 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Scientists, are interested in, plant-pathogen interactions) -> Scientists (10390ms)
What are pathogens? Monoclonal antibodies 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Monoclonal antibodies, can also cling to, pathogens) -> Monoclonal antibodies (10443ms)
What are pathogens? Better techniques 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Better techniques, are needed to detect, pathogens) -> Better techniques (10719ms)
What are pathogens? Source protection 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Source protection, is essential to keep, pathogens) -> Source protection (10656ms)
What are pathogens? immune defense 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (immune defense, can transmit, pathogens) -> immune defense (10496ms)
What are pathogens? an udder infection 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (an udder infection, is influenced by, the pathogen species) -> an udder infection (10562ms)
What are pathogens? Alopecia hair loss 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Alopecia hair loss, is thought to be, pathogen) -> Alopecia hair loss (10610ms)
What are pathogens? LFTB 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (LFTB, is treated to kill, pathogens) -> LFTB (10372ms)
What are pathogens? Mysis Supreme 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Mysis Supreme, is, pathogen) -> Mysis Supreme (10748ms)
What are pathogens? Wind 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Wind, can spread, pathogens) -> Wind (10748ms)
What are pathogens? diversity 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (diversity, can influence, pathogen protection) -> diversity (10759ms)
What are pathogens? Gadjeva 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Gadjeva, is interested in, host-pathogen interactions) -> Gadjeva (10719ms)
What are pathogens? Hepatitis C 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Hepatitis C, appear to be, pathogens) -> Hepatitis C (10479ms)
What are pathogens? swimmers 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (swimmers, may be exposed to, pathogens) -> swimmers (10760ms)
What are pathogens? NeoLibs 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (NeoLibs, are, Pathogens) -> NeoLibs (10372ms)
What are pathogens? A special method 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (A special method, is established to identify, pathogens) -> A special method (10687ms)
What are pathogens? even browsing consumers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (even browsing consumers, can transfer, pathogens) -> even browsing consumers (10496ms)
What are pathogens? monoclonal populations 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (monoclonal populations, are more vulnerable to, pathogens) -> monoclonal populations (10641ms)
What are pathogens? a monoculture 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (a monoculture, are very sensitive to, pathogens) -> a monoculture (10372ms)
What are pathogens? University 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (University, was published in, Foodborne Pathogens and Disease) -> University (10672ms)
What are pathogens? lipoxygenase gene 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (lipoxygenase gene, can be induced by, pathogens) -> lipoxygenase gene (10672ms)
What are pathogens? the eggs 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the eggs, will be housed in, Specific Pathogen Free conditions) -> the eggs (10495ms)
What are pathogens? ppGpp 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (ppGpp, is required in, many bacterial pathogens) -> ppGpp (10443ms)
What are pathogens? the material 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the material, can be verified to be, pathogen) -> the material (10626ms)
What are pathogens? the immune system 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the immune system, is more responsive to, pathogens) -> the immune system (10734ms)
What are pathogens? garden soil 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (garden soil, can contain, pathogens) -> garden soil (10546ms)
What are pathogens? COAA... 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (Emerging Pathogens Institute People, are talking about, COAA...) -> COAA... (10461ms)
What are pathogens? sprouts 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (sprouts, being contaminated with, pathogens) -> sprouts (10390ms)
What are pathogens? Cows 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Cows, stressed can slough, pathogens) -> Cows (10443ms)
What are pathogens? Roche 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Roche, are aiding in, these pathogen detection) -> Roche (10478ms)
What are pathogens? fungi 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (fungi, can push back, pathogens) -> fungi (10610ms)
What are pathogens? pets 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (pets, may be exposed to, pathogens) -> pets (10426ms)
What are pathogens? human health and disease 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (human health and disease, is the control of, pathogens) -> human health and disease (10479ms)
What are pathogens? trade and travel 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (trade and travel, are, pathogens) -> trade and travel (10733ms)
What are pathogens? Lactose and starch 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Lactose and starch, can feed, pathogens) -> Lactose and starch (10594ms)
What are pathogens? suspended sediment 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (suspended sediment, can transport, pathogens) -> suspended sediment (10408ms)
What are pathogens? microbes 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (microbes, is, pathogen) -> microbes (10610ms)
What are pathogens? Nature 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Nature, have been published in, the journal PLoS Pathogens) -> Nature (10760ms)
What are pathogens? Secondary constructive tests 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Secondary constructive tests, are for, pathogens) -> Secondary constructive tests (10610ms)
What are pathogens? Ballast water 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Ballast water, also can transfer, pathogens) -> Ballast water (10626ms)
What are pathogens? certain people 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (certain people, are carriers of, pathogens) -> certain people (10610ms)
What are pathogens? a colony 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (a colony, influences its susceptibility to, microbial pathogens) -> a colony (10748ms)
What are pathogens? Humans 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Humans, may be exposed to, pathogens) -> Humans (10546ms)
What are pathogens? Stormwater and rain runoff 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Stormwater and rain runoff, can carry, pathogens) -> Stormwater and rain runoff (10760ms)
What are pathogens? David G Bourne 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (David G Bourne, was published in, PLoS Pathogens) -> David G Bourne (10562ms)
What are pathogens? molecules 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (molecules, are broadly shared by, pathogens) -> molecules (10461ms)
What are pathogens? the naked eye 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (the naked eye, can carry, pathogens) -> the naked eye (10626ms)
What are pathogens? study 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (study, was/is, pathogens) -> study (10687ms)
What are pathogens? The work 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The work, was published in, PLoS Pathogens online) -> The work (10672ms)
What are pathogens? Bacteria 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (Bacteria, are classified as, primary pathogens) -> Bacteria (10701ms)
What are pathogens? Basic meat safety Meat 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Basic meat safety Meat, is highly susceptible to, pathogens) -> Basic meat safety Meat (10426ms)
What are pathogens? the newborn calf 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the newborn calf, is exposed to, pathogens) -> the newborn calf (10719ms)
What are pathogens? least two-thirds 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (least two-thirds, are, pathogens) -> least two-thirds (10408ms)
What are pathogens? Strep uberis 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (Strep uberis, is classified as, an environmental pathogen) -> Strep uberis (10372ms)
What are pathogens? pigs 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (pigs, are housed in, pathogen-free units) -> pigs (10426ms)
What are pathogens? Titanium dioxide 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Titanium dioxide, can also destroy, pathogens) -> Titanium dioxide (10512ms)
What are pathogens? Fungus Gnats 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Fungus Gnats, can vector, pathogens) -> Fungus Gnats (10426ms)
What are pathogens? Streptococcus 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Streptococcus, are, pathogens) -> Streptococcus (10771ms)
What are pathogens? a weakened immune system 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (a weakened immune system, can be overpowered by, pathogens) -> a weakened immune system (10443ms)
What are pathogens? enough chemical 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (enough chemical, is added to kill, pathogens) -> enough chemical (10426ms)
What are pathogens? the skin cells 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the skin cells, as being, pathogens) -> the skin cells (10657ms)
What are pathogens? workers 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (workers, be exposed to, pathogens) -> workers (10390ms)
What are pathogens? 60 percent 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (Gram-negative pathogens, were found in about, 60 percent) -> 60 percent (10496ms)
What are pathogens? human illness 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (human illness, are, pathogens) -> human illness (10687ms)
What are pathogens? 30 percent worldwide 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (pathogens, are estimated to be about, 30 percent worldwide) -> 30 percent worldwide (10760ms)
What are pathogens? the important pH factor 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the important pH factor, influences the survival of, pathogens) -> the important pH factor (10496ms)
What are pathogens? an important component 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (an important component, are exposed to, pathogens) -> an important component (10610ms)
What are pathogens? the vegetable 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the vegetable, has been exposed to, pathogens) -> the vegetable (10443ms)
What are pathogens? The research 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The research, is published in, PLoS Pathogens) -> The research (10390ms)
What are pathogens? the human microbiota 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the human microbiota, influences, host-pathogen interactions) -> the human microbiota (10461ms)
What are pathogens? Voice frequencies 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Voice frequencies, can identify, pathogens) -> Voice frequencies (10443ms)
What are pathogens? Irradiation 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Irradiation, is used to control, pathogens) -> Irradiation (10594ms)
What are pathogens? DCs 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (DCs, can incorporate, pathogens) -> DCs (10562ms)
What are pathogens? groups D , F , H , and K 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (groups D , F , H , and K, also can be, pathogens) -> groups D , F , H , and K (10461ms)
What are pathogens? plants or animals 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (plants or animals, are, pathogens) -> plants or animals (10408ms)
What are pathogens? Sexual recombination 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Sexual recombination, is important in, the pathogen life cycle) -> Sexual recombination (10408ms)
What are pathogens? cultivation methods 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (cultivation methods, can filter, pathogens) -> cultivation methods (10408ms)
What are pathogens? depressed resistance 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (depressed resistance, are classified as, opportunistic pathogens) -> depressed resistance (10354ms)
What are pathogens? the soil 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the soil, are most vulnerable to, pathogens) -> the soil (10719ms)
What are pathogens? B cells 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (B cells, are exposed to, pathogens) -> B cells (10702ms)
What are pathogens? natural selection 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (natural selection, is, pathogens) -> natural selection (10408ms)
What are pathogens? Regular soil 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Regular soil, can contain, pathogens) -> Regular soil (10702ms)
What are pathogens? 20 % 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (the pathogen and toxin information, is only about, 20 %) -> 20 % (10443ms)
What are pathogens? the calf 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the calf, may influence, pathogen numbers) -> the calf (10529ms)
What are pathogens? The products 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (The products, can actually transport, pathogens) -> The products (10496ms)
What are pathogens? Complement proteins 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Complement proteins, can kill, pathogens) -> Complement proteins (10760ms)
What are pathogens? Treatments 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Treatments, can kill, pathogens) -> Treatments (10771ms)
What are pathogens? Live food 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Live food, can also introduce, pathogens) -> Live food (10594ms)
What are pathogens? an abstact 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (a pathogen, is just throwing about, an abstact) -> an abstact (10672ms)
What are pathogens? Animals 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Animals, were housed in, specific pathogen?free facilities) -> Animals (10760ms)
What are pathogens? Such temperature abuse 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Such temperature abuse, can enable, pathogens) -> Such temperature abuse (10529ms)
What are pathogens? Manure 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Manure, can contain, pathogens) -> Manure (10578ms)
What are pathogens? likely 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (likely, reflect the influence of, pathogens) -> likely (10479ms)
What are pathogens? The role of luxS 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The role of luxS, has been investigated in, the plant pathogen) -> The role of luxS (10656ms)
What are pathogens? proof 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (proof, is in, our pathogen tests and flavor) -> proof (10408ms)
What are pathogens? roofs 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (roofs, can have, pathogens) -> roofs (10760ms)
What are pathogens? Preservatives 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Preservatives, must be toxic to, pathogens) -> Preservatives (10479ms)
What are pathogens? smart federal laws 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (smart federal laws, can control access to, pathogens) -> smart federal laws (10672ms)
What are pathogens? the water 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the water, may be contaminated with, pathogens) -> the water (10657ms)
What are pathogens? Pam 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Pam, is interested in, host/pathogen interactions) -> Pam (10513ms)
What are pathogens? pathologists 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (pathologists, are required to test, pathogens) -> pathologists (10461ms)
What are pathogens? the circadian clock 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the circadian clock, influences our susceptibility to, pathogens) -> the circadian clock (10748ms)
What are pathogens? the epithelium 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the epithelium, is a barrier to, pathogens) -> the epithelium (10461ms)
What are pathogens? text/html Select agents 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (text/html Select agents, are, pathogens) -> text/html Select agents (10479ms)
What are pathogens? meristem tip culture 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (meristem tip culture, is to eliminate, pathogens) -> meristem tip culture (10496ms)
What are pathogens? Antibiotic susceptibilities 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Antibiotic susceptibilities, will be performed on, pathogens) -> Antibiotic susceptibilities (10719ms)
What are pathogens? the surface area 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the surface area, is potentially exposed to, pathogens) -> the surface area (10496ms)
What are pathogens? Milk 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Milk, can be contaminated with, pathogens) -> Milk (10610ms)
What are pathogens? environmental factors 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (environmental factors, influence the growth of, pathogens) -> environmental factors (10719ms)
What are pathogens? interventions 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (interventions, can prevent, pathogens) -> interventions (10610ms)
What are pathogens? Ixodes ricinus tick 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Ixodes ricinus tick, can transmit, pathogens) -> Ixodes ricinus tick (10771ms)
What are pathogens? Eggs and chicks 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Eggs and chicks, can carry, pathogens) -> Eggs and chicks (10562ms)
What are pathogens? 25 % 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (the pathogen, has been found in about, 25 %) -> 25 % (10529ms)
What are pathogens? the human body 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the human body, is able to resist, pathogens) -> the human body (10529ms)
What are pathogens? two exibits 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (two exibits, are, pathogens) -> two exibits (10733ms)
What are pathogens? The influenza virus 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The influenza virus, is grown in, ?specific pathogen-free?) -> The influenza virus (10513ms)
What are pathogens? the breeding flock 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the breeding flock, is, pathogen) -> the breeding flock (10734ms)
What are pathogens? magnetoresistive biochip 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (magnetoresistive biochip, can identify, pathogens) -> magnetoresistive biochip (10733ms)
What are pathogens? T cells 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (T cells, can kill, pathogens) -> T cells (10702ms)
What are pathogens? shellfish 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (shellfish, are, pathogen) -> shellfish (10578ms)
What are pathogens? principle sterile 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (principle sterile, can contain, pathogens) -> principle sterile (10562ms)
What are pathogens? bacteria and viruses 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (bacteria and viruses, were discovered to be, pathogens) -> bacteria and viruses (10657ms)
What are pathogens? Producers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Producers, can reduce, pathogens) -> Producers (10443ms)
What are pathogens? The bad bacteria 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (The bad bacteria, are known as, pathogens) -> The bad bacteria (10672ms)
What are pathogens? broccoli 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (broccoli, is much lower in, pathogen feeding carbs) -> broccoli (10687ms)
What are pathogens? Livup supplements 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Livup supplements, are useful to eliminate, pathogens) -> Livup supplements (10479ms)
What are pathogens? A low dose 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (A low dose, can effectively reduce, pathogens) -> A low dose (10578ms)
What are pathogens? the egg 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the egg, is more vulnerable to, pathogens) -> the egg (10672ms)
What are pathogens? The most common drinking water contaminants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (The most common drinking water contaminants, are, pathogens) -> The most common drinking water contaminants (10610ms)
What are pathogens? The team?s method 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The team?s method, is detailed in, the journal PLoS Pathogens) -> The team?s method (10733ms)
What are pathogens? Sensors 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Sensors, can analyse, pathogens) -> Sensors (10771ms)
What are pathogens? Nystatin Cream 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Nystatin Cream, are, pathogen) -> Nystatin Cream (10771ms)
What are pathogens? Even clear brooks and lakes 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Even clear brooks and lakes, can be loaded with, pathogens) -> Even clear brooks and lakes (10461ms)
What are pathogens? an organism 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (an organism, can transmit, pathogens) -> an organism (10426ms)
What are pathogens? Focus 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Focus, is on, pathogens) -> Focus (10578ms)
What are pathogens? The questions 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (The questions, Are, pathogens) -> The questions (10734ms)
What are pathogens? The foliar application formula 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (The foliar application formula, can suppress, pathogens) -> The foliar application formula (10461ms)
What are pathogens? Raw sewage 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Raw sewage, is likely to contain, pathogens) -> Raw sewage (10594ms)
What are pathogens? natural agents 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (natural agents, can attack, pathogens) -> natural agents (10672ms)
What are pathogens? inadequate air exchange 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (inadequate air exchange, can allow, pathogens) -> inadequate air exchange (10594ms)
What are pathogens? microbial activity 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (microbial activity, can destroy, pathogens) -> microbial activity (10783ms)
What are pathogens? Fish 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Fish, are continually exposed to, pathogens) -> Fish (10546ms)
What are pathogens? steamers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (steamers, now can help kill, pathogens) -> steamers (10626ms)
What are pathogens? water 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (water, is mainly due to, pathogens) -> water (10701ms)
What are pathogens? heat 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (heat, can destroy, pathogens) -> heat (10513ms)
What are pathogens? the cells 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the cells, are in, direct contact with the pathogen) -> the cells (10626ms)
What are pathogens? raw fish 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (raw fish, are limited to, pathogens) -> raw fish (10641ms)
What are pathogens? Gingivitis 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Gingivitis, is the result of, pathogens) -> Gingivitis (10719ms)
What are pathogens? European populations 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (European populations, are exposed to, pathogens) -> European populations (10479ms)
What are pathogens? 2 log10 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (The pathogen, was reduced by about, 2 log10) -> 2 log10 (10771ms)
What are pathogens? The researchers findings 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The researchers findings, are published in, PLoS Pathogens) -> The researchers findings (10426ms)
What are pathogens? An AdsA homologue 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (An AdsA homologue, was identified in, the anthrax pathogen) -> An AdsA homologue (10578ms)
What are pathogens? natural products 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (natural products, are fungicidal to invading, pathogens) -> natural products (10657ms)
What are pathogens? Select Agents Select agents 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Select Agents Select agents, are, pathogens) -> Select Agents Select agents (10760ms)
What are pathogens? the mission briefing 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the mission briefing, is to mark, pathogens) -> the mission briefing (10529ms)
What are pathogens? no clinical symptoms 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (no clinical symptoms, can discharge, pathogens) -> no clinical symptoms (10529ms)
What are pathogens? the elderly , 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the elderly ,, are uniquely susceptible to, pathogens) -> the elderly , (10426ms)
What are pathogens? An effective contact 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (An effective contact, is an exposure to, pathogens) -> An effective contact (10479ms)
What are pathogens? herd animals 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (herd animals, are more susceptible to, pathogens) -> herd animals (10390ms)
What are pathogens? glandular fever 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (glandular fever, is linked to, pathogens) -> glandular fever (10594ms)
What are pathogens? little attention 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (little attention, is given to, pathogens) -> little attention (10461ms)
What are pathogens? fields 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (fields, can carry, pathogens) -> fields (10354ms)
What are pathogens? the size 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (The pathogen, is about, the size) -> the size (10562ms)
What are pathogens? specimens 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (specimens, are likely to contain, pathogens) -> specimens (10496ms)
What are pathogens? uncomposted plants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (uncomposted plants, were being attacked by, pathogens) -> uncomposted plants (10657ms)
What are pathogens? ?Our No. 1 goal 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (?Our No. 1 goal, is to eliminate, pathogens) -> ?Our No. 1 goal (10771ms)
What are pathogens? Anaerobic bacteria 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Anaerobic bacteria, are, pathogens) -> Anaerobic bacteria (10687ms)
What are pathogens? an animal 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (an animal, is exposed to, pathogens) -> an animal (10657ms)
What are pathogens? antibodies 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (antibodies, was solely to recognize, pathogens) -> antibodies (10610ms)
What are pathogens? ?beans 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (?beans, are notoriously susceptible to, pathogens) -> ?beans (10771ms)
What are pathogens? alternative septic systems 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (alternative septic systems, are designed to reduce, pathogens) -> alternative septic systems (10408ms)
What are pathogens? Students 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Students, are also trained in, blood borne pathogens) -> Students (10529ms)
What are pathogens? Caliper Life Sciences 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Caliper Life Sciences, are confirmed to be, pathogen) -> Caliper Life Sciences (10657ms)
What are pathogens? compost teas 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (compost teas, can be sources of, pathogens) -> compost teas (10372ms)
What are pathogens? poliovirus 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (poliovirus, is classified as, a BSL 2 pathogen) -> poliovirus (10641ms)
What are pathogens? pastured cows 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (pastured cows, can still have, pathogens) -> pastured cows (10496ms)
What are pathogens? e-coli 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (e-coli, are, pathogens) -> e-coli (10771ms)
What are pathogens? a few 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (a few, can be, pathogens) -> a few (10408ms)
What are pathogens? the Wellcome Trust 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the Wellcome Trust, was published in, the journal PLoS Pathogens) -> the Wellcome Trust (10760ms)
What are pathogens? ground meat 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (ground meat, can have, pathogens) -> ground meat (10529ms)
What are pathogens? Adequate normal flora 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Adequate normal flora, is required to keep, pathogens) -> Adequate normal flora (10426ms)
What are pathogens? sewage sludge 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (sewage sludge, is rich in, dangerous human pathogens) -> sewage sludge (10702ms)
What are pathogens? puppy food 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (puppy food, is, pathogen) -> puppy food (10733ms)
What are pathogens? The lactic bacteria 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (The lactic bacteria, can combat, pathogens) -> The lactic bacteria (10390ms)
What are pathogens? individual stalls 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (individual stalls, are often exposed to, pathogens) -> individual stalls (10546ms)
What are pathogens? beneficial stomach bacteria 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (beneficial stomach bacteria, are deadly to, pathogens) -> beneficial stomach bacteria (10687ms)
What are pathogens? MELAfol 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (MELAfol, is impervious to, pathogens) -> MELAfol (10479ms)
What are pathogens? supermarket food 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (supermarket food, can be contaminated with, pathogens) -> supermarket food (10390ms)
What are pathogens? LPS 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (LPS, can be modified by, pathogens) -> LPS (10372ms)
What are pathogens? the genus 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the genus, are, pathogens) -> the genus (10372ms)
What are pathogens? Not all germs 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Not all germs, are, pathogens) -> Not all germs (10626ms)
What are pathogens? fresh animal manure 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (fresh animal manure, can contain, pathogens) -> fresh animal manure (10610ms)
What are pathogens? apoptosis 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (apoptosis, may be beneficial to, pathogens) -> apoptosis (10771ms)
What are pathogens? animal byproducts 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (animal byproducts, can contain, pathogens) -> animal byproducts (10578ms)
What are pathogens? small peptide antimicrobials 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (small peptide antimicrobials, can control, pathogens) -> small peptide antimicrobials (10641ms)
What are pathogens? such effects 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (such effects, are likely to be influenced by, pathogen effects) -> such effects (10771ms)
What are pathogens? non-pathogens 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (non-pathogens, can be converted into, pathogens) -> non-pathogens (10578ms)
What are pathogens? mushroom 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (dangerous pathogens, is about to, mushroom) -> mushroom (10594ms)
What are pathogens? fresh waters 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (fresh waters, are impaired due to, pathogens) -> fresh waters (10719ms)
What are pathogens? glands 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (glands, is very susceptible to, pathogens) -> glands (10546ms)
What are pathogens? autopsy 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (autopsy, were classified as, non-pathogens) -> autopsy (10702ms)
What are pathogens? a category 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (a category, are more susceptible to, pathogens) -> a category (10478ms)
What are pathogens? The breed 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (The breed, is less susceptible to, pathogens) -> The breed (10626ms)
What are pathogens? spatial transmission Disease vectors 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (spatial transmission Disease vectors, can transmit, pathogens) -> spatial transmission Disease vectors (10408ms)
What are pathogens? the following criteria 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the following criteria, were used to identify, pathogens) -> the following criteria (10626ms)
What are pathogens? Southern California 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Southern California, Are, pathogens) -> Southern California (10610ms)
What are pathogens? HIV-infection 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (HIV-infection, is seen in almost, all infectious pathogens) -> HIV-infection (10512ms)
What are pathogens? Microsporidia 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (Microsporidia, are classified as, priority pathogens) -> Microsporidia (10562ms)
What are pathogens? doctors 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (doctors, are, pathogens) -> doctors (10594ms)
What are pathogens? home solution 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (home solution, can still help reduce, pathogens) -> home solution (10702ms)
What are pathogens? radiation 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (radiation, can kill, pathogens) -> radiation (10641ms)
What are pathogens? Rhapis 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Rhapis, are very resistant to, pathogens) -> Rhapis (10372ms)
What are pathogens? Not all viruses 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Not all viruses, are, pathogens) -> Not all viruses (10443ms)
What are pathogens? mucosal surfaces 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (mucosal surfaces, are exposed to, pathogens) -> mucosal surfaces (10771ms)
What are pathogens? certain peptides 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (certain peptides, can kill, pathogens) -> certain peptides (10594ms)
What are pathogens? the preserved cells 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (the preserved cells, can be tested for, pathogens) -> the preserved cells (10426ms)
What are pathogens? the goal 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the goal, is to keep, pathogens) -> the goal (10479ms)
What are pathogens? raw meat 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (raw meat, can still contain, pathogens) -> raw meat (10748ms)
What are pathogens? healthy bodies 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (healthy bodies, are, pathogens) -> healthy bodies (10687ms)
What are pathogens? a huge surface area 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (a huge surface area, is exposed to, pathogens) -> a huge surface area (10594ms)
What are pathogens? hiv and hep C 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (the bloodborne pathogens, was all about, hiv and hep C) -> hiv and hep C (10719ms)
What are pathogens? Migrants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Migrants, can be exposed to, pathogens) -> Migrants (10748ms)
What are pathogens? food 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (food, are, pathogens) -> food (10578ms)
What are pathogens? acinetobacter 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (acinetobacter, is classified as, an opportunistic pathogen) -> acinetobacter (10687ms)
What are pathogens? indoors 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (indoors, are known to be, pathogens) -> indoors (10496ms)
What are pathogens? angular cheilitis 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (angular cheilitis, are, pathogens) -> angular cheilitis (10687ms)
What are pathogens? sediment 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (sediment, can transport, pathogens) -> sediment (10372ms)
What are pathogens? Pollutants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Pollutants, addressed were, pathogens) -> Pollutants (10657ms)
What are pathogens? organic matter 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (organic matter, can also contain, pathogens) -> organic matter (10354ms)
What are pathogens? system 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (system, is a subpart of the body within, Pathogens) -> system (10461ms)
What are pathogens? B. hominis 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (B. hominis, may be considered to be, pathogens) -> B. hominis (10610ms)
What are pathogens? 09:37 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (09:37, AM in, Pathogens , Physiology & Genetics) -> 09:37 (10372ms)
What are pathogens? Any bodily substance 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Any bodily substance, can carry, pathogens) -> Any bodily substance (10672ms)
What are pathogens? OPIM 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (OPIM, are enrolled in, the Bloodborne Pathogens Program) -> OPIM (10771ms)
What are pathogens? bendamustine 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (bendamustine, is, pathogen) -> bendamustine (10687ms)
What are pathogens? organisms 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (organisms, are, pathogens) -> organisms (10719ms)
What are pathogens? downer cows 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (downer cows, can pass on, pathogens) -> downer cows (10461ms)
What are pathogens? West Nile virus 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (West Nile virus, are important in, amplifying the pathogen) -> West Nile virus (10702ms)
What are pathogens? Even treated sewage 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Even treated sewage, can contain, pathogens) -> Even treated sewage (10512ms)
What are pathogens? the past decade 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the past decade, are listed in, Table 2. Overseas pathogens) -> the past decade (10594ms)
What are pathogens? Eiken Chemical 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (Eiken Chemical, developed, the foodborne pathogen kits) -> Eiken Chemical (10794ms)
What are pathogens? UC Davis 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (UC Davis, develop methods to detect, pathogens) -> UC Davis (10806ms)
What are pathogens? the immune response 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (the immune response, were induced by, a pathogen) -> the immune response (10783ms)
What are pathogens? Pharmacists 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (Pharmacists, develop drugs against, particular pathogens) -> Pharmacists (10783ms)
What are pathogens? the late 1960 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the late 1960, 's to develop, disabling pathogens) -> the late 1960 (10805ms)
What are pathogens? the Weizmann Institute 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the Weizmann Institute, are developing, a host-specific pathogen) -> the Weizmann Institute (10806ms)
What are pathogens? a technique 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (a technique, developed to, track pathogens in sewage) -> a technique (10794ms)
What are pathogens? The team 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (The team, aims to develop, a plant-pathogen methodology) -> The team (10783ms)
What are pathogens? the risk assessment models 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the risk assessment models, developed world-wide for, pathogens) -> the risk assessment models (10794ms)
What are pathogens? the vaccine composition 0.999999999997 What are pathogens? -> $x: ($x, comprise, pathogen) -> (the vaccine composition, can comprise, an attenuated pathogen) -> the vaccine composition (10794ms)
What are pathogens? The latter two cases 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (The latter two cases, represent, pathogens) -> The latter two cases (10794ms)
What are pathogens? Incontri 0.999999999997 What are pathogens? -> $x: ($x, di, pathogen) -> (Incontri, di, Fisica and related pathogens) -> Incontri (10806ms)
What are pathogens? the water environment 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (the water environment, represent, actual pathogens) -> the water environment (10794ms)
What are pathogens? M genitalium 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (M genitalium, may represent, an important new pathogen) -> M genitalium (10794ms)
What are pathogens? fungicides 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (fungicides, has developed in, the pathogen population) -> fungicides (10783ms)
What are pathogens? Neutrophil microbicides 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (Neutrophil microbicides, induce, a pathogen survival response) -> Neutrophil microbicides (10794ms)
What are pathogens? Pti5 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (Pti5, are induced by, pathogens) -> Pti5 (10806ms)
What are pathogens? Microbial insecticides 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (Microbial insecticides, are developed from, insect pathogens) -> Microbial insecticides (10806ms)
What are pathogens? equilibrium 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (equilibrium, develop protective responses against, pathogens) -> equilibrium (10794ms)
What are pathogens? the government 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the government, secretly developed, these ?mystery pathogens) -> the government (10783ms)
What are pathogens? fish don???t 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (fish don???t, necessarily develop immunity to, pathogens) -> fish don???t (10806ms)
What are pathogens? coli 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (coli, represent a group of, pathogens) -> coli (10783ms)
What are pathogens? Brucella 0.999999999997 What are pathogens? -> $x: ($x, comprise, pathogen) -> (Brucella, is comprised mostly of, mammalian pathogens) -> Brucella (10794ms)
What are pathogens? The first three characters 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (The first three characters, represent, the bacterial pathogen) -> The first three characters (10783ms)
What are pathogens? ?modern ? children 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (?modern ? children, develop resistance to, pathogens) -> ?modern ? children (10783ms)
What are pathogens? the person 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the person, develops, resistance to the pathogen) -> the person (10783ms)
What are pathogens? Prion 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (Prion, represents a unique class of, pathogens) -> Prion (10806ms)
What are pathogens? 1?-OHase expression 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (1?-OHase expression, is induced by, pathogens) -> 1?-OHase expression (10783ms)
What are pathogens? corynebacteria 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (corynebacteria, may represent, pathogens) -> corynebacteria (10794ms)
What are pathogens? 8 Infrastructure 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (8 Infrastructure, develop, pathogens) -> 8 Infrastructure (10794ms)
What are pathogens? the adenovirus 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the adenovirus, will develop immunity to, the other pathogen) -> the adenovirus (10806ms)
What are pathogens? Stanley Prusiner 0.9999999999959999 What are pathogens? -> $x: ($x, discover, pathogen) -> (Stanley Prusiner, discovered, an entirely new class of pathogens) -> Stanley Prusiner (10878ms)
What are pathogens? transgene phenotypes 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (transgene phenotypes, can be modified by, pathogen invasion) -> transgene phenotypes (10869ms)
What are pathogens? The approach 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (The approach, could be extended to, other pathogens) -> The approach (10859ms)
What are pathogens? ? Phage therapy 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (? Phage therapy, can be used to kill, specific pathogens) -> ? Phage therapy (10878ms)
What are pathogens? pleural fluid culture 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (pleural fluid culture, can be used to identify, the pathogen) -> pleural fluid culture (10817ms)
What are pathogens? intestinal disease 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (intestinal disease, can be colonized by, a pathogen) -> intestinal disease (10816ms)
What are pathogens? mechanism 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (mechanism, could be putrescent by, pathogen or spyware) -> mechanism (10848ms)
What are pathogens? Stolons and roots 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Stolons and roots, can be killed by, the pathogen) -> Stolons and roots (10816ms)
What are pathogens? Designated host ranges 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Designated host ranges, can be inconsistent among, pathogens) -> Designated host ranges (10868ms)
What are pathogens? Retroviruses 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Retroviruses, can be particularly, insidious pathogens) -> Retroviruses (10806ms)
What are pathogens? Ticks 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Ticks, can also be analyzed for, the pathogens) -> Ticks (10838ms)
What are pathogens? an outbreak 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (an outbreak, could be traced to, a single pathogen) -> an outbreak (10828ms)
What are pathogens? the fruit 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (the fruit, could be inoculated with, decay-causing pathogens) -> the fruit (10828ms)
What are pathogens? immune-mediated damage 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (immune-mediated damage, can be more lethal than, the pathogen) -> immune-mediated damage (10868ms)
What are pathogens? Fecal material 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Fecal material, can be a source of, pathogens) -> Fecal material (10848ms)
What are pathogens? raw milk 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (raw milk, can be contaminated with, a pathogen) -> raw milk (10869ms)
What are pathogens? mice 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (mice, could be designed to combat, deadlier toxins and pathogens) -> mice (10806ms)
What are pathogens? Micropredators 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Micropredators, can be important vectors for, pathogens) -> Micropredators (10848ms)
What are pathogens? the product 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (the product, could be susceptible to, pathogen growth) -> the product (10838ms)
What are pathogens? Acute bronchitis 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Acute bronchitis, can be caused by, contagious pathogens) -> Acute bronchitis (10858ms)
What are pathogens? CMI dysfunction 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (CMI dysfunction, can be attributed to, the pathogen) -> CMI dysfunction (10838ms)
What are pathogens? ground beef 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (ground beef, could be tested only once for, pathogens) -> ground beef (10816ms)
What are pathogens? Local crops 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (Local crops, could be affected by, dangerous pathogens) -> Local crops (10828ms)
What are pathogens? Produce 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Produce, can also be contaminated with, pathogens) -> Produce (10827ms)
What are pathogens? raw seafood 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (raw seafood, can also be the vector for, various pathogens) -> raw seafood (10858ms)
What are pathogens? cats 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (cats, can be due to, different pathogens) -> cats (10828ms)
What are pathogens? the transgenic seeds 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the transgenic seeds, can be transferred to, human pathogens) -> the transgenic seeds (10878ms)
What are pathogens? a small or organic farm 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (a small or organic farm, can be a source of, pathogens) -> a small or organic farm (10828ms)
What are pathogens? human disease 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (human disease, can be attributed to, pathogens) -> human disease (10869ms)
What are pathogens? The immune response 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (The immune response, can be against, a pathogen) -> The immune response (10828ms)
What are pathogens? Consumers 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Consumers, can be exposed to, pathogens) -> Consumers (10869ms)
What are pathogens? no significant change 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (no significant change, can be seen for, six pathogens) -> no significant change (10827ms)
What are pathogens? Released non-pathogens 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Released non-pathogens, can be readily converted into, pathogens) -> Released non-pathogens (10869ms)
What are pathogens? The technique 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (The technique, could eventually be used to track down, pathogens) -> The technique (10848ms)
What are pathogens? the gut 0.9999999999959999 What are pathogens? -> $x: ($x, constitute, pathogen) -> (the gut, constitute a reservoir of, potential pathogens) -> the gut (10848ms)
What are pathogens? crops 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (crops, can potentially be affected by, pathogens) -> crops (10828ms)
What are pathogens? lime 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (lime, can be added to control, pathogens) -> lime (10838ms)
What are pathogens? synthetic viruses 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (synthetic viruses, can be used to make, pathogens) -> synthetic viruses (10838ms)
What are pathogens? the milk and calves 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the milk and calves, can be exposed to, this pathogen) -> the milk and calves (10817ms)
What are pathogens? Items 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (Items, could be exposed to, blood-borne pathogens and chemicals) -> Items (10817ms)
What are pathogens? newer techniques 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (newer techniques, can be used to directly detect, pathogens) -> newer techniques (10848ms)
What are pathogens? longleaf pine 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (longleaf pine, can be infected with, these pathogens) -> longleaf pine (10828ms)
What are pathogens? STEC 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (STEC, can be distinguished from, other pathogens) -> STEC (10816ms)
What are pathogens? wastewater 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (wastewater, could be mechanisms of, pathogen transfer) -> wastewater (10878ms)
What are pathogens? The brains 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (The brains, can be kept completely isolated from, pathogens) -> The brains (10816ms)
What are pathogens? Cattle 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Cattle, can be sub-clinically infected with, these pathogens) -> Cattle (10848ms)
What are pathogens? Davis 0.9999999999959999 What are pathogens? -> $x: ($x, discover, pathogen) -> (Davis, even discovered, a pathogen) -> Davis (10848ms)
What are pathogens? helical microbes 0.9999999999959999 What are pathogens? -> $x: ($x, discover, pathogen) -> (helical microbes, originally discovered as, plant pathogens) -> helical microbes (10848ms)
What are pathogens? the mature bird 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the mature bird, can be resilient to, pathogen colonization) -> the mature bird (10868ms)
What are pathogens? ? ??Imported fish 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (? ??Imported fish, could be more susceptible to, local pathogens) -> ? ??Imported fish (10838ms)
What are pathogens? one machine 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (one machine, can be used to test for, multiple pathogens) -> one machine (10858ms)
What are pathogens? Such resistance 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Such resistance, can then be passed on to, human pathogens) -> Such resistance (10858ms)
What are pathogens? Co-infection Dogs 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Co-infection Dogs, can be co-infected with, other pathogens) -> Co-infection Dogs (10878ms)
What are pathogens? one TcR 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (one TcR, could be directed against, the pathogen) -> one TcR (10869ms)
What are pathogens? young shoots 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (young shoots, can be killed by, this pathogen) -> young shoots (10868ms)
What are pathogens? PCR 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (PCR, can be used to detect, pathogens) -> PCR (10848ms)
What are pathogens? Family members 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (Family members, could just be passing, each other pathogens) -> Family members (10859ms)
What are pathogens? the symptom 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the symptom, can be expected to last until, the pathogens) -> the symptom (10859ms)
What are pathogens? antibiotic resistance 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (antibiotic resistance, could be passed on to, pathogens) -> antibiotic resistance (10838ms)
What are pathogens? amygdala activity 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (amygdala activity, can also be achieved by, pathogens) -> amygdala activity (10869ms)
What are pathogens? livestock production 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (livestock production, can be transferred to, other pathogens) -> livestock production (10817ms)
What are pathogens? catheter usage 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (catheter usage, can be caused by, various pathogens) -> catheter usage (10878ms)
What are pathogens? Similar symptoms 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Similar symptoms, can also be caused by, bacterial pathogens) -> Similar symptoms (10869ms)
What are pathogens? long 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (long, could have left a legacy of, pathogens) -> long (10888ms)
What are pathogens? retinal damage 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, is critical in minimizing, retinal damage) -> retinal damage (10878ms)
What are pathogens? locker rooms 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can lurk in, locker rooms) -> locker rooms (10916ms)
What are pathogens? sludge 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, exist in, sludge) -> sludge (10943ms)
What are pathogens? the intestine 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, persisting in, the intestine) -> the intestine (10925ms)
What are pathogens? Authorities Concept Scheme 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (10934ms)
What are pathogens? crop residue or in the soil 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, survive in, crop residue or in the soil) -> crop residue or in the soil (10952ms)
What are pathogens? the mosquitos 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the mosquitos, get rid of, these pathogens) -> the mosquitos (10943ms)
What are pathogens? 80 proof alcohol 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, thrive in, 80 proof alcohol) -> 80 proof alcohol (10934ms)
What are pathogens? surface water 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, surface water) -> surface water (10925ms)
What are pathogens? worm composting 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (worm composting, gets rid of, pathogens) -> worm composting (10878ms)
What are pathogens? future containment efforts 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, will be important in, future containment efforts) -> future containment efforts (10898ms)
What are pathogens? the January issue 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, appeared in, the January issue) -> the January issue (10934ms)
What are pathogens? wildlife 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, commonly found in, wildlife) -> wildlife (10925ms)
What are pathogens? surface 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may be found in, surface) -> surface (10925ms)
What are pathogens? certain your P.C. 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (certain your P.C., has got, pathogen attack) -> certain your P.C. (10888ms)
What are pathogens? 39 % 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, were identified in, 39 %) -> 39 % (10916ms)
What are pathogens? Smokers ' mouths 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Smokers ' mouths, getting, colonized by pathogens) -> Smokers ' mouths (10907ms)
What are pathogens? the doctor 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the doctor, get tested for, the pathogen) -> the doctor (10888ms)
What are pathogens? number 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may increase in, number) -> number (10943ms)
What are pathogens? high-oxygen environments 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, die in, high-oxygen environments) -> high-oxygen environments (10898ms)
What are pathogens? any 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can happen in, any) -> any (10952ms)
What are pathogens? Compost 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Compost, must get hot enough to kill, pathogens) -> Compost (10925ms)
What are pathogens? the lungs 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the lungs) -> the lungs (10934ms)
What are pathogens? kids 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (kids, get exposed to, bad pathogens) -> kids (10907ms)
What are pathogens? a radical change 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, has resulted in, a radical change) -> a radical change (10907ms)
What are pathogens? HDL 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (HDL, gets converted to, pathogen-fighting particles) -> HDL (10888ms)
What are pathogens? body fluids 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, contained in, body fluids) -> body fluids (10943ms)
What are pathogens? Fast-moving species 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (Fast-moving species, leave, pathogens) -> Fast-moving species (10916ms)
What are pathogens? hospitals 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, were created in, hospitals) -> hospitals (10925ms)
What are pathogens? The objective 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (The objective, is to get rid of, the pathogen) -> The objective (10878ms)
What are pathogens? skills assessments 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, participate in, skills assessments) -> skills assessments (10916ms)
What are pathogens? Surprise Gift 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Surprise Gift, get, enteric pathogen) -> Surprise Gift (10934ms)
What are pathogens? the Evil Milk 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogen, is in, the Evil Milk) -> the Evil Milk (10898ms)
What are pathogens? the patient 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the patient, can get treatment for, the pathogen) -> the patient (10916ms)
What are pathogens? drinking water 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, drinking water) -> drinking water (10907ms)
What are pathogens? spliced genes 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (spliced genes, may get transferred to, human pathogens) -> spliced genes (10888ms)
What are pathogens? You?ve 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (You?ve, got, pathogen checking software) -> You?ve (10916ms)
What are pathogens? a field 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, a field) -> a field (10878ms)
What are pathogens? such an oxygen rich environment 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, cannot live in, such an oxygen rich environment) -> such an oxygen rich environment (10897ms)
What are pathogens? the compost 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, still remain in, the compost) -> the compost (10907ms)
What are pathogens? nutrients 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (nutrients, get rid of, pathogens and parasites) -> nutrients (10888ms)
What are pathogens? Detrick lab 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Detrick lab, got, its pathogens) -> Detrick lab (10943ms)
What are pathogens? The material 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (The material, left over from, the pathogens) -> The material (10952ms)
What are pathogens? a host 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (a host, gets infected by, a pathogen) -> a host (10943ms)
What are pathogens? constant movement 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are in, constant movement) -> constant movement (10888ms)
What are pathogens? the granuloma 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, have been found in, the granuloma) -> the granuloma (10916ms)
What are pathogens? congee 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may be present in, congee) -> congee (10907ms)
What are pathogens? an overwhelming fashion 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, activate in, an overwhelming fashion) -> an overwhelming fashion (10934ms)
What are pathogens? livestock and poultry 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, cause viral infections in, livestock and poultry) -> livestock and poultry (10934ms)
What are pathogens? China 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, was observed in, China) -> China (10888ms)
What are pathogens? recreational water users 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, can cause illness in, recreational water users) -> recreational water users (10925ms)
What are pathogens? General Subdivisions Concept Scheme 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, In Scheme, General Subdivisions Concept Scheme) -> General Subdivisions Concept Scheme (10925ms)
What are pathogens? manure 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, manure) -> manure (10907ms)
What are pathogens? Table 1 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, is shown in, Table 1) -> Table 1 (10897ms)
What are pathogens? the Bio-sand Filter 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occurs in, the Bio-sand Filter) -> the Bio-sand Filter (10934ms)
What are pathogens? the environment 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the environment) -> the environment (10952ms)
What are pathogens? such small amounts 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, are typically present in, such small amounts) -> such small amounts (10943ms)
What are pathogens? foodborne illness 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can result in, foodborne illness) -> foodborne illness (10943ms)
What are pathogens? contact with the UV rays 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, come in, contact with the UV rays) -> contact with the UV rays (10888ms)
What are pathogens? the re-circulated air 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the re-circulated air) -> the re-circulated air (10934ms)
What are pathogens? loss 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can result in, loss) -> loss (10907ms)
What are pathogens? Pasteurized Milk 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, Can Multiply in, Pasteurized Milk) -> Pasteurized Milk (10934ms)
What are pathogens? a dormant stage 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are in, a dormant stage) -> a dormant stage (10925ms)
What are pathogens? the digestive tract 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, the digestive tract) -> the digestive tract (10907ms)
What are pathogens? untreated and land-disposed wastes 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, can survive in, untreated and land-disposed wastes) -> untreated and land-disposed wastes (10934ms)
What are pathogens? the population 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, the population) -> the population (10943ms)
What are pathogens? 500k who?ve 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (500k who?ve, got, the pathogen) -> 500k who?ve (10916ms)
What are pathogens? greater numbers 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are be present in, greater numbers) -> greater numbers (10943ms)
What are pathogens? power electrical generators 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (power electrical generators, leave, pathogen-free compost) -> power electrical generators (10888ms)
What are pathogens? human pathogens 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (human pathogens, leave about, 2 to 3 % human pathogens) -> human pathogens (10878ms)
What are pathogens? smokers 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (smokers, getting, colonized by pathogens-bacteria) -> smokers (10888ms)
What are pathogens? Dr. Beam 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Dr. Beam, get a short course on, pathogens) -> Dr. Beam (10888ms)
What are pathogens? the food chain 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, become established in, the food chain) -> the food chain (10925ms)
What are pathogens? soil 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogen, survives in, soil) -> soil (10943ms)
What are pathogens? vermicomposting process 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogen, die off in, vermicomposting process) -> vermicomposting process (10907ms)
What are pathogens? fecal material and mucus 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, fecal material and mucus) -> fecal material and mucus (10898ms)
What are pathogens? pasteurized milk 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, live in, pasteurized milk) -> pasteurized milk (10907ms)
What are pathogens? the Fort Detrick lab 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the Fort Detrick lab, got, its pathogens) -> the Fort Detrick lab (10934ms)
What are pathogens? Iraq 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Iraq, also got samples of, other deadly pathogens) -> Iraq (10898ms)
What are pathogens? the food chain and cause disease 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, survive in, the food chain and cause disease) -> the food chain and cause disease (10943ms)
What are pathogens? infectivity 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, also vary in, infectivity) -> infectivity (10916ms)
What are pathogens? a person 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (a person, gets really sick with, a food-borne pathogen) -> a person (10878ms)
What are pathogens? dirt 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, are in, dirt) -> dirt (10916ms)
What are pathogens? wild fish populations 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, exist in, wild fish populations) -> wild fish populations (10907ms)
What are pathogens? diagnostic data reports 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, may be skewed in, diagnostic data reports) -> diagnostic data reports (10897ms)
What are pathogens? sewage 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, sewage) -> sewage (10916ms)
What are pathogens? friends 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (friends, may have gotten, the pathogen) -> friends (10925ms)
What are pathogens? the water column 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occurs both in, the water column) -> the water column (10916ms)
What are pathogens? work 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (work, involving, dangerous pathogens) -> work (10961ms)
What are pathogens? Diabetic foot infections 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Diabetic foot infections, involve, multiple potential pathogens) -> Diabetic foot infections (10969ms)
What are pathogens? BpaA 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (BpaA, is involved in, a critical early pathogen-host interaction) -> BpaA (10952ms)
What are pathogens? Resistance responses 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Resistance responses, involve recognition of, pathogen) -> Resistance responses (10952ms)
What are pathogens? Plant pathology 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Plant pathology, involves the study of, plants and pathogens) -> Plant pathology (10969ms)
What are pathogens? bronchitis cases 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (bronchitis cases, involve, a viral pathogen) -> bronchitis cases (10969ms)
What are pathogens? a disaster 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (a disaster, involving, resistant pathogens) -> a disaster (10961ms)
What are pathogens? Infectious disease emergencies 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Infectious disease emergencies, involve, biological pathogens) -> Infectious disease emergencies (10960ms)
What are pathogens? The latter 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (The latter, clearly involves, pathogen load) -> The latter (10952ms)
What are pathogens? infancy 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (infancy, may be involved as, the triggering pathogen) -> infancy (10961ms)
What are pathogens? 3. Future threats 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (3. Future threats, may involve, novel pathogens) -> 3. Future threats (10969ms)
What are pathogens? HIV 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (HIV, occasionally involve work on, other pathogens) -> HIV (10961ms)
What are pathogens? The treatment 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (The treatment, involving, exposure of plant to the pathogen) -> The treatment (10961ms)
What are pathogens? Additional projects 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Additional projects, involve detecting, priority pathogens) -> Additional projects (10961ms)
What are pathogens? squash 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (squash, can involve, numerous pathogens) -> squash (10961ms)
What are pathogens? the selected genes 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (the selected genes, are involved with, pathogen defense) -> the selected genes (10952ms)
What are pathogens? CCD 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (CCD, involves an interaction between, pathogens) -> CCD (10952ms)
What are pathogens? the Philippines 0.7777777777739999 What are pathogens? -> $x: ($x, be use as, pathogen) -> (the Philippines, was used as, the pathogen) -> the Philippines (10969ms)
What are pathogens? The chip 0.7777777777739999 What are pathogens? -> $x: ($x, be use as, pathogen) -> (The chip, will be used as, a portable pathogen detection system) -> The chip (10969ms)
What are pathogens? any population of insects 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (any population of insects, contains, pathogens) -> any population of insects (11004ms)
What are pathogens? Water supplies 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Water supplies, may contain, pathogens) -> Water supplies (11004ms)
What are pathogens? polluted resources 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (polluted resources, contains, pathogens) -> polluted resources (10991ms)
What are pathogens? Soil 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Soil, naturally contains, pathogens) -> Soil (11004ms)
What are pathogens? foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (foods, may contain, pathogens) -> foods (10998ms)
What are pathogens? atheromas 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (atheromas, contain greater proportions of, pathogens) -> atheromas (10991ms)
What are pathogens? Hospital environments 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Hospital environments, can contain many types of, pathogens) -> Hospital environments (10998ms)
What are pathogens? conventional dairies 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (conventional dairies, contains, pathogens) -> conventional dairies (10991ms)
What are pathogens? animal wastes 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (animal wastes, may also contain, pathogens) -> animal wastes (10985ms)
What are pathogens? Wastewater 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Wastewater, contains, pathogens) -> Wastewater (11010ms)
What are pathogens? the latter 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the latter, may still contain some traces of, pathogens) -> the latter (10977ms)
What are pathogens? Greywater 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Greywater, contains, less pathogens) -> Greywater (10977ms)
What are pathogens? a food 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (a food, contains, pathogens) -> a food (10991ms)
What are pathogens? The droppings 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (The droppings, contain, pathogens) -> The droppings (11004ms)
What are pathogens? The former 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (The former, may contain large numbers of, pathogens) -> The former (10991ms)
What are pathogens? time 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (time, contain, vegetative pathogens) -> time (10998ms)
What are pathogens? food and water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (food and water, often contain, pathogens) -> food and water (10998ms)
What are pathogens? Discoloured wood 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Discoloured wood, contained, the pathogen) -> Discoloured wood (10977ms)
What are pathogens? the group 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the group, contains, pathogens) -> the group (10998ms)
What are pathogens? FRESH WATER Sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (FRESH WATER Sewage, contains, pathogens) -> FRESH WATER Sewage (10998ms)
What are pathogens? a sample 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (a sample, containing, a pathogen) -> a sample (10969ms)
What are pathogens? Manure tea 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Manure tea, may contain high levels of, pathogens) -> Manure tea (10985ms)
What are pathogens? feces 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (feces, contains, dangerous pathogens) -> feces (10969ms)
What are pathogens? Suicide belts 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Suicide belts, may contain, pathogens--) -> Suicide belts (10991ms)
What are pathogens? the foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the foods, to contain, pathogens) -> the foods (10991ms)
What are pathogens? clay particles 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (clay particles, contain, fewer pathogens) -> clay particles (10998ms)
What are pathogens? ?may 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (?may, contain, pathogens?) -> ?may (10985ms)
What are pathogens? the packages or envelopes 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the packages or envelopes, contains, lethal pathogens) -> the packages or envelopes (11004ms)
What are pathogens? Sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Sewage, contains high levels of, pathogens) -> Sewage (10991ms)
What are pathogens? insects 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (insects, contains, pathogens) -> insects (10977ms)
What are pathogens? Organic wastes 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Organic wastes, may contain, pathogens) -> Organic wastes (10985ms)
What are pathogens? the blood 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the blood, containing, the pathogens) -> the blood (10991ms)
What are pathogens? substances 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (substances, are reasonably expected to contain, pathogens) -> substances (11004ms)
What are pathogens? the sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the sewage, contains, pathogens) -> the sewage (11004ms)
What are pathogens? Untreated sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Untreated sewage, often contains, pathogens) -> Untreated sewage (10998ms)
What are pathogens? under-treated sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (under-treated sewage, contains, pathogens) -> under-treated sewage (10985ms)
What are pathogens? the samples 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the samples, contained, the pathogen) -> the samples (11004ms)
What are pathogens? raw foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (raw foods, containing, pathogens) -> raw foods (11010ms)
What are pathogens? Standing water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Standing water, can contain any number of, pathogens) -> Standing water (10977ms)
What are pathogens? Class B biosolids 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Class B biosolids, still contain detectible levels of, pathogens) -> Class B biosolids (10977ms)
What are pathogens? Pathogens Sewage biosolids 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Pathogens Sewage biosolids, contain a variety of, pathogens) -> Pathogens Sewage biosolids (11004ms)
What are pathogens? heavy rains 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (heavy rains, may contain, pathogens) -> heavy rains (11010ms)
What are pathogens? Human excreta and wastewater 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Human excreta and wastewater, also contain, pathogens) -> Human excreta and wastewater (11010ms)
What are pathogens? raw animal foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (raw animal foods, may contain, pathogens) -> raw animal foods (10991ms)
What are pathogens? recycled water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (recycled water, can potentially contain, pathogens) -> recycled water (10985ms)
What are pathogens? the irrigation 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the irrigation, thus contains, pathogens) -> the irrigation (11010ms)
What are pathogens? Even treated water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Even treated water, can still contain, pathogens) -> Even treated water (10977ms)
What are pathogens? bars and restaurants 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (bars and restaurants, contain, some pathogens) -> bars and restaurants (11004ms)
What are pathogens? post-consumer materials 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (post-consumer materials, are more likely to contain, pathogens) -> post-consumer materials (10977ms)
What are pathogens? Horse manure 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Horse manure, contains, pathogens) -> Horse manure (11004ms)
What are pathogens? cat and dog poop 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (cat and dog poop, contains, pathogens) -> cat and dog poop (10977ms)
What are pathogens? the genus Aegyptianella 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the genus Aegyptianella, contains, blood pathogens) -> the genus Aegyptianella (10998ms)
What are pathogens? However raw milk 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (However raw milk, may contain, pathogens) -> However raw milk (10985ms)
What are pathogens? a specimen 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (a specimen, containing, the pathogen) -> a specimen (11010ms)
What are pathogens? Improperly-processed organic fertilizers 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Improperly-processed organic fertilizers, may contain, pathogens) -> Improperly-processed organic fertilizers (10998ms)
What are pathogens? Unpasteurized milk 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Unpasteurized milk, may contain, pathogens) -> Unpasteurized milk (10991ms)
What are pathogens? ammonia-ridden slime 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (ammonia-ridden slime, may contain, pathogens) -> ammonia-ridden slime (10977ms)
What are pathogens? the poop Pet waste 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the poop Pet waste, contains, pathogen microbes) -> the poop Pet waste (10991ms)
What are pathogens? The scrap meats 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (The scrap meats, are more likely to contain, pathogens) -> The scrap meats (11004ms)
What are pathogens? real time 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (real time, contain the least amount of, pathogens) -> real time (10998ms)
What are pathogens? Human excreta 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Human excreta, contain a full spectrum of, pathogens) -> Human excreta (10969ms)
What are pathogens? CAFOs 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (CAFOs, contains pollutants such as, pathogens) -> CAFOs (10985ms)
What are pathogens? Gray water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Gray water, may contain, pathogens) -> Gray water (10998ms)
What are pathogens? Such foreign proteins 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Such foreign proteins, are contained by, pathogens) -> Such foreign proteins (10977ms)
What are pathogens? cattle 0.5555555555539999 What are pathogens? -> $x: ($x, demonstrate, pathogen) -> (cattle, demonstrate its utility for, other foodborne pathogens) -> cattle (11010ms)
What are pathogens? emergence 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (emergence, is a particular concern to, the pathogen) -> emergence (11010ms)
What are pathogens? farmers 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (farmers, often express concern about, pathogens and insects) -> farmers (11010ms)
What are pathogens? Pregnancy 0.555555555553 What are pathogens? -> $x: ($x, implement, pathogen) -> (Pregnancy, implement, the OSHA Bloodborne Pathogen Standards) -> Pregnancy (11010ms)
What are pathogens? Roundup Ready wheat varieties 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (Roundup Ready wheat varieties, were concerned about, pathogens) -> Roundup Ready wheat varieties (11010ms)
What are pathogens? The Microbiologist 0.555555555553 What are pathogens? -> $x: ($x, implement, pathogen) -> (The Microbiologist, implements, pathogen testing procedures) -> The Microbiologist (11010ms)
What are pathogens? pathogens or data 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (pathogens or data, concerning, pathogens) -> pathogens or data (11010ms)
What are pathogens? Brown rot control 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (Brown rot control, becomes a minimal concern as, this pathogen) -> Brown rot control (11010ms)
What is Head Start? Palin 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, Palin) -> Palin (6337ms)
What is Head Start? a treadmill 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start your run on, a treadmill) -> a treadmill (2914ms)
What is Head Start? 1964 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Project Head, Start in, 1964) -> 1964 (2915ms)
What is Head Start? Nixon 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head Start, was started by, Nixon) -> Nixon (6069ms)
What is Head Start? role once 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Heads, are starting to, role once) -> role once (4005ms)
What is Head Start? higher education 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, higher education) -> higher education (6396ms)
What is Head Start? WikiLeaks affair 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Heads, start rolling in, WikiLeaks affair) -> WikiLeaks affair (6406ms)
What is Head Start? the future 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the future) -> the future (3689ms)
What is Head Start? the Office 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head Start, had originally been started by, the Office) -> the Office (6367ms)
What is Head Start? place 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Luther Head, started in, place) -> place (6203ms)
What is Head Start? the 1729 other lemon cocktails 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, the 1729 other lemon cocktails) -> the 1729 other lemon cocktails (4054ms)
What is Head Start? the surroundings 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (heads, started to take an interest in, the surroundings) -> the surroundings (6367ms)
What is Head Start? the sizing procedure 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (your head, is the starting point for, the sizing procedure) -> the sizing procedure (4055ms)
What is Head Start? 400 Partials 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Heads, are starting at, 400 Partials) -> 400 Partials (6406ms)
What is Head Start? Capitol Hill 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (heads, start rolling on, Capitol Hill) -> Capitol Hill (6367ms)
What is Head Start? the little routine 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, get started on, the little routine) -> the little routine (6386ms)
What is Head Start? training 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, training) -> training (6414ms)
What is Head Start? the day 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, started on, the day) -> the day (6377ms)
What is Head Start? the adjustment 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the adjustment) -> the adjustment (6397ms)
What is Head Start? the picture 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to catch up with, the picture) -> the picture (6397ms)
What is Head Start? the weeds 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the weeds) -> the weeds (6405ms)
What is Head Start? the?North American hemp industry 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, start in, the?North American hemp industry) -> the?North American hemp industry (6396ms)
What is Head Start? starting your day of fishing on the river 0.555555555555 What 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)
What is Head Start? the 90 day AthLEAN-X Training Program 0.555555555555 What 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)
What is Head Start? form 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (a head, was starting to, form) -> form (3690ms)
What is Head Start? a little clearer 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to get, a little clearer) -> a little clearer (6367ms)
What is Head Start? the long journey 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, started on, the long journey) -> the long journey (6414ms)
What is Head Start? a headache 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to develop, a headache) -> a headache (6337ms)
What is Head Start? PA test reactor 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, PA test reactor) -> PA test reactor (6357ms)
What is Head Start? fishing 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, fishing) -> fishing (6203ms)
What is Head Start? round four 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head-to-head competition, starts in, round four) -> round four (2914ms)
What is Head Start? the guy 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the guy) -> the guy (6396ms)
What is Head Start? 1993 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, started in, 1993) -> 1993 (4005ms)
What is Head Start? the competition 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the competition) -> the competition (6386ms)
What is Head Start? shopping 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, shopping) -> shopping (6347ms)
What is Head Start? PR career 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, PR career) -> PR career (6397ms)
What is Head Start? studying 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, studying) -> studying (6367ms)
What is Head Start? about 4:30 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head level, was made starting at, about 4:30) -> about 4:30 (6367ms)
What is Head Start? traffic 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, starts on, traffic) -> traffic (4608ms)
What is Head Start? talking 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, talking) -> talking (6203ms)
What is Head Start? 1992 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Red Head, started in, 1992) -> 1992 (4005ms)
What is Head Start? the other candidates 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (' head, start on, the other candidates) -> the other candidates (4176ms)
What is Head Start? Staten Island 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start sites on, Staten Island) -> Staten Island (4355ms)
What is Head Start? the coding world 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (A head, start in, the coding world) -> the coding world (4607ms)
What is Head Start? two weeks 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is started spinning, two weeks) -> two weeks (6337ms)
What is Head Start? world?s best 50 restaurants 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, start in, world?s best 50 restaurants) -> world?s best 50 restaurants (4176ms)
What is Head Start? the Google SERPs 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (no head, start in, the Google SERPs) -> the Google SERPs (6347ms)
What is Head Start? the entire process 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head coach, is starting, the entire process) -> the entire process (6405ms)
What is Head Start? bigger 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to get, bigger) -> bigger (6414ms)
What is Head Start? the same time 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head Start, were started around, the same time) -> the same time (6386ms)
What is Head Start? Christmas Shopping 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, Christmas Shopping) -> Christmas Shopping (6406ms)
What is Head Start? hairs 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is slowly starting to generate, hairs) -> hairs (6358ms)
What is Head Start? economic development 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, economic development) -> economic development (6377ms)
What is Head Start? the kids 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the kids) -> the kids (4176ms)
What is Head Start? a growing generation gap 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, are starting to show, a growing generation gap) -> a growing generation gap (6367ms)
What is Head Start? foreign languages 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (This head, start in, foreign languages) -> foreign languages (2915ms)
What is Head Start? the rat race 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, start in, the rat race) -> the rat race (6377ms)
What is Head Start? a subject 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, a subject) -> a subject (4355ms)
What is Head Start? the theatrical profession 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the theatrical profession) -> the theatrical profession (6397ms)
What is Head Start? Bantry 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head walk, starts in, Bantry) -> Bantry (6348ms)
What is Head Start? 1975 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (The High Hopes Head Injury Program, was started in, 1975) -> 1975 (6414ms)
What is Head Start? Science 2010 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2010) -> Science 2010 (4176ms)
What is Head Start? striking ad and marketing deals 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, striking ad and marketing deals) -> striking ad and marketing deals (6377ms)
What is Head Start? the fall semester 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the fall semester) -> the fall semester (6386ms)
What is Head Start? Yeah 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, was starting up again*, Yeah) -> Yeah (6405ms)
What is Head Start? a little 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to get, a little) -> a little (6406ms)
What is Head Start? prevail 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Cooler heads, are starting to, prevail) -> prevail (6348ms)
What is Head Start? road races 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (your head, start in, road races) -> road races (6405ms)
What is Head Start? Kibum 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, is starting to sound like, Kibum) -> Kibum (6396ms)
What is Head Start? larger 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (her head, was starting to get, larger) -> larger (6203ms)
What is Head Start? thin or dry 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (their head, is starting to, thin or dry) -> thin or dry (6358ms)
What is Head Start? 1455 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> ('s Head, starts in, 1455) -> 1455 (6203ms)
What is Head Start? a creative mode 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting back into, a creative mode) -> a creative mode (6367ms)
What is Head Start? IBM 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (thin-film head structures, was started in, IBM) -> IBM (6347ms)
What is Head Start? Spring 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Spring) -> Spring (4355ms)
What is Head Start? refinancing your loan 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, refinancing your loan) -> refinancing your loan (3690ms)
What is Head Start? the drinking 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the drinking) -> the drinking (6203ms)
What is Head Start? an amazing transformation 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, was the start of, an amazing transformation) -> an amazing transformation (6396ms)
What is Head Start? the fall 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (their head, start in, the fall) -> the fall (6203ms)
What is Head Start? points 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, points) -> points (4054ms)
What is Head Start? PC-based agency automation 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Our head, start in, PC-based agency automation) -> PC-based agency automation (6337ms)
What is Head Start? a deficit 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, is starting at, a deficit) -> a deficit (6377ms)
What is Head Start? sense 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (your head, is going to start making, sense) -> sense (6414ms)
What is Head Start? a fire one dark and wintry night 0.555555555555 What 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)
What is Head Start? life 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (your head, start in, life) -> life (6405ms)
What is Head Start? the 2011 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Project Head, Start is now accepting applications for, the 2011) -> the 2011 (6387ms)
What is Head Start? one piece 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (my head, is starting to feel back in, one piece) -> one piece (6377ms)
What is Head Start? a little cloudy 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Her head, was already starting to get, a little cloudy) -> a little cloudy (4608ms)
What is Head Start? James Ray 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head On, was started by, James Ray) -> James Ray (6069ms)
What is Head Start? next year 's recruiting 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, next year 's recruiting) -> next year 's recruiting (6406ms)
What is Head Start? the same issue 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Sankaku Head, is starting in, the same issue) -> the same issue (6387ms)
What is Head Start? the early 1990s 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (their head, start in, the early 1990s) -> the early 1990s (6367ms)
What is Head Start? education 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, education) -> education (6358ms)
What is Head Start? always 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head, was a good start, always) -> always (2915ms)
What is Head Start? running away 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, running away) -> running away (4355ms)
What is Head Start? school 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, school) -> school (6367ms)
What is Head Start? painful ? 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to feel, painful ?) -> painful ? (6387ms)
What is Head Start? lighter than before 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to feel, lighter than before) -> lighter than before (3690ms)
What is Head Start? the Manipur police department 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Heads, started rolling in, the Manipur police department) -> the Manipur police department (6405ms)
What is Head Start? the race 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the race) -> the race (6348ms)
What is Head Start? Muslim feminism 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, Muslim feminism) -> Muslim feminism (6357ms)
What is Head Start? XD 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to hurt, XD) -> XD (6069ms)
What is Head Start? the speakers 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to come out of, the speakers) -> the speakers (3491ms)
What is Head Start? America 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (' head, start on, America) -> America (6377ms)
What is Head Start? a high stepping career 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head showgirl, be the start of, a high stepping career) -> a high stepping career (6414ms)
What is Head Start? family strengths 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start build on, family strengths) -> family strengths (6367ms)
What is Head Start? what to do 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, what to do) -> what to do (6377ms)
What is Head Start? the next school year 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the next school year) -> the next school year (6406ms)
What is Head Start? creating the success 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, creating the success) -> creating the success (6348ms)
What is Head Start? Dib 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, were actually starting to give, Dib) -> Dib (6069ms)
What is Head Start? math 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, math) -> math (6367ms)
What is Head Start? the field 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (our head, start in, the field) -> the field (6337ms)
What is Head Start? Tax Season 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Tax Season) -> Tax Season (4054ms)
What is Head Start? the first one tonight 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (three heads, am about to start, the first one tonight) -> the first one tonight (4177ms)
What is Head Start? 1998 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head Porter, started in, 1998) -> 1998 (6337ms)
What is Head Start? terms of record releases and chart success 0.555555555555 What 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)
What is Head Start? crown 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, was starting to, crown) -> crown (6348ms)
What is Head Start? as much 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (her head, is starting to grow just, as much) -> as much (6069ms)
What is Head Start? a weekend day 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is a wonderful start to, a weekend day) -> a weekend day (6387ms)
What is Head Start? 2011 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (House Head House Head, started out late in, 2011) -> 2011 (6357ms)
What is Head Start? Round Four 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head competition, starts in, Round Four) -> Round Four (6347ms)
What is Head Start? the rebound 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the rebound) -> the rebound (6386ms)
What is Head Start? the questions 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start voting on, the questions) -> the questions (4355ms)
What is Head Start? Finance 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, Start In, Finance) -> Finance (3689ms)
What is Head Start? Science 2011 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2011) -> Science 2011 (6405ms)
What is Head Start? Chicago 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (eight Head, Start sites in, Chicago) -> Chicago (6203ms)
What is Head Start? Christmas 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, Christmas) -> Christmas (6377ms)
What is Head Start? a little annoying 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (your head, is starting to get, a little annoying) -> a little annoying (4607ms)
What is Head Start? a large , additional income 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (heads, was really starting to earn, a large , additional income) -> a large , additional income (3096ms)
What is Head Start? the assignment 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the assignment) -> the assignment (6377ms)
What is Head Start? law school 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, law school) -> law school (6414ms)
What is Head Start? the media 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head scarves, started in, the media) -> the media (6357ms)
What is Head Start? 2 fade 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head, Are starting, 2 fade) -> 2 fade (6357ms)
What is Head Start? the market 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (this head, start in, the market) -> the market (6358ms)
What is Head Start? meeting people 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, meeting people) -> meeting people (6203ms)
What is Head Start? the winter season 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, get a jump-start on, the winter season) -> the winter season (6337ms)
What is Head Start? football 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, football) -> football (6387ms)
What is Head Start? discoveries 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (( head, start on, discoveries) -> discoveries (3491ms)
What is Head Start? a painful numbness 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to turn into, a painful numbness) -> a painful numbness (6337ms)
What is Head Start? 1974 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Heads, Up started in, 1974) -> 1974 (4005ms)
What is Head Start? Literacy 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Literacy) -> Literacy (6405ms)
What is Head Start? Next Year 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Next Year) -> Next Year (6396ms)
What is Head Start? the size 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to catch up with, the size) -> the size (6348ms)
What is Head Start? ring 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, ring) -> ring (4356ms)
What is Head Start? areas 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, Start programs in, areas) -> areas (6414ms)
What is Head Start? Enoch 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to hurt, Enoch) -> Enoch (2914ms)
What is Head Start? the Universal mail room 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, started in, the Universal mail room) -> the Universal mail room (4355ms)
What is Head Start? the college experience 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the college experience) -> the college experience (6414ms)
What is Head Start? charge 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (Head coach Chris Pruitt, is starting her third year in, charge) -> charge (6069ms)
What is Head Start? NFL 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, get started on, NFL) -> NFL (6337ms)
What is Head Start? Science 2009 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2009) -> Science 2009 (6367ms)
What is Head Start? clear and 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, clear and) -> clear and (4177ms)
What is Head Start? the following year 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the following year) -> the following year (4055ms)
What is Head Start? Kelly 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (her head, were starting to take its toll on, Kelly) -> Kelly (6337ms)
What is Head Start? the school year 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head, is excited to start, the school year) -> the school year (4608ms)
What is Head Start? reading 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, reading) -> reading (6386ms)
What is Head Start? the garden 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the garden) -> the garden (6203ms)
What is Head Start? material 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, material) -> material (6386ms)
What is Head Start? the ATS race 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, the ATS race) -> the ATS race (2915ms)
What is Head Start? offense 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, offense) -> offense (3491ms)
What is Head Start? coursework 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, coursework) -> coursework (6397ms)
What is Head Start? a whole new experience 0.555555555555 What 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)
What is Head Start? a bruised melon 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Her head, was starting to look like, a bruised melon) -> a bruised melon (6337ms)
What is Head Start? a path 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, a path) -> a path (3492ms)
What is Head Start? the 2008 Ramadan Olympics 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (your head, start in, the 2008 Ramadan Olympics) -> the 2008 Ramadan Olympics (6396ms)
What is Head Start? the public 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the public) -> the public (6414ms)
What is Head Start? the 60?s 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, started the company in, the 60?s) -> the 60?s (6358ms)
What is Head Start? an organized clap 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Your Head ?, was started with, an organized clap) -> an organized clap (6414ms)
What is Head Start? Blago 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Democrat heads, are starting to play, Blago) -> Blago (6203ms)
What is Head Start? September 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the new head, starts in, September) -> September (3491ms)
What is Head Start? 1869 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (South Head, started in, 1869) -> 1869 (3097ms)
What is Head Start? a bit 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to spin, a bit) -> a bit (6377ms)
What is Head Start? preparing your paperwork 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, preparing your paperwork) -> preparing your paperwork (6397ms)
What is Head Start? Malaysia 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (their head, start in, Malaysia) -> Malaysia (6358ms)
What is Head Start? the entire sizing procedure 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head, is a starting point for, the entire sizing procedure) -> the entire sizing procedure (6414ms)
What is Head Start? university 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, university) -> university (3689ms)
What is Head Start? the Day 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Starts on, the Day) -> the Day (6377ms)
What is Head Start? spring 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, spring) -> spring (6406ms)
What is Head Start? shape 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, are starting to take, shape) -> shape (6347ms)
What is Head Start? college 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, college) -> college (6377ms)
What is Head Start? logistics 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, logistics) -> logistics (3690ms)
What is Head Start? 2003 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (The Western Heads East program, was started in, 2003) -> 2003 (6069ms)
What is Head Start? January 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (private HeadLines newsletter, was started in, January) -> January (3690ms)
What is Head Start? the fog 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is just starting to come out of, the fog) -> the fog (6069ms)
What is Head Start? a bit grim 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head-to-head polls, are starting to look, a bit grim) -> a bit grim (6348ms)
What is Head Start? a hedge fund 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head, is starting, a hedge fund) -> a hedge fund (6348ms)
What is Head Start? clear 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, clear) -> clear (6387ms)
What is Head Start? 1905 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head coach, started in, 1905) -> 1905 (6414ms)
What is Head Start? the Linux interface 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, the Linux interface) -> the Linux interface (6348ms)
What is Head Start? 25 years 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (The Hilton Head Symphony Orchestra, was started, 25 years) -> 25 years (6377ms)
What is Head Start? Wyoming 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, start here in, Wyoming) -> Wyoming (6414ms)
What is Head Start? the job market 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the job market) -> the job market (6337ms)
What is Head Start? Life 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, Start In, Life) -> Life (6337ms)
What is Head Start? an industry of their choice 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a career head, start in, an industry of their choice) -> an industry of their choice (3491ms)
What is Head Start? a toll 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is just starting to take, a toll) -> a toll (6348ms)
What is Head Start? Salt Lake City 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Project Head, Start in, Salt Lake City) -> Salt Lake City (6367ms)
What is Head Start? gray as well 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, was starting to get frosted with, gray as well) -> gray as well (6357ms)
What is Head Start? training your dog 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, training your dog) -> training your dog (6358ms)
What is Head Start? the process 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the process) -> the process (4355ms)
What is Head Start? popularity 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (his head, start in, popularity) -> popularity (3096ms)
What is Head Start? lifestyle 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start out in, lifestyle) -> lifestyle (4608ms)
What is Head Start? the Garden 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (this head, started in, the Garden) -> the Garden (6396ms)
What is Head Start? a different ?ism 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (heads and pundits, are starting to recognize, a different ?ism) -> a different ?ism (6396ms)
What is Head Start? buzz 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, was starting to, buzz) -> buzz (4005ms)
What is Head Start? the branches 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (The head, is usually started with, the branches) -> the branches (6387ms)
What is Head Start? international competition 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, international competition) -> international competition (3096ms)
What is Head Start? 1965 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (Kedren Head Start, was started in, 1965) -> 1965 (6357ms)
What is Head Start? the debate 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the debate) -> the debate (6414ms)
What is Head Start? the 1960s 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head Start, started in, the 1960s) -> the 1960s (6377ms)
What is Head Start? the competitive job market 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the competitive job market) -> the competitive job market (4176ms)
What is Head Start? banking 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, started her career in, banking) -> banking (3491ms)
What is Head Start? science 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, science) -> science (4055ms)
What is Head Start? Choose 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Choose, start turning, heads) -> Choose (6449ms)
What is Head Start? Liz 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Liz, started as, head) -> Liz (6432ms)
What is Head Start? the giant cannibalistic monster 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the giant cannibalistic monster, started ripping, heads) -> the giant cannibalistic monster (6449ms)
What is Head Start? The list 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The list, starts from, head) -> The list (6423ms)
What is Head Start? funny t-shirts 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (funny t-shirts, start turning, heads) -> funny t-shirts (6459ms)
What is Head Start? Griffin 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Griffin, started calling, heads) -> Griffin (6459ms)
What is Head Start? the coaches 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the coaches, start banging, heads) -> the coaches (6449ms)
What is Head Start? Early 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Early, Start, Head) -> Early (6441ms)
What is Head Start? the excitement 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the excitement, starts, head) -> the excitement (6459ms)
What is Head Start? the cops 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the cops, started bashing, heads) -> the cops (6459ms)
What is Head Start? a couple days 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (a couple days, start, head) -> a couple days (6423ms)
What is Head Start? the wind 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the wind, start chopping, heads) -> the wind (6423ms)
What is Head Start? breeze 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (breeze, start, butting heads) -> breeze (6432ms)
What is Head Start? Parr 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Parr, started turning, heads) -> Parr (6459ms)
What is Head Start? the Nokia Lumia 800 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the Nokia Lumia 800, started turning, heads) -> the Nokia Lumia 800 (6441ms)
What is Head Start? Van Wieringen 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Van Wieringen, started, heads) -> Van Wieringen (6441ms)
What is Head Start? the most obvious ones 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the most obvious ones, start, a heading) -> the most obvious ones (6459ms)
What is Head Start? Black ice 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Black ice, started, head) -> Black ice (6432ms)
What is Head Start? the coin 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the coin, starts with, Heads) -> the coin (6441ms)
What is Head Start? more damage Mother Bear and Napalm 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (more damage Mother Bear and Napalm, start killing, heads) -> more damage Mother Bear and Napalm (6432ms)
What is Head Start? The Black Seeds 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The Black Seeds, started turning, heads) -> The Black Seeds (6423ms)
What is Head Start? the urge 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the urge, start knocking, heads) -> the urge (6459ms)
What is Head Start? Larry Benders 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Larry Benders, started as, head) -> Larry Benders (6441ms)
What is Head Start? the list 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the list, starts with, heads) -> the list (6449ms)
What is Head Start? Marcus Strickland 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Marcus Strickland, has started to turn, heads) -> Marcus Strickland (6432ms)
What is Head Start? more comfortable 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (more comfortable, start turning, heads) -> more comfortable (6441ms)
What is Head Start? Seiar 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Seiar, started, heads) -> Seiar (6423ms)
What is Head Start? Line 3 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Line 3, starts, the head) -> Line 3 (6459ms)
What is Head Start? each of your body parts 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (each of your body parts, starting from, head) -> each of your body parts (6432ms)
What is Head Start? Thor 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Thor, started cracking, heads) -> Thor (6441ms)
What is Head Start? the chunker regexp 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the chunker regexp, start from, head) -> the chunker regexp (6432ms)
What is Head Start? she and Kyle 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (she and Kyle, start, butting heads) -> she and Kyle (6449ms)
What is Head Start? the ring 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the ring, started turning, heads) -> the ring (6432ms)
What is Head Start? Isslyer 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Isslyer, start cutting off, heads) -> Isslyer (6441ms)
What is Head Start? the band 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the band, started turning, heads) -> the band (6449ms)
What is Head Start? 14.2 mile North Rim trail 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (14.2 mile North Rim trail, starts at, head) -> 14.2 mile North Rim trail (6449ms)
What is Head Start? Phil Fish 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Phil Fish, started turning, heads) -> Phil Fish (6459ms)
What is Head Start? resis?tance 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (resis?tance, start, head?ing) -> resis?tance (6459ms)
What is Head Start? the army 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the army, started bashing, heads) -> the army (6459ms)
What is Head Start? the two 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the two, started playing, heads) -> the two (6432ms)
What is Head Start? the Danish police 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the Danish police, started beating, heads) -> the Danish police (6449ms)
What is Head Start? The competition 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The competition, starts, head-to-head) -> The competition (6423ms)
What is Head Start? retro Marquette Warriors tees 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (retro Marquette Warriors tees, start turning, heads) -> retro Marquette Warriors tees (6432ms)
What is Head Start? the police 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the police, started banging, heads) -> the police (6449ms)
What is Head Start? Callihan 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Callihan, then starts, head) -> Callihan (6441ms)
What is Head Start? Bertrand Faivre Bertrand 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Bertrand Faivre Bertrand, started as, Head) -> Bertrand Faivre Bertrand (6423ms)
What is Head Start? Dario 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Dario, started playing, heads) -> Dario (6459ms)
What is Head Start? use 1 to 2 feet 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (use 1 to 2 feet, start at, head) -> use 1 to 2 feet (6423ms)
What is Head Start? Such a pretty boy 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Such a pretty boy, starts turning, heads) -> Such a pretty boy (6459ms)
What is Head Start? the game 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the game, started, the head) -> the game (6449ms)
What is Head Start? retro Brewers tees 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (retro Brewers tees, start turning, heads) -> retro Brewers tees (6432ms)
What is Head Start? Jak 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Jak, start ripping, heads) -> Jak (6441ms)
What is Head Start? Mold your body 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Mold your body, start turning, heads) -> Mold your body (6449ms)
What is Head Start? B?ttger 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (B?ttger, started as, Head) -> B?ttger (6441ms)
What is Head Start? the plants 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the plants, start to, head) -> the plants (6441ms)
What is Head Start? a suprise visit 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (a suprise visit, starts knocking, heads) -> a suprise visit (6450ms)
What is Head Start? Lets 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Lets, get started, Head) -> Lets (6423ms)
What is Head Start? coworking 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (coworking, starts turning, heads) -> coworking (6449ms)
What is Head Start? O?Brien 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (O?Brien, starts knocking, heads) -> O?Brien (6432ms)
What is Head Start? an image 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (an image, start swapping, heads) -> an image (6449ms)
What is Head Start? Scalp Energizer 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Scalp Energizer, start, a head) -> Scalp Energizer (6459ms)
What is Head Start? Dedede 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Dedede, starts, head) -> Dedede (6441ms)
What is Head Start? The tape 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The tape, starts with, Head) -> The tape (6423ms)
What is Head Start? the only case people 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the only case people, start, balding head) -> the only case people (6432ms)
What is Head Start? linear search 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (linear search, starting from, head) -> linear search (6449ms)
What is Head Start? Jouhkimainen 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Jouhkimainen, started, heads) -> Jouhkimainen (6449ms)
What is Head Start? the state troopers 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the state troopers, start bashing, heads) -> the state troopers (6423ms)
What is Head Start? 2009 to 52.7 % 0.111111111111 What is Head Start? -> $x: ($x, cause, head start) -> (2009 to 52.7 %, caused concerns with, the Head start Program) -> 2009 to 52.7 % (6467ms)
What is Head Start? displaced kids 0.11111111111 What is Head Start? -> $x: ($x, re, head start) -> (displaced kids, re-enroll in, Head Start programs) -> displaced kids (6467ms)
What is Head Start? the Canadian system -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (the Canadian system, is heading the way of, the NHS.) -> the Canadian system (6566ms)
What is Head Start? Sue Sylvester -0.0 What is Head Start? -> $x: ($x, be head, cheerleading) -> (Sue Sylvester, [is] head coach of, the cheerleading squad) -> Sue Sylvester (6577ms)
What is Head Start? The Emperor -0.0 What is Head Start? -> $x: ($x, be head, shinto) -> (The Emperor, was head of, the Shinto faith) -> The Emperor (6518ms)
What is Head Start? Apple -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Apple, is headed in, his first conference call) -> Apple (6556ms)
What is Head Start? LCDS -0.0 What is Head Start? -> $x: ($x, be head, mime) -> (LCDS, is headed by, master mime performer Samuel Avital) -> LCDS (6512ms)
What is Head Start? A seminarian -0.0 What is Head Start? -> $x: ($x, be head, first) -> (A seminarian, is heading off to, his first ever interview) -> A seminarian (6566ms)
What is Head Start? The Canadian on Tour -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The Canadian on Tour, is heading into, the terminal) -> The Canadian on Tour (6547ms)
What is Head Start? The German expedition to Punta Arenas -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The German expedition to Punta Arenas, was headed, first) -> The German expedition to Punta Arenas (6597ms)
What is Head Start? more Team USA -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (more Team USA, is headed to, Rome) -> more Team USA (6484ms)
What is Head Start? different aspects -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslims, started to focus on, different aspects) -> different aspects (6499ms)
What is Head Start? Wisconsin -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Wisconsin, are heading to, Rome) -> Wisconsin (6556ms)
What is Head Start? Moria Kelly -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Moria Kelly, is the Head of, the Children First Foundation) -> Moria Kelly (6467ms)
What is Head Start? Navid Majd -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Navid Majd, [is] head of, the federation) -> Navid Majd (6590ms)
What is Head Start? DP -0.0 What is Head Start? -> $x: ($x, be head, first) -> (DP, was headed down, the first path) -> DP (6573ms)
What is Head Start? Parents -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Parents, involved in, Head Start) -> Parents (6566ms)
What is Head Start? Tom and crew -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Tom and crew, are heading for, rock festivals) -> Tom and crew (6601ms)
What is Head Start? Miami -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Miami, was headed to, its first port) -> Miami (6524ms)
What is Head Start? Stacey and Brie -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Stacey and Brie, are heading to, Rome today) -> Stacey and Brie (6580ms)
What is Head Start? future commissars -0.0 What is Head Start? -> $x: ($x, be head, first) -> (future commissars, are heading to, their first meeting) -> future commissars (6476ms)
What is Head Start? the USA -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the USA, is headed the way of, Rome) -> the USA (6594ms)
What is Head Start? The bus -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The bus, was heading for, Dunoon Ferry Terminal) -> The bus (6468ms)
What is Head Start? the first beast -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the first beast, is the imperial head at, Rome) -> the first beast (6557ms)
What is Head Start? 400 -0.0 What is Head Start? -> $x: ($x, in, head start) -> (400, enrolled in, Head Start) -> 400 (6491ms)
What is Head Start? Emily -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Emily, was head of, her gang) -> Emily (6535ms)
What is Head Start? Corzine -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Corzine, was head of, the Goldman Sachs gang) -> Corzine (6506ms)
What is Head Start? Cash -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Cash, is heading into, her first year) -> Cash (6561ms)
What is Head Start? ?TOP -0.0 What is Head Start? -> $x: ($x, be head, rap) -> (?TOP, is the head of, rap) -> ?TOP (6540ms)
What is Head Start? operators -0.0 What is Head Start? -> $x: ($x, be head, first) -> (operators, are scratching their heads about, Cloud First) -> operators (6557ms)
What is Head Start? Team URC -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Team URC, is heading to, the Strawberry Festival) -> Team URC (6556ms)
What is Head Start? Kristen Stewart -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Kristen Stewart, are headed to, the Cannes Film Festival) -> Kristen Stewart (6597ms)
What is Head Start? Didier Grumbach -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Didier Grumbach, [is] head of, the federation) -> Didier Grumbach (6506ms)
What is Head Start? every dollar -0.0 What is Head Start? -> $x: ($x, in, head start) -> (every dollar, invested in, Head Start) -> every dollar (6573ms)
What is Head Start? the first Beast -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (the first Beast, was the political head of, a federation) -> the first Beast (6518ms)
What is Head Start? The Assassins Creed?s II hero -0.0 What 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)
What is Head Start? Osaka -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Osaka, am heading off to, my first round) -> Osaka (6484ms)
What is Head Start? Gerard -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Gerard, enrolled in, Head Start) -> Gerard (6506ms)
What is Head Start? Carter -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Carter, was the former head of, the 5,000-strong Slauson gang) -> Carter (6566ms)
What is Head Start? Brad Keselowski -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Brad Keselowski, was headed for, a NASCAR Nationwide Series) -> Brad Keselowski (6467ms)
What is Head Start? stock cars -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (stock cars, will be heading up to, the NASCAR Nationwide Series) -> stock cars (6524ms)
What is Head Start? The carrier -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The carrier, was headed for, the Costa Azul energy terminal) -> The carrier (6584ms)
What is Head Start? Angleton -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Angleton, was head of, the Rome station) -> Angleton (6476ms)
What is Head Start? Suggestion -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Suggestion, is to head straight to, the ferry terminal) -> Suggestion (6535ms)
What is Head Start? Grant -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (Grant, are headed to, Motown) -> Grant (6492ms)
What is Head Start? Reuters dollar -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Reuters dollar, was headed for, its first yearly gain) -> Reuters dollar (6535ms)
What is Head Start? Juniors -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Juniors, are heading to, their first Prom) -> Juniors (6552ms)
What is Head Start? the plan -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the plan, was to heading into, DPRK first week) -> the plan (6598ms)
What is Head Start? the nearly one million children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the nearly one million children, enrolled in, Head Start) -> the nearly one million children (6600ms)
What is Head Start? Blake Griffin -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Blake Griffin, is the head of, the Lob City gang) -> Blake Griffin (6535ms)
What is Head Start? a quiet , polite four-year-old girl -0.0 What 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)
What is Head Start? A dollar -0.0 What is Head Start? -> $x: ($x, in, head start) -> (A dollar, invested in, Head Start) -> A dollar (6592ms)
What is Head Start? The chipped cross -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (The chipped cross, is headed clear by, Dan Murray) -> The chipped cross (6570ms)
What is Head Start? Jones -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Jones, was the head of, a separate gang) -> Jones (6492ms)
What is Head Start? England -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (England, is head of, the biggest drug gang) -> England (6592ms)
What is Head Start? a team -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a team, is headed by, festival director Paula Chaurand) -> a team (6561ms)
What is Head Start? Sears -0.0 What is Head Start? -> $x: ($x, be head, pornography) -> (Sears, is now heading, some other pornography commission) -> Sears (6583ms)
What is Head Start? Russ Archer -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Russ Archer, was head of, the Murray Hill computer center) -> Russ Archer (6552ms)
What is Head Start? boys and girls -0.0 What is Head Start? -> $x: ($x, in, head start) -> (boys and girls, enrolled in, Head Start) -> boys and girls (6573ms)
What is Head Start? the child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the child, is in, Head Start) -> the child (6583ms)
What is Head Start? six firefighters -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (six firefighters, were headed to, the Tribeca Film Festival) -> six firefighters (6566ms)
What is Head Start? Violet -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Violet, is heading for, the Festival Bumper) -> Violet (6577ms)
What is Head Start? The curriculum model -0.0 What is Head Start? -> $x: ($x, in, head start) -> (The curriculum model, used in, Head Start) -> The curriculum model (6546ms)
What is Head Start? 2005 -0.0 What is Head Start? -> $x: ($x, be head, first) -> (2005, is heading into, his first spring training) -> 2005 (6583ms)
What is Head Start? The children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (The children, had been in, Head Start) -> The children (6570ms)
What is Head Start? New Arrivals New Arrivals -0.0 What is Head Start? -> $x: ($x, be head, first) -> (New Arrivals New Arrivals, are headed by, the first) -> New Arrivals New Arrivals (6598ms)
What is Head Start? Serena -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Serena, is the head of, an all-female gang) -> Serena (6577ms)
What is Head Start? parental sick days and days children -0.0 What 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)
What is Head Start? the last Adam -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the last Adam, [is] the head of, the first Adam) -> the last Adam (6524ms)
What is Head Start? Mickey -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Mickey, was heading for, an outdoor heavy metal festival) -> Mickey (6570ms)
What is Head Start? 2,433 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (2,433 children, enrolled in, Head Start) -> 2,433 children (6597ms)
What is Head Start? NAIA Championship Saint Xavier -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (NAIA Championship Saint Xavier, will be heading to, Rome) -> NAIA Championship Saint Xavier (6552ms)
What is Head Start? woman -0.0 What is Head Start? -> $x: ($x, be head, first) -> (woman, was her head from, the first moment) -> woman (6524ms)
What is Head Start? Vivi Dot -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Vivi Dot, is headed to, the Treasure Island Music Festival) -> Vivi Dot (6587ms)
What is Head Start? She?ll -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (She?ll, soon be heading to, Norway and Rome) -> She?ll (6561ms)
What is Head Start? about 1,700 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (about 1,700 children, enrolled in, Head Start) -> about 1,700 children (6547ms)
What is Head Start? PSG -0.0 What is Head Start? -> $x: ($x, be head, first) -> (PSG, were also heading to, their first loss) -> PSG (6583ms)
What is Head Start? tmills -0.0 What is Head Start? -> $x: ($x, be head, mount rushmore) -> (tmills, is the fourth head in, the Mount Rushmore) -> tmills (6546ms)
What is Head Start? Laura Sexton -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Laura Sexton, was headed for, a music festival) -> Laura Sexton (6506ms)
What is Head Start? The ball -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (The ball, was heading over, the fence) -> The ball (6518ms)
What is Head Start? Mr Mockett -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (Mr Mockett, was heading to, Wellington) -> Mr Mockett (6587ms)
What is Head Start? Bulger -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Bulger, was the head of, a South Boston Irish gang) -> Bulger (6476ms)
What is Head Start? Sleigh Bells -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Sleigh Bells, are heading out on, their first headlining tour) -> Sleigh Bells (6570ms)
What is Head Start? the authorised boo boy -0.0 What is Head Start? -> $x: ($x, be head, clone) -> (the authorised boo boy, will be heading to, Clones or Killarney) -> the authorised boo boy (6518ms)
What is Head Start? The company -0.0 What is Head Start? -> $x: ($x, be head, warren buffett) -> (The company, is headed by, Warren Buffett) -> The company (6601ms)
What is Head Start? Heartical -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Heartical, is now heading for, the Riddim House Festival) -> Heartical (6561ms)
What is Head Start? Captain Jack -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Captain Jack, [is] the head of, a rival gang) -> Captain Jack (6476ms)
What is Head Start? the Octo -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the Octo, is heading up, a puzzle festival) -> the Octo (6590ms)
What is Head Start? President -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (President, is also heading, the Armenian Chess Federation) -> President (6499ms)
What is Head Start? Rogers -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Rogers, was headed home from, the Kerrville Folk Festival) -> Rogers (6597ms)
What is Head Start? Brunei Darussalam -0.0 What is Head Start? -> $x: ($x, be head, islamic faith) -> (Brunei Darussalam, is the head of, the Islamic faith) -> Brunei Darussalam (6518ms)
What is Head Start? children and families -0.0 What is Head Start? -> $x: ($x, in, head start) -> (children and families, enrolled in, Head Start) -> children and families (6592ms)
What is Head Start? grandpa -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (grandpa, is the head of, a yakuza gang) -> grandpa (6557ms)
What is Head Start? Joe Mulligan -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Joe Mulligan, [is] head of, first aid education) -> Joe Mulligan (6570ms)
What is Head Start? Jason Pamment -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Jason Pamment, will be heading over to, the festival) -> Jason Pamment (6484ms)
What is Head Start? Ariel -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Ariel, is headed back to Australia for, the Fuse Festival) -> Ariel (6491ms)
What is Head Start? Paradox -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Paradox, is heading to, Sundance Film Festival) -> Paradox (6540ms)
What is Head Start? Health Education -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Health Education, is headed by, First Lady) -> Health Education (6518ms)
What is Head Start? Gloria Feldt -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Gloria Feldt, was named head of, Planned Parenthood Federation) -> Gloria Feldt (6580ms)
What is Head Start? Berkshire Hathaway -0.0 What is Head Start? -> $x: ($x, be head, warren buffett) -> (Berkshire Hathaway, is headed by, local investor Warren Buffett) -> Berkshire Hathaway (6570ms)
What is Head Start? the churches -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the churches, were heading to, Rome) -> the churches (6566ms)
What is Head Start? toddlers -0.0 What is Head Start? -> $x: ($x, in, head start) -> (toddlers, participate in, Head Start) -> toddlers (6476ms)
What is Head Start? the Commerce & Finance -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the Commerce & Finance, is headed by, partner Liu Gang) -> the Commerce & Finance (6499ms)
What is Head Start? Peter -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Peter, was crucified with his head downwards at, Rome) -> Peter (6506ms)
What is Head Start? the trucks -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the trucks, are headed for, a J.B. Hunt terminal) -> the trucks (6598ms)
What is Head Start? The Chargers -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The Chargers, are headed to, their first national appearance) -> The Chargers (6476ms)
What is Head Start? tail lights -0.0 What is Head Start? -> $x: ($x, be head, first) -> (tail lights, were referred as head-lamps, first) -> tail lights (6512ms)
What is Head Start? Friday -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (The four-day Muslim conference, started on, Friday) -> Friday (6518ms)
What is Head Start? a film -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a film, is now headed to, the Sundance Film Festival) -> a film (6561ms)
What is Head Start? Mikhail Margelov -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mikhail Margelov, is head of, the Federation Council) -> Mikhail Margelov (6600ms)
What is Head Start? Ring -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Ring, headed was, the first research and development team) -> Ring (6587ms)
What is Head Start? rabbi -0.0 What is Head Start? -> $x: ($x, be head, judaism) -> (rabbi, is the head of, a Hasidic Judaism dynasty) -> rabbi (6587ms)
What is Head Start? FA chairman David Bernstein -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (FA chairman David Bernstein, is heading, the hunt) -> FA chairman David Bernstein (6518ms)
What is Head Start? 3 and 4 year olds -0.0 What is Head Start? -> $x: ($x, in, head start) -> (3 and 4 year olds, enrolled in, Head Start) -> 3 and 4 year olds (6583ms)
What is Head Start? managing director -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (managing director, is head of, the Federation) -> managing director (6598ms)
What is Head Start? Shimizu -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Shimizu, was the 25th head honcho of, SMR jo-swinging gang) -> Shimizu (6512ms)
What is Head Start? Zubari -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Zubari, was the head of, a gang) -> Zubari (6552ms)
What is Head Start? only -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (only, was heading to, Wellington) -> only (6586ms)
What is Head Start? the 32-year-old Moussa -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the 32-year-old Moussa, was named to head, Rome) -> the 32-year-old Moussa (6556ms)
What is Head Start? the team -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (the team, were heading back to, Wellington) -> the team (6512ms)
What is Head Start? The Dutchman -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The Dutchman, is heading towards, a first) -> The Dutchman (6484ms)
What is Head Start? time -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (the Owl, started on, time) -> time (6492ms)
What is Head Start? the gains children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the gains children, make in, Head Start) -> the gains children (6524ms)
What is Head Start? MVP Kobe Bryant -0.0 What is Head Start? -> $x: ($x, be head, first) -> (MVP Kobe Bryant, will be heading to, his first Olympics) -> MVP Kobe Bryant (6499ms)
What is Head Start? the listing -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the listing, was headed for, a strong first day) -> the listing (6600ms)
What is Head Start? The weapons -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (The weapons, were headed for, Los Angeles street gangs) -> The weapons (6600ms)
What is Head Start? August -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim holiday, will start on, August) -> August (6594ms)
What is Head Start? full members -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (full members, is headed by, Phil Murray) -> full members (6476ms)
What is Head Start? open-wheel drivers -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (open-wheel drivers, are heading to, Nascar) -> open-wheel drivers (6601ms)
What is Head Start? the direction -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the direction, was headed in, the first place) -> the direction (6530ms)
What is Head Start? Jimmy Lyons -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Jimmy Lyons, was the head of, the Festival) -> Jimmy Lyons (6506ms)
What is Head Start? RSPCA Burwood East -0.0 What is Head Start? -> $x: ($x, be head, rspca) -> (RSPCA Burwood East, is the head office of, RSPCA Victoria) -> RSPCA Burwood East (6570ms)
What is Head Start? Rei Ginsei -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Rei Ginsei, is the head of, his own little gang) -> Rei Ginsei (6590ms)
What is Head Start? Tackes -0.0 What is Head Start? -> $x: ($x, be head, cheerleading) -> (Tackes, was head coach of, the girls varsity cheerleading team) -> Tackes (6552ms)
What is Head Start? Select staff -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Select staff, believe in, Head Start) -> Select staff (6587ms)
What is Head Start? Haruna -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Haruna, was the head of, a gang) -> Haruna (6557ms)
What is Head Start? a year -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (a year, was the head of, the Brigade?s Women?s Federation) -> a year (6518ms)
What is Head Start? the smug and sanctimonious proprietor -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the smug and sanctimonious proprietor, is head of, the gang) -> the smug and sanctimonious proprietor (6476ms)
What is Head Start? SB? Selma -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (SB? Selma, is headed to, the 68th annual Venice Film Festival) -> SB? Selma (6566ms)
What is Head Start? The IPCC Miraculous -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (The IPCC Miraculous, was heading back for, Federation HQ) -> The IPCC Miraculous (6540ms)
What is Head Start? Ms. Fuentes -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Ms. Fuentes, worked in, Head Start) -> Ms. Fuentes (6601ms)
What is Head Start? Dan and Darlene -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Dan and Darlene, were heading on to, Rome Northern Germany) -> Dan and Darlene (6484ms)
What is Head Start? the school district -0.0 What is Head Start? -> $x: ($x, be head, im) -> (the school district, would be heading back to, school ?I?m) -> the school district (6530ms)
What is Head Start? the High Priest -0.0 What is Head Start? -> $x: ($x, be head, judaism) -> (the High Priest, was the head of, Judaism) -> the High Priest (6573ms)
What is Head Start? Nearly 900,000 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Nearly 900,000 children, are in, Head Start) -> Nearly 900,000 children (6512ms)
What is Head Start? Peking Tom -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Peking Tom, was the Australian head of, a rival gang) -> Peking Tom (6598ms)
What is Head Start? the professor -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the professor, was heading to, the NFTA Terminal) -> the professor (6589ms)
What is Head Start? Jenny -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Jenny, was in, Head Start) -> Jenny (6601ms)
What is Head Start? Players -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Players, are thrown head, first) -> Players (6600ms)
What is Head Start? We?ve -0.0 What is Head Start? -> $x: ($x, be head, first) -> (We?ve, are heading fast to, our first day) -> We?ve (6600ms)
What is Head Start? Gunnar -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Gunnar, is soon elected head of, the European federation) -> Gunnar (6592ms)
What is Head Start? The precious metal -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The precious metal, is heading for, the first weekly gain) -> The precious metal (6600ms)
What is Head Start? Manny Schellscheidt -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Manny Schellscheidt, is the head of, the U.S. Soccer Federation) -> Manny Schellscheidt (6506ms)
What is Head Start? top secret documents -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (top secret documents, is heading back to, Federation-held space) -> top secret documents (6512ms)
What is Head Start? 18.9 % -0.0 What is Head Start? -> $x: ($x, in, head start) -> (18.9 %, worked in, Head Start) -> 18.9 % (6594ms)
What is Head Start? Train -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Train, is heading to, the premiere NASCAR event) -> Train (6584ms)
What is Head Start? serious problems -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (serious problems, are headed straight for, gang membership) -> serious problems (6492ms)
What is Head Start? the film -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the film, is headed to, the Sundance Film Festival) -> the film (6535ms)
What is Head Start? You?ve -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (You?ve, are headed to, Karate?and) -> You?ve (6484ms)
What is Head Start? The Solar Bus -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The Solar Bus, is heading to, Bonnaroo music festival) -> The Solar Bus (6556ms)
What is Head Start? The Slaughter Rule -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The Slaughter Rule, is headed for, another film festival) -> The Slaughter Rule (6586ms)
What is Head Start? Specifying plan -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Specifying plan, heads is, a mandatory first step) -> Specifying plan (6598ms)
What is Head Start? Singapore -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Singapore, are heading to, the Sydney Film Festival) -> Singapore (6499ms)
What is Head Start? Tour -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Tour, is heading into, the terminal) -> Tour (6598ms)
What is Head Start? front man -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (front man, was heading, a festival) -> front man (6499ms)
What is Head Start? half -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (half, was heading under, the fence) -> half (6530ms)
What is Head Start? Gallani -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Gallani, was head of, federation and Berlusconi) -> Gallani (6556ms)
What is Head Start? Alex -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Alex, [is] the head of, the gang) -> Alex (6506ms)
What is Head Start? Morrissey -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Morrissey, was heading for, First Class) -> Morrissey (6587ms)
What is Head Start? Pebble Beach -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Pebble Beach, was headed for, its first sellout ?) -> Pebble Beach (6597ms)
What is Head Start? The Society -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (The Society, was now headed by, Nicholas Murray Butler) -> The Society (6570ms)
What is Head Start? Linda and I -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Linda and I, will be heading south, first to Tennesee) -> Linda and I (6589ms)
What is Head Start? a 17 year old step child -0.0 What 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)
What is Head Start? DLL preschoolers -0.0 What is Head Start? -> $x: ($x, in, head start) -> (DLL preschoolers, enrolled in, Head Start) -> DLL preschoolers (6580ms)
What is Head Start? Charlie Angus -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Charlie Angus, will be heading to, Rome) -> Charlie Angus (6587ms)
What is Head Start? Jackie Hollywood -0.0 What is Head Start? -> $x: ($x, be head, mardi gras) -> (Jackie Hollywood, is heading to, Mardi Gras) -> Jackie Hollywood (6580ms)
What is Head Start? Carpenter -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Carpenter, was headed for, his terminal) -> Carpenter (6594ms)
What is Head Start? Wilson -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Wilson, is the head of, the Police Federation) -> Wilson (6484ms)
What is Head Start? Crown Point -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Crown Point, is headed by, Murray McCartney) -> Crown Point (6530ms)
What is Head Start? the Soke -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (the Soke, are also the Heads of, Kam Lung Kempo Karate) -> the Soke (6589ms)
What is Head Start? Chinese -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Chinese, are heading home for, the Spring Festival gathering) -> Chinese (6594ms)
What is Head Start? Gaspard Ulliel -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Gaspard Ulliel, is heading to, the Cannes Film Festival) -> Gaspard Ulliel (6592ms)
What is Head Start? the time -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (the time, was head of, Motown music and president) -> the time (6592ms)
What is Head Start? the industry -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the industry, is headed, first hand) -> the industry (6598ms)
What is Head Start? next season -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (the Owls, have started to focus on, next season) -> next season (6592ms)
What is Head Start? high-risk children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (high-risk children, enrolled in, Head Start) -> high-risk children (6597ms)
What is Head Start? Sylvia -0.0 What is Head Start? -> $x: ($x, be head, rspca) -> (Sylvia, was head of, an RSPCA shelter) -> Sylvia (6589ms)
What is Head Start? 10 -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (10, are heading back to, NASCAR?s) -> 10 (6467ms)
What is Head Start? Xerez -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Xerez, were heading towards, their first) -> Xerez (6594ms)
What is Head Start? a spree -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Sunni Muslims, started on, a spree) -> a spree (6594ms)
What is Head Start? Prime Minister -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Prime Minister, was a head of, the Stern Gang) -> Prime Minister (6524ms)
What is Head Start? The United States -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (The United States, is headed the way of, Rome) -> The United States (6524ms)
What is Head Start? The storm -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (The storm, was heading inexorably for, Wellington) -> The storm (6547ms)
What is Head Start? Shagmon -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Shagmon, may be the real head of, the gang) -> Shagmon (6506ms)
What is Head Start? 594 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (594 children, enrolled in, Head Start) -> 594 children (6506ms)
What is Head Start? Excellence -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Excellence, is headed by, Dr. Gang Bao) -> Excellence (6599ms)
What is Head Start? a Murray brothers -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (a Murray brothers, was heading for, the Murray Bros. booth) -> a Murray brothers (6484ms)
What is Head Start? the early gains -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the early gains, made in, Head Start) -> the early gains (6580ms)
What is Head Start? Elektra Records -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (Elektra Records, is the head of, Universal Motown) -> Elektra Records (6577ms)
What is Head Start? Stalin -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Stalin, was then the head of, a train and bank robbing gang) -> Stalin (6499ms)
What is Head Start? the meeting -0.0 What is Head Start? -> $x: ($x, be head, im) -> (the meeting, will be the heads of, Ex-Im Bank) -> the meeting (6552ms)
What is Head Start? Ayo -0.0 What is Head Start? -> $x: ($x, be head, im) -> (Ayo, is heading out east at, the beginning of October and Im) -> Ayo (6512ms)
What is Head Start? Sydney Medical School -0.0 What is Head Start? -> $x: ($x, be head, menopause) -> (Sydney Medical School, is Head of, the Menopause clinic) -> Sydney Medical School (6602ms)
What is Head Start? hand luggage -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (hand luggage, so will be heading straight for, terminal 1) -> hand luggage (6561ms)
What is Head Start? the President -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (the President, was head of, the National Wildlife Federation) -> the President (6484ms)
What is Head Start? the common currency -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the common currency, is headed for, its first weekly gain) -> the common currency (6598ms)
What is Head Start? Volker Boehning -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (Volker Boehning, [is] head of, the state hunting association) -> Volker Boehning (6597ms)
What is Head Start? Gay people -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Gay people, should be thrown head, first) -> Gay people (6512ms)
What is Head Start? The tribes -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (The tribes, were heading for, Rome) -> The tribes (6600ms)
What is Head Start? more then 4000 people -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (more then 4000 people, were heading for, Rome) -> more then 4000 people (6540ms)
What is Head Start? Next weekend -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Next weekend, be heading to, the National Book Festival) -> Next weekend (6484ms)
What is Head Start? the greatest route -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (the greatest route, is headed for, hunt) -> the greatest route (6577ms)
What is Head Start? Steve -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (Steve, is head coach at, the Cobra Fencing Club) -> Steve (6557ms)
What is Head Start? one another -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslims, should start spying on, one another) -> one another (6530ms)
What is Head Start? work and Becky -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (work and Becky, are heading down to, the Young LDS Film Festival) -> work and Becky (6535ms)
What is Head Start? Kalmykia -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Kalmykia, is the head of, the International Chess Federation) -> Kalmykia (6570ms)
What is Head Start? The kids -0.0 What is Head Start? -> $x: ($x, in, head start) -> (The kids, were in, Head Start) -> The kids (6566ms)
What is Head Start? Australia -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Australia, was heading towards, federation) -> Australia (6552ms)
What is Head Start? Each section -0.0 What is Head Start? -> $x: ($x, be head, roman numeral) -> (Each section, is headed by, a roman numeral) -> Each section (6592ms)
What is Head Start? the politician -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the politician, is the head of, the biggest gang) -> the politician (6476ms)
What is Head Start? the networks -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the networks, are headed by, gangs) -> the networks (6547ms)
What is Head Start? Fuel -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Fuel, is turning heads at, that festival) -> Fuel (6547ms)
What is Head Start? 5 years -0.0 What is Head Start? -> $x: ($x, in, head start) -> (5 years, enrolled in, Head Start) -> 5 years (6561ms)
What is Head Start? Sacred Power -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Sacred Power, is heading to, NASCAR) -> Sacred Power (6573ms)
What is Head Start? Food Fest -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Food Fest, is heading to, the Festival) -> Food Fest (6590ms)
What is Head Start? Sundance and Tribecca -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Sundance and Tribecca, am heading to, the Toronto film festival) -> Sundance and Tribecca (6535ms)
What is Head Start? Gambino -0.0 What is Head Start? -> $x: ($x, be head, hiphop) -> (Gambino, is really turning heads in, this hiphop game) -> Gambino (6573ms)
What is Head Start? The New Orleans Saints -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The New Orleans Saints, are headed to, their first Super Bowl) -> The New Orleans Saints (6484ms)
What is Head Start? New Hampshire -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (New Hampshire, was headed for, the terminal moraines) -> New Hampshire (6577ms)
What is Head Start? the items -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the items, included in, Head Start) -> the items (6540ms)
What is Head Start? Philippe Chatrier -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Philippe Chatrier, was head of, the French Tennis Federation) -> Philippe Chatrier (6535ms)
What is Head Start? a course -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim Ummah, started on, a course) -> a course (6524ms)
What is Head Start? beatification -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (beatification, is headed to, Rome) -> beatification (6577ms)
What is Head Start? The big ones -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The big ones, are headed to, the terminal) -> The big ones (6529ms)
What is Head Start? Simon -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Simon, was the head of, the Rotterdam Film Festival) -> Simon (6535ms)
What is Head Start? families -0.0 What is Head Start? -> $x: ($x, in, head start) -> (families, remain in, Head Start) -> families (6594ms)
What is Head Start? the 11,000 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the 11,000 children, enrolled in, Head Start) -> the 11,000 children (6573ms)
What is Head Start? DSTW -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (DSTW, is heading to, a festival) -> DSTW (6583ms)
What is Head Start? inclusion -0.0 What is Head Start? -> $x: ($x, in, head start) -> (inclusion, mean in, Head Start) -> inclusion (6594ms)
What is Head Start? The truck -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The truck, was headed south on, First Avenue) -> The truck (6547ms)
What is Head Start? Carbondale -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Carbondale, is headed to, the Cannes Film Festival) -> Carbondale (6524ms)
What is Head Start? the Lyttelton Band -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Lyttelton Band, was headed for, the first time) -> the Lyttelton Band (6484ms)
What is Head Start? children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (children, enrolled in, Head Start) -> children (6556ms)
What is Head Start? Joe -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Joe, is heading to, creativ festival) -> Joe (6506ms)
What is Head Start? a bumpy personal connection -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (a bumpy personal connection, are headed to, the NASCAR Hall) -> a bumpy personal connection (6565ms)
What is Head Start? Cosker -0.0 What is Head Start? -> $x: ($x, be head, desert storm) -> (Cosker, is heading to, the Desert Storm Poker Run) -> Cosker (6492ms)
What is Head Start? Read More Team USA -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Read More Team USA, is headed to, Rome) -> Read More Team USA (6506ms)
What is Head Start? low-income children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (low-income children, enrolled in, Head Start) -> low-income children (6589ms)
What is Head Start? A group of people -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (A group of people, were heading for, an inner fence) -> A group of people (6467ms)
What is Head Start? a large scale -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Hindu-Muslim riots, started on, a large scale) -> a large scale (6467ms)
What is Head Start? the Jewish people -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Jewish people, were headed off into, the first exile) -> the Jewish people (6573ms)
What is Head Start? 4.5 -0.0 What is Head Start? -> $x: ($x, be head, im) -> (4.5, is really heading in, directions Im really happy with) -> 4.5 (6552ms)
What is Head Start? Hermanos Inglesos -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Hermanos Inglesos, are turning heads with, their first release) -> Hermanos Inglesos (6570ms)
What is Head Start? Law -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Law, was headed for, Rome) -> Law (6565ms)
What is Head Start? Illinois -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Illinois, is headed to, Rome later) -> Illinois (6597ms)
What is Head Start? Krux -0.0 What is Head Start? -> $x: ($x, be head, nh) -> (Krux, is the red headed step child of, NHS truck brands) -> Krux (6583ms)
What is Head Start? Danica Patrick -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Danica Patrick, is officially headed to, NASCAR) -> Danica Patrick (6524ms)
What is Head Start? Concert master -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Concert master, is the head of, first violin) -> Concert master (6540ms)
What is Head Start? seeding -0.0 What is Head Start? -> $x: ($x, be head, first) -> (seeding, will be determined to Head, first) -> seeding (6598ms)
What is Head Start? every child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (every child, enrolled in, Head Start) -> every child (6518ms)
What is Head Start? the committee -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (the committee, was headed by, the Federation) -> the committee (6512ms)
What is Head Start? everybody -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (everybody, else is heading through, the fence) -> everybody (6566ms)
What is Head Start? the bus -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (the bus, had been headed from, Fort McMurray) -> the bus (6540ms)
What is Head Start? the previous 11 drivers -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (the previous 11 drivers, are headed to, the NASCAR Hall) -> the previous 11 drivers (6512ms)
What is Head Start? Ute -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Ute, was the head of, the notorious Perkins gang) -> Ute (6600ms)
What is Head Start? NEDFEST -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (NEDFEST, we?ll be heading to, Copper Country Festival) -> NEDFEST (6592ms)
What is Head Start? action -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (action, must be headed by, a meticulous hunt) -> action (6587ms)
What is Head Start? 15:34 Prince Fielder -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (15:34 Prince Fielder, is headed for, Motown) -> 15:34 Prince Fielder (6600ms)
What is Head Start? industrial agribusiness -0.0 What is Head Start? -> $x: ($x, be head, waterloo) -> (industrial agribusiness, is headed toward, its Waterloo) -> industrial agribusiness (6600ms)
What is Head Start? young children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (young children, enrolled in, Head Start) -> young children (6524ms)
What is Head Start? coach -0.0 What is Head Start? -> $x: ($x, be head, first) -> (coach, were headed to, first class) -> coach (6566ms)
What is Head Start? Ali -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Ali, is also head of, the West Asian Football Federation) -> Ali (6597ms)
What is Head Start? INTRODUCTION Many children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (INTRODUCTION Many children, enrolled in, Head Start) -> INTRODUCTION Many children (6467ms)
What is Head Start? Latitude -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Latitude, are heading down to, his SWN Festival) -> Latitude (6547ms)
What is Head Start? pregnant women -0.0 What is Head Start? -> $x: ($x, in, head start) -> (pregnant women, enrolled in, Head Start) -> pregnant women (6492ms)
What is Head Start? Directors Billy -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (Directors Billy, is the head of, the Hames Shihan-Ryu Karate) -> Directors Billy (6535ms)
What is Head Start? quarterback -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (quarterback, has been the head coach at, Murray State) -> quarterback (6580ms)
What is Head Start? The 49ers -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (The 49ers, are headed to, Motown) -> The 49ers (6570ms)
What is Head Start? the Drool -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (the Drool, will be heading, another hunt) -> the Drool (6499ms)
What is Head Start? the recruits -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the recruits, are thrown head, first) -> the recruits (6601ms)
What is Head Start? a baby -0.0 What is Head Start? -> $x: ($x, be head, first) -> (a baby, to be born head, first) -> a baby (6524ms)
What is Head Start? Chances -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Chances, are he?ll head to, Rome) -> Chances (6583ms)
What is Head Start? Comstock -0.0 What is Head Start? -> $x: ($x, be head, kkk) -> (Comstock, was the head of, the kkk) -> Comstock (6561ms)
What is Head Start? companies -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (companies, are heading to, festivals) -> companies (6467ms)
What is Head Start? preschoolers -0.0 What is Head Start? -> $x: ($x, in, head start) -> (preschoolers, enrolled in, Head Start) -> preschoolers (6587ms)
What is Head Start? Deb Curtis -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Deb Curtis, worked in, Head Start) -> Deb Curtis (6589ms)
What is Head Start? the new station -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the new station, was headed off to, my first) -> the new station (6596ms)
What is Head Start? young people -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (young people, might be headed for, involvement in gangs) -> young people (6580ms)
What is Head Start? the helicopter -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (the helicopter, was heading to, Wellington) -> the helicopter (6540ms)
What is Head Start? 607 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (607 children, enrolled in, head start) -> 607 children (6484ms)
What is Head Start? The ten stanzas -0.0 What is Head Start? -> $x: ($x, be head, roman numeral) -> (The ten stanzas, are headed by, Roman numerals) -> The ten stanzas (6561ms)
What is Head Start? 3-4 year olds -0.0 What is Head Start? -> $x: ($x, in, head start) -> (3-4 year olds, enrolled in, Head Start) -> 3-4 year olds (6599ms)
What is Head Start? the effort -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (the effort, is headed up by, the NH Office) -> the effort (6600ms)
What is Head Start? Cisco -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Cisco, are actually heading around, the first corner) -> Cisco (6577ms)
What is Head Start? Tuesday -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim holiday, starts on, Tuesday) -> Tuesday (6561ms)
What is Head Start? Al Capone -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Al Capone, was now head of, Chicago?s biggest gang) -> Al Capone (6547ms)
What is Head Start? The Power -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The Power, will be heading to, the Cannes Film Festival) -> The Power (6492ms)
What is Head Start? the trend -0.0 What is Head Start? -> $x: ($x, be head, im) -> (the trend, is heading, this way and I?m) -> the trend (6506ms)
What is Head Start? the Capitol and Obama -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Capitol and Obama, was headed to, the first) -> the Capitol and Obama (6573ms)
What is Head Start? the outer perimeter fence -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (the outer perimeter fence, were heading for, an inner fence) -> the outer perimeter fence (6530ms)
What is Head Start? the train -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the train, was headed for, Lambert Airport-Main Terminal) -> the train (6499ms)
What is Head Start? Edgar Chandler -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Edgar Chandler, was the head of, the Church Federation) -> Edgar Chandler (6573ms)
What is Head Start? nearly 900,000 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (nearly 900,000 children, are in, Head Start) -> nearly 900,000 children (6468ms)
What is Head Start? consumers -0.0 What is Head Start? -> $x: ($x, be head, first) -> (consumers, are heading, first) -> consumers (6506ms)
What is Head Start? the Saints -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Saints, are going head-to-head in, the first NFL game) -> the Saints (6529ms)
What is Head Start? Brown -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Brown, began in, Head Start) -> Brown (6594ms)
What is Head Start? Ill -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Ill, be headed, first) -> Ill (6577ms)
What is Head Start? The second option -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The second option, is to head to, the Carcelen bus terminal) -> The second option (6499ms)
What is Head Start? the animation -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the animation, will be heading to, a few movie festivals) -> the animation (6512ms)
What is Head Start? each family -0.0 What is Head Start? -> $x: ($x, in, head start) -> (each family, enrolled in, Head Start) -> each family (6589ms)
What is Head Start? two friends -0.0 What is Head Start? -> $x: ($x, be head, first) -> (two friends, are heading to, Barbados first two weeks) -> two friends (6556ms)
What is Head Start? the JACKSON car -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the JACKSON car, is headed for, the DL&W Hoboken Terminal) -> the JACKSON car (6594ms)
What is Head Start? a band contest -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a band contest, will be heading to, the acclaimed music festival) -> a band contest (6600ms)
What is Head Start? Carl Jensen -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Carl Jensen, was headed for, his first big meeting) -> Carl Jensen (6573ms)
What is Head Start? an older woman -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (an older woman, is head of, the whole gang) -> an older woman (6552ms)
What is Head Start? 2nd one -0.0 What is Head Start? -> $x: ($x, be head, first) -> (2nd one, is Head, first Servlets) -> 2nd one (6540ms)
What is Head Start? An International Wine & Food Fest -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (An International Wine & Food Fest, is heading to, the Festival) -> An International Wine & Food Fest (6499ms)
What is Head Start? different days -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim and Chinese months, start on, different days) -> different days (6561ms)
What is Head Start? holiday shopping -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (night owls, can get a head start on, holiday shopping) -> holiday shopping (6556ms)
What is Head Start? Classics -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Classics, was heading for, a First) -> Classics (6598ms)
What is Head Start? Sat 12 Feb I?ll -0.0 What 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)
What is Head Start? a rock star -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a rock star, is heading to, the Cannes Film Festival) -> a rock star (6592ms)
What is Head Start? the woods -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the woods, are heading up to, the festival) -> the woods (6547ms)
What is Head Start? Brentwood -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Brentwood, are heading out to, the Kiwanis Festival) -> Brentwood (6556ms)
What is Head Start? The sultans and governors -0.0 What 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)
What is Head Start? home prices -0.0 What is Head Start? -> $x: ($x, be head, first) -> (home prices, are headed northward for, the first time) -> home prices (6597ms)
What is Head Start? Andrew -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Andrew, was the Head of, FIRST) -> Andrew (6589ms)
What is Head Start? the new paper -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the new paper, was headed, ?The ?Safety First ? Communists) -> the new paper (6540ms)
What is Head Start? Woodside -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Woodside, is heading, the China-Australia Terminal Consortium) -> Woodside (6592ms)
What is Head Start? the work -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the work, was headed for, either Rome or London) -> the work (6597ms)
What is Head Start? the University -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the University, is headed to, the Sundance Film Festival) -> the University (6597ms)
What is Head Start? Cronin -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Cronin, was the head coach at, Murray State) -> Cronin (6598ms)
What is Head Start? the Knicks -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Knicks, might be headed to, their first losing streak) -> the Knicks (6535ms)
What is Head Start? Mike Vening -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mike Vening, is head of, the Stockton Borough First Federation) -> Mike Vening (6535ms)
What is Head Start? true Bill France -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (true Bill France, was still the head of, NASCAR) -> true Bill France (6597ms)
What is Head Start? Mr. Obama -0.0 What is Head Start? -> $x: ($x, be head, mount rushmore) -> (Mr. Obama, is headed for, Mount Rushmore) -> Mr. Obama (6565ms)
What is Head Start? Basil -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Basil, is the head of, town ?s gang) -> Basil (6580ms)
What is Head Start? Aleeta -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (Aleeta, is the head instructor at, the Feminist Karate Union) -> Aleeta (6580ms)
What is Head Start? The ABA -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The ABA, is heading to, the Rio Grande Valley Bird Festival) -> The ABA (6587ms)
What is Head Start? compared teachers and children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (compared teachers and children, enrolled in, Head Start) -> compared teachers and children (6540ms)
What is Head Start? a child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (a child, participating in, Head Start) -> a child (6592ms)
What is Head Start? Legislators -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Legislators, continue investing in, Head Start) -> Legislators (6476ms)
What is Head Start? motoring history -0.0 What is Head Start? -> $x: ($x, be head, first) -> (motoring history, is headed Stateside for, the very first time) -> motoring history (6476ms)
What is Head Start? a rough and tough biker -0.0 What 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)
What is Head Start? market forces -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (market forces, were heading for, 'an NHS-style crash) -> market forces (6573ms)
What is Head Start? Rademacher -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Rademacher, will also be heading out to, the festival) -> Rademacher (6530ms)
What is Head Start? Janes -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (Janes, has been head professional at, Toronto Hunt) -> Janes (6484ms)
What is Head Start? Paul -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Paul, is headed to, Rome) -> Paul (6580ms)
What is Head Start? Seth Cohn -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (Seth Cohn, is the new head of, NH Info) -> Seth Cohn (6589ms)
What is Head Start? Hettinga -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Hettinga, was head coach at, MacMurray College) -> Hettinga (6512ms)
What is Head Start? Maryland -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Maryland, are going head-to-head in, the first) -> Maryland (6484ms)
What is Head Start? Aikido -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Aikido, is now the head of, the Ki Aikido Federation) -> Aikido (6600ms)
What is Head Start? Teixeira -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Teixeira, had been head of, the Brazilian federation) -> Teixeira (6580ms)
What is Head Start? Asaph -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Asaph, [is] head of, the first division) -> Asaph (6561ms)
What is Head Start? parents -0.0 What is Head Start? -> $x: ($x, in, head start) -> (parents, involved in, Head Start) -> parents (6573ms)
What is Head Start? last year -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (last year, was the head of, the Greek trade-union federation) -> last year (6584ms)
What is Head Start? Haiti -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Haiti, was heading for, its first win) -> Haiti (6540ms)
What is Head Start? India -0.0 What is Head Start? -> $x: ($x, be head, first) -> (India, is the head of, state and first citizen) -> India (6580ms)
What is Head Start? The last few -0.0 What is Head Start? -> $x: ($x, be head, im) -> (The last few, are headed out, ASAP. I?m) -> The last few (6476ms)
What is Head Start? students -0.0 What is Head Start? -> $x: ($x, in, head start) -> (students, had been in, Head Start) -> students (6600ms)
What is Head Start? the foundation -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the foundation, laid in, Head Start) -> the foundation (6552ms)
What is Head Start? homeless children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (homeless children, enroll in, Head Start) -> homeless children (6492ms)
What is Head Start? Steinbeck -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Steinbeck, is headed on, the first page) -> Steinbeck (6467ms)
What is Head Start? 11 % -0.0 What is Head Start? -> $x: ($x, in, head start) -> (11 %, participate in, Head Start) -> 11 % (6570ms)
What is Head Start? Bollinger -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Bollinger, is the head coach at, Hill Murray High School) -> Bollinger (6518ms)
What is Head Start? Surkis -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Surkis, is also head of, the Ukrainian football federation) -> Surkis (6577ms)
What is Head Start? Dunmoyer -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Dunmoyer, was head of, the Personal Insurance Federation) -> Dunmoyer (6491ms)
What is Head Start? December 1st -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (Great Horned and Screech Owls, started on, December 1st) -> December 1st (6566ms)
What is Head Start? February 28 , 2002 -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (an anti-Muslim carnage, started on, February 28 , 2002) -> February 28 , 2002 (6552ms)
What is Head Start? Kristov -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Kristov, [is] the head of, the Russian gang) -> Kristov (6601ms)
What is Head Start? Pierric Chalvin -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Pierric Chalvin, [is] head of, the regional textile federation) -> Pierric Chalvin (6540ms)
What is Head Start? weekend -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (weekend, be heading down to, Hunt Valley) -> weekend (6499ms)
What is Head Start? Nick -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Nick, will be heading to, the Ozone Film Festival) -> Nick (6540ms)
What is Head Start? underwear -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (underwear, was headed for, the fence) -> underwear (6512ms)
What is Head Start? Mugawer -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mugawer, is the head of, the official federation) -> Mugawer (6518ms)
What is Head Start? problems -0.0 What is Head Start? -> $x: ($x, be head, menopause) -> (problems, is head of, the Menopause and PMS centre) -> problems (6589ms)
What is Head Start? a fat ?Italian? guy -0.0 What is Head Start? -> $x: ($x, be head, modeling agency) -> (a fat ?Italian? guy, is head of, the modeling agency) -> a fat ?Italian? guy (6586ms)
What is Head Start? preschool children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (preschool children, enrolled in, Head Start) -> preschool children (6570ms)
What is Head Start? the stochastics -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the stochastics, was a subject heading of, first order) -> the stochastics (6518ms)
What is Head Start? George W. Bush -0.0 What is Head Start? -> $x: ($x, be head, cheerleading) -> (George W. Bush, was also the head of, the cheerleading team) -> George W. Bush (6561ms)
What is Head Start? a long one -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (a long one, was headed for, the fences) -> a long one (6573ms)
What is Head Start? even soft drugs -0.0 What is Head Start? -> $x: ($x, be head, drug addiction) -> (even soft drugs, was headed for, drug addiction) -> even soft drugs (6552ms)
What is Head Start? Tony Daley -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Tony Daley, [is] head of, first team performance) -> Tony Daley (6467ms)
What is Head Start? The London team -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (The London team, will be headed by, Simon Murray) -> The London team (6577ms)
What is Head Start? outward respectability -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (outward respectability, are heads of, the Mildew gang) -> outward respectability (6592ms)
What is Head Start? the draft -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the draft, was headed to, his first Pro Bowl) -> the draft (6601ms)
What is Head Start? Ms. Sagheb -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Ms. Sagheb, is the head of, the Afghan Basketball Federation) -> Ms. Sagheb (6592ms)
What is Head Start? poverty -0.0 What is Head Start? -> $x: ($x, in, head start) -> (poverty, are in, Head Start) -> poverty (6589ms)
What is Head Start? Design -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Design, is the heading of, the first chapter) -> Design (6601ms)
What is Head Start? the Rubicon -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the Rubicon, is heading toward, Rome) -> the Rubicon (6594ms)
What is Head Start? the parents and families -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the parents and families, enrolled in, Head Start) -> the parents and families (6598ms)
What is Head Start? Shannon -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Shannon, was head of, the festival) -> Shannon (6540ms)
What is Head Start? Grant and Wesley -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Grant and Wesley, are heading to, the SXSW Interactive festival) -> Grant and Wesley (6535ms)
What is Head Start? emeralds -0.0 What is Head Start? -> $x: ($x, be head, first) -> (emeralds, was headed at, first) -> emeralds (6524ms)
What is Head Start? 1985 Scotland -0.0 What is Head Start? -> $x: ($x, be head, first) -> (1985 Scotland, was heading for, its first Vuelta win) -> 1985 Scotland (6584ms)
What is Head Start? Every child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Every child, receiving services in, Head Start) -> Every child (6598ms)
What is Head Start? the 12th August -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslim mischief, started on, the 12th August) -> the 12th August (6552ms)
What is Head Start? Masters champ Charl Schwartzel -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Masters champ Charl Schwartzel, is heading for, the first tee) -> Masters champ Charl Schwartzel (6577ms)
What is Head Start? The officer -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The officer, was heading south on, First Colonial) -> The officer (6586ms)
What is Head Start? Monday -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslims ismaelitas, started on, Monday) -> Monday (6587ms)
What is Head Start? Ash -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Ash, is heading your way for, the Queenscliff Music Festival) -> Ash (6587ms)
What is Head Start? I?ll -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (I?ll, be headed to, Rome) -> I?ll (6592ms)
What is Head Start? Slope -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Slope, is only the head of, first impuls) -> Slope (6583ms)
What is Head Start? Grand Prince ?rp?d -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Grand Prince ?rp?d, was the head of, the tribal federation) -> Grand Prince ?rp?d (6561ms)
What is Head Start? Children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Children, enrolled in, Head Start) -> Children (6594ms)
What is Head Start? Stacy -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (Stacy, is heading to, NH next) -> Stacy (6594ms)
What is Head Start? the hour -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (Owl Hollow Tours, start on, the hour) -> the hour (6570ms)
What is Head Start? Adam -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Adam, was the head of, the first race) -> Adam (6601ms)
What is Head Start? the school -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the school, was head up, a literary festival) -> the school (6484ms)
What is Head Start? fine-tune predictions -0.0 What is Head Start? -> $x: ($x, be head, first) -> (fine-tune predictions, is headed for, that first , or second) -> fine-tune predictions (6530ms)
What is Head Start? a disability -0.0 What is Head Start? -> $x: ($x, in, head start) -> (a disability, enrolled in, Head Start) -> a disability (6512ms)
What is Head Start? Robert De Niro -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Robert De Niro, will be heading up, the festival?s) -> Robert De Niro (6594ms)
What is Head Start? Mister Saturday Night -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Mister Saturday Night, is headed to, First Avenue) -> Mister Saturday Night (6577ms)
What is Head Start? a friend -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (a friend, was the head of, a biker gang) -> a friend (6570ms)
What is Head Start? a large muscled dwarf -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (a large muscled dwarf, was the head of, the hunting squadron) -> a large muscled dwarf (6530ms)
What is Head Start? the rows -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the rows, are headed by, the first sample) -> the rows (6597ms)
What is Head Start? David Dalglish -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (David Dalglish, is Head Pharmacist at, NHS Borders) -> David Dalglish (6561ms)
What is Head Start? Criss Oliva -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Criss Oliva, was headed to, the rock festival) -> Criss Oliva (6561ms)
What is Head Start? the pack -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (the pack, were heading off on, the hunt) -> the pack (6547ms)
What is Head Start? A woman -0.0 What is Head Start? -> $x: ($x, be head, first) -> (A woman, is thrown head, first) -> A woman (6546ms)
What is Head Start? The firm -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (The firm, is headed by, brokers Hunt Barnett) -> The firm (6589ms)
What is Head Start? hunters -0.0 What is Head Start? -> $x: ($x, be head, first) -> (hunters, are heading out for, the first) -> hunters (6530ms)
What is Head Start? The film -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The film, is heading into, its second festival phase) -> The film (6552ms)
What is Head Start? hair transplantation -0.0 What is Head Start? -> $x: ($x, be head, clone) -> (hair transplantation, is headed toward, hair cloning) -> hair transplantation (6592ms)
What is Head Start? Mr Ramsay -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mr Ramsay, is a former head of, the Victorian Farmers Federation) -> Mr Ramsay (6499ms)
What is Head Start? international diplomacy -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (international diplomacy, is head of, the Rome office) -> international diplomacy (6600ms)
What is Head Start? Shintani Sensei -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Shintani Sensei, was head of, the Shintani Wado-Kai Federation) -> Shintani Sensei (6529ms)
What is Head Start? 4-year-old children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (4-year-old children, enrolled in, Head Start) -> 4-year-old children (6491ms)
Who is the governor of Alaska? Palin 1.777777777777 Who is the governor of Alaska? -> $x: ($x, be govenor of, alaska) -> (Palin, is Govenor of, Alaska) -> Palin (1759ms)
Who is the governor of Alaska? The rising Republican star 1.333333333332 Who 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)
Who is the governor of Alaska? a beauty queen 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a beauty queen, can be elected governor of, Alaska) -> a beauty queen (2170ms)
Who is the governor of Alaska? Frank Murkowki 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Frank Murkowki, is the governor of, Alaska) -> Frank Murkowki (1874ms)
Who is the governor of Alaska? Also Summary Sarah Palin 1.333333333332 Who 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)
Who is the governor of Alaska? The vice presidential choice 1.333333333332 Who 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)
Who is the governor of Alaska? the fading carnival attraction 1.333333333332 Who 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)
Who is the governor of Alaska? A contrasting example 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (A contrasting example, is the Governor of, Alaska) -> A contrasting example (2013ms)
Who is the governor of Alaska? the Alaska Daily Empire 1.333333333332 Who 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)
Who is the governor of Alaska? the years Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the years Palin, was Governor of, Alaska) -> the years Palin (2638ms)
Who is the governor of Alaska? a Finn 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a Finn, was Governor of, Alaska) -> a Finn (2819ms)
Who is the governor of Alaska? Sarah Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah Palin, has only been Governor of, Alaska) -> Sarah Palin (2882ms)
Who is the governor of Alaska? Ms. Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Ms. Palin, has been governor of, Alaska) -> Ms. Palin (2882ms)
Who is the governor of Alaska? Frank Murkowski 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Frank Murkowski, was elected governor of, Alaska) -> Frank Murkowski (2865ms)
Who is the governor of Alaska? McCain 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (McCain, is the Governor of, Alaska) -> McCain (2013ms)
Who is the governor of Alaska? The late Jay Hammond 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The late Jay Hammond, was governor of, Alaska) -> The late Jay Hammond (2170ms)
Who is the governor of Alaska? Sean Parnell 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sean Parnell, has been governor of, Alaska) -> Sean Parnell (2865ms)
Who is the governor of Alaska? president 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (president, was governor of, Alaska) -> president (3063ms)
Who is the governor of Alaska? gubernatorial chutzpah 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (gubernatorial chutzpah, was elected governor of, Alaska) -> gubernatorial chutzpah (2014ms)
Who is the governor of Alaska? now and 2012 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (now and 2012, is governor of, Alaska) -> now and 2012 (2111ms)
Who is the governor of Alaska? Mr. Parnell 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Mr. Parnell, is governor of, Alaska) -> Mr. Parnell (2818ms)
Who is the governor of Alaska? Sarah 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah, is the governor of, Alaska) -> Sarah (2014ms)
Who is the governor of Alaska? John Brady 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (John Brady, was later territorial governor of, Alaska) -> John Brady (2818ms)
Who is the governor of Alaska? whose mother 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (whose mother, is governor of, Alaska) -> whose mother (2865ms)
Who is the governor of Alaska? four 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (four, was governor of, Alaska) -> four (2638ms)
Who is the governor of Alaska? the brow 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the brow, is the governor of, Alaska) -> the brow (2882ms)
Who is the governor of Alaska? William A. Egan 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (William A. Egan, was again elected Governor of, Alaska) -> William A. Egan (2112ms)
Who is the governor of Alaska? Pages Governor Sarah Palin 1.333333333332 Who 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)
Who is the governor of Alaska? a 44 year old mother 1.333333333332 Who 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)
Who is the governor of Alaska? 2010 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (2010, has been the former governor of, Alaska) -> 2010 (2112ms)
Who is the governor of Alaska? Sep 5 , 2008 4:40 PM EDT Ms. Palin 1.333333333332 Who 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)
Who is the governor of Alaska? Rick Perry 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Rick Perry, had been governor of, Alaska) -> Rick Perry (2818ms)
Who is the governor of Alaska? Summary Sarah Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Summary Sarah Palin, is a former Governor of, Alaska) -> Summary Sarah Palin (2882ms)
Who is the governor of Alaska? The writer 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The writer, is governor of, Alaska) -> The writer (1759ms)
Who is the governor of Alaska? 1 Sarah Louise Heath Palin 1.333333333332 Who 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)
Who is the governor of Alaska? she?s 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (she?s, been the governor of, Alaska) -> she?s (2865ms)
Who is the governor of Alaska? a small town 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a small town, has been governor of, Alaska) -> a small town (2791ms)
Who is the governor of Alaska? Sara Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sara Palin, was the Governor of, Alaska) -> Sara Palin (2792ms)
Who is the governor of Alaska? Democrat Tony Knowles 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Democrat Tony Knowles, was elected governor of, Alaska) -> Democrat Tony Knowles (2791ms)
Who is the governor of Alaska? a woman 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a woman, would be either the Governor of, Alaska) -> a woman (2014ms)
Who is the governor of Alaska? Murkowski 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Murkowski, was elected governor of, Alaska) -> Murkowski (2866ms)
Who is the governor of Alaska? mayor 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (mayor, is Governor of, Alaska) -> mayor (1759ms)
Who is the governor of Alaska? Swineford 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Swineford, was governor of, Alaska) -> Swineford (1873ms)
Who is the governor of Alaska? VP 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (VP, is the Governor of, Alaska) -> VP (2818ms)
Who is the governor of Alaska? todd palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (todd palin, actually is the governor of, alaska) -> todd palin (1759ms)
Who is the governor of Alaska? Trig?s mum 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Trig?s mum, is the Governor of, Alaska) -> Trig?s mum (2170ms)
Who is the governor of Alaska? the Interior 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the Interior, was elected Governor of, Alaska) -> the Interior (2170ms)
Who is the governor of Alaska? Sarah Palin Sarah Palin 1.333333333332 Who 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)
Who is the governor of Alaska? Jews 1.11111111111 Who is the governor of Alaska? -> $x: ($x, be governor in, alaska) -> (Jews, have been governors in, Alaska , Idaho and Utah) -> Jews (3063ms)
Who is the governor of Alaska? ?Sarah Palin 0.8888888888870001 Who 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)
Who is the governor of Alaska? Shawn Parnell 0.777777777776 Who 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)
Who is the governor of Alaska? John F. A. 0.777777777776 Who 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)
Who is the governor of Alaska? William Ayer 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (William Ayer, was named CEO of, Alaska Airlines) -> William Ayer (3074ms)
Who is the governor of Alaska? Chugach 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Chugach, is the name of, a Native Alaska culture and people) -> Chugach (3075ms)
Who is the governor of Alaska? Green 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Green, was named the MVP of, the Great Alaska Shootout) -> Green (3074ms)
Who is the governor of Alaska? the company 0.666666666666 Who 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)
Who is the governor of Alaska? Vern 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Vern, was named one of, Alaska?s top) -> Vern (3074ms)
Who is the governor of Alaska? the State 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (Governor Freudenthal, will be delivering the State of, the State) -> the State (3078ms)
Who is the governor of Alaska? the wrong direction 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (Governor Walker, is taking the state in, the wrong direction) -> the wrong direction (3078ms)
Who is the governor of Alaska? a good principle 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, may have been stating, a good principle) -> a good principle (3078ms)
Who is the governor of Alaska? Bakersfield 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, was diner-storming the state in, Bakersfield) -> Bakersfield (3074ms)
Who is the governor of Alaska? the conscious mind 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The only governor, is the state of, the conscious mind) -> the conscious mind (3078ms)
Who is the governor of Alaska? Montana 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the first Governor, is now the state of, Montana) -> Montana (3075ms)
Who is the governor of Alaska? education 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, also is the state board of, education) -> education (3078ms)
Who is the governor of Alaska? Arizona 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The Governor, is suing the State of, Arizona) -> Arizona (3074ms)
Who is the governor of Alaska? time of war 0.555555555553 Who 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)
Who is the governor of Alaska? business leaders 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The governor, is touring the state to talk to, business leaders) -> business leaders (3078ms)
Who is the governor of Alaska? any time 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, was out of the state, any time) -> any time (3074ms)
Who is the governor of Alaska? the economy 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The Governor, is hosting a state-wide summit on, the economy) -> the economy (3078ms)
Who is the governor of Alaska? Lytton 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, am stated to, Lytton) -> Lytton (3078ms)
Who is the governor of Alaska? the cuts 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, is reducing state spending beyond, the cuts) -> the cuts (3078ms)
Who is the governor of Alaska? the track 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (?Governor Christie, is putting our state on, the track) -> the track (3078ms)
Who is the governor of Alaska? the state speech 0.555555555553 Who 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)
Who is the governor of Alaska? 20 days 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, is out of the state for, 20 days) -> 20 days (3074ms)
Who is the governor of Alaska? the great-uncle 0.44444444444500003 Who 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)
Who is the governor of Alaska? The C.ROOK Rick SCOTT 0.11111111111100003 Who 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)
Who is the governor of Alaska? Mitt Romney?s father 0.111111111111 Who 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)
Who is the governor of Alaska? Mr. Osborn 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr. Osborn, was formerly Governor of, Michigan) -> Mr. Osborn (3080ms)
Who is the governor of Alaska? Mitt Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney, was governor of, Michigan) -> Mitt Romney (3080ms)
Who is the governor of Alaska? The Mormon businessman 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The Mormon businessman, was once governor of, Michigan) -> The Mormon businessman (3083ms)
Who is the governor of Alaska? Mitt 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt, had been the Governor of, Michigan) -> Mitt (3088ms)
Who is the governor of Alaska? Hull 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Hull, was Governor of, the Michigan territories) -> Hull (3085ms)
Who is the governor of Alaska? Mabus 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Mabus, [is] the former governor of, Mississippi) -> Mabus (3085ms)
Who is the governor of Alaska? George 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George, [is] the governor of, Michigan) -> George (3087ms)
Who is the governor of Alaska? Engler 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Engler, is a former Republican governor of, Michigan) -> Engler (3083ms)
Who is the governor of Alaska? Russell A. Alger 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Russell A. Alger, was a former Governor of, Michigan) -> Russell A. Alger (3090ms)
Who is the governor of Alaska? 1848?Democrat 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (1848?Democrat, was longtime territorial Governor of, Michigan) -> 1848?Democrat (3080ms)
Who is the governor of Alaska? The stand-in 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The stand-in, is the governor of, Michigan) -> The stand-in (3080ms)
Who is the governor of Alaska? ? George Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (? George Romney, was a three-term governor of, Michigan) -> ? George Romney (3087ms)
Who is the governor of Alaska? course Jennifer Granholm 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (course Jennifer Granholm, is the governor of, Michigan) -> course Jennifer Granholm (3085ms)
Who is the governor of Alaska? Republican Rick Snyder 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Republican Rick Snyder, has been elected governor of, Michigan) -> Republican Rick Snyder (3087ms)
Who is the governor of Alaska? fifteen years 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (fifteen years, ago is now the governor of, Mississippi) -> fifteen years (3090ms)
Who is the governor of Alaska? Tate Reeves 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Tate Reeves, is the Lieutenant Governor of, Mississippi) -> Tate Reeves (3087ms)
Who is the governor of Alaska? William G. Milliken 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (William G. Milliken, was governor of, Michigan) -> William G. Milliken (3083ms)
Who is the governor of Alaska? the character 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (the character, is the Governor of, Mississippi) -> the character (3083ms)
Who is the governor of Alaska? Austin Blair 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Austin Blair, was governor of, Michigan) -> Austin Blair (3087ms)
Who is the governor of Alaska? The principal executive officer 0.111111111111 Who 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)
Who is the governor of Alaska? Mitt?s father George 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt?s father George, was Governor of, Michigan) -> Mitt?s father George (3088ms)
Who is the governor of Alaska? Mitt Romney Mitt?s father 0.111111111111 Who 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)
Who is the governor of Alaska? the senior Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (the senior Romney, was elected governor of, Michigan) -> the senior Romney (3090ms)
Who is the governor of Alaska? Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney, was once governor of, Michigan) -> Romney (3088ms)
Who is the governor of Alaska? Jennifer Granholm 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Jennifer Granholm, was the two-term governor of, Michigan) -> Jennifer Granholm (3088ms)
Who is the governor of Alaska? George W. Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George W. Romney, was elected governor of, Michigan) -> George W. Romney (3080ms)
Who is the governor of Alaska? Quitman 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Quitman, was elected governor of, Mississippi) -> Quitman (3088ms)
Who is the governor of Alaska? Paul Johnson 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Paul Johnson, was the Governor of, Mississippi) -> Paul Johnson (3085ms)
Who is the governor of Alaska? Romney?s Mitt?s father 0.111111111111 Who 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)
Who is the governor of Alaska? Colonel Stone 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Colonel Stone, was governor of, Mississippi) -> Colonel Stone (3085ms)
Who is the governor of Alaska? The 1:1 Classroom ? 0.111111111111 Who 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)
Who is the governor of Alaska? the Navy 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (the Navy, [is] a former governor of, Mississippi) -> the Navy (3088ms)
Who is the governor of Alaska? 1813 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (1813, was appointed Governor of, Michigan Territory) -> 1813 (3083ms)
Who is the governor of Alaska? John Engler 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (John Engler, is the former Governor of, Michigan) -> John Engler (3089ms)
Who is the governor of Alaska? CEO 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (CEO, later was thrice-elected Governor of, Michigan) -> CEO (3088ms)
Who is the governor of Alaska? Murphy 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Murphy, was elected Governor of, Michigan) -> Murphy (3087ms)
Who is the governor of Alaska? rel=shortlink ? 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (rel=shortlink ?, was the first governor of, Michigan ?) -> rel=shortlink ? (3088ms)
Who is the governor of Alaska? ?My primary focus 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (?My primary focus, is being governor of, Michigan) -> ?My primary focus (3080ms)
Who is the governor of Alaska? Michigan Rick Snyder 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Michigan Rick Snyder, was elected governor of, Michigan) -> Michigan Rick Snyder (3080ms)
Who is the governor of Alaska? George Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George Romney, was governor of, Michigan) -> George Romney (3085ms)
Who is the governor of Alaska? Mitt?s dad 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt?s dad, was governor of, Michigan) -> Mitt?s dad (3085ms)
Who is the governor of Alaska? whose father George 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (whose father George, was governor of, Michigan) -> whose father George (3087ms)
Who is the governor of Alaska? Mr Romney 0.111111111111 Who 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)
Who is the governor of Alaska? Mr Romney?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr Romney?s father, was governor of, Michigan) -> Mr Romney?s father (3085ms)
Who is the governor of Alaska? Andrew Houston Longino 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Andrew Houston Longino, was elected governor of, Mississippi) -> Andrew Houston Longino (3088ms)
Who is the governor of Alaska? Romney?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney?s father, is a former governor of, Michigan) -> Romney?s father (3089ms)
Who is the governor of Alaska? Mitt Romney?s dad 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney?s dad, was governor of, Michigan) -> Mitt Romney?s dad (3087ms)
Who is the governor of Alaska? Barbour 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Barbour, is actually the Governor of, Mississippi) -> Barbour (3088ms)
Who is the governor of Alaska? Rick Snyder 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Rick Snyder, was elected governor of, Michigan) -> Rick Snyder (3090ms)
Who is the governor of Alaska? Haley Barbour 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Haley Barbour, was governor of, Mississippi) -> Haley Barbour (3090ms)
Who is the governor of Alaska? Hazen Pingree 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Hazen Pingree, was elected Governor of, Michigan) -> Hazen Pingree (3078ms)
Who is the governor of Alaska? Romney?s father 0.111111111111 Who 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)
Who is the governor of Alaska? Detroit 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Detroit, [is] governor of, Michigan) -> Detroit (3089ms)
Who is the governor of Alaska? Gen . Charles Clark 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Gen . Charles Clark, was elected Governor of, Mississippi) -> Gen . Charles Clark (3087ms)
Who is the governor of Alaska? Hiram Runnels 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Hiram Runnels, was Governor of, Mississippi and Andrew Jackson) -> Hiram Runnels (3090ms)
Who is the governor of Alaska? whose father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (whose father, was governor of, Michigan) -> whose father (3085ms)
Who is the governor of Alaska? Lowry 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Lowry, was governor of, Mississippi) -> Lowry (3083ms)
Who is the governor of Alaska? Stevens T. Mason 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Stevens T. Mason, was the first governor of, Michigan) -> Stevens T. Mason (3083ms)
Who is the governor of Alaska? the first woman -0.0 Who is the governor of Alaska? -> $x: ($x, elect, governor of alaska) -> (the first woman, elected, governor of Alaska) -> the first woman (3090ms)
What is Jerry's last name? Patty 0.111111111107 What is Jerry's last name? -> $x: (jerry 's, be name, $x) -> (Jerry?s, was named, Patty) -> Patty (911ms)
What is Jerry's last name? the 2010 REALTOR? -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Payne, was named, the 2010 REALTOR?) -> the 2010 REALTOR? (1752ms)
What is Jerry's last name? long -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs, have been given a bad name for too, long) -> long (1843ms)
What is Jerry's last name? ?a mermaid?s purse? -0.0 What 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)
What is Jerry's last name? a National Peer Professional -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, a National Peer Professional) -> a National Peer Professional (1776ms)
What is Jerry's last name? Certified Humane -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Phil?s Fresh Eggs, has been named, Certified Humane) -> Certified Humane (1378ms)
What is Jerry's last name? head coach -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sloan, was named, head coach) -> head coach (1843ms)
What is Jerry's last name? a plumber -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is a nice name for, a plumber) -> a plumber (1851ms)
What is Jerry's last name? Jerry Reid -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Reed, was named, Jerry Reid) -> Jerry Reid (1522ms)
What is Jerry's last name? Volunteer -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (33 photos Jerry Ausley, was named, Volunteer) -> Volunteer (1843ms)
What is Jerry's last name? a musical -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Zaks, was named outstanding director of, a musical) -> a musical (1849ms)
What is Jerry's last name? regular patrons -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs Benedict, were named for, regular patrons) -> regular patrons (1821ms)
What is Jerry's last name? Red Sox nation -0.0 What 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)
What is Jerry's last name? Oviraptor -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the supposed Protoceratops eggs, was named, Oviraptor) -> Oviraptor (1427ms)
What is Jerry's last name? Utah ?s Bench Leader -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sloan, was named as, Utah ?s Bench Leader) -> Utah ?s Bench Leader (1843ms)
What is Jerry's last name? a U. politician -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Lewis, is also the name of, a U. politician) -> a U. politician (1730ms)
What is Jerry's last name? branch manager -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Ladd, was named, branch manager) -> branch manager (1752ms)
What is Jerry's last name? the Bay Area sports Hall -0.0 What 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)
What is Jerry's last name? the first ever list -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named in, the first ever list) -> the first ever list (1843ms)
What is Jerry's last name? the exterminator -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was the name of, the exterminator) -> the exterminator (1427ms)
What is Jerry's last name? Democrat -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Democrat) -> Democrat (1776ms)
What is Jerry's last name? BEST GUITARIST 2010 -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (our very own Jerry Battista, was named, BEST GUITARIST 2010) -> BEST GUITARIST 2010 (1522ms)
What is Jerry's last name? Tinley Park -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Weber, was named vice president of, Tinley Park) -> Tinley Park (1853ms)
What is Jerry's last name? senior vice president -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (9/15/11 Jerry Bosken, was named, senior vice president) -> senior vice president (1729ms)
What is Jerry's last name? a junior high dean -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (?Jerry Donaldson, was also named, a junior high dean) -> a junior high dean (1846ms)
What is Jerry's last name? hidden features -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Easter eggs, are the playful name for, hidden features) -> hidden features (1843ms)
What is Jerry's last name? President -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Deitchle, has been named, President) -> President (1378ms)
What is Jerry's last name? a couple -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry and Sara Park, were named as, a couple) -> a couple (1729ms)
What is Jerry's last name? the Zoo?s Executive Director -0.0 What 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)
What is Jerry's last name? Volunteer of the Year -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Ausley, was named, Volunteer of the Year) -> Volunteer of the Year (1846ms)
What is Jerry's last name? The guy -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is name [of], The guy) -> The guy (1821ms)
What is Jerry's last name? PDN magazine -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (2011 Jerry, was named by, PDN magazine) -> PDN magazine (1851ms)
What is Jerry's last name? 18 -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Franklin, was named one of, 18) -> 18 (1849ms)
What is Jerry's last name? the ?Top Forty -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Vail and Jerry, were both named to, the ?Top Forty) -> the ?Top Forty (1843ms)
What is Jerry's last name? a defendant -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Attorney General Jerry Brown, was named as, a defendant) -> a defendant (1821ms)
What is Jerry's last name? the Spirit -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (MobilityWorks client Jerry Baylor, was named, the Spirit) -> the Spirit (1752ms)
What is Jerry's last name? Jerry -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry McGuire, was the name of, Jerry) -> Jerry (1729ms)
What is Jerry's last name? Catherine -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (This egg, was named for, Catherine) -> Catherine (1843ms)
What is Jerry's last name? president -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry M. Hiegel, was named, president) -> president (1378ms)
What is Jerry's last name? the Ernst & Young Emerging Entrepreneur -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the Ernst & Young Emerging Entrepreneur) -> the Ernst & Young Emerging Entrepreneur (1843ms)
What is Jerry's last name? Associate Office Director -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Phillips, has been named as, Associate Office Director) -> Associate Office Director (1843ms)
What is Jerry's last name? a band -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, is a very interesting name for, a band) -> a band (1849ms)
What is Jerry's last name? regular customers & customers -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (egg dishes, are named after, regular customers & customers) -> regular customers & customers (1851ms)
What is Jerry's last name? Tangata Manu -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (an egg unbroken, was named, Tangata Manu) -> Tangata Manu (1843ms)
What is Jerry's last name? the roles -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (a ham-and-eggs dinner, is used to name, the roles) -> the roles (1846ms)
What is Jerry's last name? members -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (# 2 Eggs Benedict, was named for, members) -> members (1776ms)
What is Jerry's last name? co-director -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Development Jerry Schultz, has been named, co-director) -> co-director (1846ms)
What is Jerry's last name? the bind -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Chicken and egg, is her name for, the bind) -> the bind (1851ms)
What is Jerry's last name? the Town -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, has been named by, the Town) -> the Town (1776ms)
What is Jerry's last name? NBA Executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (General Manager Jerry West, was named, NBA Executive) -> NBA Executive (1849ms)
What is Jerry's last name? Store Operations -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named Vice President of, Store Operations) -> Store Operations (1849ms)
What is Jerry's last name? a national panel -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Rep. Jerry Lewis, was named to, a national panel) -> a national panel (1378ms)
What is Jerry's last name? a cage -0.0 What 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)
What is Jerry's last name? HairLoss.com ?s 2011 ?Person -0.0 What 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)
What is Jerry's last name? the All-Rookie Team -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Augustine, is named to, the All-Rookie Team) -> the All-Rookie Team (1378ms)
What is Jerry's last name? honor -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (the 6th annual FBI Jerry Dove Memorial, was named in, honor) -> honor (1849ms)
What is Jerry's last name? the list -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Hanson, is the only name on, the list) -> the list (1851ms)
What is Jerry's last name? APCUG founder Jerry Schneider -0.0 What 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)
What is Jerry's last name? Super Bowl MVP -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Super Bowl MVP) -> Super Bowl MVP (1729ms)
What is Jerry's last name? College Honorary Fellows -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Monkarsh, were named, College Honorary Fellows) -> College Honorary Fellows (1752ms)
What is Jerry's last name? the Gophers -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Kill, was named, the Gophers) -> the Gophers (1843ms)
What is Jerry's last name? egg -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (2010 Egg white, is popular named as, egg) -> egg (1851ms)
What is Jerry's last name? a required resource -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs, are only named as, a required resource) -> a required resource (1378ms)
What is Jerry's last name? the inaugural class -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named to, the inaugural class) -> the inaugural class (1849ms)
What is Jerry's last name? the stronghold -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Pournelle, is named after, the stronghold) -> the stronghold (1846ms)
What is Jerry's last name? the 2007 Rookie -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (NC native Jerry Hollis, has been named, the 2007 Rookie) -> the 2007 Rookie (1853ms)
What is Jerry's last name? a godfather -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is named, a godfather) -> a godfather (1821ms)
What is Jerry's last name? the new CEO -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Yang, was named, the new CEO) -> the new CEO (1846ms)
What is Jerry's last name? an NSF EAPSI fellow -0.0 What 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)
What is Jerry's last name? Shatash -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the egg, is named, Shatash) -> Shatash (1853ms)
What is Jerry's last name? state rock -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (The Thunder-egg, was named, state rock) -> state rock (1849ms)
What is Jerry's last name? the band -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> ('s egg sandwich, was named for, the band) -> the band (1752ms)
What is Jerry's last name? the 2009 Executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Tan, was named, the 2009 Executive) -> the 2009 Executive (1851ms)
What is Jerry's last name? the company -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Jones, is the name of, the company) -> the company (1851ms)
What is Jerry's last name? third base coach -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Royster, has been named, third base coach) -> third base coach (1843ms)
What is Jerry's last name? the interim director -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Liechty, has been named as, the interim director) -> the interim director (1427ms)
What is Jerry's last name? the first album -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the Egg, is the name of, the first album) -> the first album (1522ms)
What is Jerry's last name? the payment gateway -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Lee, was the name of, the payment gateway) -> the payment gateway (1522ms)
What is Jerry's last name? the Maria Callas Award winner -0.0 What 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)
What is Jerry's last name? Mets manager -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (the Milwaukee Brewers and Jerry Manuel, was named, Mets manager) -> Mets manager (1522ms)
What is Jerry's last name? Outstanding TAs -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sun, were named, Outstanding TAs) -> Outstanding TAs (1853ms)
What is Jerry's last name? Information Technology executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Information Technology executive) -> Information Technology executive (1851ms)
What is Jerry's last name? Ernst & Young?s Entrepreneur -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was recently named, Ernst & Young?s Entrepreneur) -> Ernst & Young?s Entrepreneur (1752ms)
What is Jerry's last name? a regular guest -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs Benedict, was allegedly named after, a regular guest) -> a regular guest (1752ms)
What is Jerry's last name? the Egg group -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Egg, is a trading name of, the Egg group) -> the Egg group (1849ms)
What is Jerry's last name? BUTTERFLIES -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Great Egg Fly, are all names of, BUTTERFLIES) -> BUTTERFLIES (1851ms)
What is Jerry's last name? the Super Bowl MVP -0.0 What 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)
What is Jerry's last name? local benefactor Gerald Uht -0.0 What 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)
What is Jerry's last name? the MVP -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Noah, was named, the MVP) -> the MVP (1846ms)
What is Jerry's last name? a few -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (caramelized egg yolk, are just to name, a few) -> a few (1776ms)
What is Jerry's last name? the game -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, are the name of, the game) -> the game (1849ms)
What is Jerry's last name? the Century Outstanding Citizen -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Fischer, was named, the Century Outstanding Citizen) -> the Century Outstanding Citizen (1851ms)
What is Jerry's last name? Luetkemeyer -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Dowell, is named, Luetkemeyer) -> Luetkemeyer (1378ms)
What is Jerry's last name? the academy -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Melillo, was named to, the academy) -> the academy (1846ms)
What is Jerry's last name? the huge amounts -0.0 What 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)
What is Jerry's last name? Instructor -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Overdrive Staff Jerry Gambrell, was named, Instructor) -> Instructor (1821ms)
What is Jerry's last name? the new technique -0.0 What 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)
What is Jerry's last name? a starting guard -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Kramer, was named, a starting guard) -> a starting guard (1846ms)
What is Jerry's last name? Jasper and Jinx -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Tom and Jerry, were originally named, Jasper and Jinx) -> Jasper and Jinx (1522ms)
What is Jerry's last name? the Jack S. Josey Professor -0.0 What 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)
What is Jerry's last name? the new company -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Wilke, was named President of, the new company) -> the new company (1851ms)
What is Jerry's last name? the 1965 Legislature -0.0 What 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)
What is Jerry's last name? Yorkshire Building Society -0.0 What 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)
What is Jerry's last name? ?Communicator -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, ?Communicator) -> ?Communicator (1846ms)
What is Jerry's last name? assistant head coach -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (coach Jerry Gray, is has been named, assistant head coach) -> assistant head coach (1427ms)
What is Jerry's last name? Musician -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Douglas, was named, Musician) -> Musician (1846ms)
What is Jerry's last name? the 1960 -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (an All-Pro , Jerry, was named to, the 1960) -> the 1960 (1846ms)
What is Jerry's last name? EB ! ? EB -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (This egg, is named after, EB ! ? EB) -> EB ! ? EB (1849ms)
What is Jerry's last name? the conference?s -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the conference?s) -> the conference?s (1821ms)
What is Jerry's last name? Scarpa -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (05 Mar 2012 0 Jerry and Lois Horton, were named, Scarpa) -> Scarpa (1729ms)
What is Jerry's last name? state librarian -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Krois, was named acting, state librarian) -> state librarian (1752ms)
What is Jerry's last name? the luscious summer tomatoes -0.0 What 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)
What is Jerry's last name? the Songwriter -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the Songwriter) -> the Songwriter (1522ms)
What is Jerry's last name? American Football -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Rice, is the biggest name in, American Football) -> American Football (1849ms)
What is Jerry's last name? the Blue Demons -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Chicago-area native Jerry Wainwright, was named, the Blue Demons) -> the Blue Demons (1776ms)
What is Jerry's last name? Media Economic Research -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Duvall, was named Director of, Media Economic Research) -> Media Economic Research (1522ms)
What is Jerry's last name? Robert Morrison -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Shurson, was named to replace, Robert Morrison) -> Robert Morrison (1846ms)
What is Jerry's last name? sample -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (our egg, is named, sample) -> sample (1849ms)
What is Jerry's last name? an entomologist -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, was named by, an entomologist) -> an entomologist (1428ms)
What is Jerry's last name? Thought -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (That first egg, was named, Thought) -> Thought (1849ms)
What is Jerry's last name? Record Executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Moss, was named, Record Executive) -> Record Executive (1849ms)
What is Jerry's last name? the likely culprit -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Raw egg, has been named, the likely culprit) -> the likely culprit (1851ms)
What is Jerry's last name? MVP -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Rice, was named, MVP) -> MVP (1846ms)
What is Jerry's last name? A similar bill -0.888888888886 What 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)
What is Jerry's last name? The testing procedure -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (The testing procedure, was last completed with, eggs) -> The testing procedure (1853ms)
What is Jerry's last name? Starsky -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Starsky, was just finishing the last of, his fried eggs) -> Starsky (1853ms)
What is Jerry's last name? Reach -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Reach, was released last month on, Universal Egg) -> Reach (1853ms)
What is Jerry's last name? the poor duckling -0.888888888886 What 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)
What is Jerry's last name? Bourbon -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Bourbon, is added last to avoid, curdling eggs) -> Bourbon (1853ms)
What is Jerry's last name? the Senator -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, jerry) -> (the Senator, was vetoed last year by, Governor Jerry Brown) -> the Senator (1853ms)
What is Jerry's last name? ?This testing procedure -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (?This testing procedure, was last completed with, eggs) -> ?This testing procedure (1853ms)
What is Jerry's last name? The female -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (The female, was last seen sitting on, the egg) -> The female (1853ms)
What is Jerry's last name? 11:50 -0.888888888886 What 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)
What is Jerry's last name? The shots -0.888888888886 What 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)
What is Jerry's last name? Ford -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Ford, was hit last week with, eggs and tomatoes) -> Ford (1853ms)
What is Jerry's last name? Jack -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Jack, swallowed the last of, his egg-nog) -> Jack (1857ms)
What is Jerry's last name? the poor Duckling -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (the poor Duckling, had crept last out of, the egg) -> the poor Duckling (1856ms)
What is Jerry's last name? Cecil -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Cecil, scooped the last of, his poached egg) -> Cecil (1856ms)
What is Jerry's last name? The egg stage -1.111111111107 What 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)
What is Jerry's last name? The Reds -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (The Reds, won so much last year with, Jerry Hairston Jr.) -> The Reds (1856ms)
What is Jerry's last name? 1 10+7 5 8 | 25 Sebastien -1.111111111107 What 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)
What is Jerry's last name? Chris -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Chris, swallowed the last of, his eggs) -> Chris (1855ms)
What is Jerry's last name? sperm -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (sperm, lasts longer than, the egg) -> sperm (1856ms)
What is Jerry's last name? Siobhan -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (Siobhan, recounted her last meeting with, Jerry) -> Siobhan (1855ms)
What is Jerry's last name? A law -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (A law, signed last year by, Gov. Jerry Brown) -> A law (1857ms)
What is Jerry's last name? The drop -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (The drop, lasts for, more then 3 eggs) -> The drop (1856ms)
What is Jerry's last name? ice tea today -1.111111111107 What 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)
What is Jerry's last name? Egg Protein -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Egg Protein, Provides Lasting, Energy Protein-rich eggs) -> Egg Protein (1857ms)
What is Jerry's last name? I?ve -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (I?ve, got the last of, the Cadbury Cream Eggs) -> I?ve (1855ms)
What is Jerry's last name? Tanto -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Tanto, eat the last half of, the first egg) -> Tanto (1855ms)
What is Jerry's last name? the amount of time -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (the amount of time, to last, your nest egg) -> the amount of time (1857ms)
What is Jerry's last name? Atchison -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (Atchison, spent last week with, Jerry) -> Atchison (1856ms)
What is Jerry's last name? Viola -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Viola, scrambled the last of, the eggs) -> Viola (1855ms)
What is Jerry's last name? Gale -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Gale, scraped the last of, the egg and meat) -> Gale (1855ms)
What is Jerry's last name? the ants -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (the ants, carry the last of, their eggs) -> the ants (1857ms)
What is Jerry's last name? The Grateful Dead -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (The Grateful Dead, played their last concert with, Jerry Garcia) -> The Grateful Dead (1856ms)
What is Jerry's last name? We?ll -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (We?ll, add the last of, the egg) -> We?ll (1855ms)
What is Jerry's last name? Soul -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Soul, swallowed the last of, the Eggs , full and happy) -> Soul (1855ms)
What is Jerry's last name? HSUS -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (HSUS, conducted last year at, large egg factory farms) -> HSUS (1855ms)
What is Jerry's last name? the earliest -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (the earliest, follows a decision last week by, Gov. Jerry Brown) -> the earliest (1855ms)
What is Jerry's last name? redevelopment agencies -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (redevelopment agencies, came last year from, Gov. Jerry Brown) -> redevelopment agencies (1857ms)
What is Jerry's last name? I?ll -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (I?ll, have the last of, my egg rolls) -> I?ll (1856ms)
What is Jerry's last name? Executive Director -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, jerry) -> (Executive Director, Leaders, Jerry DeWitt) -> Executive Director (1857ms)
What is Jerry's last name? the females -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, egg) -> (the females, lay in the terminal leaders, eggs) -> the females (1857ms)
What is Jerry's last name? ?96 and ?99 -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, jerry) -> (?96 and ?99, included such distinguished leaders as, Jerry Yang) -> ?96 and ?99 (1857ms)
What is Jerry's last name? The United States -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, egg) -> (The United States, is the world leader in, egg production) -> The United States (1857ms)
What is Jerry's last name? Jerry DeWitt -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, jerry) -> (Jerry DeWitt, Leader of, Jerry DeWitt) -> Jerry DeWitt (1857ms)
What is Jerry's last name? Stock Eggtimus Prime -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, egg) -> (Stock Eggtimus Prime, is the heroic leader of, the Auto-Eggs) -> Stock Eggtimus Prime (1857ms)
What is Hong Kong's population? hongkongs population 1.333333333335 What is Hong Kong's population? -> $x: ($x, be population of, hong kong) -> (hongkongs population, was the population of, hong kong) -> hongkongs population (1544ms)
What is Hong Kong's population? six million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of approximately, six million) -> six million (2113ms)
What is Hong Kong's population? 600,000 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of about, 600,000) -> 600,000 (2114ms)
What is Hong Kong's population? 5,674,114 0.222222222222 What 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)
What is Hong Kong's population? 324.200 0.222222222222 What 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)
What is Hong Kong's population? migrant workers 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a huge population of, migrant workers) -> migrant workers (1545ms)
What is Hong Kong's population? 517 560 0.222222222222 What 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)
What is Hong Kong's population? 6.9 million 0.222222222222 What 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)
What is Hong Kong's population? 247,501 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population density of, 247,501) -> 247,501 (2113ms)
What is Hong Kong's population? 524 200 0.222222222222 What 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)
What is Hong Kong's population? bisexuals 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has the world 's largest population of, bisexuals) -> bisexuals (2113ms)
What is Hong Kong's population? 6,600,000 0.222222222222 What 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)
What is Hong Kong's population? 5.6 million 0.222222222222 What 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)
What is Hong Kong's population? Buddhists and Taoists 0.222222222222 What 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)
What is Hong Kong's population? more than 7.2 million 0.222222222222 What 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)
What is Hong Kong's population? 6,708,389 0.222222222222 What 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)
What is Hong Kong's population? 6.7 million 0.222222222222 What 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)
What is Hong Kong's population? 6,571 people 0.222222222222 What 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)
What is Hong Kong's population? 6,855,125 people 0.222222222222 What 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)
What is Hong Kong's population? 4.2 million 0.222222222222 What 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)
What is Hong Kong's population? seven million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, seven million) -> seven million (1545ms)
What is Hong Kong's population? 6,970,000 0.222222222222 What 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)
What is Hong Kong's population? 6 million people 0.222222222222 What 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)
What is Hong Kong's population? five 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of, five) -> five (1945ms)
What is Hong Kong's population? 7 million people 0.222222222222 What 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)
What is Hong Kong's population? 6.78 million 0.222222222222 What 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)
What is Hong Kong's population? 4.3 million 0.222222222222 What 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)
What is Hong Kong's population? 7.3 million 0.222222222222 What 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)
What is Hong Kong's population? 6.80 million 0.222222222222 What 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)
What is Hong Kong's population? 16,470 persons 0.222222222222 What 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)
What is Hong Kong's population? 7 million 0.222222222222 What 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)
What is Hong Kong's population? 6,900,000 0.222222222222 What 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)
What is Hong Kong's population? 10 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of over, 10 million) -> 10 million (1945ms)
What is Hong Kong's population? 6.9 million people 0.222222222222 What 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)
What is Hong Kong's population? The original movie -1.1111111111229999 What 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)
What is Hong Kong's population? Trusts -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Trusts, are another popular option in, Hong Kong) -> Trusts (2434ms)
What is Hong Kong's population? future more food -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (future more food, could be imported into, Hong Kong) -> future more food (2440ms)
What is Hong Kong's population? Radio -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Radio, is an incredibly popular medium in, Hong Kong) -> Radio (2453ms)
What is Hong Kong's population? Watsons Water -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Watsons Water, is popular in, Hong Kong) -> Watsons Water (2450ms)
What is Hong Kong's population? Facebook -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Facebook, is extremely popular in, Hong Kong) -> Facebook (2440ms)
What is Hong Kong's population? fabric -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fabric, imported from, Hong Kong) -> fabric (2450ms)
What is Hong Kong's population? gay magazines -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (gay magazines, imported from, Hong Kong) -> gay magazines (2430ms)
What is Hong Kong's population? alternative health care -1.1111111111229999 What 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)
What is Hong Kong's population? fins -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fins, imported to, Hong Kong) -> fins (2453ms)
What is Hong Kong's population? Xeloda -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Xeloda, imported into, Hong Kong) -> Xeloda (2426ms)
What is Hong Kong's population? the Korean noodle -1.1111111111229999 What 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)
What is Hong Kong's population? 2007 -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (2007, is very popular in, Hong Kong) -> 2007 (2447ms)
What is Hong Kong's population? Latte art -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Latte art, is hugely popular in, Hong Kong) -> Latte art (2440ms)
What is Hong Kong's population? a Cantonese noodle dish -1.1111111111229999 What 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)
What is Hong Kong's population? Football -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Football, is a popular sport in, Hong Kong) -> Football (2434ms)
What is Hong Kong's population? the formula -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the formula, had been imported into, Hong Kong) -> the formula (2453ms)
What is Hong Kong's population? Sanrio characters -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Sanrio characters, are very popular in, Hong Kong) -> Sanrio characters (2437ms)
What is Hong Kong's population? km Go! Category -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (km Go! Category, imported in, Hong Kong) -> km Go! Category (2430ms)
What is Hong Kong's population? the brands -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (the brands, are popular in, Hong Kong) -> the brands (2453ms)
What is Hong Kong's population? Lantau -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Lantau, is twice the size of, Hong Kong island) -> Lantau (2450ms)
What is Hong Kong's population? Thailand -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Thailand, is popular in, Hong Kong) -> Thailand (2422ms)
What is Hong Kong's population? Causeway Bay -1.1111111111229999 What 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)
What is Hong Kong's population? Mumbai -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size be, hong kong) -> (Mumbai, is 4 times the size of, Hong Kong) -> Mumbai (2453ms)
What is Hong Kong's population? One KOLOR -1.1111111111229999 What 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)
What is Hong Kong's population? shark fins -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (shark fins, were imported into, Hong Kong) -> shark fins (2447ms)
What is Hong Kong's population? 1.5mn people -1.1111111111229999 What 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)
What is Hong Kong's population? music CD?s -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (music CD?s, have been imported from, Hong Kong) -> music CD?s (2434ms)
What is Hong Kong's population? Foshan -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Foshan, is very popular in, Hong Kong) -> Foshan (2430ms)
What is Hong Kong's population? every single container -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (every single container, imported into, Hong Kong) -> every single container (2447ms)
What is Hong Kong's population? Vietnam?s gold -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Vietnam?s gold, is imported from, Hong Kong) -> Vietnam?s gold (2422ms)
What is Hong Kong's population? rows -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (rows, is a popular bread in, Hong Kong) -> rows (2448ms)
What is Hong Kong's population? 22,965 boxes -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (22,965 boxes, had been imported into, Hong Kong) -> 22,965 boxes (2453ms)
What is Hong Kong's population? Two replica trams -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Two replica trams, imported from, Hong Kong) -> Two replica trams (2426ms)
What is Hong Kong's population? food chelonians -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (food chelonians, was imported to, Hong Kong) -> food chelonians (2430ms)
What is Hong Kong's population? Hiking and camping -1.1111111111229999 What 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)
What is Hong Kong's population? Snake Snake meat soup -1.1111111111229999 What 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)
What is Hong Kong's population? sale -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (sale, is effected in, Hong Kong) -> sale (2426ms)
What is Hong Kong's population? the cook -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the cook, imported from, Hong Kong) -> the cook (2450ms)
What is Hong Kong's population? the major items -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the major items, imported into, Hong Kong) -> the major items (2453ms)
What is Hong Kong's population? Air-conditioning -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Air-conditioning, is very popular in, Hong Kong) -> Air-conditioning (2430ms)
What is Hong Kong's population? Smaller amount -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Smaller amount, were imported from, Hong Kong and Thailand) -> Smaller amount (2453ms)
What is Hong Kong's population? Hiking -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Hiking, is a very popular sport in, Hong Kong) -> Hiking (2453ms)
What is Hong Kong's population? The show -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The show, was very popular in, Hong Kong) -> The show (2422ms)
What is Hong Kong's population? Board lot -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Board lot, sizes for, Hong Kong exchanges) -> Board lot (2437ms)
What is Hong Kong's population? the West -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the West, suddenly began importing, Hong Kong films) -> the West (2434ms)
What is Hong Kong's population? fortune cookies -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fortune cookies, were reportedly imported into, Hong Kong) -> fortune cookies (2430ms)
What is Hong Kong's population? The project -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (The project, is twice the size of, Hong Kong Island) -> The project (2448ms)
What is Hong Kong's population? Gas application -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Gas application, is very popular in, Hong Kong) -> Gas application (2450ms)
What is Hong Kong's population? Ginseng -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Ginseng, was imported into, Hong Kong ,most) -> Ginseng (2453ms)
What is Hong Kong's population? the EU -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (the EU, have an effect on, Hong Kong) -> the EU (2450ms)
What is Hong Kong's population? The DTA -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (The DTA, will have effect in, Hong Kong) -> The DTA (2426ms)
What is Hong Kong's population? wantan use -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (wantan use, is very popular in, Hong Kong) -> wantan use (2437ms)
What is Hong Kong's population? Kanban -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Kanban, is quite popular here in, Hong Kong) -> Kanban (2422ms)
What is Hong Kong's population? The in-store bakery -1.1111111111229999 What 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)
What is Hong Kong's population? China -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (China, imported from, Hong Kong) -> China (2437ms)
What is Hong Kong's population? The new proposals -1.1111111111229999 What 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)
What is Hong Kong's population? one hundred tons -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (one hundred tons, were imported into, Hong Kong) -> one hundred tons (2434ms)
What is Hong Kong's population? The goods -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The goods, were imported from, Hong Kong) -> The goods (2450ms)
What is Hong Kong's population? Desserts -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Desserts, are very popular in, Hong Kong) -> Desserts (2450ms)
What is Hong Kong's population? the goods concerend -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the goods concerend, will be imported into, Hong Kong) -> the goods concerend (2437ms)
What is Hong Kong's population? cheesecake -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (cheesecake, is popular in, Hong Kong) -> cheesecake (2440ms)
What is Hong Kong's population? Lantau Island -1.1111111111229999 What 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)
What is Hong Kong's population? purchase -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (purchase, is effected in, Hong Kong) -> purchase (2422ms)
What is Hong Kong's population? the project -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (the project, is almost twice the size of, Hong Kong Island) -> the project (2437ms)
What is Hong Kong's population? One Korean TV series -1.1111111111229999 What 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)
What is Hong Kong's population? music CD -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (music CD, have been imported from, Hong Kong) -> music CD (2437ms)
What is Hong Kong's population? Live music bands -1.1111111111229999 What 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)
What is Hong Kong's population? egg noodles -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (egg noodles, imported from, Hong Kong) -> egg noodles (2448ms)
What is Hong Kong's population? a national award -1.1111111111229999 What 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)
What is Hong Kong's population? Foxy -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Foxy, is popular in, Hong Kong) -> Foxy (2426ms)
What is Hong Kong's population? Service -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (Service, can be effected in, Hong Kong) -> Service (2434ms)
What is Hong Kong's population? snake meat -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (snake meat, is a popular delicacy in, Hong Kong) -> snake meat (2426ms)
What is Hong Kong's population? The Peak -1.1111111111229999 What 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)
What is Hong Kong's population? Chaozhou -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chaozhou, were popular in, Hong Kong) -> Chaozhou (2437ms)
What is Hong Kong's population? Mandarin -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mandarin, is becoming more popular in, Hong Kong) -> Mandarin (2422ms)
What is Hong Kong's population? Snake soup -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Snake soup, is quite popular here in, Hong Kong) -> Snake soup (2440ms)
What is Hong Kong's population? apparel sourcing -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (apparel sourcing, has had a knock-on effect on, Hong Kong) -> apparel sourcing (2448ms)
What is Hong Kong's population? The noodles -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The noodles, were imported from, Hong Kong) -> The noodles (2440ms)
What is Hong Kong's population? The 2008 elections -1.1111111111229999 What 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)
What is Hong Kong's population? Chiu Chow cuisine -1.1111111111229999 What 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)
What is Hong Kong's population? a city -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (a city, will be twice the size of, Hong Kong) -> a city (2440ms)
What is Hong Kong's population? force -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (force, will have effect in, Hong Kong) -> force (2426ms)
What is Hong Kong's population? Dim Sum Dim Sum -1.1111111111229999 What 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)
What is Hong Kong's population? a fish -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (a fish, was imported from, Hong Kong) -> a fish (2430ms)
What is Hong Kong's population? Waterfront -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Waterfront, covers an area twice the size of, Hong Kong) -> Waterfront (2440ms)
What is Hong Kong's population? Chrysanthemum flowers -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chrysanthemum flowers, is very popular in, Hong Kong) -> Chrysanthemum flowers (2434ms)
What is Hong Kong's population? Mr. Zhang -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mr. Zhang, is particularly popular in, Hong Kong) -> Mr. Zhang (2448ms)
What is Hong Kong's population? Baby doll clothes -1.1111111111229999 What 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)
What is Hong Kong's population? the nutritional supplements -1.1111111111229999 What 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)
What is Hong Kong's population? tea -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (tea, is a popular beverage in, Hong Kong) -> tea (2440ms)
What is Hong Kong's population? A popular export San Miguel -1.1111111111229999 What 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)
What is Hong Kong's population? Gambling -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Gambling, is a hugely popular activity in, Hong Kong) -> Gambling (2440ms)
What is Hong Kong's population? the contracts of purchase and sale -1.1111111111229999 What 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)
What is Hong Kong's population? red bean ice cream -1.1111111111229999 What 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)
What is Hong Kong's population? purchase and sale -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (purchase and sale, are effected in, Hong Kong) -> purchase and sale (2447ms)
What is Hong Kong's population? men?s tennis -1.1111111111229999 What 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)
What is Hong Kong's population? alternative therapies -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (alternative therapies, are becoming more popular in, Hong Kong) -> alternative therapies (2430ms)
What is Hong Kong's population? tips -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (tips, are the most popular Sports in, Hong Kong) -> tips (2437ms)
What is Hong Kong's population? TDEC -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (TDEC, would have positive effects on, Hong Kong) -> TDEC (2426ms)
What is Hong Kong's population? The crackers -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The crackers, were imported from, Hong Kong) -> The crackers (2434ms)
What is Hong Kong's population? The product -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The product, was imported from, Hong Kong) -> The product (2440ms)
What is Hong Kong's population? the original furnishings -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the original furnishings, were imported from, Hong Kong) -> the original furnishings (2453ms)
What is Hong Kong's population? acrylics -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (acrylics, are also popular in, Hong Kong) -> acrylics (2440ms)
What is Hong Kong's population? an offense -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (an offense, to import, copies of the Hong Kong-based magazine) -> an offense (2434ms)
What is Hong Kong's population? Mahjong -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mahjong, is extremely popular in, Hong Kong) -> Mahjong (2434ms)
What is Hong Kong's population? Dragonball and Slam Dunk -1.1111111111229999 What 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)
What is Hong Kong's population? Tarm Sarm Choy Lee Fut -1.1111111111229999 What 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)
What is Hong Kong's population? experience -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (experience, are imported from, Hong Kong) -> experience (2448ms)
What is Hong Kong's population? the seeds -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the seeds, are imported from, Hong Kong) -> the seeds (2440ms)
What is Hong Kong's population? Silicon Valley -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Silicon Valley, was recently imported to, Hong Kong) -> Silicon Valley (2453ms)
What is Hong Kong's population? one import licence -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (one import licence, may be imported into, Hong Kong) -> one import licence (2453ms)
What is Hong Kong's population? live music -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (live music, IS popular in, Hong Kong) -> live music (2430ms)
What is Hong Kong's population? The following goods -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The following goods, may be imported into, Hong Kong) -> The following goods (2450ms)
What is Hong Kong's population? Japanese culture -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Japanese culture, is popular in, Hong Kong) -> Japanese culture (2447ms)
What is Hong Kong's population? the wine -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the wine, imported into, Hong Kong) -> the wine (2422ms)
What is Hong Kong's population? a covered warrant -1.1111111111229999 What 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)
What is Hong Kong's population? radius -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (radius, is roughly the size of, Hong Kong Island) -> radius (2427ms)
What is Hong Kong's population? Smaller amounts -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Smaller amounts, were also imported from, Hong Kong) -> Smaller amounts (2453ms)
What is Hong Kong's population? products -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (products, have previously been imported into, Hong Kong) -> products (2426ms)
What is Hong Kong's population? an offence -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (an offence, import into, Hong Kong consumer goods) -> an offence (2448ms)
What is Hong Kong's population? small North Korean submarines -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (small North Korean submarines, was imported through, Hong Kong) -> small North Korean submarines (2450ms)
What is Hong Kong's population? hot pot -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (hot pot, is popular in, Hong Kong) -> hot pot (2450ms)
What is Hong Kong's population? the fins -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, alone imported, the fins) -> the fins (2459ms)
What is Hong Kong's population? 30,656.6 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 30,656.6 t) -> 30,656.6 t (2457ms)
What is Hong Kong's population? 10,414.7 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 10,414.7 t) -> 10,414.7 t (2459ms)
What is Hong Kong's population? clearance process -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong customs import declarations, import, clearance process) -> clearance process (2465ms)
What is Hong Kong's population? U.S. beef -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned imports of, U.S. beef) -> U.S. beef (2459ms)
What is Hong Kong's population? the U.S. -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, were imported to, the U.S.) -> the U.S. (2465ms)
What is Hong Kong's population? Canada -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, was increasing imports from, Canada) -> Canada (2464ms)
What is Hong Kong's population? the one-child policy -2.444444444454 What 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)
What is Hong Kong's population? firearms -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, bans imports of, firearms) -> firearms (2462ms)
What is Hong Kong's population? Learner -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (the Hong Kong Native English Scheme, have an Effect on, Learner) -> Learner (2457ms)
What is Hong Kong's population? 2.5m and China -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 2.5m and China) -> 2.5m and China (2464ms)
What is Hong Kong's population? 1996 -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned beef imports in, 1996) -> 1996 (2459ms)
What is Hong Kong's population? 10,502.1 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 10,502.1 t) -> 10,502.1 t (2465ms)
What is Hong Kong's population? March 1 -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, will take effect on, March 1) -> March 1 (2464ms)
What is Hong Kong's population? 17,933,550 thousand cigarettes -2.444444444454 What 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)
What is Hong Kong's population? 172,669.5 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 172,669.5 t) -> 172,669.5 t (2463ms)
What is Hong Kong's population? fever -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, did have a cooling effect on, fever) -> fever (2465ms)
What is Hong Kong's population? 3,561.5 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 3,561.5 t) -> 3,561.5 t (2465ms)
What is Hong Kong's population? 1.2 million packs -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported over, 1.2 million packs) -> 1.2 million packs (2463ms)
What is Hong Kong's population? poultry -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, have banned imports of, poultry) -> poultry (2463ms)
What is Hong Kong's population? 1,907,519 thousand -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 1,907,519 thousand) -> 1,907,519 thousand (2457ms)
What is Hong Kong's population? safety net -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, size, $x) -> (Hong Kong, sized, safety net) -> safety net (2464ms)
What is Hong Kong's population? weight loss -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (louis vuitton hong kong, can achieve the effect of, weight loss) -> weight loss (2462ms)
What is Hong Kong's population? Russia -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (Hong Kong Ping-pong, is very popular in, Russia) -> Russia (2463ms)
What is Hong Kong's population? 28,000 tonnes -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported about, 28,000 tonnes) -> 28,000 tonnes (2463ms)
What is Hong Kong's population? a large portion -2.444444444454 What 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)
What is Hong Kong's population? acupuncture -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, was researching the effects of, acupuncture) -> acupuncture (2459ms)
What is Hong Kong's population? poultry meat -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, stopped imports of, poultry meat) -> poultry meat (2460ms)
What is Hong Kong's population? HK$ 163,000,000 worth -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, HK$ 163,000,000 worth) -> HK$ 163,000,000 worth (2463ms)
What is Hong Kong's population? 981,811.6 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 981,811.6 t) -> 981,811.6 t (2461ms)
What is Hong Kong's population? 198,433.7 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 198,433.7 t) -> 198,433.7 t (2464ms)
What is Hong Kong's population? Britain -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned beef imports from, Britain) -> Britain (2464ms)
What is Hong Kong's population? Diocese -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, size, $x) -> (Anglican Diocese of Hong Kong Island, Size or Type, Diocese) -> Diocese (2457ms)
What is Hong Kong's population? mainland China -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, can be imported into, mainland China) -> mainland China (2457ms)
What is Hong Kong's population? equipment and technology -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, facilitates the import of, equipment and technology) -> equipment and technology (2459ms)
What is Hong Kong's population? EGCG -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, examined the effect of, EGCG) -> EGCG (2457ms)
What is Hong Kong's population? distribution -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong companies, can be imported for, distribution) -> distribution (2457ms)
What is Hong Kong's population? April 1998 -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, also take retrospective effect to, April 1998) -> April 1998 (2457ms)
What is Hong Kong's population? Australia -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, is importing from, Australia) -> Australia (2459ms)
What is Hong Kong's population? 11,662 tons -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 11,662 tons) -> 11,662 tons (2464ms)
What is Hong Kong's population? 3.8 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 3.8 %) -> 3.8 % (2465ms)
What is Hong Kong's population? a family -2.444444444454 What 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)
What is Hong Kong's population? water -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports a lot of, water) -> water (2464ms)
What is Hong Kong's population? shark fin -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, should ban the import of, shark fin) -> shark fin (2459ms)
What is Hong Kong's population? 90 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 90 %) -> 90 % (2464ms)
What is Hong Kong's population? US$ 17 million worth -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported over, US$ 17 million worth) -> US$ 17 million worth (2459ms)
What is Hong Kong's population? musical training -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, analyzed the effect of, musical training) -> musical training (2464ms)
What is Hong Kong's population? progressive relaxation -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, compared the effects of, progressive relaxation) -> progressive relaxation (2457ms)
What is Hong Kong's population? 90 percent -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, now imports up to, 90 percent) -> 90 percent (2457ms)
What is Hong Kong's population? the smog -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, the smog) -> the smog (2459ms)
What is Hong Kong's population? pieces -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong/Korean, imported, pieces) -> pieces (2462ms)
What is Hong Kong's population? 80 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, has to import, 80 %) -> 80 % (2463ms)
What is Hong Kong's population? Asia -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (Hong Kong films, has been popular in, Asia) -> Asia (2459ms)
What is Hong Kong's population? US$ 333 million worth -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, US$ 333 million worth) -> US$ 333 million worth (2459ms)
What is Hong Kong's population? internet users -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, may still have an effect on, internet users) -> internet users (2464ms)
What is Hong Kong's population? last year -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, blocked imports of turbot, last year) -> last year (2463ms)
What is Hong Kong's population? heat and stress -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, monitored the effects of, heat and stress) -> heat and stress (2465ms)
What is Hong Kong's population? 2,216.5 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 2,216.5 t) -> 2,216.5 t (2464ms)
What is Hong Kong's population? 687.8 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 687.8 t) -> 687.8 t (2457ms)
What is Hong Kong's population? 1.6 million 40-pound boxes -2.444444444454 What 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)
What is Hong Kong's population? 269.2 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 269.2 t) -> 269.2 t (2463ms)
What is Hong Kong's population? the Golden Triangle region -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, were imported into, the Golden Triangle region) -> the Golden Triangle region (2462ms)
What is Hong Kong's population? turbot -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, blocked imports of, turbot) -> turbot (2462ms)
What is Hong Kong's population? 95 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 95 %) -> 95 % (2457ms)
What is Hong Kong's population? Korea -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (addition Hong Kong movies, are popular in, Korea) -> Korea (2464ms)
Who is the Greek God of the Sea? Pomona Poseidon Poseidon 1.333333333332 Who 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)
Who is the Greek God of the Sea? Okeanos 1.333333333332 Who 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)
Who is the Greek God of the Sea? Neptune 1.333333333332 Who is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Neptune, [is] the Greek god of, the sea) -> Neptune (2223ms)
Who is the Greek God of the Sea? Poseidon 1.333333333332 Who 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)
Who is the Greek God of the Sea? Proteus 1.333333333332 Who is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Proteus, [is] a Greek god of, the sea) -> Proteus (2400ms)
Who is the Greek God of the Sea? treatments?thalassa 1.22222222222 Who 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)
Who is the Greek God of the Sea? Thalassa 1.22222222222 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, sea) -> (Thalassa, is the ancient Greek word for, sea) -> Thalassa (2400ms)
Who is the Greek God of the Sea? Llyr 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Llyr, is God of, the Sea) -> Llyr (3329ms)
Who is the Greek God of the Sea? Pontus kingdom Poseidon Poseidon 1.0 Who 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)
Who is the Greek God of the Sea? Roman mythology Neptune 1.0 Who 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)
Who is the Greek God of the Sea? a magician 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (a magician, is called god of, the sea) -> a magician (3329ms)
Who is the Greek God of the Sea? worshiped Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (worshiped Poseidon, [is] god of, the sea) -> worshiped Poseidon (2574ms)
Who is the Greek God of the Sea? Poseidon Poseidon Poseidon 1.0 Who 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)
Who is the Greek God of the Sea? The god Poseidon 1.0 Who 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)
Who is the Greek God of the Sea? Tyr 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Tyr, is god of, the sea) -> Tyr (2626ms)
Who is the Greek God of the Sea? Athena and Poseidon 1.0 Who 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)
Who is the Greek God of the Sea? Njord 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Njord, [is] god of, the sea) -> Njord (3498ms)
Who is the Greek God of the Sea? Poseidon Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Poseidon Poseidon, was the god of, the sea) -> Poseidon Poseidon (3498ms)
Who is the Greek God of the Sea? Varuna 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Varuna, [is] the god of, the sea) -> Varuna (3172ms)
Who is the Greek God of the Sea? Greek and Roman mythology 1.0 Who 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)
Who is the Greek God of the Sea? Manannan mac Lir 1.0 Who 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)
Who is the Greek God of the Sea? the Greek god Poseidon 1.0 Who 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)
Who is the Greek God of the Sea? Olokun 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Olokun, [is] god of, the sea) -> Olokun (2574ms)
Who is the Greek God of the Sea? ?Nereus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (?Nereus, was a god of, the sea) -> ?Nereus (3173ms)
Who is the Greek God of the Sea? Triton 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Triton, [is] the god of, the sea) -> Triton (3514ms)
Who is the Greek God of the Sea? Dylan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Dylan, was the God of, the Sea) -> Dylan (3514ms)
Who is the Greek God of the Sea? Pisces 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Pisces, is the god of, sea) -> Pisces (3514ms)
Who is the Greek God of the Sea? Hea 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Hea, was the god of, the sea) -> Hea (2554ms)
Who is the Greek God of the Sea? Tangaroa 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Tangaroa, is the god of, the sea) -> Tangaroa (3351ms)
Who is the Greek God of the Sea? Manannan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Manannan, [is] god of, the sea) -> Manannan (3173ms)
Who is the Greek God of the Sea? Kanaloa 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Kanaloa, was the god of, the sea) -> Kanaloa (3514ms)
Who is the Greek God of the Sea? Nereus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Nereus, is the God of, Sea) -> Nereus (3351ms)
Who is the Greek God of the Sea? Aegir Aegir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Aegir Aegir, is the god of, the sea) -> Aegir Aegir (3514ms)
Who is the Greek God of the Sea? ? Tangaroa? 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (? Tangaroa?, is the God of, the sea) -> ? Tangaroa? (3248ms)
Who is the Greek God of the Sea? Mananan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Mananan, [is] the god of, the sea) -> Mananan (2440ms)
Who is the Greek God of the Sea? Neptune Neptune 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Neptune Neptune, is the God of, the Seas) -> Neptune Neptune (2626ms)
Who is the Greek God of the Sea? Glaucus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Glaucus, [is] god of, the sea) -> Glaucus (2574ms)
Who is the Greek God of the Sea? Agwe 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Agwe, [is] god of, the sea) -> Agwe (3172ms)
Who is the Greek God of the Sea? Brahadair 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Brahadair, [is] god of, the sea) -> Brahadair (2574ms)
Who is the Greek God of the Sea? Basque 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Basque, [is] god of, the sea) -> Basque (3498ms)
Who is the Greek God of the Sea? Liranan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Liranan, [is] the god of, the sea) -> Liranan (3498ms)
Who is the Greek God of the Sea? King Neptune 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (King Neptune, [is] god of, the sea) -> King Neptune (3248ms)
Who is the Greek God of the Sea? Yamm 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Yamm, [is] the god of, the sea) -> Yamm (3329ms)
Who is the Greek God of the Sea? Ea or Hea 1.0 Who 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)
Who is the Greek God of the Sea? Mannan mac Lyr 1.0 Who 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)
Who is the Greek God of the Sea? Dewa Baruna 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Dewa Baruna, [is] god of, the seas) -> Dewa Baruna (3515ms)
Who is the Greek God of the Sea? Njordur 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Njordur, is the god of, the sea) -> Njordur (3498ms)
Who is the Greek God of the Sea? NEPTUNE Neptune 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (NEPTUNE Neptune, is the god of, the sea) -> NEPTUNE Neptune (2440ms)
Who is the Greek God of the Sea? ?gir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (?gir, [is] the god of, the sea) -> ?gir (3499ms)
Who is the Greek God of the Sea? Aegir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Aegir, [is] god of, the sea) -> Aegir (3173ms)
Who is the Greek God of the Sea? the most feared Gods 1.0 Who 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)
Who is the Greek God of the Sea? Posiedon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Posiedon, [is] god of, the sea) -> Posiedon (2625ms)
Who is the Greek God of the Sea? the Greek Poseidon 1.0 Who 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)
Who is the Greek God of the Sea? the behemothic squid 1.0 Who 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)
Who is the Greek God of the Sea? Greek mythology 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Greek mythology, [is] god of, the sea) -> Greek mythology (3514ms)
Who is the Greek God of the Sea? Neptunus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Neptunus, [is] god of, the sea) -> Neptunus (3514ms)
Who is the Greek God of the Sea? Posideon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Posideon, [is] god of, the sea) -> Posideon (2574ms)
Who is the Greek God of the Sea? AEGIR Aegir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (AEGIR Aegir, is the god of, the sea) -> AEGIR Aegir (3351ms)
Who is the Greek God of the Sea? Varunan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Varunan, is god of, sea land) -> Varunan (2626ms)
Who is the Greek God of the Sea? Size Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Size Poseidon, is the god of, the sea) -> Size Poseidon (2625ms)
Who is the Greek God of the Sea? Lyr 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Lyr, was the god of, the sea) -> Lyr (3351ms)
Who is the Greek God of the Sea? Vesta 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Vesta, was the god of, the sea) -> Vesta (3498ms)
Who is the Greek God of the Sea? Zeus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Zeus, is the god of, the sea) -> Zeus (3514ms)
Who is the Greek God of the Sea? erythra thalassa 0.8888888888879999 Who is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (erythra thalassa, is Greek for, ? Sea?) -> erythra thalassa (3520ms)
Who is the Greek God of the Sea? Asphaltitis 0.8888888888879999 Who is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (Asphaltitis, is the Greek name for, Dead Sea) -> Asphaltitis (3514ms)
Who is the Greek God of the Sea? ?Thalassa? 0.8888888888879999 Who is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (?Thalassa?, is Greek for, " sea) -> ?Thalassa? (3520ms)
Who is the Greek God of the Sea? Alcyone 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Alcyone, is the goddess of, the sea) -> Alcyone (3546ms)
Who is the Greek God of the Sea? Taiwanese 14 May 07 Matzu 0.777777777778 Who 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)
Who is the Greek God of the Sea? Brizo 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Brizo, is a goddess of, the sea) -> Brizo (3534ms)
Who is the Greek God of the Sea? Tinker 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Tinker, effected, a sea change) -> Tinker (3545ms)
Who is the Greek God of the Sea? global temperature 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (global temperature, have far-reaching effects on, sea level) -> global temperature (3534ms)
Who is the Greek God of the Sea? personality 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (personality, is required to effect, sea changes) -> personality (3520ms)
Who is the Greek God of the Sea? The bottom image 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The bottom image, shows the effect on, sea level) -> The bottom image (3525ms)
Who is the Greek God of the Sea? rel=shortlink Matzu 0.777777777778 Who 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)
Who is the Greek God of the Sea? Nsambakalunga 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Nsambakalunga, is an African Goddess of, the seas) -> Nsambakalunga (3525ms)
Who is the Greek God of the Sea? charged ions 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (charged ions, effects the physical properties of, sea water) -> charged ions (3525ms)
Who is the Greek God of the Sea? land mass form 0.777777777778 Who 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)
Who is the Greek God of the Sea? Yemaya 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemaya, is the Goddess of, the sea) -> Yemaya (3545ms)
Who is the Greek God of the Sea? 2007 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (2007, addressed the effect on, sea level rise) -> 2007 (3549ms)
Who is the Greek God of the Sea? The report 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The report, said the effects of, sea level rise) -> The report (3545ms)
Who is the Greek God of the Sea? prow 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (prow, has a similar effect on, seas) -> prow (3525ms)
Who is the Greek God of the Sea? 90 minutes 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (90 minutes, Experience the rejuvenating effects of, the sea) -> 90 minutes (3542ms)
Who is the Greek God of the Sea? order 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (order, replicate the effect of, the long sea voyages) -> order (3542ms)
Who is the Greek God of the Sea? Baveras 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Baveras, is the Santharian Goddess of, the Sea) -> Baveras (3549ms)
Who is the Greek God of the Sea? the deep oceans 0.777777777778 Who 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)
Who is the Greek God of the Sea? coastal fog 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (coastal fog, are all effects of, land and sea breezes) -> coastal fog (3542ms)
Who is the Greek God of the Sea? Dr. J. Arndt 0.777777777778 Who 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)
Who is the Greek God of the Sea? Matsu 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Matsu, is the Goddess of, the Sea) -> Matsu (3545ms)
Who is the Greek God of the Sea? penguins 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (penguins, identify effects on, global sea levels) -> penguins (3549ms)
Who is the Greek God of the Sea? sea ice 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (sea ice, has a zero effect on, sea level) -> sea ice (3520ms)
Who is the Greek God of the Sea? HpOtxE or HpOtxL 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (HpOtxE or HpOtxL, caused similar morphological effects on, sea) -> HpOtxE or HpOtxL (3542ms)
Who is the Greek God of the Sea? rainfall 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (rainfall, as were the moderating effects of, sea temperature) -> rainfall (3530ms)
Who is the Greek God of the Sea? global warming 0.777777777778 Who 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)
Who is the Greek God of the Sea? the form 0.777777777778 Who 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)
Who is the Greek God of the Sea? the coast People 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the coast People, control the effects of, the sea) -> the coast People (3549ms)
Who is the Greek God of the Sea? the shelves 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the shelves, may effect, the air/sea fluxes) -> the shelves (3525ms)
Who is the Greek God of the Sea? The statute 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The statute, effects, a sea-change) -> The statute (3538ms)
Who is the Greek God of the Sea? Amphitrite 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Amphitrite, was a goddess of, the sea) -> Amphitrite (3545ms)
Who is the Greek God of the Sea? Namakaokahai 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Namakaokahai, is the Goddess of, the Sea) -> Namakaokahai (3549ms)
Who is the Greek God of the Sea? the crisis 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the crisis, has had a deleterious effect on, sea turtles) -> the crisis (3538ms)
Who is the Greek God of the Sea? climate 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (climate, change effects on, sea ice) -> climate (3538ms)
Who is the Greek God of the Sea? Isabel?s impacts 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Isabel?s impacts, illustrate effects of, sea level rise) -> Isabel?s impacts (3538ms)
Who is the Greek God of the Sea? ?the AO 0.777777777778 Who 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)
Who is the Greek God of the Sea? Xar?tenga 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Xar?tenga, was the goddess of, the sea) -> Xar?tenga (3520ms)
Who is the Greek God of the Sea? such an increase 0.777777777778 Who 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)
Who is the Greek God of the Sea? the 1998 El Ni?o 0.777777777778 Who 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)
Who is the Greek God of the Sea? Ocean pH 0.777777777778 Who 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)
Who is the Greek God of the Sea? The cyber age 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The cyber age, has effected, a sea change) -> The cyber age (3525ms)
Who is the Greek God of the Sea? Ayodhya 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Ayodhya, effected, a sea change) -> Ayodhya (3538ms)
Who is the Greek God of the Sea? A hotter atmosphere 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (A hotter atmosphere, has several effects on, the sea) -> A hotter atmosphere (3530ms)
Who is the Greek God of the Sea? Asherah 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Asherah, was goddess of, the sea) -> Asherah (3530ms)
Who is the Greek God of the Sea? examination 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (examination, are the effects of, sea level) -> examination (3520ms)
Who is the Greek God of the Sea? the ice 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the ice, already effects, the sea level) -> the ice (3525ms)
Who is the Greek God of the Sea? Icebreakers 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Icebreakers, have a negligible effect on, the sea ice) -> Icebreakers (3545ms)
Who is the Greek God of the Sea? Sedna 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Sedna, is the Inuit Goddess of, the Sea) -> Sedna (3542ms)
Who is the Greek God of the Sea? Thetis 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Thetis, was a Goddess of, the sea) -> Thetis (3538ms)
Who is the Greek God of the Sea? ice ages 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (ice ages, had much less effect on, sea level) -> ice ages (3542ms)
Who is the Greek God of the Sea? The decisions 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The decisions, have effected, a sea change) -> The decisions (3534ms)
Who is the Greek God of the Sea? Kiel 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Kiel, have now quantified the effect of, sea currents) -> Kiel (3520ms)
Who is the Greek God of the Sea? even domestic transfers 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (even domestic transfers, are being popularly effected by, sea) -> even domestic transfers (3549ms)
Who is the Greek God of the Sea? Mazu 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Mazu, is the Goddess of, the Sea) -> Mazu (3549ms)
Who is the Greek God of the Sea? the province 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the province, is effected by, the Black Sea Climate) -> the province (3525ms)
Who is the Greek God of the Sea? CALEA 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (CALEA, effected, a sea-change) -> CALEA (3542ms)
Who is the Greek God of the Sea? Halcyone 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Halcyone, is the Goddess of, the Sea) -> Halcyone (3549ms)
Who is the Greek God of the Sea? Yemaja 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemaja, is the Goddess of, the Sea) -> Yemaja (3542ms)
Who is the Greek God of the Sea? Iris 0.777777777778 Who 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)
Who is the Greek God of the Sea? The moon 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The moon, has an effect on, the sea) -> The moon (3538ms)
Who is the Greek God of the Sea? Ma-cho 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Ma-cho, is the goddess of, the sea) -> Ma-cho (3525ms)
Who is the Greek God of the Sea? tidal variations 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (tidal variations, also have their effect on, sea level) -> tidal variations (3520ms)
Who is the Greek God of the Sea? glaciers 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (glaciers, is having a much smaller effect on, sea levels) -> glaciers (3530ms)
Who is the Greek God of the Sea? The Naval blockade 0.777777777778 Who 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)
Who is the Greek God of the Sea? the Romans 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the Romans, recognised the therapeutic effects of, sea water) -> the Romans (3534ms)
Who is the Greek God of the Sea? Vellamo 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Vellamo, is the goddess of, the sea) -> Vellamo (3549ms)
Who is the Greek God of the Sea? Partanen et al 0.777777777778 Who 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)
Who is the Greek God of the Sea? wife 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (wife, is the goddess of, the sea) -> wife (3545ms)
Who is the Greek God of the Sea? Storms Storms 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Storms Storms, can have a dramatic effect on, sea travel) -> Storms Storms (3530ms)
Who is the Greek God of the Sea? J.R. Jongkind 0.777777777778 Who 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)
Who is the Greek God of the Sea? volcanoes 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (volcanoes, have a bigger effect on, sea level) -> volcanoes (3530ms)
Who is the Greek God of the Sea? considerable interest 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (considerable interest, is the effects of, sea breeze) -> considerable interest (3545ms)
Who is the Greek God of the Sea? Hippocrates 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Hippocrates, discovered the healing effects of, sea water) -> Hippocrates (3525ms)
Who is the Greek God of the Sea? red tides 0.777777777778 Who 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)
Who is the Greek God of the Sea? the early 1970s 0.777777777778 Who 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)
Who is the Greek God of the Sea? Norfolk 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Norfolk, is seeing the effects of, sea level) -> Norfolk (3534ms)
Who is the Greek God of the Sea? thalassotherapy 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (thalassotherapy, combines the effects of, sea water) -> thalassotherapy (3545ms)
Who is the Greek God of the Sea? The tide 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The tide, has a nonlinear effect on, mean sea level) -> The tide (3534ms)
Who is the Greek God of the Sea? a long-term solution 0.777777777778 Who 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)
Who is the Greek God of the Sea? 14 May 07 Matzu 0.777777777778 Who 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)
Who is the Greek God of the Sea? Haven?t 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Haven?t, had the full effect of, sea salt) -> Haven?t (3542ms)
Who is the Greek God of the Sea? low season 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (low season, can effect, the sea temperature) -> low season (3538ms)
Who is the Greek God of the Sea? three strikes laws 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (three strikes laws, effected, a sea change) -> three strikes laws (3549ms)
Who is the Greek God of the Sea? the spill 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the spill, would have little effect on, sea life) -> the spill (3530ms)
Who is the Greek God of the Sea? 2003 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (2003, examined the effects of, Dead Sea climatotherapy) -> 2003 (3525ms)
Who is the Greek God of the Sea? coral reefs 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (coral reefs, could have a major effect on, sea life) -> coral reefs (3545ms)
Who is the Greek God of the Sea? the possible reasons 0.777777777778 Who 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)
Who is the Greek God of the Sea? Melanie 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Melanie, is goddess of, the sea and water) -> Melanie (3538ms)
Who is the Greek God of the Sea? The Persian Goddess Atargatis 0.777777777778 Who 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)
Who is the Greek God of the Sea? ocean currents 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (ocean currents, would have drastic effects on, sea life) -> ocean currents (3538ms)
Who is the Greek God of the Sea? the whole fiasco 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the whole fiasco, will effect, a sea change) -> the whole fiasco (3549ms)
Who is the Greek God of the Sea? radiation 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (radiation, will have an effect on, the sea water) -> radiation (3525ms)
Who is the Greek God of the Sea? example 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (example, is the effect of, reduced Arctic sea ice) -> example (3520ms)
Who is the Greek God of the Sea? The city ?s poor 0.777777777778 Who 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)
Who is the Greek God of the Sea? natural climate variations 0.777777777778 Who 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)
Who is the Greek God of the Sea? AMPHITRITE 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (AMPHITRITE, was the goddess queen of, the sea) -> AMPHITRITE (3549ms)
Who is the Greek God of the Sea? Others concerns 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Others concerns, included effects on, sea life) -> Others concerns (3545ms)
Who is the Greek God of the Sea? Eastern Sedna 0.777777777778 Who 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)
Who is the Greek God of the Sea? Yemay? 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemay?, is the Goddess of, the Sea and Nature) -> Yemay? (3538ms)
Who is the Greek God of the Sea? Finnish mythology Vellamo 0.777777777778 Who 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)
Who is the Greek God of the Sea? Freud 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Freud, effected, a sea change) -> Freud (3545ms)
Who is the Greek God of the Sea? CO2 greenhouse heating 0.777777777778 Who 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)
Who is the Greek God of the Sea? Arnemetia 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Arnemetia, is a Celtic goddess of, the sea) -> Arnemetia (3549ms)
Who is the Greek God of the Sea? Tiamat 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Tiamat, is a Babylonian Goddess of, the sea) -> Tiamat (3538ms)
Who is the Greek God of the Sea? Iemanj ? 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iemanj ?, is the vain goddess of, the sea) -> Iemanj ? (3534ms)
Who is the Greek God of the Sea? Iemanj? 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iemanj?, is the vain goddess of, the sea) -> Iemanj? (3534ms)
Who is the Greek God of the Sea? Lindsay 0.555555555556 Who is the Greek God of the Sea? -> $x: ($x, be effect of, sea) -> (Lindsay, is determining the effects of, sea grass beds) -> Lindsay (3552ms)
Who is the Greek God of the Sea? superlights 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (superlights, have adverse effects on, turtle populations) -> superlights (3553ms)
Who is the Greek God of the Sea? the illumination 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (the illumination, adversely effects, turtle nests) -> the illumination (3556ms)
Who is the Greek God of the Sea? Spotila 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (Spotila, reported this effect on, green turtles) -> Spotila (3555ms)
Who is the Greek God of the Sea? trouble 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (trouble, seems to have the same effect on, turtle tails) -> trouble (3555ms)
Who is the Greek God of the Sea? temperatures 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (temperatures, also have an effect on, the turtles) -> temperatures (3553ms)
Who is the Greek God of the Sea? Naida 0.333333333331 Who 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)
Who is the Greek God of the Sea? Hydra 0.333333333331 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Hydra, is the Greek word for, water) -> Hydra (3555ms)
Who is the Greek God of the Sea? GFL Golden Forum Land Inc. Nerou 0.333333333331 Who 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)
Who is the Greek God of the Sea? Nerou 0.333333333331 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Nerou, is a Greek word for, ?water?) -> Nerou (3555ms)
Who is the Greek God of the Sea? Set 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Set, is a god of, the waters) -> Set (3558ms)
Who is the Greek God of the Sea? Ahto 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Ahto, is the important God of, Seas and Waters) -> Ahto (3562ms)
Who is the Greek God of the Sea? the Churner 0.222222222222 Who 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)
Who is the Greek God of the Sea? Uta 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Uta, is the god of, sweet waters) -> Uta (3556ms)
Who is the Greek God of the Sea? Enki 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Enki, [is] the god of, the sweet waters) -> Enki (3563ms)
Who is the Greek God of the Sea? The crocodile 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (The crocodile, was a God of, Water) -> The crocodile (3558ms)
Who is the Greek God of the Sea? Nis'acon 0.222222222222 Who 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)
Who is the Greek God of the Sea? Wisnu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Wisnu, [is] god of, water) -> Wisnu (3563ms)
Who is the Greek God of the Sea? Sothis and Hapy 0.222222222222 Who 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)
Who is the Greek God of the Sea? Enki/Ea 0.222222222222 Who 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)
Who is the Greek God of the Sea? Volturnus 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Volturnus, [is] god of, the waters) -> Volturnus (3563ms)
Who is the Greek God of the Sea? Kakaraa 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Kakaraa, is the god of, water) -> Kakaraa (3565ms)
Who is the Greek God of the Sea? Egyptian mythology Nu 0.222222222222 Who 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)
Who is the Greek God of the Sea? Unktahee 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Unktahee, [is] the god of, water) -> Unktahee (3562ms)
Who is the Greek God of the Sea? Suijin 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Suijin, [is] the god of, water) -> Suijin (3560ms)
Who is the Greek God of the Sea? the god Nu 0.222222222222 Who 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)
Who is the Greek God of the Sea? Ea 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Ea, was the Sumerian god of, water and wisdom) -> Ea (3560ms)
Who is the Greek God of the Sea? Nefertem 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nefertem, was The god of, the blue water lily) -> Nefertem (3555ms)
Who is the Greek God of the Sea? Narfas 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Narfas, [is] the god of, spring water) -> Narfas (3562ms)
Who is the Greek God of the Sea? Sobek 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Sobek, was understandably a god of, the water) -> Sobek (3565ms)
Who is the Greek God of the Sea? Varun 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Varun, [is] the god of, water) -> Varun (3563ms)
Who is the Greek God of the Sea? NO 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (NO, was the god of, waters) -> NO (3560ms)
Who is the Greek God of the Sea? Chac 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Chac, is the ancient Mayan god of, water) -> Chac (3560ms)
Who is the Greek God of the Sea? Kamapuaa 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Kamapuaa, [is] god of, water) -> Kamapuaa (3562ms)
Who is the Greek God of the Sea? Apsu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Apsu, [is] the god of, the fresh waters) -> Apsu (3563ms)
Who is the Greek God of the Sea? Nu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nu, was the god of, waters) -> Nu (3565ms)
Who is the Greek God of the Sea? Shiva 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, snake) -> (Shiva, is the patron god of, snakes) -> Shiva (3558ms)
Who is the Greek God of the Sea? 1762 and features Neptune 0.222222222222 Who 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)
Who is the Greek God of the Sea? a deity 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (a deity, was god of, waters) -> a deity (3555ms)
Who is the Greek God of the Sea? Remus 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Remus, is the god of, water melons) -> Remus (3565ms)
Who is the Greek God of the Sea? Pariacaca 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Pariacaca, was a god of, water) -> Pariacaca (3562ms)
Who is the Greek God of the Sea? Inthiran 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Inthiran, is the god of, water land) -> Inthiran (3563ms)
Who is the Greek God of the Sea? the dragon 0.222222222222 Who 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)
Who is the Greek God of the Sea? black dragon 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (black dragon, was considered God of, Water) -> black dragon (3558ms)
Who is the Greek God of the Sea? Draco 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Draco, is the God of, Water) -> Draco (3558ms)
Who is the Greek God of the Sea? Odin 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Odin, is the god of, the waters) -> Odin (3555ms)
Who is the Greek God of the Sea? Page 110 Ea 0.222222222222 Who 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)
Who is the Greek God of the Sea? Coincidentally Neptune 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Coincidentally Neptune, is the god of, water) -> Coincidentally Neptune (3558ms)
Who is the Greek God of the Sea? Tonenili 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Tonenili, [is] the god of, water) -> Tonenili (3563ms)
Who is the Greek God of the Sea? Tlaloc 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Tlaloc, [is] god of, water) -> Tlaloc (3555ms)
Who is the Greek God of the Sea? Sulis -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Sulis, was the local goddess of, water) -> Sulis (3566ms)
Who is the Greek God of the Sea? Danu -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Danu, is the primordial goddess of, waters) -> Danu (3566ms)
Who is the Greek God of the Sea? Mehet-Weret -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Mehet-Weret, was a goddess of, the waters) -> Mehet-Weret (3565ms)
Who is the Greek God of the Sea? Blues -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Blues, is a goddess of, the water) -> Blues (3566ms)
Who is the Greek God of the Sea? the negative side -0.0 Who 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)
Who is the Greek God of the Sea? Ardvi Sura -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Ardvi Sura, is the goddess of, the waters) -> Ardvi Sura (3565ms)
Who is the Greek God of the Sea? Tanora Tanora -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Tanora Tanora, is the Goddess of, water) -> Tanora Tanora (3566ms)
Who is the Greek God of the Sea? Nanshe -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Nanshe, was also the Goddess of, water and fertility) -> Nanshe (3566ms)
Who is the Greek God of the Sea? Chalchiuhtlicue -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Chalchiuhtlicue, was the goddess of, water) -> Chalchiuhtlicue (3566ms)
Who is the Greek God of the Sea? Ochun -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Ochun, is the goddess of, Sweet Waters) -> Ochun (3565ms)
Who is the Greek God of the Sea? Eudora -0.0 Who 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)
Who is the Greek God of the Sea? Oc?ane -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Oc?ane, is the Goddess of, water) -> Oc?ane (3565ms)
Who is the Greek God of the Sea? Tefnut -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Tefnut, is a goddess of, water and fertility) -> Tefnut (3565ms)
Who is the Greek God of the Sea? Purva Ashadha?s deity -0.0 Who 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)
Who is the Greek God of the Sea? Weda Krizhtawn -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Weda Krizhtawn, is the chief goddess of, water) -> Weda Krizhtawn (3566ms)
Who is the Greek God of the Sea? Mami Wata -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Mami Wata, are goddesses of, waters) -> Mami Wata (3566ms)
Who is the Greek God of the Sea? Leviathan -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Leviathan, is the Goddess of, Water) -> Leviathan (3565ms)
Who is the Greek God of the Sea? M?Lady -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (M?Lady, is a goddess of, water) -> M?Lady (3565ms)
Who is the Greek God of the Sea? Flulia -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Flulia, is the Goddess of, Water) -> Flulia (3565ms)
Who developed the Macintosh computer? Apple 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Apple, developed, Macintosh computers) -> Apple (1304ms)
Who developed the Macintosh computer? Company 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Company, develops software for, OPENSTEP and Macintosh computers) -> Company (1303ms)
Who developed the Macintosh computer? the unit 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (the unit, developed, the Macintosh computer) -> the unit (1303ms)
Who developed the Macintosh computer? Animal stack 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Animal stack, was developed on, Macintosh computers) -> Animal stack (917ms)
Who developed the Macintosh computer? a network protocol 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (a network protocol, was developed for, Macintosh computers) -> a network protocol (917ms)
Who developed the Macintosh computer? 1984 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (1984, developed to run on, the Macintosh computer) -> 1984 (917ms)
Who developed the Macintosh computer? The program 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (The program, was developed for, the Macintosh computer) -> The program (917ms)
Who developed the Macintosh computer? Later versions 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Later versions, were developed for, Macintosh computers) -> Later versions (1303ms)
Who developed the Macintosh computer? Jobs 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Jobs, develop, the Macintosh computer) -> Jobs (917ms)
Who developed the Macintosh computer? a new program Aldus 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (a new program Aldus, developed for, Apple Macintosh computers) -> a new program Aldus (917ms)
Who developed the Macintosh computer? PageMaker 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (PageMaker, was developed for, Macintosh computers) -> PageMaker (1303ms)
Who developed the Macintosh computer? image 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (image, was developed on, Macintosh computer) -> image (917ms)
Who developed the Macintosh computer? Stephen Jobs 1.44444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh computer) -> (Stephen Jobs, invented, the Macintosh computer) -> Stephen Jobs (1303ms)
Who developed the Macintosh computer? Steve 1.44444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh computer) -> (Steve, invented, the Macintosh computer) -> Steve (1303ms)
Who developed the Macintosh computer? Pages 0.444444444444 Who developed the Macintosh computer? -> $x: ($x, be host, macintosh) -> (Pages, were hosted on, a Macintosh? server) -> Pages (1369ms)
Who developed the Macintosh computer? The site 0.444444444444 Who developed the Macintosh computer? -> $x: ($x, be host, macintosh) -> (The site, is hosted on, Macintosh servers) -> The site (1369ms)
Who developed the Macintosh computer? The Apple //e and IIGS 0.444444444443 Who 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)
Who developed the Macintosh computer? The Plus 0.444444444443 Who developed the Macintosh computer? -> $x: ($x, be network, macintosh) -> (The Plus, can be networked with, newer Macintoshes) -> The Plus (1386ms)
Who developed the Macintosh computer? the format -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the format, was originally developed for, the Macintosh platform) -> the format (1390ms)
Who developed the Macintosh computer? Bookends -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Bookends, was developed specifically for, Apple Macintosh) -> Bookends (1390ms)
Who developed the Macintosh computer? Professional People -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Professional People, developed, a new Macintosh application) -> Professional People (1390ms)
Who developed the Macintosh computer? the first operating system GUI -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the first operating system GUI, developed for, the Macintosh) -> the first operating system GUI (1386ms)
Who developed the Macintosh computer? David Richardson -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (David Richardson, developed, another Macintosh-friendly format) -> David Richardson (1388ms)
Who developed the Macintosh computer? the early Apple team -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the early Apple team, developed for, the Macintosh) -> the early Apple team (1391ms)
Who developed the Macintosh computer? the team -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the team, developing, the Macintosh) -> the team (1388ms)
Who developed the Macintosh computer? FileMaker -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (FileMaker, was originally developed for, the Apple Macintosh) -> FileMaker (1391ms)
Who developed the Macintosh computer? Halo -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Halo, is being developed for, Macintosh and Windows) -> Halo (1386ms)
Who developed the Macintosh computer? The apothecaries -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (The apothecaries, developed, Macintosh cosmetic makeup products) -> The apothecaries (1388ms)
Who developed the Macintosh computer? the original team -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the original team, developed, the Macintosh) -> the original team (1388ms)
Who developed the Macintosh computer? Jobs and Apple -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Jobs and Apple, are developing, the Macintosh) -> Jobs and Apple (1390ms)
Who developed the Macintosh computer? Mathematica -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Mathematica, was developed on, the Macintosh) -> Mathematica (1388ms)
Who developed the Macintosh computer? File forks -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (File forks, were originally developed for, the Macintosh) -> File forks (1390ms)
Who developed the Macintosh computer? Palm -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Palm, continues to develop, its Macintosh sync client) -> Palm (1386ms)
Who developed the Macintosh computer? an e-book pioneer -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (an e-book pioneer, previously developed, the Macintosh mouse) -> an e-book pioneer (1388ms)
Who developed the Macintosh computer? TOPS -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (TOPS, developed, the first IBM-Macintosh local-area network) -> TOPS (1391ms)
Who developed the Macintosh computer? creative types -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (creative types, have developed software for, Macintosh) -> creative types (1390ms)
Who developed the Macintosh computer? MOTU -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (MOTU, developed one of, the Macintosh) -> MOTU (1388ms)
Who developed the Macintosh computer? Spin3 -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Spin3, is developed specifically for, the Macintosh Apples) -> Spin3 (1391ms)
Who developed the Macintosh computer? developers -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (developers, have primarily developed for, Macintosh) -> developers (1386ms)
Who developed the Macintosh computer? Studion -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Studion, has developed, a Macintosh Photoshop plugin claims) -> Studion (1388ms)
Who developed the Macintosh computer? new applications -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (new applications, are being developed for, Macintosh) -> new applications (1386ms)
Who developed the Macintosh computer? Lynch -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Lynch, developed early, Macintosh applications) -> Lynch (1386ms)
Who developed the Macintosh computer? the company -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the company, developed, the first Macintosh memory products) -> the company (1388ms)
Who developed the Macintosh computer? vector graphics -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (vector graphics, was first developed for, the Apple Macintosh) -> vector graphics (1386ms)
Who developed the Macintosh computer? a uuencoded file -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (a uuencoded file, was developed originally for, the Macintosh) -> a uuencoded file (1388ms)
Who developed the Macintosh computer? The learning materials -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (The learning materials, are developed on, the Macintosh) -> The learning materials (1391ms)
Who developed the Macintosh computer? Excel -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Excel, was originally developed for, the Macintosh) -> Excel (1386ms)
Who developed the Macintosh computer? QuickTime -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (QuickTime, was initially developed just for, the Macintosh) -> QuickTime (1391ms)
Who developed the Macintosh computer? 1986 -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (1986, developed, the first Macintosh design lab) -> 1986 (1388ms)
Who developed the Macintosh computer? Microsoft -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Microsoft, is developed by, the Macintosh Business Unit) -> Microsoft (1390ms)
Who developed the Macintosh computer? Silicon Valley -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Silicon Valley, developed early, Macintosh upgrades) -> Silicon Valley (1386ms)
Who developed the Macintosh computer? Panergy -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Panergy, has been developing software for, the Macintosh) -> Panergy (1386ms)
Who developed the Macintosh computer? Empire -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Empire, was developed from, Red Delicious and Macintosh) -> Empire (1391ms)
Who developed the Macintosh computer? Forks -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Forks, were originally developed for, the Macintosh) -> Forks (1386ms)
Who developed the Macintosh computer? the CD-ROM -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the CD-ROM, were developed on, a Macintosh IIci) -> the CD-ROM (1390ms)
Who developed the Macintosh computer? HyperGlot -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (HyperGlot, developed software mainly for, the Macintosh) -> HyperGlot (1388ms)
Who developed the Macintosh computer? personal computer software--to -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (personal computer software--to, develop, Macintosh products) -> personal computer software--to (1390ms)
Who developed the Macintosh computer? the handheld device -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the handheld device, are developed on, the Macintosh) -> the handheld device (1390ms)
Who developed the Macintosh computer? Mirra -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Mirra, was developed for, Macintosh) -> Mirra (1391ms)
Who developed the Macintosh computer? Apple employee Jef Raskin -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Apple employee Jef Raskin, invented, the Macintosh) -> Apple employee Jef Raskin (1392ms)
Who developed the Macintosh computer? Steve Jobs -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Steve Jobs, invented, Macintosh) -> Steve Jobs (1392ms)
Who developed the Macintosh computer? Jef Raskin -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Jef Raskin, invented, the Macintosh) -> Jef Raskin (1392ms)
Who developed the Macintosh computer? Jef -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Jef, invented, the Macintosh) -> Jef (1392ms)
Who invented television? 1939 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was first invented in, 1939) -> 1939 (1129ms)
Who invented television? the 1890s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was actually invented in, the 1890s) -> the 1890s (1129ms)
Who invented television? 1855 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, has n?t been invented yet in, 1855) -> 1855 (1128ms)
Who invented television? the United States 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (Breakfast television, was invented in, the United States) -> the United States (1217ms)
Who invented television? the United States versus Russia 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the television, was invented in, the United States versus Russia) -> the United States versus Russia (1217ms)
Who invented television? the early decades 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the first television set, was invented in, the early decades) -> the early decades (1072ms)
Who invented television? France 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (Television, was invented in, France) -> France (1128ms)
Who invented television? the 1930 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The television, had been invented in, the 1930) -> the 1930 (1129ms)
Who invented television? America 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was invented in, America) -> America (1260ms)
Who invented television? around 1935 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was invented in, around 1935) -> around 1935 (1072ms)
Who invented television? the act 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the united states television, was invented in, the act) -> the act (1217ms)
Who invented television? 1926 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (Television, was invented in, 1926) -> 1926 (1260ms)
Who invented television? the early 19th century 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (TELEVISION Television, was invented in, the early 19th century) -> the early 19th century (1072ms)
Who invented television? the late 1950s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (not only color television, was invented in, the late 1950s) -> the late 1950s (1217ms)
Who invented television? the 1930s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the television, was invented in, the 1930s) -> the 1930s (1129ms)
Who invented television? the 1920s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (televisions, were invented in, the 1920s) -> the 1920s (1218ms)
Who invented television? the 1950s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The color television, was invented in, the 1950s) -> the 1950s (1218ms)
Who invented television? Scotland 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (' Telephone and television, were invented in, Scotland) -> Scotland (1260ms)
Who invented television? the 1950?s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The color television, was invented in, the 1950?s) -> the 1950?s (1072ms)
Who invented television? the 1960s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The plasma flat screen television, was invented in, the 1960s) -> the 1960s (1218ms)
Who invented television? the U.S. 0.999999999998 Who invented television? -> $x: (lcd, be invent in, $x) -> (LCDs, were nominally invented in, the U.S.) -> the U.S. (1260ms)
Who invented television? case 0.999999999998 Who invented television? -> $x: (satellite, be invent in, $x) -> (Satellite phones, are invented in, case) -> case (1260ms)
Who invented television? the 1940 0.888888888887 Who invented television? -> $x: (color tv, be invent in, $x) -> (color TV, was invented in, the 1940) -> the 1940 (1261ms)
Who invented television? an online tutorial 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (an online tutorial, found at, www.TelevisionWatch) -> an online tutorial (1331ms)
Who invented television? the Security guard 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (the Security guard, can generally be found, watching television) -> the Security guard (1331ms)
Who invented television? 1:30 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (1:30, found, Barbara watching television) -> 1:30 (1331ms)
Who invented television? Mr. Bartlett 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (Mr. Bartlett, found, her watching television) -> Mr. Bartlett (1261ms)
Who invented television? Rembrandt 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (Rembrandt, found Wade, watching a television) -> Rembrandt (1331ms)
Who invented television? PC 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (PC, find Ways to, Watch Free Live Streaming Television series) -> PC (1331ms)
Who invented television? Thin Heel Taro 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (Thin Heel Taro, found, Avilynn watching television) -> Thin Heel Taro (1331ms)
Who invented television? five children 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (five children, were in, the next room watching television) -> five children (3216ms)
Who invented television? pop culture 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (pop culture, are documented in, my Watching television category) -> pop culture (3217ms)
Who invented television? Jones 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (Jones, is engaged in, watching a baseball game on television) -> Jones (3217ms)
Who invented television? Dad 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (Dad, is in, the house watching television) -> Dad (2050ms)
Who invented television? The iPad 0.666666666663 Who invented television? -> $x: ($x, introduce, watch television) -> (The iPad, has introduced, a new way of watching television) -> The iPad (2049ms)
Who invented television? A TV camera 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (A TV camera, is sitting in, an easy chair watching television) -> A TV camera (2050ms)
Who invented television? The girls 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (The girls, are in, my bedroom watching television) -> The girls (2049ms)
Who invented television? the neighbor 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (the neighbor, was lying in, the floor watching television) -> the neighbor (2050ms)
Who invented television? the two 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (the two, were in, the same room watching television) -> the two (2050ms)
Who invented television? the philosopher 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (the philosopher, was in, Cairo watching television images) -> the philosopher (1836ms)
Who invented television? snacks 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (snacks, can be settled in, the evening watching television) -> snacks (2050ms)
Who invented television? George 0.66666666666 Who invented television? -> $x: ($x, discover, watch television) -> (George, had discovered, more watching television) -> George (3217ms)
Who invented television? engineers 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (engineers, develop, the television) -> engineers (5249ms)
Who invented television? Chopra Media 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Chopra Media, develops, television programming) -> Chopra Media (5234ms)
Who invented television? five-year Ready To Learn grant 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (five-year Ready To Learn grant, develop, new television) -> five-year Ready To Learn grant (3347ms)
Who invented television? the ad campaign 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the ad campaign, developed, the Can TELEVISION commercial) -> the ad campaign (5249ms)
Who invented television? Princess 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Princess, has developed an affinity for, television) -> Princess (5242ms)
Who invented television? Smallville 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Smallville, was developed for, television) -> Smallville (3679ms)
Who invented television? Ms. Covell 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Ms. Covell, developed, both television movies) -> Ms. Covell (5249ms)
Who invented television? Joe Davola 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Joe Davola, was developed for, television) -> Joe Davola (4304ms)
Who invented television? Only last week 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Only last week, develop, penicillin , television) -> Only last week (5242ms)
Who invented television? Stephano 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Stephano, develop, the seminal television series) -> Stephano (5226ms)
Who invented television? a subsidiary 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (a subsidiary, develops, Digital Television systems) -> a subsidiary (3679ms)
Who invented television? broadcasters 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (broadcasters, develop, a new television service) -> broadcasters (5226ms)
Who invented television? Nit Boy 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Nit Boy, is currently being developed for, television) -> Nit Boy (5242ms)
Who invented television? an American teen drama 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (an American teen drama, developed for, television) -> an American teen drama (5242ms)
Who invented television? Sharp 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Sharp, has developed, television) -> Sharp (5226ms)
Who invented television? Master Lock 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Master Lock, developed, a television commercial) -> Master Lock (4304ms)
Who invented television? The concept 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The concept, was developed for, television) -> The concept (5249ms)
Who invented television? RIZZOLI & ISLES 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (RIZZOLI & ISLES, was developed for, television) -> RIZZOLI & ISLES (3217ms)
Who invented television? The series 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The series, was developed for, television) -> The series (5234ms)
Who invented television? COMAP 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (COMAP, developed, two PBS television series) -> COMAP (5234ms)
Who invented television? Reiner 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Reiner, developed, a television pilot) -> Reiner (4304ms)
Who invented television? copyright Hasbro 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (copyright Hasbro, was developed for, television) -> copyright Hasbro (5234ms)
Who invented television? SMALLVILE 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (SMALLVILE, was developed for, television) -> SMALLVILE (5234ms)
Who invented television? time 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (time, develop, her own television shows) -> time (5234ms)
Who invented television? Paul Weiss clients 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Paul Weiss clients, developed, television) -> Paul Weiss clients (5249ms)
Who invented television? Nitboy 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Nitboy, is currently being developed for, television) -> Nitboy (3679ms)
Who invented television? Magic 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Magic, was developed for, television) -> Magic (3679ms)
Who invented television? Relativity Media 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Relativity Media, develop a series for, television) -> Relativity Media (4303ms)
Who invented television? Laurenn McCubbin 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Laurenn McCubbin, is currently being developed for, television) -> Laurenn McCubbin (5249ms)
Who invented television? The production company 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The production company, develops, television shows) -> The production company (5242ms)
Who invented television? Macintosh 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Macintosh, developed a whole new breed of, televisions) -> Macintosh (5234ms)
Who invented television? SMALLVILLE 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (SMALLVILLE, was developed for, television) -> SMALLVILLE (5242ms)
Who invented television? Re-Animator 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Re-Animator, is being developed for, television) -> Re-Animator (5249ms)
Who invented television? the production 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the production, developed, television) -> the production (5234ms)
Who invented television? The show 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The show, was developed for, television) -> The show (5249ms)
Who invented television? Rosing 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Rosing, develops theory of, television) -> Rosing (3679ms)
Who invented television? Justice Interrupted 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Justice Interrupted, is being developed for, television) -> Justice Interrupted (5226ms)
Who invented television? Danny Thomas 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Danny Thomas, developed, breakthrough television production) -> Danny Thomas (5249ms)
Who invented television? The project 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The project, is developed for, television) -> The project (5242ms)
Who invented television? The material 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The material, is being developed for, television) -> The material (3347ms)
Who invented television? Pita 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Pita, developed, three television spots) -> Pita (3347ms)
Who invented television? Iron Man 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Iron Man, is being developed for, television) -> Iron Man (5249ms)
Who invented television? A miltary robot 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (A miltary robot, develops, a television set) -> A miltary robot (5226ms)
Who invented television? vsa 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (vsa, developed, a new television campaign) -> vsa (5234ms)
Who invented television? Lizz 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Lizz, is developing shows for, television) -> Lizz (4304ms)
Who invented television? A system 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (A system, developed for, television) -> A system (5227ms)
Who invented television? Brian Michael Bendis 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Brian Michael Bendis, has long been developing for, television) -> Brian Michael Bendis (4304ms)
Who invented television? direct mail pieces 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (direct mail pieces, develop, radio or television spots) -> direct mail pieces (5226ms)
Who invented television? director Vic Cook 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (director Vic Cook, developed the series for, television) -> director Vic Cook (5242ms)
Who invented television? Baird 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Baird, developed, a color television) -> Baird (3347ms)
Who invented television? Miller 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Miller, developed, the television hit) -> Miller (5234ms)
Who invented television? 1975-1976 Ellery Queen series 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (1975-1976 Ellery Queen series, was developed for, television) -> 1975-1976 Ellery Queen series (5234ms)
Who invented television? such a theory man 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (such a theory man, develop, television) -> such a theory man (5242ms)
Who invented television? an art and design studio 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (an art and design studio, develops, television and film projects) -> an art and design studio (5249ms)
Who invented television? the way engineers 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the way engineers, develop, television) -> the way engineers (3679ms)
Who invented television? Radios 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Radios, developed into, televisions) -> Radios (5249ms)
Who invented television? Scottish inventor 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Scottish inventor, developed, television) -> Scottish inventor (4304ms)
Who invented television? the late Star Trek creator 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the late Star Trek creator, developed for, television) -> the late Star Trek creator (5227ms)
Who invented television? Deadman 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Deadman, is being developed for, television) -> Deadman (5242ms)
Who invented television? Kida 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Kida, developed a great love of, television) -> Kida (4304ms)
Who invented television? can?t 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (can?t, be developed on, television) -> can?t (3347ms)
Who invented television? Farnsworth 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Farnsworth, developed, a television system) -> Farnsworth (4303ms)
Who invented television? The organization 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The organization, develops, digital television standards) -> The organization (5226ms)
Who invented television? HBO 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (HBO, develops, a television series) -> HBO (3679ms)
Who invented television? David 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (David, developed, enhanced television programs) -> David (4304ms)
Who invented television? The studio 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The studio, develops, television) -> The studio (5226ms)
Who invented television? executive 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (executive, developed this show for, television) -> executive (5249ms)
Who invented television? more than 300,000 users 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (more than 300,000 users, is being developed for, television) -> more than 300,000 users (5242ms)
Who invented television? the same name 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the same name, was developed for, television) -> the same name (5226ms)
Who invented television? a single season 1927? Philo Farnsworth 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (a single season 1927? Philo Farnsworth, develops, television) -> a single season 1927? Philo Farnsworth (5242ms)
Who invented television? Zuiker 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Zuiker, develop, a blockbuster television series) -> Zuiker (5242ms)
Who invented television? the series 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the series, developed for, television) -> the series (3347ms)
Who invented television? a discipline 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (a discipline, has really developed with, television) -> a discipline (5242ms)
Who invented television? the person 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the person, developed the show for, television) -> the person (5234ms)
Who invented television? Punchcut 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Punchcut, developed, an innovative television) -> Punchcut (5234ms)
Who invented television? Reiser 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Reiser, developed, film , television) -> Reiser (5226ms)
Who invented television? Night & Weekends 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Night & Weekends, develops, advertising , books , television) -> Night & Weekends (5234ms)
Who invented television? Neil Postman 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Neil Postman, cannot be developed on, television) -> Neil Postman (4304ms)
Who invented television? relationships 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (relationships, develop on, television) -> relationships (3347ms)
Who invented television? scripts Weichert 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (scripts Weichert, developed for, television) -> scripts Weichert (3679ms)
Who invented television? Independent films 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Independent films, develop, television) -> Independent films (5242ms)
Who invented television? The Walking Dead 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The Walking Dead, was developed for, television) -> The Walking Dead (5249ms)
Who invented television? commissions 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (commissions, develops original programming for, television) -> commissions (5242ms)
Who invented television? ?Gossip Girl? 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (?Gossip Girl?, was developed for, television) -> ?Gossip Girl? (5226ms)
Who invented television? Panasonic 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Panasonic, has been developing 3D standards for, television) -> Panasonic (5249ms)
Who invented television? the energy 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (the energy, do something other than, watch television) -> the energy (5256ms)
Who invented television? 0.0 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (0.0, Do, Prices Vary Watch television) -> 0.0 (5256ms)
Who invented television? a day 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (a day, does, the child watch television) -> a day (5256ms)
Who invented television? two screens 0.555555555552 Who invented television? -> $x: ($x, create, watch television) -> (two screens, create, television-watching heaven) -> two screens (5256ms)
Who invented television? Piper 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (Piper, Does, n?t Watch Television) -> Piper (5256ms)
Who invented television? children 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (children, do, watch television) -> children (5256ms)
Who invented television? news 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (news, does n?t count as, television watching) -> news (5256ms)
Who invented television? the evenings 0.555555555552 Who invented television? -> $x: (watch television, take place in, $x) -> (television watching, took place in, the evenings) -> the evenings (5256ms)
Who invented television? the 1930s and 1940s 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the 1930s and 1940s, found its way to, television) -> the 1930s and 1940s (5275ms)
Who invented television? a collective American society 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (a collective American society, cannot be found on, television) -> a collective American society (5285ms)
Who invented television? juggling 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (juggling, found, television) -> juggling (5263ms)
Who invented television? Lauren Conrad 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Lauren Conrad, has found success on, television) -> Lauren Conrad (5269ms)
Who invented television? images 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (images, found on, television) -> images (5285ms)
Who invented television? detail 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (detail, cannot be found on, television) -> detail (5269ms)
Who invented television? Cathode ray tubes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Cathode ray tubes, are found in, televisions) -> Cathode ray tubes (5263ms)
Who invented television? chaos demands stability 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (chaos demands stability, can be found in, television) -> chaos demands stability (5285ms)
Who invented television? the average person 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the average person, finds time to watch, television) -> the average person (5263ms)
Who invented television? UPA 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (UPA, found great success on, television) -> UPA (5269ms)
Who invented television? Non-standard English 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Non-standard English, can be found on, television) -> Non-standard English (5285ms)
Who invented television? PBDEs 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (PBDEs, are found in, televisions) -> PBDEs (5285ms)
Who invented television? content 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (content, found nowhere else on, television) -> content (5280ms)
Who invented television? little sets 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (little sets, find, televisions) -> little sets (5275ms)
Who invented television? regimens 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (regimens, can be found on, television) -> regimens (5280ms)
Who invented television? Gaming News 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Gaming News, Find Inspiration in, Television) -> Gaming News (5280ms)
Who invented television? the best dramatic writing 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the best dramatic writing, is found on, television) -> the best dramatic writing (5280ms)
Who invented television? the sale 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the sale, find bargains on, Televisions) -> the sale (5263ms)
Who invented television? adverts 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (adverts, can be found on, television) -> adverts (5269ms)
Who invented television? multiples 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (multiples, can be found on, television) -> multiples (5280ms)
Who invented television? Guests 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Guests, will find, television) -> Guests (5263ms)
Who invented television? the DS 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the DS, found on, televisions) -> the DS (5263ms)
Who invented television? DigiCart recorders 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (DigiCart recorders, are found throughout, television) -> DigiCart recorders (5275ms)
Who invented television? Imagery 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Imagery, is found on, television) -> Imagery (5275ms)
Who invented television? teachers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (teachers, tried to find, televisions) -> teachers (5269ms)
Who invented television? August Bose 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (August Bose, found work in, television) -> August Bose (5285ms)
Who invented television? youll 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (youll, find on, television) -> youll (5280ms)
Who invented television? tournament action 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (tournament action, can be found on, television) -> tournament action (5263ms)
Who invented television? the cosmetic voices 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the cosmetic voices, found on, television) -> the cosmetic voices (5280ms)
Who invented television? automotive reviews 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (automotive reviews, cannot be found on, television) -> automotive reviews (5285ms)
Who invented television? any William Castle films 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (any William Castle films, did find work in, television) -> any William Castle films (5275ms)
Who invented television? the sex 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the sex, found on, television) -> the sex (5269ms)
Who invented television? marilyn and 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (marilyn and, i find out on, television) -> marilyn and (5269ms)
Who invented television? the strongest narrative stories 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the strongest narrative stories, can be found on, television) -> the strongest narrative stories (5269ms)
Who invented television? the speakers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the speakers, found in, televisions) -> the speakers (5285ms)
Who invented television? individuals 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (individuals, can find, televisions) -> individuals (5275ms)
Who invented television? Marx 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Marx, find, television) -> Marx (5256ms)
Who invented television? I?ve 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (I?ve, found, television) -> I?ve (5280ms)
Who invented television? Groucho Marx 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Groucho Marx, find, television) -> Groucho Marx (5285ms)
Who invented television? Tennessee employees 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Tennessee employees, have reported finding, televisions) -> Tennessee employees (5275ms)
Who invented television? Open and shut cases 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Open and shut cases, are only found on, television) -> Open and shut cases (5256ms)
Who invented television? you?ll 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (you?ll, find my article on, television) -> you?ll (5263ms)
Who invented television? critical information 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (critical information, found nowhere else on, television) -> critical information (5280ms)
Who invented television? Computer imagery 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Computer imagery, is found on, television) -> Computer imagery (5269ms)
Who invented television? lead , mercury and cadmium 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (lead , mercury and cadmium, can be found in, televisions) -> lead , mercury and cadmium (5269ms)
Who invented television? founder 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (founder, has found, television) -> founder (5280ms)
Who invented television? Story lines 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Story lines, can be found on, television) -> Story lines (5280ms)
Who invented television? nowadays such subtitled movies 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (nowadays such subtitled movies, can be found on, television) -> nowadays such subtitled movies (5285ms)
Who invented television? The researchers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (The researchers, found the content of, television) -> The researchers (5256ms)
Who invented television? the basic English approach 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the basic English approach, found on, television) -> the basic English approach (5275ms)
Who invented television? the anime crap 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the anime crap, found on, television) -> the anime crap (5280ms)
Who invented television? a fire retardant 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (a fire retardant, found in, televisions) -> a fire retardant (5269ms)
Who invented television? Such a menace to the Christian 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Such a menace to the Christian, to be found in, television) -> Such a menace to the Christian (5275ms)
Who invented television? 33 records 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (33 records, found for, Television) -> 33 records (5263ms)
Who invented television? the humorous stunts 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the humorous stunts, found on, television) -> the humorous stunts (5280ms)
Who invented television? Benjamin 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Benjamin, finds, television) -> Benjamin (5280ms)
Who invented television? Current modes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Current modes, are also found on, television) -> Current modes (5263ms)
Who invented television? Alums 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Alums, have found careers in, television) -> Alums (5275ms)
Who invented television? the comedians 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the comedians, found their niche in, television) -> the comedians (5269ms)
Who invented television? a handsome , privileged man 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (a handsome , privileged man, finds fame on, television) -> a handsome , privileged man (5263ms)
Who invented television? the stereotypes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the stereotypes, found on, television) -> the stereotypes (5275ms)
Who invented television? Ailes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Ailes, found his calling in, television) -> Ailes (5256ms)
Who invented television? competition 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (competition, finds an outlet in, television) -> competition (5263ms)
Who invented television? Ice-T 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Ice-T, can be found on, television) -> Ice-T (5269ms)
Who invented television? sexual images 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (sexual images, found on, television) -> sexual images (5275ms)
Who invented television? bull sharks 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (bull sharks, can be found on, television) -> bull sharks (5280ms)
Who invented television? Paul 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Paul, finds unexpected fame on, television) -> Paul (5269ms)
Who invented television? Day 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Day, found success in, television) -> Day (5263ms)
Who invented television? viewers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (viewers, can find elsewhere on, television) -> viewers (5275ms)
Who invented television? Liquid-crystal displays 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Liquid-crystal displays, found in, televisions) -> Liquid-crystal displays (5285ms)
Who invented television? society today 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (society today, is found on, television) -> society today (5256ms)
Who invented television? Castellari 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Castellari, found work in, television) -> Castellari (5275ms)
Who invented television? magnetism 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (magnetism, is often found in, televisions) -> magnetism (5285ms)
Who invented television? Business Children 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Business Children, often find, television) -> Business Children (5269ms)
Who invented television? Don Kent 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Don Kent, found fame on, television) -> Don Kent (5256ms)
Who invented television? the success Kaling 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the success Kaling, has found in, television) -> the success Kaling (5275ms)
Who invented television? the plastics hardener 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the plastics hardener, is found in, televisions) -> the plastics hardener (5256ms)
Who invented television? Children 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Children, often find, television) -> Children (5275ms)
Who invented television? Pearce 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Pearce, found other work in, television) -> Pearce (5263ms)
Who invented television? the sharpest comic writing 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the sharpest comic writing, ever found on, television) -> the sharpest comic writing (5280ms)
Who invented television? 1964 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (Plasma TVs, were actually invented back in, 1964) -> 1964 (5285ms)
Who invented television? the USA other countries 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV, was invented in, the USA other countries) -> the USA other countries (5285ms)
Who invented television? Aurecea 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV and movies, have n?t been invented yet in, Aurecea) -> Aurecea (5285ms)
Who invented television? 1920 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV EV, was invented in, 1920) -> 1920 (5290ms)
Who invented television? the same university 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (flat screen TVs, were invented in, the same university) -> the same university (5290ms)
Who invented television? 1945 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (The frozen TV dinner, was invented in, 1945) -> 1945 (5290ms)
Who invented television? Rigby 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV, was invented in, Rigby) -> Rigby (5290ms)
Who invented television? frantic carrying out work 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (frantic carrying out work, exactly is, Satellite television) -> frantic carrying out work (5290ms)
Who invented television? The same 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (The same, can be said exactly on, the television side) -> The same (5290ms)
Who invented television? a seat 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (a seat, exactly is on, television) -> a seat (5290ms)
Who invented television? Papua New Guinea 0.444444444441 Who invented television? -> $x: ($x, have invent, television) -> (Papua New Guinea, had invented, the television) -> Papua New Guinea (5295ms)
Who invented television? the cave-men 0.444444444441 Who invented television? -> $x: ($x, have invent, television) -> (the cave-men, had invented, television many thousand years) -> the cave-men (5290ms)
Who invented television? the fad 0.444444444441 Who invented television? -> $x: (television, be create on, $x) -> (A cartoon television show, was created based on, the fad) -> the fad (5295ms)
Who invented television? the body 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (the body, is replicated exactly on, the television screen) -> the body (5290ms)
Who invented television? Web-captions 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (Web-captions, are exactly like, television and film captions) -> Web-captions (5290ms)
Who invented television? the concept 0.444444444441 Who invented television? -> $x: (television, be create on, $x) -> (television programs, have been created based on, the concept) -> the concept (5290ms)
Who invented television? Life 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (Life, was exactly like, the television show Happy Days) -> Life (5290ms)
Who invented television? nobody 0.444444444441 Who invented television? -> $x: ($x, have invent, television) -> (nobody, had invented, television) -> nobody (5290ms)
Who invented television? Canada 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (American films and television shows, are made in, Canada) -> Canada (5299ms)
Who invented television? 1996 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (A television movie, was made in, 1996) -> 1996 (5299ms)
Who invented television? England 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (The first public television Broadcast, were made in, England) -> England (5304ms)
Who invented television? recent years 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Commercial television, has been making gains in, recent years) -> recent years (5299ms)
Who invented television? Kiev 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (RT? Television, will be made in, Kiev) -> Kiev (5299ms)
Who invented television? Russian 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, were always first made in, Russian) -> Russian (5299ms)
Who invented television? 1984 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (His first film and television appearances, were made in, 1984) -> 1984 (5299ms)
Who invented television? the language 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television and radio broadcasts, are made in, the language) -> the language (5295ms)
Who invented television? the Vancouver area 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television and radio, were made in, the Vancouver area) -> the Vancouver area (5295ms)
Who invented television? cooperation 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the television programme, had been made in, cooperation) -> cooperation (5295ms)
Who invented television? the region 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television programs, will soon be made available in, the region) -> the region (5295ms)
Who invented television? China 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Your television, may be made in, China) -> China (5299ms)
Who invented television? reality TV shows 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, are making waves in, reality TV shows) -> reality TV shows (5295ms)
Who invented television? Texas 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (43 feature films and television shows, were made in, Texas) -> Texas (5299ms)
Who invented television? part 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the television, is made in, part) -> part (5299ms)
Who invented television? a chair 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (an anti-Israeli television show, was made to sit in, a chair) -> a chair (5295ms)
Who invented television? consultation 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (press and/or television, will always be made in, consultation) -> consultation (5304ms)
Who invented television? London and Dakar 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Television, was made in, London and Dakar) -> London and Dakar (5304ms)
Who invented television? flat screen form 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (LCD televisions, are both made in, flat screen form) -> flat screen form (5295ms)
Who invented television? Kaliningrad 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (one in three televisions in Russia, are made in, Kaliningrad) -> Kaliningrad (5304ms)
Who invented television? anime 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, is a huge step in making, anime) -> anime (5299ms)
Who invented television? partnership 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the television special, was made in, partnership) -> partnership (5299ms)
Who invented television? Television Production Tour 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, is made in, Television Production Tour) -> Television Production Tour (5299ms)
Who invented television? Asia 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Television sets and computers, are made in, Asia) -> Asia (5295ms)
Who invented television? the 16x9 screen aspect ratio 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Plasma televisions, are made in, the 16x9 screen aspect ratio) -> the 16x9 screen aspect ratio (5299ms)
Who invented television? the early 1960s 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television programs, were made back in, the early 1960s) -> the early 1960s (5295ms)
Who invented television? Egypt 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television serials, were made in, Egypt) -> Egypt (5299ms)
Who invented television? 1936 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the first television transmissions, were made in, 1936) -> 1936 (5304ms)
Who invented television? 1957 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (extremely rare television appearances, was made in, 1957) -> 1957 (5299ms)
Who invented television? 1950 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (No, television history, was being made in, 1950) -> 1950 (5304ms)
Who invented television? Detroit 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (a television, was actually made in, Detroit) -> Detroit (5299ms)
Who invented television? Milan 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television channels, are making plans to be in, Milan) -> Milan (5295ms)
Who invented television? a mark 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (a mark, had developed on, my LCD) -> a mark (5329ms)
Who invented television? a running program 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a running program, developed, new satellite cells) -> a running program (5312ms)
Who invented television? work 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (work, take to develop, an in-house LCD system) -> work (5331ms)
Who invented television? MPA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (MPA, develops, full satellite communications system) -> MPA (5320ms)
Who invented television? the Air Force 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Air Force, was developing two different types of, satellites) -> the Air Force (5331ms)
Who invented television? a screen cleaner 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (a screen cleaner, developed for, use specifically on LCD screens) -> a screen cleaner (5323ms)
Who invented television? a main base 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a main base, is developing, satellite Centres) -> a main base (5329ms)
Who invented television? DOME 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (DOME, develop, the first medical imaging LCD display) -> DOME (5312ms)
Who invented television? Celestron 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Celestron, has developed, the first digital LCD microscope) -> Celestron (5326ms)
Who invented television? Dynacon 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Dynacon, develops, satellite control systems products) -> Dynacon (5323ms)
Who invented television? scientists 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (scientists, developed from, satellite imaging) -> scientists (5312ms)
Who invented television? Qatar 0.333333333334 Who invented television? -> $x: ($x, develop, satellite television) -> (Qatar, took the lead in developing, satellite television) -> Qatar (5316ms)
Who invented television? thin-film transistor 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (thin-film transistor, has developed, the first 70-inch LCD panel) -> thin-film transistor (5323ms)
Who invented television? IER 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (IER, developed, satellite-mounted magnetic recorders) -> IER (5323ms)
Who invented television? software tools 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (software tools, were developed originally for, satellite) -> software tools (5323ms)
Who invented television? Sylvania 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Sylvania, developed, the idea for use in satellites) -> Sylvania (5326ms)
Who invented television? ESA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (ESA, has developed, the satellites) -> ESA (5335ms)
Who invented television? young African adults 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (young African adults, developed, a satellite package) -> young African adults (5308ms)
Who invented television? Innolux 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Innolux, is currently developing, a 26? wide LCD monitor panel) -> Innolux (5308ms)
Who invented television? JPL 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (JPL, developed, the first American orbital satellite) -> JPL (5308ms)
Who invented television? The move 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The move, is to develop, satellites) -> The move (5331ms)
Who invented television? BAS 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (BAS, have developed, innovative satellite) -> BAS (5326ms)
Who invented television? The company 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (The company, has developed, LCD panels) -> The company (5331ms)
Who invented television? Dr. Hofman 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Dr. Hofman, develops, satellite systems) -> Dr. Hofman (5316ms)
Who invented television? Conclusion Aerospace 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Conclusion Aerospace, has been working to develop, satellites) -> Conclusion Aerospace (5329ms)
Who invented television? ACSER 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (ACSER, will develop technologies for, satellite navigation) -> ACSER (5308ms)
Who invented television? Vietnam 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Vietnam, developed, a spy satellite) -> Vietnam (5320ms)
Who invented television? SSC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (SSC, develops, state-of-the-art satellites) -> SSC (5331ms)
Who invented television? growth capital 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (growth capital, develop, satellite facilities) -> growth capital (5304ms)
Who invented television? smartphones 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (smartphones, could feasibly develop apps for, satellites) -> smartphones (5320ms)
Who invented television? a high gloss 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (a high gloss, specifically developed for, LCD screens) -> a high gloss (5316ms)
Who invented television? Norsat 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Norsat, develops, ground-based satellite equipment) -> Norsat (5320ms)
Who invented television? the group 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the group, developed, the Copernicus satellite) -> the group (5323ms)
Who invented television? Bristol Motor Speedway 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Bristol Motor Speedway, developed, satellite parking lots) -> Bristol Motor Speedway (5312ms)
Who invented television? June 8 , 2010 Sharp 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (June 8 , 2010 Sharp, has developed, a touch screen LCD) -> June 8 , 2010 Sharp (5335ms)
Who invented television? SSF 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (SSF, originally developed software for, satellites) -> SSF (5323ms)
Who invented television? Melbourne 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Melbourne, developed, the satellite?s L-band reflector) -> Melbourne (5326ms)
Who invented television? Defense 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Defense, developed, this satellite system) -> Defense (5331ms)
Who invented television? the first LCD producer 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (the first LCD producer, has developed, a 2.2? LCD) -> the first LCD producer (5320ms)
Who invented television? CU students 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (CU students, developed, the DINO satellite mission) -> CU students (5323ms)
Who invented television? an aerospace division 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (an aerospace division, developed, satellite tracking systems) -> an aerospace division (5326ms)
Who invented television? UK, 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (UK,, has developed, a low-cost LCD multimedia projector) -> UK, (5312ms)
Who invented television? Medicare contractors 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Medicare contractors, develop, LCDs) -> Medicare contractors (5320ms)
Who invented television? Orbit Logic 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Orbit Logic, developed, the Sibyl imaging satellite tasking app) -> Orbit Logic (5323ms)
Who invented television? Samsung 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Samsung, has developed a new technology for, LCD panels) -> Samsung (5331ms)
Who invented television? the British government 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the British government, developed, the Skynet 2 satellites) -> the British government (5329ms)
Who invented television? Pro Tech 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Pro Tech, developed, the first satellite tracking system) -> Pro Tech (5323ms)
Who invented television? adults 0.333333333334 Who invented television? -> $x: ($x, develop, radio and television) -> (adults, helped develop, Christian radio and television) -> adults (5331ms)
Who invented television? the Government 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Government, had also planned to develop, satellites) -> the Government (5308ms)
Who invented television? INPE 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (INPE, develops, satellites) -> INPE (5308ms)
Who invented television? The Swiss Space Center 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The Swiss Space Center, is developing, a satellite) -> The Swiss Space Center (5312ms)
Who invented television? Epson 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Epson, develops, the LCD D5/D5+ panels) -> Epson (5316ms)
Who invented television? Technology 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Technology, developed, the first U.S. satellite) -> Technology (5312ms)
Who invented television? Team Xecuter 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Team Xecuter, has developed, a Parallel LCD interface) -> Team Xecuter (5316ms)
Who invented television? Singer 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Singer, developed, satellites) -> Singer (5320ms)
Who invented television? LG Display 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (LG Display, developed, a 14.1 inch LCD panel) -> LG Display (5326ms)
Who invented television? instrumentation 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (instrumentation, has been developed using, satellite instruments) -> instrumentation (5335ms)
Who invented television? the U.S. Navy 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the U.S. Navy, developed, the Timation satellite) -> the U.S. Navy (5323ms)
Who invented television? NASA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (NASA, develop, the satellite and instrument) -> NASA (5331ms)
Who invented television? Apr May Sony 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Apr May Sony, develops, new 4K SXRD high-resolution LCD panel) -> Apr May Sony (5312ms)
Who invented television? multiplexing schemes 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (multiplexing schemes, will be developed for, satellites) -> multiplexing schemes (5304ms)
Who invented television? techniques 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (techniques, developed from, satellite imaging) -> techniques (5316ms)
Who invented television? Microsoft and Samsung 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Microsoft and Samsung, worked closely to develop, the LCD panel) -> Microsoft and Samsung (5308ms)
Who invented television? a few species 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a few species, have been developed as, satellite systems) -> a few species (5312ms)
Who invented television? The UK 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The UK, is developing, " satellite accounts) -> The UK (5308ms)
Who invented television? 2 patients 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (2 patients, developed, satellite nodules) -> 2 patients (5329ms)
Who invented television? Dr. Steven 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Dr. Steven, develop, the first medical imaging LCD display) -> Dr. Steven (5323ms)
Who invented television? The INPE 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The INPE, develops, satellites and conducts space) -> The INPE (5320ms)
Who invented television? The Canadian Space Agency 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The Canadian Space Agency, develops, rockets and satellites) -> The Canadian Space Agency (5320ms)
Who invented television? Thales Alenia Space 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Thales Alenia Space, developed, these satellites) -> Thales Alenia Space (5333ms)
Who invented television? the Indian space programme 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Indian space programme, is to develop, satellites) -> the Indian space programme (5304ms)
Who invented television? an active part 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (an active part, develop, mini-satellite technologies) -> an active part (5335ms)
Who invented television? enhanced seismic data evaluation 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (enhanced seismic data evaluation, then develop, satellites) -> enhanced seismic data evaluation (5312ms)
Who invented television? The association 0.333333333334 Who invented television? -> $x: ($x, develop, radio and television) -> (The association, seeks to develop, television and radio business) -> The association (5331ms)
Who invented television? Switzerland 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Switzerland, are developing a new generation of, satellites) -> Switzerland (5329ms)
Who invented television? a convergence 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a convergence, develop, satellite monitoring) -> a convergence (5312ms)
Who invented television? NDRC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (NDRC, developed, GPS satellite positioning technology) -> NDRC (5316ms)
Who invented television? Mr. Gale 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Mr. Gale, developed, satellite Internet communications systems) -> Mr. Gale (5329ms)
Who invented television? Orbital 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Orbital, is a leader in developing, satellites) -> Orbital (5329ms)
Who invented television? Kevin 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Kevin, developed, the trade name ?Satellite Marketing) -> Kevin (5316ms)
Who invented television? Bell Labs 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Bell Labs, developed, the first communications satellites) -> Bell Labs (5323ms)
Who invented television? surprisingly after 6 months 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (surprisingly after 6 months, developed, a LCD problem) -> surprisingly after 6 months (5326ms)
Who invented television? companies 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (companies, have already developed, UltraThin LCD models) -> companies (5326ms)
Who invented television? Special versions 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Special versions, have been developed for, LCD manufacturing) -> Special versions (5316ms)
Who invented television? JAXA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (JAXA, developed, the satellite) -> JAXA (5329ms)
Who invented television? CDC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (CDC, will continue to develop, satellite courses) -> CDC (5320ms)
Who invented television? we?ve 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (we?ve, developed, satellite offices) -> we?ve (5329ms)
Who invented television? CMO 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (CMO, developed, this LCD) -> CMO (5331ms)
Who invented television? consumers 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (consumers, have developed criteria for, LCD visual tests) -> consumers (5323ms)
Who invented television? Pixel Qi 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Pixel Qi, developed, a hybrid LCD screen) -> Pixel Qi (5316ms)
Who invented television? Students 0.333333333334 Who invented television? -> $x: ($x, develop, movie and television) -> (Students, develop their passion for, movies and television) -> Students (5335ms)
Who invented television? the white-smocked scientist 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the white-smocked scientist, develops, his satellite colony) -> the white-smocked scientist (5329ms)
Who invented television? 8.117 Selected minor ports 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (8.117 Selected minor ports, would be developed as, satellites) -> 8.117 Selected minor ports (5316ms)
Who invented television? The church 0.333333333334 Who invented television? -> $x: ($x, develop, radio and television) -> (The church, also developed, radio and television spots) -> The church (5326ms)
Who invented television? Axiomtek 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Axiomtek, develops, various LCD wiring kits) -> Axiomtek (5316ms)
Who invented television? Clone High 0.333333333334 Who invented television? -> $x: ($x, develop, television producer) -> (Clone High, was developed by, television producer Bill Lawrence) -> Clone High (5308ms)
Who invented television? the college 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the college, developed, a satellite campus) -> the college (5304ms)
Who invented television? 1977 NASA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (1977 NASA, developed, the Satellite Arts Project) -> 1977 NASA (5304ms)
Who invented television? NHK 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (NHK, developed, a HD satellite broadcast system) -> NHK (5308ms)
Who invented television? Pakistan 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Pakistan, developed, the Badr-B satellite) -> Pakistan (5331ms)
Who invented television? SaTReC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (SaTReC, continues to develop, satellites) -> SaTReC (5308ms)
Who invented television? EUMETSAT 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (EUMETSAT, develops, space based satellite systems) -> EUMETSAT (5329ms)
Who invented television? Mother Angelica 0.333333333334 Who invented television? -> $x: ($x, develop, satellite television) -> (Mother Angelica, has developed, a satellite television network) -> Mother Angelica (5329ms)
Who invented television? The military 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The military, is also developing, stealth satellites) -> The military (5323ms)
Who invented television? ET LG Display Co Ltd. 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (ET LG Display Co Ltd., has developed, an LCD panel) -> ET LG Display Co Ltd. (5331ms)
Who invented television? the NASA 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (the NASA, developed, LCD light system) -> the NASA (5308ms)
Who invented television? India 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (India, developed, high-resolution remote sensing satellite) -> India (5326ms)
Who invented television? BSkyB 0.333333333334 Who invented television? -> $x: ($x, develop, satellite television) -> (BSkyB, have very successfully developed, satellite television) -> BSkyB (5316ms)
Who invented television? Hyundai 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Hyundai, is developing this type of, Lcd monitor) -> Hyundai (5326ms)
Who invented television? Suparco 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Suparco, developed most of, the satellite?s) -> Suparco (5312ms)
Who invented television? Boeing Co. 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Boeing Co., develop, the prototype satellites) -> Boeing Co. (5316ms)
Who invented television? the National Reconnaissance Office 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the National Reconnaissance Office, develops, satellites) -> the National Reconnaissance Office (5304ms)
Who invented television? Allied Signal 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Allied Signal, developing, satellite systems) -> Allied Signal (5331ms)
Who invented television? chb LG Philips 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (chb LG Philips, develops, dirt-resistant LCD Smudges) -> chb LG Philips (5308ms)
Who invented television? a custom 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a custom, developed, satellite network) -> a custom (5331ms)
Who invented television? the JV 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the JV, will develop, satellite technologies) -> the JV (5308ms)
Who invented television? the state government 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the state government, develop, new satellite townships) -> the state government (5329ms)
Who invented television? products 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (products, have been developed to serve, LCD display) -> products (5312ms)
Who invented television? the Chinese ?will 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Chinese ?will, develop, new satellites) -> the Chinese ?will (5326ms)
Who invented television? Hamilton 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Hamilton, could develop, satellite lots) -> Hamilton (5320ms)
Who invented television? high performance solar cells 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (high performance solar cells, developed to, power satellites) -> high performance solar cells (5312ms)
Who invented television? the Courier program 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Courier program, was to develop, a satellite) -> the Courier program (5326ms)
Who invented television? Mwalimu 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Mwalimu, plans to develop, satellite campuses) -> Mwalimu (5312ms)
Who invented television? Youll 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Youll, find, the satellites) -> Youll (5345ms)
Who invented television? the very worst 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the very worst, find, a good satellite monitor) -> the very worst (5337ms)
Who invented television? the picture tube 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the picture tube, found in, modern television sets) -> the picture tube (5337ms)
Who invented television? The planet Jupiter 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The planet Jupiter, was found to have, satellites) -> The planet Jupiter (5343ms)
Who invented television? goods anyone 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (goods anyone, found in, TELEVISION SET) -> goods anyone (5337ms)
Who invented television? Leanna 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Leanna, may be found working, film and television sets) -> Leanna (5345ms)
Who invented television? Hana 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Hana, finds, the satellite) -> Hana (5341ms)
Who invented television? the content 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (the content, found in, both television shows and movies) -> the content (5343ms)
Who invented television? I?ve 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (I?ve, found, a satellite image) -> I?ve (5335ms)
Who invented television? the classroom 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the classroom, could find items such as, a television set) -> the classroom (5341ms)
Who invented television? Knowledge Networks 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Knowledge Networks, found, that satellite penetration) -> Knowledge Networks (5345ms)
Who invented television? seven different campuses 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (seven different campuses, find, a satellite location) -> seven different campuses (5339ms)
Who invented television? You?ll 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (You?ll, find, digital satellite television) -> You?ll (5345ms)
Who invented television? a garmin 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (a garmin, would only find, satellites) -> a garmin (5335ms)
Who invented television? the MotoSat 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the MotoSat, found, the satellite) -> the MotoSat (5343ms)
Who invented television? new HD channels 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (new HD channels, find a place on, satellite) -> new HD channels (5345ms)
Who invented television? a great GPS 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (a great GPS, finds, satellites) -> a great GPS (5341ms)
Who invented television? Several asteroids 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Several asteroids, have already been found to have, satellites) -> Several asteroids (5345ms)
Who invented television? Free software downloads 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Free software downloads, Find, satellite tv) -> Free software downloads (5345ms)
Who invented television? tv-set 0.333333333332 Who 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)
Who invented television? kids 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (kids, find, the satellite) -> kids (5343ms)
Who invented television? any perspective 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (any perspective, find, satellites) -> any perspective (5337ms)
Who invented television? the initial start-up 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the initial start-up, took a while to find, satellites) -> the initial start-up (5345ms)
Who invented television? special cans 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (special cans, will be found by, satellites) -> special cans (5345ms)
Who invented television? wires 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (wires, found on, NTSC television sets) -> wires (5343ms)
Who invented television? one or two channels 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (one or two channels, find, a satellite) -> one or two channels (5341ms)
Who invented television? the dish 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the dish, find, the satellite) -> the dish (5341ms)
Who invented television? Gus II 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Gus II, found, a satellite) -> Gus II (5344ms)
Who invented television? four times larger than 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (four times larger than, found on, other television sets) -> four times larger than (5344ms)
Who invented television? UK, US 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (UK, US, find, satellite phone codes) -> UK, US (5345ms)
Who invented television? The GPS radio 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The GPS radio, typically finds, satellites) -> The GPS radio (5337ms)
Who invented television? The eTrex 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The eTrex, finds, available satellites) -> The eTrex (5344ms)
Who invented television? Nvi 3790LMT 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Nvi 3790LMT, will finds, satellites) -> Nvi 3790LMT (5341ms)
Who invented television? Chloe 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Chloe, found, a satellite feed) -> Chloe (5341ms)
Who invented television? the district manager 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the district manager, found, several Satellite violations) -> the district manager (5337ms)
Who invented television? The Voyager team 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The Voyager team, found, 10 more Uranian satellites) -> The Voyager team (5339ms)
Who invented television? The products 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The products, have found its way into, satellites) -> The products (5335ms)
Who invented television? the cast 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (the cast, found new work in, movies and television) -> the cast (5335ms)
Who invented television? Bruce Bastian 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Bruce Bastian, found, Satellite Software International) -> Bruce Bastian (5337ms)
Who invented television? Cathode Ray Tubes 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Cathode Ray Tubes, were found in, all electronic television sets) -> Cathode Ray Tubes (5339ms)
Who invented television? the national investigation 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the national investigation, found, the satellite TV provider) -> the national investigation (5345ms)
Who invented television? the violence 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (the violence, found in, video games , movies , and television) -> the violence (5339ms)
Who invented television? One common engine design 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (One common engine design, found on, satellites) -> One common engine design (5339ms)
Who invented television? NM ? 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (NM ?, Find, Satellite TV Deals) -> NM ? (5344ms)
Who invented television? SatHunter 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (SatHunter, Find, TV satellites) -> SatHunter (5335ms)
Who invented television? The iNetVu mobile satellite system 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The iNetVu mobile satellite system, finds, the right satellite) -> The iNetVu mobile satellite system (5337ms)
Who invented television? technology 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (technology, found in, flat screen television sets) -> technology (5344ms)
Who invented television? a small compass 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (a small compass, find, the satellite direction) -> a small compass (5339ms)
Who invented television? Producers 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (Producers, find new music for, movies and television) -> Producers (5344ms)
Who invented television? loan 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (loan, could be able to find, a television or television set) -> loan (5344ms)
Who invented television? The unit 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The unit, found, its satellite connection) -> The unit (5343ms)
Who invented television? GPS 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (GPS, finds, the satellite) -> GPS (5343ms)
Who invented television? The Voyagers 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The Voyagers, found, 22 new satellites) -> The Voyagers (5341ms)
Who invented television? The FTA 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The FTA, are found through, satellite) -> The FTA (5345ms)
Who invented television? the familiar TV tube 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the familiar TV tube, found in, most 'regular ' television sets) -> the familiar TV tube (5344ms)
Who invented television? the receivers 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the receivers, find, the satellites) -> the receivers (5344ms)
Who invented television? the double motor system 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the double motor system, finds, the satellites) -> the double motor system (5344ms)
Who invented television? equipment 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (equipment, previously found mainly on, television and movie sets) -> equipment (5337ms)
Who invented television? N?vi 3790LMT 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (N?vi 3790LMT, will finds, satellites) -> N?vi 3790LMT (5341ms)
Who invented television? Assemble antennas 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Assemble antennas, find, satellite) -> Assemble antennas (5344ms)
Who invented television? the Holux 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the Holux, found loads of, satellites) -> the Holux (5339ms)
Who invented television? SIDIP technology 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (SIDIP technology, will also find wide application in, satellite) -> SIDIP technology (5344ms)
Who invented television? the battery pack 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the battery pack, found in, most portable television sets) -> the battery pack (5337ms)
Who invented television? March 15/16 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (March 15/16, found, 7 satellites) -> March 15/16 (5337ms)
Who invented television? Luis Mariano Paz 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Luis Mariano Paz, found, the satellite photo) -> Luis Mariano Paz (5345ms)
Who invented television? a Time 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (a Time, can be found on, television sets) -> a Time (5339ms)
Who invented television? Time 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Time, find, those satellites) -> Time (5343ms)
Who invented television? Internet 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Internet, finds, the satellite) -> Internet (5341ms)
Who invented television? AGPS information 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (AGPS information, may also help in finding, satellites) -> AGPS information (5343ms)
Who invented television? an author 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (an author, Find, Satellite TV Providers) -> an author (5335ms)
Who invented television? reentry 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (reentry, soon found applications on, satellites) -> reentry (5339ms)
Who invented television? The MV-3500 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The MV-3500, finds, the satellite) -> The MV-3500 (5345ms)
Who invented television? sharpness 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (sharpness, is found in, most modern television sets) -> sharpness (5335ms)
Who invented television? text/html S A T E L L 0.333333333332 Who 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)
Who invented television? visitors 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (visitors, find, the Satellite Internet) -> visitors (5345ms)
Who invented television? Adapting technology 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Adapting technology, found in, flat screen television sets) -> Adapting technology (5341ms)
Who invented television? a device 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (a device, is usually found on, a regular television set) -> a device (5344ms)
Who invented television? You?ll 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (You?ll, find two simple types of, television sets) -> You?ll (5343ms)
Who invented television? Mr. Moto 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Mr. Moto, found, his satellite) -> Mr. Moto (5344ms)
Who invented television? internet tv 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (internet tv, will find its way to, your television set) -> internet tv (5345ms)
Who invented television? The tournaments 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The tournaments, can be found as, satellites) -> The tournaments (5345ms)
Who invented television? particle accelerators 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (particle accelerators, are those found in, television sets) -> particle accelerators (5339ms)
Who invented television? the system 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the system, finds, the satellite) -> the system (5341ms)
Who invented television? Maryland 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Maryland, found, the satellite) -> Maryland (5343ms)
Who invented television? Survey crews 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Survey crews, found, satellite infestation) -> Survey crews (5341ms)
Who invented television? Lenny Cacchio 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Lenny Cacchio, find, myself yelling at the television set) -> Lenny Cacchio (5339ms)
Who invented television? accident 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (accident, found, a satellite image) -> accident (5343ms)
Who invented television? Step 3 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Step 3, Find, the desired satellite) -> Step 3 (5339ms)
Who invented television? the app 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the app, finds, GPS satellites) -> the app (5344ms)
Who invented television? the Garmin 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the Garmin, found, the satellites) -> the Garmin (5339ms)
Who invented television? david-nevins 0.333333333332 Who 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)
Who invented television? a RCA connector 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (a RCA connector, can be found on, most television sets) -> a RCA connector (5337ms)
Who invented television? the same technology 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the same technology, found with, Sony ?s Bravia television sets) -> the same technology (5343ms)
Who invented television? the Lick Observatory 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the Lick Observatory, found, a fifth satellite) -> the Lick Observatory (5343ms)
Who invented television? true free-to-air content 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (true free-to-air content, found on, satellites) -> true free-to-air content (5344ms)
Who invented television? others and mine 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (others and mine, finds, the satellites) -> others and mine (5345ms)
Who invented television? more remote areas 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (more remote areas, find, the satellites) -> more remote areas (5337ms)
What are enzymes? Antibiotics 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Antibiotics, cause an imbalance of, enzymes) -> Antibiotics (7278ms)
What are enzymes? The fermentation 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The fermentation, is caused by, enzymes) -> The fermentation (8921ms)
What are enzymes? trauma and surgery 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (trauma and surgery, then cause a release of, enzymes) -> trauma and surgery (6415ms)
What are enzymes? a gradual chemical change 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (a gradual chemical change, caused by, the enzymes) -> a gradual chemical change (7801ms)
What are enzymes? the secretion 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the secretion, caused by, enzyme deficiencies) -> the secretion (7278ms)
What are enzymes? protein synthesis 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (protein synthesis, could have caused the evolution of, enzymes) -> protein synthesis (8921ms)
What are enzymes? the tissue damage 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the tissue damage, caused by, destructive enzymes) -> the tissue damage (3008ms)
What are enzymes? the gene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the gene, can cause problems with, the enzyme) -> the gene (7277ms)
What are enzymes? the production of cPLA2 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the production of cPLA2, causes, the production of the enzyme) -> the production of cPLA2 (4297ms)
What are enzymes? Acute exposure 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Acute exposure, causes the elevation of, liver enzymes) -> Acute exposure (7278ms)
What are enzymes? rat trachea 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (rat trachea, caused increased, enzyme activity) -> rat trachea (4424ms)
What are enzymes? PSC 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (PSC, causes, the blood liver enzyme) -> PSC (6971ms)
What are enzymes? beta carotene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (beta carotene, cause a reduction of, these enzymes) -> beta carotene (6970ms)
What are enzymes? muscle soreness 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (muscle soreness, causes an increase in, enzymes) -> muscle soreness (4298ms)
What are enzymes? The nitric oxide 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The nitric oxide, causes, an enzyme) -> The nitric oxide (6971ms)
What are enzymes? injury affecting either organ 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (injury affecting either organ, may cause release of, this enzyme) -> injury affecting either organ (10392ms)
What are enzymes? Fetal abnormalities 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Fetal abnormalities, probably caused by, enzyme changes) -> Fetal abnormalities (6415ms)
What are enzymes? Earlier statins 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Earlier statins, caused some elevations in, liver enzymes) -> Earlier statins (4424ms)
What are enzymes? the excess weight 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the excess weight, caused, the high-enzyme reading) -> the excess weight (10555ms)
What are enzymes? researchers 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (researchers, invent, numerous DNA enzymes) -> researchers (4297ms)
What are enzymes? Asthma 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Asthma, caused by, enzymes) -> Asthma (7801ms)
What are enzymes? The increase 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The increase, causes, the lipase enzyme) -> The increase (7801ms)
What are enzymes? The clumps 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The clumps, are sometimes caused by, two enzymes) -> The clumps (4424ms)
What are enzymes? A substance 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (A substance, causes, a decrease in levels of an enzyme) -> A substance (8921ms)
What are enzymes? Clinical gmp 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Clinical gmp, caused, enzyme label) -> Clinical gmp (6971ms)
What are enzymes? The brouhaha 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (The brouhaha, invented, an enzyme assay) -> The brouhaha (6970ms)
What are enzymes? The mutations 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The mutations, cause, the production of an enzyme) -> The mutations (3009ms)
What are enzymes? Ethylene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Ethylene, causes increased levels of, certain enzymes) -> Ethylene (7801ms)
What are enzymes? XALATAN 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (XALATAN, caused, macular enzyme) -> XALATAN (8844ms)
What are enzymes? collagen and elastin 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (collagen and elastin, caused by, destructive enzymes) -> collagen and elastin (6415ms)
What are enzymes? Total oxidative stress 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Total oxidative stress, causes failure of, protective enzymes) -> Total oxidative stress (4298ms)
What are enzymes? temperature 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (temperature, causes a rise in, enzyme) -> temperature (4298ms)
What are enzymes? The fungi 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (The fungi, invented, enzymes) -> The fungi (10392ms)
What are enzymes? Genes 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Genes, cause the production of, enzymes) -> Genes (7277ms)
What are enzymes? Lactic acid 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Lactic acid, can cause, enzymes) -> Lactic acid (3008ms)
What are enzymes? alcohol 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (alcohol, causes, the body to overproduce an enzyme) -> alcohol (4297ms)
What are enzymes? Prilosec? 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Prilosec?, may cause increased, liver enzymes) -> Prilosec? (10392ms)
What are enzymes? oxidation which 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (oxidation which, causes deficiencies of, antioxidant enzymes) -> oxidation which (8844ms)
What are enzymes? Streptomycin 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Streptomycin, causes malfunctioning of, enzyme synthesis) -> Streptomycin (4424ms)
What are enzymes? A high carbohydrate diet 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (A high carbohydrate diet, causes an imbalance of, enzymes) -> A high carbohydrate diet (10392ms)
What are enzymes? just a few degrees 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (just a few degrees, high can cause, certain enzymes) -> just a few degrees (8922ms)
What are enzymes? Such organ damages 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Such organ damages, cause the release of, enzymes) -> Such organ damages (10555ms)
What are enzymes? turn 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (turn, causes, more aromatase enzyme formation) -> turn (3008ms)
What are enzymes? The fruit 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The fruit, causes, greater saliva and starch breaking enzyme) -> The fruit (10392ms)
What are enzymes? Simvastatin therapy 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Simvastatin therapy, can cause elevated, hepatic enzymes) -> Simvastatin therapy (8921ms)
What are enzymes? acidity 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (acidity, causes, stomach enzymes) -> acidity (6415ms)
What are enzymes? Germination 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Germination, causes, the natural enzymes) -> Germination (7277ms)
What are enzymes? A heart attack 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (A heart attack, causes the release of, certain enzymes) -> A heart attack (8921ms)
What are enzymes? sulphydryl groups 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (sulphydryl groups, causes the inactivation of, enzymes) -> sulphydryl groups (7801ms)
What are enzymes? certain chemical reactions 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (certain chemical reactions, caused by, enzymes) -> certain chemical reactions (10555ms)
What are enzymes? sulfur 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (sulfur, causes widespread dysfunction of, enzymes) -> sulfur (10555ms)
What are enzymes? damage 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (damage, caused by, enzymes) -> damage (8921ms)
What are enzymes? NO-Xplode 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (NO-Xplode, causes, abnormal liver enzyme tests) -> NO-Xplode (8844ms)
What are enzymes? The nitric purchase tadalafil oxide 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The nitric purchase tadalafil oxide, causes, an enzyme) -> The nitric purchase tadalafil oxide (7277ms)
What are enzymes? Weight reduction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Weight reduction, causes, liver enzymes) -> Weight reduction (10392ms)
What are enzymes? toxic metals 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (toxic metals, cause, enzyme disruption) -> toxic metals (7801ms)
What are enzymes? Certain medical conditions 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Certain medical conditions, can cause this lack of, enzymes) -> Certain medical conditions (6415ms)
What are enzymes? fewer than 10,000 people 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (fewer than 10,000 people, are caused by, enzyme deficiencies) -> fewer than 10,000 people (4424ms)
What are enzymes? information 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (information, causes, liver enzymes to elevate , how liver works) -> information (4424ms)
What are enzymes? Calorie restriction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Calorie restriction, causes an increase in, protective enzymes) -> Calorie restriction (6970ms)
What are enzymes? Vanadium 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Vanadium, causes the inhibition of, certain enzymes) -> Vanadium (7278ms)
What are enzymes? the eating habits or lack 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the eating habits or lack, may cause imbalance in, mouth enzymes) -> the eating habits or lack (10392ms)
What are enzymes? the joint lining 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the joint lining, causes a release of, enzymes) -> the joint lining (8844ms)
What are enzymes? the drug 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the drug, causes a decrease in, enzyme activity) -> the drug (7801ms)
What are enzymes? a disease 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (a disease, caused by, enzyme) -> a disease (4424ms)
What are enzymes? monosodium glutamate 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (monosodium glutamate, may be caused by, enzyme deficiencies) -> monosodium glutamate (8844ms)
What are enzymes? Topic 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Topic, Cause Elevated, Liver Enzymes) -> Topic (10555ms)
What are enzymes? the GALC gene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the GALC gene, causes, a deficiency of an enzyme) -> the GALC gene (6415ms)
What are enzymes? Bluegreens 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (Bluegreens, invented, enzymes) -> Bluegreens (4424ms)
What are enzymes? Amiodarone Amiodarone 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Amiodarone Amiodarone, causes, elevated liver enzymes) -> Amiodarone Amiodarone (6971ms)
What are enzymes? cytochrome P450 induction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (cytochrome P450 induction, caused, the enzyme deficiency) -> cytochrome P450 induction (6415ms)
What are enzymes? glyphosate 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (glyphosate, caused changes in, enzyme activity) -> glyphosate (8844ms)
What are enzymes? the GI tract 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the GI tract, causes, both pancreatic enzyme deficiency) -> the GI tract (7801ms)
What are enzymes? The reaction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The reaction, is caused by, an enzyme) -> The reaction (3008ms)
What are enzymes? Statin drugs 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Statin drugs, can cause elevations in, liver enzymes) -> Statin drugs (4298ms)
What are enzymes? Statins 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Statins, cause elevations in, liver enzymes) -> Statins (6970ms)
What are enzymes? Rifabutin 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Rifabutin, causes, less enzyme symptoms) -> Rifabutin (6415ms)
What are enzymes? Acetaminophen 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Acetaminophen, may cause elevations of, liver enzymes) -> Acetaminophen (3008ms)
What are enzymes? hundred 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (hundred, are caused by, defective enzymes) -> hundred (3008ms)
What are enzymes? the prostate 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the prostate, may be caused by, an enzyme) -> the prostate (8921ms)
What are enzymes? the inflammation 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the inflammation, caused by, the enzyme) -> the inflammation (10555ms)
What are enzymes? cell membrane 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (cell membrane, causes, enzyme inhibition) -> cell membrane (10392ms)
What are enzymes? Gaucher syndromes 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Gaucher syndromes, are caused by, enzyme deficiencies) -> Gaucher syndromes (4297ms)
What are enzymes? Releases nitric oxide 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Releases nitric oxide, causes, an enzyme) -> Releases nitric oxide (8844ms)
What are enzymes? Autoimmune hepatitis 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Autoimmune hepatitis, causes, the blood liver enzyme) -> Autoimmune hepatitis (8844ms)
What are enzymes? Scientists 1.111111111104 What are enzymes? -> $x: ($x, re, enzyme) -> (Scientists, have re-engineered, a human enzyme) -> Scientists (10555ms)
What are enzymes? cows 1.111111111104 What are enzymes? -> $x: ($x, re, enzyme) -> (cows, were re-treated with, enzymes) -> cows (10555ms)
What are enzymes? the researchers 1.111111111104 What are enzymes? -> $x: ($x, re, enzyme) -> (the researchers, re-inserted, the missing enzyme) -> the researchers (10555ms)
What are enzymes? NA 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (NA, is described as, a receptor-destroying enzyme) -> NA (10651ms)
What are enzymes? Jon Backstrom 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Jon Backstrom, has described a class of, enzymes) -> Jon Backstrom (10651ms)
What are enzymes? Gallo 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Gallo, has described, the enzyme reverse transcriptase) -> Gallo (10555ms)
What are enzymes? South San Francisco 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (South San Francisco, have described, the genes and enzymes) -> South San Francisco (10651ms)
What are enzymes? tTG 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (tTG, is described as, an ubiquitous enzyme) -> tTG (10652ms)
What are enzymes? 3. Briefly 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (3. Briefly, describe, a generalized enzyme-substrate reaction) -> 3. Briefly (10651ms)
What are enzymes? Kent W. Wilcox 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Kent W. Wilcox, describe the action of, restriction enzymes) -> Kent W. Wilcox (10651ms)
What are enzymes? The data sheets 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (The data sheets, describe industrial uses of, the enzymes) -> The data sheets (10651ms)
What are enzymes? UPRTs 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (UPRTs, are described as, non-essential , energy-saving enzymes) -> UPRTs (10651ms)
What are enzymes? Chapter 8 further 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Chapter 8 further, describes the role of, hormones and enzymes) -> Chapter 8 further (10651ms)
What are enzymes? Dr. Wu 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Dr. Wu, describes the use of, restriction enzymes) -> Dr. Wu (10651ms)
What are enzymes? the enzymes 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (the enzymes, are described on, the individual enzyme pages) -> the enzymes (10555ms)
What are enzymes? online 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (online, describes, the newly-identified enzyme) -> online (10651ms)
What are enzymes? Plant Physiology 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Plant Physiology, describes the role of, an enzyme) -> Plant Physiology (10651ms)
What are enzymes? SOD 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (SOD, was defined as, the enzyme amount) -> SOD (10891ms)
What are enzymes? the same characteristics 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the same characteristics, do, the oxygen metabolising enzyme) -> the same characteristics (10891ms)
What are enzymes? A much smaller 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (A much smaller, does of, pancreatic enzymes) -> A much smaller (10891ms)
What are enzymes? Unit Definition 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Unit Definition, is defined as, the amount of enzyme) -> Unit Definition (10687ms)
What are enzymes? place 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (place, does, a special enzyme halt) -> place (10790ms)
What are enzymes? the cellular level 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the cellular level, has to do with, enzyme control) -> the cellular level (10756ms)
What are enzymes? clinical studies 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (clinical studies, have been done on, proteolytic enzymes) -> clinical studies (10722ms)
What are enzymes? increase 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (increase, have to do with, liver enzymes) -> increase (10687ms)
What are enzymes? instance 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (instance, do, the enzymes) -> instance (10857ms)
What are enzymes? the sample 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the sample, was done by, enzyme digestion) -> the sample (10651ms)
What are enzymes? 6.2 0.888888888882 What are enzymes? -> $x: (enzyme, have point of, $x) -> (The final purified enzyme, had an isoelectric point of, 6.2) -> 6.2 (10722ms)
What are enzymes? free lab animals 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (free lab animals, DO get, enzymes) -> free lab animals (10790ms)
What are enzymes? skin tissue 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (skin tissue, do, the enzymes) -> skin tissue (10790ms)
What are enzymes? high 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (high, does of, natural enzymes) -> high (10857ms)
What are enzymes? One activity unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One activity unit, is defined as, the amount of enzyme) -> One activity unit (10756ms)
What are enzymes? Nutrients 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Nutrients, so do, enzymes) -> Nutrients (10722ms)
What are enzymes? Strains 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Strains, may be further characterized by, enzyme immunoassay) -> Strains (10891ms)
What are enzymes? The phages 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (The phages, were characterized by, restriction enzyme analysis) -> The phages (10823ms)
What are enzymes? Further work 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Further work, biochemically characterize, the active enzyme) -> Further work (10790ms)
What are enzymes? acne conditions 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (acne conditions, will do better with, Pumpkin Enzyme) -> acne conditions (10687ms)
What are enzymes? Heat 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Heat, does destroy, enzymes) -> Heat (10890ms)
What are enzymes? alpha-amylase and lipase 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (alpha-amylase and lipase, were defined as, enzyme activity) -> alpha-amylase and lipase (10823ms)
What are enzymes? a rare disorder of 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (a rare disorder of, characterized by, deficiency of an enzyme) -> a rare disorder of (10756ms)
What are enzymes? Unit Definition One unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Unit Definition One unit, is defined as, the amount of enzyme) -> Unit Definition One unit (10891ms)
What are enzymes? The body 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The body, does produce, enzymes) -> The body (10917ms)
What are enzymes? the pancreatic enzymes 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (the pancreatic enzymes, was defined as, enzyme activity) -> the pancreatic enzymes (10722ms)
What are enzymes? Researchers 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Researchers, here are characterizing, both enzymes) -> Researchers (10857ms)
What are enzymes? The cutting 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The cutting, is done with, restriction enzymes) -> The cutting (10756ms)
What are enzymes? the same action 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the same action, do, the enzymes) -> the same action (10756ms)
What are enzymes? the big question 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the big question, Does, digestive enzyme supplementation) -> the big question (10891ms)
What are enzymes? One enzyme unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One enzyme unit, was defined as, the amount of enzyme) -> One enzyme unit (10756ms)
What are enzymes? figs 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (figs, *do* have tenderizing, enzymes) -> figs (10823ms)
What are enzymes? One unit of SOD 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit of SOD, was defined as, the amount of enzyme) -> One unit of SOD (10857ms)
What are enzymes? A sustained response 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (A sustained response, is defined as, liver enzymes) -> A sustained response (10857ms)
What are enzymes? Subject 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Subject, do, mash enzymes work and chemistry) -> Subject (10756ms)
What are enzymes? colleagues 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (colleagues, characterize, the enzyme) -> colleagues (10687ms)
What are enzymes? E. So 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (E. So, do, enzymes lower activation energy requirements) -> E. So (10790ms)
What are enzymes? body 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (body, does n?t create, enough enzymes) -> body (10823ms)
What are enzymes? the digestive organs 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the digestive organs, does supplementing with, digestive enzymes) -> the digestive organs (10687ms)
What are enzymes? age 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (age, does our production of, digestive enzymes) -> age (10891ms)
What are enzymes? One unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit, is defined as, the amount of enzyme) -> One unit (10790ms)
What are enzymes? One enzyme 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (One enzyme, cannot do, another enzyme) -> One enzyme (10756ms)
What are enzymes? yeast 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (yeast, do a poor job of producing, enzymes) -> yeast (10722ms)
What are enzymes? HDN 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (HDN, do, the enzymes) -> HDN (10722ms)
What are enzymes? reaction 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (reaction, does, this enzyme catalyze) -> reaction (10823ms)
What are enzymes? The cells 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (The cells, are characterized by, the enzyme P-type H+K+-ATPase) -> The cells (10823ms)
What are enzymes? biofuels 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (biofuels, characterize, enzymes) -> biofuels (10756ms)
What are enzymes? Silver 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Silver, does n?t destroy, beneficial enzymes) -> Silver (10857ms)
What are enzymes? the Healthy Juicer 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the Healthy Juicer, does n?t destroy, certain enzymes) -> the Healthy Juicer (10790ms)
What are enzymes? Vitamins and hormones 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Vitamins and hormones, cannot do their work without, enzymes) -> Vitamins and hormones (10790ms)
What are enzymes? an antioxidant 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (an antioxidant, is clinically defined as, ???an enzyme) -> an antioxidant (10917ms)
What are enzymes? The attribute name 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (The attribute name, defines the name of, the enzyme) -> The attribute name (10651ms)
What are enzymes? hormones 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (hormones, can do any work without, enzymes) -> hormones (10756ms)
What are enzymes? ThDP 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (ThDP, did, the enzyme) -> ThDP (10722ms)
What are enzymes? extensive research 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (extensive research, was done to identify, enzymes) -> extensive research (10823ms)
What are enzymes? the liver 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the liver, does n?t have, the enzymes) -> the liver (10857ms)
What are enzymes? any cell 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (any cell, is being done by, enzymes) -> any cell (10722ms)
What are enzymes? the specific research 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the specific research, has been done on, such enzymes) -> the specific research (10722ms)
What are enzymes? implications 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (implications, does block, certain enzymes) -> implications (10722ms)
What are enzymes? The searchis 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The searchis, done for, enzymes) -> The searchis (10823ms)
What are enzymes? H2O2 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (H2O2, does, the enzyme catalase) -> H2O2 (10687ms)
What are enzymes? much phytic acid 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (much phytic acid, do contain high levels of, enzyme inhibitors) -> much phytic acid (10756ms)
What are enzymes? Unknown Author 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Unknown Author, Does, Your Pet Need Enzymes) -> Unknown Author (10891ms)
What are enzymes? the roaches 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the roaches, did take up, the enzyme) -> the roaches (10823ms)
What are enzymes? One unit of activity 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit of activity, is defined as, the amount of enzyme) -> One unit of activity (10651ms)
What are enzymes? one SOD unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (one SOD unit, is defined as, the amount of enzyme) -> one SOD unit (10790ms)
What are enzymes? An E. coli strain 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (An E. coli strain, is defined as, the amount of enzyme) -> An E. coli strain (10756ms)
What are enzymes? raw foods 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (raw foods, do contain, enzymes) -> raw foods (10857ms)
What are enzymes? obesity 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (obesity, is characterized by, elevated liver enzymes) -> obesity (10891ms)
What are enzymes? the unfolding process 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (the unfolding process, characterizes, an enzyme) -> the unfolding process (10687ms)
What are enzymes? the plant material 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the plant material, is currently done by, microbial enzymes) -> the plant material (10722ms)
What are enzymes? Objectives Identify 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Objectives Identify, characterize, enzymes) -> Objectives Identify (10857ms)
What are enzymes? Enzymes 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Enzymes, defined, Digestive enzymes) -> Enzymes (10891ms)
What are enzymes? stagnant food damage 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (stagnant food damage, as do, bacterial enzymes) -> stagnant food damage (10891ms)
What are enzymes? Debridement 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Debridement, can be done with, enzymes) -> Debridement (10891ms)
What are enzymes? extra-cellular POD 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (extra-cellular POD, characterize, the enzyme) -> extra-cellular POD (10823ms)
What are enzymes? Axelrod 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Axelrod, characterized, the enzyme catechol-O-methyl transferase) -> Axelrod (10687ms)
What are enzymes? The catalysis of all biochemical reactions 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The catalysis of all biochemical reactions, is done by, enzymes) -> The catalysis of all biochemical reactions (10687ms)
What are enzymes? Generic Viagra 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Generic Viagra, does inhibit, this enzyme) -> Generic Viagra (10891ms)
What are enzymes? The liver 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The liver, cannot do its job of regulating, enzymes) -> The liver (10857ms)
What are enzymes? Question 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Question, do, enzymes) -> Question (10790ms)
What are enzymes? Sinead 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Sinead, did, an enzyme peel facial) -> Sinead (10790ms)
What are enzymes? the viability 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the viability, did, the enzyme) -> the viability (10756ms)
What are enzymes? Lindmark and M?ller 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Lindmark and M?ller, were characterizing, the enzymes) -> Lindmark and M?ller (10790ms)
What are enzymes? Foods 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Foods, do contain, enzymes) -> Foods (10721ms)
What are enzymes? lactase 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (lactase, is defined as, a digestive enzyme) -> lactase (10687ms)
What are enzymes? Manganese 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Manganese, does function in, enzyme reactions) -> Manganese (10756ms)
What are enzymes? A blood test 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (A blood test, will be done routinely to check for, enzymes) -> A blood test (10790ms)
What are enzymes? Cellular biologist 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Cellular biologist, have defined a system of, special enzymes) -> Cellular biologist (10857ms)
What are enzymes? students 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (students, do, an indicator enzyme test) -> students (10823ms)
What are enzymes? No vitamins or hormones 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (No vitamins or hormones, can do their work without, enzymes) -> No vitamins or hormones (10651ms)
What are enzymes? the starch digestion 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the starch digestion, is done by, these enzymes) -> the starch digestion (10687ms)
What are enzymes? The mutation 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The mutation, was done to keep, the enzyme) -> The mutation (10857ms)
What are enzymes? older bicycle racers 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (older bicycle racers, did have a rise in, another enzyme) -> older bicycle racers (10790ms)
What are enzymes? brands 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (brands, DO, use enzymes) -> brands (10823ms)
What are enzymes? cells 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (cells, DO contain, enzymes) -> cells (10687ms)
What are enzymes? doctors 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (doctors, do, a blood test of liver enzymes) -> doctors (10823ms)
What are enzymes? Tay-Sachs testing 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Tay-Sachs testing, is done with, enzyme levels) -> Tay-Sachs testing (10891ms)
What are enzymes? Germany 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Germany, have done extensive research on, enzymes) -> Germany (10756ms)
What are enzymes? the cardiologist 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the cardiologist, did, the cardiac blood enzyme test) -> the cardiologist (10891ms)
What are enzymes? activity unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (activity unit, is defined as, the needed enzyme) -> activity unit (10687ms)
What are enzymes? purified and 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (purified and, characterized, the enzyme) -> purified and (10687ms)
What are enzymes? therapeutic advantages 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (therapeutic advantages, do, individual enzymes) -> therapeutic advantages (10722ms)
What are enzymes? One unit of enzyme activity 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit of enzyme activity, is defined as, the amount of enzyme) -> One unit of enzyme activity (10823ms)
What are enzymes? Junk food 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Junk food, just does n?t have, enzymes) -> Junk food (10824ms)
What are enzymes? 1,25D 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (1,25D, are all also done by, enzymes) -> 1,25D (10722ms)
What are enzymes? vitamins and minerals 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (vitamins and minerals, cannot do their jobs without, enzymes) -> vitamins and minerals (10857ms)
What are enzymes? a change 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (a change, do to, the enzyme) -> a change (10722ms)
What are enzymes? One International Unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One International Unit, is defined as, the amount of enzyme) -> One International Unit (10857ms)
What are enzymes? the steam pasteurization process 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the steam pasteurization process, does n?t hurt, the enzymes) -> the steam pasteurization process (10857ms)
What are enzymes? the lab 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (the lab, is characterizing, bacterial enzymes) -> the lab (10790ms)
What are enzymes? The hatching enzyme 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (The hatching enzyme, is defined as, the enzyme) -> The hatching enzyme (10917ms)
What are enzymes? the sequences 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the sequences, is easily done using, restriction enzymes) -> the sequences (10722ms)
What are enzymes? the laboratory 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the laboratory, have created, a new enzyme model) -> the laboratory (11017ms)
What are enzymes? the hurdles 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the hurdles, are created by, enzymes) -> the hurdles (10968ms)
What are enzymes? waste biomass 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (waste biomass, is to find, enzymes) -> waste biomass (10917ms)
What are enzymes? Japanese scientists 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Japanese scientists, found another one of, the enzymes) -> Japanese scientists (10968ms)
What are enzymes? lead authors Pavel Nikitin 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (lead authors Pavel Nikitin, found, two enzymes) -> lead authors Pavel Nikitin (10942ms)
What are enzymes? the literature 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the literature, refers to, these enzymes) -> the literature (11018ms)
What are enzymes? a scientist 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (a scientist, finds, an unknown enzyme) -> a scientist (11181ms)
What are enzymes? Russian researchers 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Russian researchers, have created a product from, enzymes) -> Russian researchers (11113ms)
What are enzymes? codon 102 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (codon 102, creates an additional site for, restriction enzyme) -> codon 102 (11136ms)
What are enzymes? the uncommon variants 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the uncommon variants, were found to affect, the enzyme) -> the uncommon variants (11042ms)
What are enzymes? the intestine 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the intestine, is sometimes referred to as, the ?super enzyme) -> the intestine (11181ms)
What are enzymes? Special formula 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Special formula, creates, an enzyme barrier) -> Special formula (10993ms)
What are enzymes? specific respiratory activities 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (specific respiratory activities, were found solely in, enzymes) -> specific respiratory activities (10917ms)
What are enzymes? Curcumin 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Curcumin, is also found to increase, detoxifying enzymes) -> Curcumin (11113ms)
What are enzymes? DNA 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (DNA, helps create, enzymes) -> DNA (11066ms)
What are enzymes? MSU researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (MSU researchers, found, a moonlighting enzyme) -> MSU researchers (11136ms)
What are enzymes? use 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (use, can be found for, this enzyme) -> use (11066ms)
What are enzymes? N-glycosylation 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (N-glycosylation, are found in, this enzyme) -> N-glycosylation (11113ms)
What are enzymes? EC numbers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (EC numbers, may be found in, ENZYME) -> EC numbers (11090ms)
What are enzymes? the reaction products 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the reaction products, was found to inhibit, enzyme function) -> the reaction products (11018ms)
What are enzymes? 50 residues 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (50 residues, found attached to, various enzymes) -> 50 residues (11018ms)
What are enzymes? the Fraunhofer Institute 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the Fraunhofer Institute, found, the enzyme) -> the Fraunhofer Institute (10968ms)
What are enzymes? Zinc 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Zinc, is also found in, antioxidant enzymes and enzymes) -> Zinc (11136ms)
What are enzymes? Zn 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Zn, is found in almost, 100 enzymes) -> Zn (11017ms)
What are enzymes? hands-on discovery 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (hands-on discovery, create, their own solution enzyme solution) -> hands-on discovery (11018ms)
What are enzymes? lignin 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (lignin, was found to be, an enzyme) -> lignin (11018ms)
What are enzymes? Clutch 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Clutch, created of, special enzyme washed leather) -> Clutch (10942ms)
What are enzymes? the fragments 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the fragments, created by, the restriction enzyme) -> the fragments (11158ms)
What are enzymes? Molybdenum 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Molybdenum, may be found in, some enzymes) -> Molybdenum (11042ms)
What are enzymes? the same 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the same, create lots of, enzymes) -> the same (10993ms)
What are enzymes? Vitamin C 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Vitamin C, find, CoEnzyme Q10) -> Vitamin C (11136ms)
What are enzymes? a chemical 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (a chemical, found, both decreased enzyme activity) -> a chemical (11113ms)
What are enzymes? 150 residues 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (150 residues, found in, bacterial enzymes) -> 150 residues (11158ms)
What are enzymes? Iron 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Iron, is also found in, enzymes) -> Iron (11158ms)
What are enzymes? fluoride 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (fluoride, has been found to inhibit, bacterial enzymes) -> fluoride (10968ms)
What are enzymes? Free form AAs 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Free form AAs, can be used to create, enzymes) -> Free form AAs (11158ms)
What are enzymes? Similar effects 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Similar effects, were found for, other enzymes) -> Similar effects (11042ms)
What are enzymes? the code 0.7777777777720001 What are enzymes? -> $x: ($x, deal with, enzyme) -> (the code, deals with, the restriction enzymes) -> the code (11136ms)
What are enzymes? enzymes 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (enzymes, is referred to as, proteolytic enzymes) -> enzymes (11090ms)
What are enzymes? NCBI Entrez 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (NCBI Entrez, finds, restriction enzyme cleavage sites) -> NCBI Entrez (11158ms)
What are enzymes? Pantothenic acid 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Pantothenic acid, is found in, two enzymes) -> Pantothenic acid (11066ms)
What are enzymes? The greatest care 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The greatest care, went into creating, Pro Enzymes) -> The greatest care (11113ms)
What are enzymes? BCR-ABL 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (BCR-ABL, creates, an abnormal enzyme or protein) -> BCR-ABL (10993ms)
What are enzymes? polypeptides 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (polypeptides, referred to as, enzymes) -> polypeptides (11066ms)
What are enzymes? Proteolytic enzyme 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Proteolytic enzyme, refers to, all enzymes) -> Proteolytic enzyme (11113ms)
What are enzymes? 60 residues 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (60 residues, found in, bacterial enzymes) -> 60 residues (11090ms)
What are enzymes? Kornberg 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Kornberg, found, the enzyme DNA ligase) -> Kornberg (10968ms)
What are enzymes? Two cases 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Two cases, were found with, normal enzymes) -> Two cases (10917ms)
What are enzymes? Codexis scientists 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Codexis scientists, create, super enzymes) -> Codexis scientists (11158ms)
What are enzymes? the values 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the values, found for, other enzymes) -> the values (10993ms)
What are enzymes? even nails 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (even nails, were found to, the enzyme) -> even nails (11066ms)
What are enzymes? Novozymes ? researchers 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Novozymes ? researchers, create multiple variants of, an enzyme) -> Novozymes ? researchers (10942ms)
What are enzymes? Research associate Jennifer Seffernick 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Research associate Jennifer Seffernick, found, the enzyme) -> Research associate Jennifer Seffernick (11136ms)
What are enzymes? Binuclear iron centers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Binuclear iron centers, are found in, essential enzymes) -> Binuclear iron centers (11042ms)
What are enzymes? Netherlands 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Netherlands, found, that GST enzyme levels) -> Netherlands (11113ms)
What are enzymes? tissue 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (tissue, create, antibodies , hormones and enzymes) -> tissue (11018ms)
What are enzymes? 2,000 fibrinolytic units 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (2,000 fibrinolytic units, refers to, the enzyme activity level) -> 2,000 fibrinolytic units (11018ms)
What are enzymes? nature 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (nature, created, the enzymes) -> nature (11090ms)
What are enzymes? Protease 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Protease, refers to, a group of enzymes) -> Protease (11181ms)
What are enzymes? the dogma 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the dogma, found, an enzyme) -> the dogma (10968ms)
What are enzymes? mice 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (mice, have found, an enzyme) -> mice (11158ms)
What are enzymes? the actives 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the actives, create, a kinetic enzyme reaction) -> the actives (10917ms)
What are enzymes? Green tea 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Green tea, has been found to react with, enzymes) -> Green tea (10942ms)
What are enzymes? The active ingredients 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The active ingredients, are created from, plant enzymes) -> The active ingredients (11090ms)
What are enzymes? the pancreas 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the pancreas, must create, all the enzymes) -> the pancreas (11136ms)
What are enzymes? B2 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (B2, is used to create, enzymes) -> B2 (11136ms)
What are enzymes? acids 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (acids, creates advanced, glycolytic enzymes) -> acids (11113ms)
What are enzymes? NIH 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (NIH, have now found, an enzyme) -> NIH (10968ms)
What are enzymes? Peppermint help wounds 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Peppermint help wounds, found, the enzymes) -> Peppermint help wounds (10917ms)
What are enzymes? N=1 Japanese researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (N=1 Japanese researchers, found, the enzyme) -> N=1 Japanese researchers (11090ms)
What are enzymes? The germination process 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The germination process, creates a number of, enzymes) -> The germination process (11136ms)
What are enzymes? the stomach 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the stomach, create, less enzymes) -> the stomach (11066ms)
What are enzymes? Nellie 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Nellie, found large differences between, enzyme levels) -> Nellie (11113ms)
What are enzymes? the journal Science 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the journal Science, found, an enzyme) -> the journal Science (10993ms)
What are enzymes? Amazing 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Amazing, would be to find, enzymes) -> Amazing (11066ms)
What are enzymes? the body 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the body, to create, the enzymes needed) -> the body (11181ms)
What are enzymes? Diversa 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Diversa, created, an enzyme) -> Diversa (11042ms)
What are enzymes? a mold 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (a mold, creates, enzymes) -> a mold (10917ms)
What are enzymes? diabetic subjects 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (diabetic subjects, found significantly reduced, enzyme secretion) -> diabetic subjects (11158ms)
What are enzymes? Telomerase 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Telomerase, is often referred to as, ?the immortalizing enzyme?) -> Telomerase (10942ms)
What are enzymes? a normal artery system 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (a normal artery system, creates an abnormal balance of, enzymes) -> a normal artery system (11042ms)
What are enzymes? 340 pounds 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (340 pounds, found, a lipase enzyme deficiency) -> 340 pounds (10993ms)
What are enzymes? Lincoln 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Lincoln, created, their RNA enzyme) -> Lincoln (10942ms)
What are enzymes? the authors 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the authors, found, the enzymes) -> the authors (11181ms)
What are enzymes? the human body 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the human body, creates, enzymes) -> the human body (11181ms)
What are enzymes? Proteolytic enzymes 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Proteolytic enzymes, refer to, the various enzymes) -> Proteolytic enzymes (10993ms)
What are enzymes? No match 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (No match, found for, enzyme %s) -> No match (10942ms)
What are enzymes? the 1 ppm 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the 1 ppm, found to inhibit, many enzymes) -> the 1 ppm (11113ms)
What are enzymes? the lowest dilution 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the lowest dilution, found in, enzyme blends) -> the lowest dilution (10942ms)
What are enzymes? Mouse study 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Mouse study, finds, enzyme injection has lasting effects) -> Mouse study (10942ms)
What are enzymes? the bacteria 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the bacteria, create, enzymes) -> the bacteria (11090ms)
What are enzymes? Chromium 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Chromium, has been found in, some enzymes) -> Chromium (11066ms)
What are enzymes? investigates 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (investigates, found in, pumpkin enzymes) -> investigates (11158ms)
What are enzymes? Chang 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Chang, found, two new enzyme versions) -> Chang (11136ms)
What are enzymes? the project 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the project, successfully created, two functional enzymes) -> the project (11113ms)
What are enzymes? 56 Two studies 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (56 Two studies, failed to find, proteolytic enzymes) -> 56 Two studies (11181ms)
What are enzymes? the microbes 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the microbes, create, enzymes) -> the microbes (11136ms)
What are enzymes? Chicago 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Chicago, found, enzymes) -> Chicago (10968ms)
What are enzymes? The microorganisms 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The microorganisms, create, their own enzymes) -> The microorganisms (11090ms)
What are enzymes? Sprouting 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Sprouting, creates, enzymes) -> Sprouting (10917ms)
What are enzymes? Hard working liver 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Hard working liver, also creates, digestive enzymes and proteins) -> Hard working liver (10917ms)
What are enzymes? United States scientists 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (United States scientists, found, an enzyme) -> United States scientists (11181ms)
What are enzymes? carbon and nitrogen 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (carbon and nitrogen, create, enzymes) -> carbon and nitrogen (10968ms)
What are enzymes? the proteolytic enzyme 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the proteolytic enzyme, referred to as, the ?miracle enzyme?) -> the proteolytic enzyme (11066ms)
What are enzymes? An added plus 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (An added plus, was found from, the enzymes) -> An added plus (11158ms)
What are enzymes? the term 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the term, refers to, an enzyme) -> the term (11113ms)
What are enzymes? the biochemists 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the biochemists, were able to create, an enzyme) -> the biochemists (10993ms)
What are enzymes? The researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The researchers, found, enzymes) -> The researchers (11090ms)
What are enzymes? the target protein 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the target protein, was found to be, the enzyme) -> the target protein (11066ms)
What are enzymes? Queensland 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Queensland, have found, two enzymes) -> Queensland (10942ms)
What are enzymes? The Scripps Research Institute 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The Scripps Research Institute, have found, an enzyme) -> The Scripps Research Institute (11181ms)
What are enzymes? alcoholism 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (alcoholism, creates an interference in, the enzymes) -> alcoholism (11066ms)
What are enzymes? New copies 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (New copies, are created by, enzymes) -> New copies (11090ms)
What are enzymes? G6PDH 0.7777777777720001 What are enzymes? -> $x: ($x, happen to, enzyme) -> (G6PDH, happens to be, the first enzyme) -> G6PDH (11158ms)
What are enzymes? Protein 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Protein, creates, digestive enzymes) -> Protein (10968ms)
What are enzymes? absorption 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (absorption, creates, its own enzymes) -> absorption (11182ms)
What are enzymes? Double-stranded RNA molecules 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Double-stranded RNA molecules, are found by, an enzyme) -> Double-stranded RNA molecules (11158ms)
What are enzymes? norepinephrine 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (norepinephrine, is created by, enzymes) -> norepinephrine (11113ms)
What are enzymes? primary structure 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (primary structure, was found to be identical with, enzymes) -> primary structure (11136ms)
What are enzymes? Cellulosic ethanol 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Cellulosic ethanol, is created by using, enzymes) -> Cellulosic ethanol (11042ms)
What are enzymes? the two axes and briefly 0.7777777777720001 What are enzymes? -> $x: ($x, happen to, enzyme) -> (the two axes and briefly, is happening to, the enzymes) -> the two axes and briefly (11158ms)
What are enzymes? a molecule 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (a molecule, created by, an enzyme) -> a molecule (10993ms)
What are enzymes? The study 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The study, found, a group of ancient enzymes) -> The study (10968ms)
What are enzymes? The activities 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (The activities, referred to as, ecto-enzymes) -> The activities (10942ms)
What are enzymes? The non-protein portion 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The non-protein portion, found in, some enzymes) -> The non-protein portion (11042ms)
What are enzymes? new prescription drugs 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (new prescription drugs, referred to as, enzymes) -> new prescription drugs (10942ms)
What are enzymes? The group 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The group, has found, these enzymes) -> The group (11136ms)
What are enzymes? thyroid med 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (thyroid med, recently found out, my enzymes) -> thyroid med (11018ms)
What are enzymes? Cellulase 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Cellulase, refers to, a family of enzymes) -> Cellulase (10993ms)
What are enzymes? The packages 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The packages, create, classes for restriction enzymes) -> The packages (11113ms)
What are enzymes? a high carbohydrate 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (a high carbohydrate, have been found to develop, enzymes) -> a high carbohydrate (11090ms)
What are enzymes? Professor Gasser?s group 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Professor Gasser?s group, only found, the enzymes) -> Professor Gasser?s group (11018ms)
What are enzymes? the scientists 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the scientists, found, the new enzyme) -> the scientists (11136ms)
What are enzymes? Redwood City 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Redwood City, has created a range of, enzymes) -> Redwood City (10993ms)
What are enzymes? restover 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (restover, Find, restriction enzymes producing specific overhang) -> restover (10993ms)
What are enzymes? active dressings 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (active dressings, create a synthetic version of, the enzymes) -> active dressings (11090ms)
What are enzymes? PM MSU researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (PM MSU researchers, found, a moonlighting enzyme) -> PM MSU researchers (11158ms)
What are enzymes? the theory 0.7777777777720001 What are enzymes? -> $x: ($x, deal with, enzyme) -> (the theory, dealt with, respiratory enzymes) -> the theory (11181ms)
What are enzymes? substrates 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (substrates, have been found for, this enzyme) -> substrates (11090ms)
What are enzymes? an enzyme potential 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (an enzyme potential, referred to as, enzyme reserves) -> an enzyme potential (11042ms)
What are enzymes? the germination 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the germination, creates, enzymes) -> the germination (10942ms)
What are enzymes? blood test 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (blood test, found, liver enzymes) -> blood test (11042ms)
What are enzymes? L-Carnitine 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (L-Carnitine, is found in, enzyme complexes) -> L-Carnitine (10968ms)
What are enzymes? studies 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (studies, have found, the enzyme) -> studies (10942ms)
What are enzymes? heat-treated diet 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (heat-treated diet, have been found to develop, enzymes) -> heat-treated diet (11042ms)
What are enzymes? The pancreas 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The pancreas, will create, the necessary enzymes) -> The pancreas (11113ms)
What are enzymes? The first step 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The first step, is to create, RNA enzymes) -> The first step (10942ms)
What are enzymes? Exercise 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Exercise, creates, enzymes) -> Exercise (11090ms)
What are enzymes? probiotics 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (probiotics, create, more enzymes) -> probiotics (10968ms)
What are enzymes? Dutch Greens ? 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Dutch Greens ?, is rich in, enzymes) -> Dutch Greens ? (11289ms)
What are enzymes? digestion 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (digestion, is to supplement with, enzymes) -> digestion (11627ms)
What are enzymes? 31 Wheat grass juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (31 Wheat grass juice, is high in, enzymes) -> 31 Wheat grass juice (11447ms)
What are enzymes? The leukocytes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The leukocytes, are rich in, enzymes) -> The leukocytes (11611ms)
What are enzymes? food companies 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (food companies, are starting to use, enzymes) -> food companies (11556ms)
What are enzymes? 20 minutes 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is only about, 20 minutes) -> 20 minutes (11247ms)
What are enzymes? Fresh Pineapple ? Fresh pineapple fruit 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh Pineapple ? Fresh pineapple fruit, is rich in, enzymes) -> Fresh Pineapple ? Fresh pineapple fruit (11502ms)
What are enzymes? Melatonin 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Melatonin, also influences, both antioxidant enzyme activity) -> Melatonin (11556ms)
What are enzymes? Organic Barley Barley 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Organic Barley Barley, is rich in, enzymes) -> Organic Barley Barley (11349ms)
What are enzymes? Sulphoraphane 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Sulphoraphane, is believed to stimulate, enzymes) -> Sulphoraphane (11225ms)
What are enzymes? papaya , kiwi and pineapple 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (papaya , kiwi and pineapple, are naturally high in, enzymes) -> papaya , kiwi and pineapple (11408ms)
What are enzymes? no inflammatory response 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (no inflammatory response, can be mounted without, enzymes) -> no inflammatory response (11408ms)
What are enzymes? saliva 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (saliva, consists of, enzymes) -> saliva (11484ms)
What are enzymes? Nitric oxide 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Nitric oxide, can activate, enzymes) -> Nitric oxide (11556ms)
What are enzymes? 5-8 percent protein 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is only about, 5-8 percent protein) -> 5-8 percent protein (11644ms)
What are enzymes? Bio Term Methyl transferase 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Bio Term Methyl transferase, is, Enzymes) -> Bio Term Methyl transferase (11573ms)
What are enzymes? Sulphur 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Sulphur, influences, the enzyme metabolism) -> Sulphur (11627ms)
What are enzymes? EcoRV and HindIII 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (EcoRV and HindIII, are, enzymes) -> EcoRV and HindIII (11289ms)
What are enzymes? Directed evolution 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Directed evolution, has been used to produce, enzymes) -> Directed evolution (11268ms)
What are enzymes? foods 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (foods, is known to destroy, enzymes) -> foods (11466ms)
What are enzymes? soaked nuts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (soaked nuts, are rich in, enzymes) -> soaked nuts (11309ms)
What are enzymes? animal or vegetable sources 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (animal or vegetable sources, can replace, enzymes) -> animal or vegetable sources (11691ms)
What are enzymes? erythromycin 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (erythromycin, can actually impair, enzymes) -> erythromycin (11427ms)
What are enzymes? the technique 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the technique, is limited to, enzymes) -> the technique (11247ms)
What are enzymes? chronic fatigue 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (chronic fatigue, can improve with, enzymes) -> chronic fatigue (11289ms)
What are enzymes? Toxins 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Toxins, can bind to, enzymes) -> Toxins (11247ms)
What are enzymes? RNA 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (RNA, can also act as, enzymes) -> RNA (11644ms)
What are enzymes? Even a cold 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Even a cold, can be obtained by, Enzymes) -> Even a cold (11349ms)
What are enzymes? The research alliance 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The research alliance, is expected to use, enzymes) -> The research alliance (11691ms)
What are enzymes? remodeling 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (remodeling, is to use, enzymes) -> remodeling (11767ms)
What are enzymes? Substrates 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Substrates, are bound to, enzymes) -> Substrates (11268ms)
What are enzymes? living organisms 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (living organisms, can produce, enzymes) -> living organisms (11736ms)
What are enzymes? Alpha-glocosidases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Alpha-glocosidases, are, enzymes) -> Alpha-glocosidases (11225ms)
What are enzymes? Raw apple cider vinegar 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw apple cider vinegar, is rich in, enzymes) -> Raw apple cider vinegar (11484ms)
What are enzymes? Phen375 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Phen375, is consists of, 5 enzyme enhancers) -> Phen375 (11753ms)
What are enzymes? The idea 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The idea, is to use, enzymes) -> The idea (11225ms)
What are enzymes? CaBP-HA complex 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (CaBP-HA complex, is subjected to, enzymes) -> CaBP-HA complex (11676ms)
What are enzymes? every function 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Enzymes, are also necessary for just about, every function) -> every function (11556ms)
What are enzymes? cadmium and lead 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (cadmium and lead, are highly toxic to, enzymes) -> cadmium and lead (11389ms)
What are enzymes? Shiitake 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Shiitake, is also rich in, enzymes) -> Shiitake (11675ms)
What are enzymes? B-complex and K vitamins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (B-complex and K vitamins, are important catalysts to, enzymes) -> B-complex and K vitamins (11247ms)
What are enzymes? interest 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (interest, is, enzymes) -> interest (11660ms)
What are enzymes? 1996 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (the HCV N53 protease enzyme, was first written about in, 1996) -> 1996 (11204ms)
What are enzymes? mangoes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (mangoes, are all high in, enzymes) -> mangoes (11767ms)
What are enzymes? Beta-lactamases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Beta-lactamases, are, enzymes) -> Beta-lactamases (11289ms)
What are enzymes? lipoprotein-specific enzymes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (lipoprotein-specific enzymes, be, enzymes) -> lipoprotein-specific enzymes (11627ms)
What are enzymes? Tobacco smoke 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Tobacco smoke, is known to induce, enzymes) -> Tobacco smoke (11408ms)
What are enzymes? The probe 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The probe, consists of, an enzyme electrode) -> The probe (11484ms)
What are enzymes? a 100 % Food vegan supplement 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a 100 % Food vegan supplement, is intended to supply, enzymes) -> a 100 % Food vegan supplement (11330ms)
What are enzymes? Not a single cellular reaction 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Not a single cellular reaction, can occur without, enzymes) -> Not a single cellular reaction (11573ms)
What are enzymes? Food irradiation 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Food irradiation, can damage, enzymes) -> Food irradiation (11767ms)
What are enzymes? aloe vera juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (aloe vera juice, are rich in, enzymes) -> aloe vera juice (11447ms)
What are enzymes? observational new drugs 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (observational new drugs, can examine with, enzymes) -> observational new drugs (11736ms)
What are enzymes? oligonucleotides of RNA 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (oligonucleotides of RNA, can act like, enzymes) -> oligonucleotides of RNA (11753ms)
What are enzymes? Exonucleases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Exonucleases, are, enzymes) -> Exonucleases (11752ms)
What are enzymes? The sensor 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The sensor, consists of, a DNA enzyme strand) -> The sensor (11329ms)
What are enzymes? the rhythms 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the rhythms, can induce, enzymes) -> the rhythms (11408ms)
What are enzymes? Examples of proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Examples of proteins, are, enzymes) -> Examples of proteins (11573ms)
What are enzymes? proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (proteins, are, enzymes) -> proteins (11447ms)
What are enzymes? wool carpets 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (wool carpets, can be damaged by, enzymes) -> wool carpets (11706ms)
What are enzymes? sprouts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (sprouts, are rich in, enzymes) -> sprouts (11767ms)
What are enzymes? pH 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (pH, would influence the activity of, the salivary enzyme amylase) -> pH (11736ms)
What are enzymes? colloidal silver particles 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (colloidal silver particles, influence, the enzymes) -> colloidal silver particles (11181ms)
What are enzymes? Raw vegetables 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw vegetables, are rich in, enzymes) -> Raw vegetables (11753ms)
What are enzymes? target tissue specificity 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (target tissue specificity, is, enzyme) -> target tissue specificity (11594ms)
What are enzymes? Viruses 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Viruses, can also contain, enzymes) -> Viruses (11502ms)
What are enzymes? Raw goat milk 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw goat milk, is rich in, enzymes) -> Raw goat milk (11427ms)
What are enzymes? familiar and relevant catalysts 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (familiar and relevant catalysts, are, enzymes) -> familiar and relevant catalysts (11289ms)
What are enzymes? vitamins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (vitamins, may be tightly bound to, enzymes) -> vitamins (11721ms)
What are enzymes? the latter 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the latter, consists of, an enzyme papain) -> the latter (11611ms)
What are enzymes? Adrenergic receptors 0.777777777771 What are enzymes? -> $x: ($x, classify as, enzyme) -> (Adrenergic receptors, are classified as, enzymes) -> Adrenergic receptors (11676ms)
What are enzymes? genes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (genes, are involved in determining, enzymes) -> genes (11484ms)
What are enzymes? Klibanov 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Klibanov, are, enzymes) -> Klibanov (11722ms)
What are enzymes? Vegetable juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Vegetable juices, are rich in, enzymes) -> Vegetable juices (11408ms)
What are enzymes? The carbohydrates 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The carbohydrates, consist of, enzymes) -> The carbohydrates (11706ms)
What are enzymes? the excess phenylalanine 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the excess phenylalanine, can inhibit, enzymes) -> the excess phenylalanine (11226ms)
What are enzymes? biological systems 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (biological systems, are, enzymes) -> biological systems (11427ms)
What are enzymes? the space 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the space, are, enzymes) -> the space (11643ms)
What are enzymes? Happy 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Happy, are, enzymes) -> Happy (11676ms)
What are enzymes? Plasminogen activators 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Plasminogen activators, are, enzymes) -> Plasminogen activators (11484ms)
What are enzymes? the ingredients 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the ingredients, are, enzymes) -> the ingredients (11466ms)
What are enzymes? 3.Ozone 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (3.Ozone, can decompose, enzyme) -> 3.Ozone (11520ms)
What are enzymes? water days 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (water days, are, enzymes) -> water days (11767ms)
What are enzymes? glutathione 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (glutathione, are, enzymes) -> glutathione (11502ms)
What are enzymes? Bakery workers 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Bakery workers, can become sensitised to, enzymes) -> Bakery workers (11752ms)
What are enzymes? 70 and 80 nM 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (the fully reduced enzyme, are about, 70 and 80 nM) -> 70 and 80 nM (11538ms)
What are enzymes? Karbo Combo 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Karbo Combo, consists of, encapsulated enzymes) -> Karbo Combo (11389ms)
What are enzymes? The Nano-Lipobelle material 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The Nano-Lipobelle material, consists of, CoEnzyme Q10) -> The Nano-Lipobelle material (11502ms)
What are enzymes? Textile Textile industry 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Textile Textile industry, can benefit from, enzymes) -> Textile Textile industry (11389ms)
What are enzymes? large molecules 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (large molecules, to be broken down by, enzymes) -> large molecules (11427ms)
What are enzymes? modern drugs 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (modern drugs, are designed to target, enzymes) -> modern drugs (11691ms)
What are enzymes? the same time 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (all these needed enzymes, are made about, the same time) -> the same time (11427ms)
What are enzymes? the group 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the group, consisting of, enzymes) -> the group (11484ms)
What are enzymes? blood inhibitors 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (blood inhibitors, consist of, certain digestive enzymes) -> blood inhibitors (11736ms)
What are enzymes? disease 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (disease, are, enzymes) -> disease (11594ms)
What are enzymes? The prothrombinase complex 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The prothrombinase complex, consists of, the enzyme factor Xa) -> The prothrombinase complex (11349ms)
What are enzymes? Pollen 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Pollen, is also rich in, enzymes) -> Pollen (11691ms)
What are enzymes? a legendary aroma 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a legendary aroma, is due to, enzymes) -> a legendary aroma (11538ms)
What are enzymes? Potatoes 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Potatoes, consist of, a skin-lightening enzyme catecholase) -> Potatoes (11408ms)
What are enzymes? the cancer patients 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the cancer patients, were, enzymes) -> the cancer patients (11427ms)
What are enzymes? the topical application 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the topical application, is limited to, enzymes) -> the topical application (11706ms)
What are enzymes? plants 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (plants, are, enzymes) -> plants (11447ms)
What are enzymes? Pet digestion 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Pet digestion, can be improved by, enzymes) -> Pet digestion (11329ms)
What are enzymes? transport proteins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (transport proteins, are similar to, enzymes) -> transport proteins (11502ms)
What are enzymes? the complex 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the complex, are tightly bound to, enzymes) -> the complex (11676ms)
What are enzymes? Kinases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Kinases, are, enzymes) -> Kinases (11502ms)
What are enzymes? particular interest 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (particular interest, is, enzymes) -> particular interest (11349ms)
What are enzymes? nutritional deficiencies 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (nutritional deficiencies, is rich in, enzymes) -> nutritional deficiencies (11268ms)
What are enzymes? Bromelain 0.777777777771 What are enzymes? -> $x: ($x, classify as, enzyme) -> (Bromelain, is classified as, a proteolytic enzyme) -> Bromelain (11330ms)
What are enzymes? the assays 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (the assays, was greatly influenced by, the enzyme system) -> the assays (11204ms)
What are enzymes? breakfast 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (breakfast, is supposed to provide, enzymes) -> breakfast (11309ms)
What are enzymes? microinjection 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (microinjection, can be cleaved with, enzymes) -> microinjection (11309ms)
What are enzymes? a strong foundation 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (a strong foundation, is abundant in, enzymes) -> a strong foundation (11369ms)
What are enzymes? The stuff 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The stuff, consisted of, an enzyme) -> The stuff (11247ms)
What are enzymes? an additional _base_ 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (an additional _base_, can be helped with, enzymes) -> an additional _base_ (11247ms)
What are enzymes? venom 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (venom, are, enzymes) -> venom (11484ms)
What are enzymes? the temperature 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the temperature, to be destroyed, enzymes) -> the temperature (11556ms)
What are enzymes? Raw fruits and vegetables 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw fruits and vegetables, are rich source in, enzymes) -> Raw fruits and vegetables (11573ms)
What are enzymes? Each one 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Each one, consists of, three enzymes) -> Each one (11330ms)
What are enzymes? The vast majority of proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The vast majority of proteins, are, enzymes) -> The vast majority of proteins (11520ms)
What are enzymes? the hydroxyl radical 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the hydroxyl radical, can inactivate, enzymes) -> the hydroxyl radical (11447ms)
What are enzymes? hydrophobic side chains 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (hydrophobic side chains, can influence, enzyme catalysis) -> hydrophobic side chains (11573ms)
What are enzymes? Cooking foods 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Cooking foods, is known to destroy, enzymes) -> Cooking foods (11369ms)
What are enzymes? 100,000 times 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Enzyme performance, has been improved by about, 100,000 times) -> 100,000 times (11289ms)
What are enzymes? Biotin 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Biotin, is attached to, enzymes) -> Biotin (11573ms)
What are enzymes? the actual motions 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (various enzymes, much is known about, the actual motions) -> the actual motions (11722ms)
What are enzymes? The smooth ER 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The smooth ER, is rich in, enzymes) -> The smooth ER (11753ms)
What are enzymes? the produce 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the produce, are bonded to, enzymes) -> the produce (11349ms)
What are enzymes? a higher calorie content 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (a higher calorie content, are richer in, enzymes) -> a higher calorie content (11369ms)
What are enzymes? Papaya 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Papaya, is also rich in, enzymes) -> Papaya (11628ms)
What are enzymes? The average American diet 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The average American diet, is lacking in, enzymes) -> The average American diet (11627ms)
What are enzymes? PCBs 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (PCBs, were used to induce, enzymes) -> PCBs (11573ms)
What are enzymes? half 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is about, half) -> half (11706ms)
What are enzymes? The actual affected 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The actual affected, consists of, a lot more enzymes) -> The actual affected (11753ms)
What are enzymes? chondrocytes 0.777777777771 What are enzymes? -> $x: ($x, withstand, enzyme) -> (chondrocytes, withstand, CYP enzymes) -> chondrocytes (11466ms)
What are enzymes? the most 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the most, were, enzymes) -> the most (11502ms)
What are enzymes? feed formulation 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (feed formulation, is to use, enzymes) -> feed formulation (11611ms)
What are enzymes? 20 % 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (this important enzyme, was about, 20 %) -> 20 % (11247ms)
What are enzymes? the food 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the food, to be digested by, enzymes) -> the food (11627ms)
What are enzymes? fresh juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (fresh juices, are high in, enzymes) -> fresh juices (11466ms)
What are enzymes? any extreme temperature 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (any extreme temperature, can destroy, enzymes) -> any extreme temperature (11330ms)
What are enzymes? a raw food diet 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (a raw food diet, consisting of, enzyme-rich raw foods) -> a raw food diet (11247ms)
What are enzymes? high doses 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (high doses, can damage, enzymes) -> high doses (11520ms)
What are enzymes? genetic information 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (genetic information, can also function as, enzymes) -> genetic information (11484ms)
What are enzymes? FRUITS 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (FRUITS, is an agricultural product that contains, ENZYMES) -> FRUITS (11691ms)
What are enzymes? a sea germ 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (a sea germ, can furnish, enzymes) -> a sea germ (11691ms)
What are enzymes? Raw foods 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Raw foods, can attract, enzymes) -> Raw foods (11722ms)
What are enzymes? Green barley leaves 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Green barley leaves, are rich in, enzymes) -> Green barley leaves (11556ms)
What are enzymes? Greens 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Greens, are rich in, enzymes) -> Greens (11676ms)
What are enzymes? 1 mistake 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (other repair enzymes, is about, 1 mistake) -> 1 mistake (11706ms)
What are enzymes? PGH2 synthase 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (PGH2 synthase, actually consists of, two enzyme components) -> PGH2 synthase (11427ms)
What are enzymes? a third 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzyme activity level, was about, a third) -> a third (11408ms)
What are enzymes? cooking 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (cooking, is so damaging to, enzymes) -> cooking (11573ms)
What are enzymes? A different strategy 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (A different strategy, is to concentrate on, enzymes) -> A different strategy (11644ms)
What are enzymes? Recombinases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Recombinases, are, enzymes) -> Recombinases (11204ms)
What are enzymes? A freshly caught mouse 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (A freshly caught mouse, is rich in, enzymes) -> A freshly caught mouse (11721ms)
What are enzymes? life 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (life, can be linked to, enzymes) -> life (11767ms)
What are enzymes? diagram 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (diagram, are, enzymes) -> diagram (11389ms)
What are enzymes? pancreas 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (pancreas, can pour out, enzymes) -> pancreas (11691ms)
What are enzymes? old the grass 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (old the grass, is much higher in, enzymes) -> old the grass (11706ms)
What are enzymes? Dead Sea Mud 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Dead Sea Mud, is known to activate, enzymes) -> Dead Sea Mud (11447ms)
What are enzymes? The latter 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The latter, can be digested by, enzymes) -> The latter (11660ms)
What are enzymes? Not all proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Not all proteins, are, enzymes) -> Not all proteins (11502ms)
What are enzymes? Fresh juices and smoothies 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh juices and smoothies, are also abundant in, enzymes) -> Fresh juices and smoothies (11330ms)
What are enzymes? each mutation 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (each mutation, has a particular influence on, enzyme activity) -> each mutation (11408ms)
What are enzymes? the cyst 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the cyst, consists of, high powered digestive enzymes) -> the cyst (11594ms)
What are enzymes? Carboxylesterases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Carboxylesterases, are, enzymes) -> Carboxylesterases (11644ms)
What are enzymes? Lipases Lipases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Lipases Lipases, are, enzymes) -> Lipases Lipases (11538ms)
What are enzymes? Proteinases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Proteinases, are, enzymes) -> Proteinases (11289ms)
What are enzymes? the basic code 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the basic code, is present in, enzyme) -> the basic code (11594ms)
What are enzymes? Wheatgrass juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Wheatgrass juice, is high in, enzymes) -> Wheatgrass juice (11466ms)
What are enzymes? miso soup 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (miso soup, is recommended to provide, enzymes) -> miso soup (11427ms)
What are enzymes? Nation 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Nation, can exhaust, enzymes) -> Nation (11736ms)
What are enzymes? Genetic manipulation 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Genetic manipulation, has been used to transfer, enzymes) -> Genetic manipulation (11660ms)
What are enzymes? AB Enzymes AB Enzymes 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (AB Enzymes AB Enzymes, is working to develop, enzymes) -> AB Enzymes AB Enzymes (11538ms)
What are enzymes? agency 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (agency, can swell, enzyme) -> agency (11611ms)
What are enzymes? A great deal 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (A great deal, can be learned about, enzymes) -> A great deal (11389ms)
What are enzymes? high a temperature 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (high a temperature, can kill, enzymes) -> high a temperature (11676ms)
What are enzymes? Pemetrexed 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Pemetrexed, is designed to block, enzymes) -> Pemetrexed (11538ms)
What are enzymes? commercial diets 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (commercial diets, can be missing, enzymes) -> commercial diets (11753ms)
What are enzymes? The answer 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The answer, is, enzymes) -> The answer (11627ms)
What are enzymes? the final week 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the final week, should consist of, digestive enzymes) -> the final week (11691ms)
What are enzymes? Fresh fruit and vegetable juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh fruit and vegetable juices, also are rich in, enzymes) -> Fresh fruit and vegetable juices (11753ms)
What are enzymes? cleaning goal 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (cleaning goal, are, enzymes) -> cleaning goal (11627ms)
What are enzymes? uncharacterized mammalian proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (uncharacterized mammalian proteins, are, enzymes) -> uncharacterized mammalian proteins (11556ms)
What are enzymes? the plant 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the plant, is rich in, enzymes) -> the plant (11706ms)
What are enzymes? Free p24 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Free p24, can be measured with, enzyme) -> Free p24 (11660ms)
What are enzymes? The necessary factors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The necessary factors, are, enzymes) -> The necessary factors (11538ms)
What are enzymes? nuts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (nuts, are all rich in, enzymes) -> nuts (11330ms)
What are enzymes? Pineapples 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Pineapples, are rich in, enzymes) -> Pineapples (11594ms)
What are enzymes? headaches 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (headaches, can be alleviated by, enzymes) -> headaches (11369ms)
What are enzymes? The ripening process 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The ripening process, is due to living, enzymes) -> The ripening process (11330ms)
What are enzymes? The third ingredient 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The third ingredient, is, enzymes) -> The third ingredient (11556ms)
What are enzymes? 50 % 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (the co-enzyme, is reduced to about, 50 %) -> 50 % (11691ms)
What are enzymes? a lot better 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (a lot better, is, enzymes) -> a lot better (11736ms)
What are enzymes? Drilling 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Drilling, can exhaust, enzymes) -> Drilling (11556ms)
What are enzymes? bacterial cells 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (bacterial cells, can change patterns of, enzymes) -> bacterial cells (11594ms)
What are enzymes? nutrition 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (nutrition, will be deficient in, enzymes) -> nutrition (11594ms)
What are enzymes? Consumers 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Consumers, can be exposed to, enzymes) -> Consumers (11627ms)
What are enzymes? The majority of these proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The majority of these proteins, are, enzymes) -> The majority of these proteins (11644ms)
What are enzymes? overall health 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (overall health, are, enzymes) -> overall health (11676ms)
What are enzymes? the plant matter 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the plant matter, will be exposed to, enzymes) -> the plant matter (11538ms)
What are enzymes? chemical compounds 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (chemical compounds, are used to control, enzymes) -> chemical compounds (11349ms)
What are enzymes? About 4,000 reactions 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (About 4,000 reactions, to be catalyzed by, enzymes) -> About 4,000 reactions (11181ms)
What are enzymes? Adjuncts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Adjuncts, usually are lacking in, enzymes) -> Adjuncts (11484ms)
What are enzymes? a hundred times greater 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (these enzymes, is about, a hundred times greater) -> a hundred times greater (11389ms)
What are enzymes? Drought 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Drought, influences the activity of, enzymes) -> Drought (11706ms)
What are enzymes? Proteases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Proteases, are, enzymes) -> Proteases (11736ms)
What are enzymes? such genes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (such genes, are, enzymes) -> such genes (11309ms)
What are enzymes? the adiponutrin gene 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (the adiponutrin gene, influences, liver enzyme levels) -> the adiponutrin gene (11706ms)
What are enzymes? one-third 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Abnormal liver enzyme levels, are also found in about, one-third) -> one-third (11573ms)
What are enzymes? Multiple changes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Multiple changes, were noted in, enzymes) -> Multiple changes (11369ms)
What are enzymes? Fresh vegetable juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh vegetable juices, are also rich in, enzymes) -> Fresh vegetable juices (11447ms)
What are enzymes? Yogurt 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Yogurt, is rich in living, enzymes) -> Yogurt (11349ms)
What are enzymes? Organic foods 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Organic foods, are rich in, enzymes) -> Organic foods (11556ms)
What are enzymes? globular proteins 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (globular proteins, can act as, : - Enzymes) -> globular proteins (11676ms)
What are enzymes? Co-factors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Co-factors, are, enzymes) -> Co-factors (11247ms)
What are enzymes? living foods 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (living foods, are rich in, enzymes) -> living foods (11289ms)
What are enzymes? The goal 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The goal, was to end up with, enzymes) -> The goal (11538ms)
What are enzymes? a 100 % Food supplement 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a 100 % Food supplement, is intended to supply, enzymes) -> a 100 % Food supplement (11389ms)
What are enzymes? malt 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (malt, can be replaced by, enzymes) -> malt (11466ms)
What are enzymes? one-half 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Abnormal liver enzyme levels, are also found in about, one-half) -> one-half (11644ms)
What are enzymes? type 2 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (type 2, consisted of, three enzymes) -> type 2 (11611ms)
What are enzymes? papaya 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (papaya, consists of, enzymes) -> papaya (11289ms)
What are enzymes? the catalyst 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the catalyst, is, enzymes) -> the catalyst (11736ms)
What are enzymes? Dietary supplements 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Dietary supplements, should consists of, enzymes) -> Dietary supplements (11722ms)
What are enzymes? the germ tube 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the germ tube, can release, enzymes) -> the germ tube (11594ms)
What are enzymes? water 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (water, is needed to successfully use, enzymes) -> water (11573ms)
What are enzymes? A number of 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (A number of, consisting of, herbs , enzyme and tea) -> A number of (11247ms)
What are enzymes? Cofactors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Cofactors, are, enzymes) -> Cofactors (11408ms)
What are enzymes? The pathway 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The pathway, consists of, three enzymes/enzyme complexes) -> The pathway (11722ms)
What are enzymes? investigators 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (investigators, can restore activity of, enzymes) -> investigators (11660ms)
What are enzymes? heat 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (heat, can destroy, enzymes) -> heat (11408ms)
What are enzymes? Barley Grass 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Barley Grass, is high in, enzymes) -> Barley Grass (11389ms)
What are enzymes? even 100 % 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (even 100 %, is lacking in, enzymes) -> even 100 % (11706ms)
What are enzymes? the size difference 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the size difference, is due to, enzymes) -> the size difference (11753ms)
What are enzymes? fried and boiled eggs 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (fried and boiled eggs, can be converted by, enzymes) -> fried and boiled eggs (11466ms)
What are enzymes? rennet 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (rennet, consists of, enzymes) -> rennet (11611ms)
What are enzymes? not all proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (not all proteins, are, enzymes) -> not all proteins (11611ms)
What are enzymes? A raw foods diet 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (A raw foods diet, is high in, enzymes) -> A raw foods diet (11611ms)
What are enzymes? Two-row malt 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Two-row malt, is also lower in, enzymes) -> Two-row malt (11721ms)
What are enzymes? inflammation 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (inflammation, can be blocked by, enzymes) -> inflammation (11573ms)
What are enzymes? Proteins 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Proteins, can act as, enzymes) -> Proteins (11556ms)
What are enzymes? Fresh fruit and vegetables 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh fruit and vegetables, are rich in, enzymes) -> Fresh fruit and vegetables (11447ms)
What are enzymes? drug receptors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (drug receptors, are, enzymes) -> drug receptors (11226ms)
What are enzymes? Vitamins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Vitamins, are similar to, enzymes) -> Vitamins (11502ms)
What are enzymes? spliceosomes and ribosomes 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (spliceosomes and ribosomes, is similar to, enzymes) -> spliceosomes and ribosomes (11466ms)
What are enzymes? bananas , pineapple and papaya 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (bananas , pineapple and papaya, are high in, enzymes) -> bananas , pineapple and papaya (11349ms)
What are enzymes? Oxygen toxicity 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Oxygen toxicity, can deactivate, enzymes) -> Oxygen toxicity (11226ms)
What are enzymes? A micro-organism 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (A micro-organism, consists of, cells and enzymes) -> A micro-organism (11466ms)
What are enzymes? the marine bacteria 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the marine bacteria, can produce, enzymes) -> the marine bacteria (11753ms)
What are enzymes? Grapefruit Apple Juice - 2 apples 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Grapefruit Apple Juice - 2 apples, consists of, an enzyme) -> Grapefruit Apple Juice - 2 apples (11721ms)
What are enzymes? Breast milk 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Breast milk, is a beverage that contains, enzyme) -> Breast milk (11556ms)
What are enzymes? ProStar 0.777777777771 What are enzymes? -> $x: ($x, classify as, enzyme) -> (ProStar, are classified as, enzyme inhibitors) -> ProStar (11204ms)
What are enzymes? Phytochemicals 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Phytochemicals, can also help boost, enzymes) -> Phytochemicals (11722ms)
What are enzymes? a frozen entree 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (a frozen entree, is low in, enzymes) -> a frozen entree (11520ms)
What are enzymes? The bodies most powerful anti-oxidants 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The bodies most powerful anti-oxidants, are, enzymes) -> The bodies most powerful anti-oxidants (11226ms)
What are enzymes? chewable tablets 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (chewable tablets, can make taking, enzymes) -> chewable tablets (11676ms)
What are enzymes? Pit viper venom 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Pit viper venom, consists of, many enzymes) -> Pit viper venom (11753ms)
What are enzymes? results 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (results, is less likely to, enzymes) -> results (11268ms)
What are enzymes? Treatment 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Treatment, consists of, pancreatic enzyme replacement) -> Treatment (11520ms)
What are enzymes? The raw juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The raw juice, is rich in, enzymes) -> The raw juice (11268ms)
What are enzymes? medaka embryo 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (medaka embryo, consists of, two enzymes) -> medaka embryo (11447ms)
What are enzymes? The first four 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The first four, are, enzymes) -> The first four (11484ms)
What are enzymes? 90 percent 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (this enzyme, is active in about, 90 percent) -> 90 percent (11225ms)
What are enzymes? 8 grams 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (8 grams, is rich in, enzymes) -> 8 grams (11466ms)
What are enzymes? Lipases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Lipases, are, enzymes) -> Lipases (11691ms)
What are enzymes? Sprouts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Sprouts, are rich in, enzymes) -> Sprouts (11676ms)
What are enzymes? Biological catalysts 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Biological catalysts, are, enzymes) -> Biological catalysts (11309ms)
What are enzymes? 5 % 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (His beta-enolase enzyme residual activity, was about, 5 %) -> 5 % (11722ms)
What are enzymes? White blood cells 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (White blood cells, are especially rich in, enzymes) -> White blood cells (11736ms)
What are enzymes? heating 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (heating, are high in, enzymes) -> heating (11644ms)
What are enzymes? Copper and zinc 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Copper and zinc, are involved in, enzymes) -> Copper and zinc (11594ms)
What are enzymes? etc 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (etc, are, enzymes) -> etc (11427ms)
What are enzymes? Antioxidants 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Antioxidants, are, enzymes) -> Antioxidants (11644ms)
What are enzymes? The old formula 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The old formula, consisted of, 12,500 protease enzymes) -> The old formula (11204ms)
What are enzymes? pineapples Pineapples 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (pineapples Pineapples, are rich in, enzymes) -> pineapples Pineapples (11289ms)
What are enzymes? pressure 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (pressure, can inactivate, enzymes) -> pressure (11226ms)
What are enzymes? too high a temp 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (too high a temp, can denature, enzyme) -> too high a temp (11660ms)
What are enzymes? Certain flavonoids 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Certain flavonoids, can inhibit, enzymes) -> Certain flavonoids (11611ms)
What are enzymes? protein 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (protein, is used to make, enzymes) -> protein (11349ms)
What are enzymes? Kuhn 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Kuhn, was interested both in, enzymes) -> Kuhn (11643ms)
What are enzymes? 24 hours 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (alert enzymes, is about, 24 hours) -> 24 hours (11484ms)
What are enzymes? the healthy shake 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the healthy shake, consists of, enzymes) -> the healthy shake (11502ms)
What are enzymes? the invention 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the invention, is directed to, enzymes) -> the invention (11767ms)
What are enzymes? raw greens and fruits 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (raw greens and fruits, are rich in, enzymes) -> raw greens and fruits (11736ms)
What are enzymes? Aloe Vera.This gel 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Aloe Vera.This gel, is rich in, enzymes) -> Aloe Vera.This gel (11268ms)
What are enzymes? a gene 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (a gene, influences, the activity of an enzyme) -> a gene (11204ms)
What are enzymes? Amylases Amylases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Amylases Amylases, are, enzymes) -> Amylases Amylases (11660ms)
What are enzymes? apples 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (apples, can inhibit, enzymes) -> apples (11520ms)
What are enzymes? arabinose 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (arabinose, can disable, enzymes) -> arabinose (11408ms)
What are enzymes? food and medicine 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (food and medicine, is rich in, enzymes) -> food and medicine (11466ms)
What are enzymes? The protease charge ladder 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The protease charge ladder, consists of, a parent enzyme) -> The protease charge ladder (11520ms)
What are enzymes? The reaction mixture 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The reaction mixture, consisted of, 300 mg enzyme) -> The reaction mixture (11289ms)
What are enzymes? dietary fats 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (dietary fats, can be digested by, enzymes) -> dietary fats (11389ms)
What are enzymes? deduced genes 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (deduced genes, can be classified as, enzymes) -> deduced genes (11309ms)
What are enzymes? 6-phosphate.The glucose PTS 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (6-phosphate.The glucose PTS, consists of, 4 enzymes) -> 6-phosphate.The glucose PTS (11309ms)
What are enzymes? iron deficiency 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (iron deficiency, can influence, certain enzymes) -> iron deficiency (11736ms)
What are enzymes? 31 Wheatgrass juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (31 Wheatgrass juice, is high in, enzymes) -> 31 Wheatgrass juice (11484ms)
What are enzymes? 1,620 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (The enzyme, is about, 1,620) -> 1,620 (11538ms)
What are enzymes? aspirin 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (aspirin, was known to affect, enzymes) -> aspirin (11408ms)
What are enzymes? genetic studies 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (genetic studies, are, enzymes) -> genetic studies (11369ms)
What are enzymes? Amazon.co.uk 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Amazon.co.uk, is pleased to have, Enzymes) -> Amazon.co.uk (11627ms)
What are enzymes? tea leaves 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (liver enzymes, were just about like reading, tea leaves) -> tea leaves (11204ms)
What are enzymes? the soaking wheat seeds 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the soaking wheat seeds, is rich in, enzymes) -> the soaking wheat seeds (11447ms)
What are enzymes? lacto-fermented foods 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (lacto-fermented foods, are also rich in, enzymes) -> lacto-fermented foods (11611ms)
What are enzymes? Pretreatments 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Pretreatments, consisted of, enzyme digestion) -> Pretreatments (11706ms)
What are enzymes? The system 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The system, consists of, two individual enzyme components) -> The system (11349ms)
What are enzymes? The transcriptional oscillators 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The transcriptional oscillators, consist of, two enzymes) -> The transcriptional oscillators (11268ms)
What are enzymes? Activity 1 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Activity 1, are, Enzymes) -> Activity 1 (11611ms)
What are enzymes? The supplemental enzymes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The supplemental enzymes, are, enzymes) -> The supplemental enzymes (11225ms)
What are enzymes? digestive enzymes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (digestive enzymes, are, enzymes) -> digestive enzymes (11247ms)
What are enzymes? Cellulases Cellulases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Cellulases Cellulases, are, enzymes) -> Cellulases Cellulases (11660ms)
What are enzymes? preservatives 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (preservatives, can also kills, enzymes) -> preservatives (11643ms)
What are enzymes? situations 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is all about finding, situations) -> situations (11611ms)
What are enzymes? free radical scavengers 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (free radical scavengers, consist primarily of, four enzymes) -> free radical scavengers (11520ms)
What are enzymes? commonly minimum 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (commonly minimum, can improve, enzymes) -> commonly minimum (11466ms)
What are enzymes? PTSs 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (PTSs, consist of, enzyme) -> PTSs (11767ms)
What are enzymes? The DNAzyme 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The DNAzyme, consists of, an enzyme) -> The DNAzyme (11268ms)
What are enzymes? each day 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (each day, is meant to supply, enzymes) -> each day (11691ms)
What are enzymes? Barley 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Barley, is rich in, enzymes) -> Barley (11502ms)
What are enzymes? even ice chips 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (even ice chips, can stimulate, enzymes) -> even ice chips (11204ms)
What are enzymes? Cashew yogurt fresh 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Cashew yogurt fresh, is rich in living, enzymes) -> Cashew yogurt fresh (11660ms)
What are enzymes? The rest 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The rest, consists of, enzymes) -> The rest (11247ms)
What are enzymes? The first category 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The first category, consists of, metabolic enzymes) -> The first category (11309ms)
What are enzymes? the protein 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the protein, is also used to make, enzymes) -> the protein (11736ms)
What are enzymes? raw veggies 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (raw veggies, are rich in, enzymes) -> raw veggies (11722ms)
What are enzymes? fabrics 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (fabrics, can be treated with, enzymes) -> fabrics (11644ms)
What are enzymes? Prosthetic groups 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Prosthetic groups, are tightly bound to, enzymes) -> Prosthetic groups (11389ms)
What are enzymes? Biomarkers 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Biomarkers, can be, enzymes) -> Biomarkers (11330ms)
What are enzymes? Pelleting 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Pelleting, can also be stressful to, enzymes) -> Pelleting (11182ms)
What are enzymes? Sulfur 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Sulfur, is essential in, enzymes) -> Sulfur (11330ms)
What are enzymes? Hfq and PABP II 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Hfq and PABP II, are linked to, enzymes) -> Hfq and PABP II (11247ms)
What are enzymes? Oligonucleotides 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Oligonucleotides, can act as, enzymes) -> Oligonucleotides (11556ms)
What are enzymes? bile 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (bile, is to activate, enzymes) -> bile (11204ms)
What are enzymes? Each replisome 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Each replisome, consists of, multiple enzymes) -> Each replisome (11556ms)
What are enzymes? example 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (example, are rich in, enzymes) -> example (11594ms)
What are enzymes? way 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (way, consists of, a lot more digestive enzymes) -> way (11329ms)
What are enzymes? Saponins 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Saponins, also influence the function of, enzymes) -> Saponins (11502ms)
What are enzymes? Acid Reflux remedies 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Acid Reflux remedies, can include, enzymes) -> Acid Reflux remedies (11289ms)
What are enzymes? The hydroperoxides 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The hydroperoxides, can be converted by, enzymes) -> The hydroperoxides (11369ms)
What are enzymes? 3 months 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (3 months, are, enzymes) -> 3 months (11628ms)
What are enzymes? The latter structures 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The latter structures, can encapsulate, enzymes) -> The latter structures (11644ms)
What are enzymes? a Greek word 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a Greek word, is required to produce, enzymes) -> a Greek word (11204ms)
What are enzymes? the biggest difference 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the biggest difference, is adding in, enzymes) -> the biggest difference (11706ms)
What are enzymes? bioflavonoids 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (bioflavonoids, has been shown to produce, enzymes) -> bioflavonoids (11573ms)
What are enzymes? OPCs 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (OPCs, can be converted by, enzymes) -> OPCs (11691ms)
What are enzymes? food 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (food, to be broken down by, enzymes) -> food (11204ms)
What are enzymes? chronic alcohol intake 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (chronic alcohol intake, can induce, enzymes) -> chronic alcohol intake (11330ms)
What are enzymes? hyperactivity and asthma 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (hyperactivity and asthma, Can affect, enzymes) -> hyperactivity and asthma (11329ms)
What are enzymes? metals 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (metals, are influenced by, metal-acting co-enzymes or catalysts) -> metals (11289ms)
What are enzymes? milk Papaya and Pineapple-Both 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (milk Papaya and Pineapple-Both, are rich in, enzymes) -> milk Papaya and Pineapple-Both (11502ms)
What are enzymes? system 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (system, is a subpart of the body within, ENZYMES) -> system (11676ms)
What are enzymes? Every shake 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Every shake, consists of, digestive enzymes and prebiotics) -> Every shake (11627ms)
What are enzymes? Amylases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Amylases, are, enzymes) -> Amylases (11204ms)
What are enzymes? green barley juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (green barley juice, is abundant in, enzymes) -> green barley juice (11349ms)
What are enzymes? The walls 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The walls, can be removed with, enzymes) -> The walls (11736ms)
What are enzymes? 2. Digestion 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (2. Digestion, is required to activate, enzymes) -> 2. Digestion (11502ms)
What are enzymes? QSAR methods 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (QSAR methods, are applied to, enzymes) -> QSAR methods (11538ms)
What are enzymes? Lactic acid bacteria 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Lactic acid bacteria, is also known to produce, enzymes) -> Lactic acid bacteria (11538ms)
What are enzymes? drug candidates 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (drug candidates, are exposed to, enzymes) -> drug candidates (11389ms)
What are enzymes? the two recombinant enzymes 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the two recombinant enzymes, developed, an enzyme assay) -> the two recombinant enzymes (11824ms)
What are enzymes? patients 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (patients, will develop asymptomatic increases in, liver enzymes) -> patients (11824ms)
What are enzymes? current protease 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (current protease, induce, this enzyme system) -> current protease (11879ms)
What are enzymes? The enzyme component 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The enzyme component, comprises at, least one protease enzyme) -> The enzyme component (11847ms)
What are enzymes? mammalian liver 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (mammalian liver, comprises, several enzyme families) -> mammalian liver (11928ms)
What are enzymes? Sony 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Sony, developed retaining, the activity of the enzymes) -> Sony (11796ms)
What are enzymes? Fibrozym 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Fibrozym, is comprised of, plant-based enzymes) -> Fibrozym (11824ms)
What are enzymes? I3C 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (I3C, induces the production of, such enzymes) -> I3C (11928ms)
What are enzymes? the first disorder 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the first disorder, was developed, an enzyme therapy) -> the first disorder (11908ms)
What are enzymes? the root 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the root, is developed by, a special enzyme) -> the root (11868ms)
What are enzymes? the guidelines 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the guidelines, developed for, enzymes) -> the guidelines (11908ms)
What are enzymes? the human liver 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the human liver, has developed, enzymes) -> the human liver (11909ms)
What are enzymes? scientists 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (scientists, have been studying the use of, a sister enzyme) -> scientists (11824ms)
What are enzymes? rifabutin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (rifabutin, induce, hepatic microsomal enzymes) -> rifabutin (11928ms)
What are enzymes? certain metabolizing enzymes 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (certain metabolizing enzymes, can induce, those enzymes) -> certain metabolizing enzymes (11782ms)
What are enzymes? isozymes 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (isozymes, represent a group of, enzymes) -> isozymes (11899ms)
What are enzymes? L-dopa 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (L-dopa, induces, the enzymes MAT and COMT.) -> L-dopa (11928ms)
What are enzymes? The need 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The need, has developed, an enzyme pulp) -> The need (11928ms)
What are enzymes? Mefloquine 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Mefloquine, induce, the cytochrome P450 enzyme system) -> Mefloquine (11835ms)
What are enzymes? the tetramer 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the tetramer, represents the physiological state of, the enzyme) -> the tetramer (11824ms)
What are enzymes? A BIO TECHNOLOGY COMPANY 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (A BIO TECHNOLOGY COMPANY, HAVE DEVELOPED, NEW ENZYME CALLED) -> A BIO TECHNOLOGY COMPANY (11868ms)
What are enzymes? the dark green region 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the dark green region, represents the active site of, an enzyme) -> the dark green region (11835ms)
What are enzymes? Butalbital 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Butalbital, induces, hepatic enzymes) -> Butalbital (11918ms)
What are enzymes? A throat lozenge 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (A throat lozenge, may comprise just, a lysin enzyme) -> A throat lozenge (11782ms)
What are enzymes? Mild enzyme elevation 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Mild enzyme elevation, often represents, enzyme induction) -> Mild enzyme elevation (11782ms)
What are enzymes? the drugs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the drugs, induce, the methylase enzyme) -> the drugs (11908ms)
What are enzymes? The ball 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (The ball, represents, the enzyme) -> The ball (11918ms)
What are enzymes? Eirzyme 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Eirzyme, has developed, a proprietary enzyme technology) -> Eirzyme (11858ms)
What are enzymes? much more freedom 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (much more freedom, develop the next generation of, enzymes) -> much more freedom (11835ms)
What are enzymes? Efavirenz 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Efavirenz, to induce, P450 enzymes) -> Efavirenz (11858ms)
What are enzymes? Genencor 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Genencor, develops, enzymes) -> Genencor (11796ms)
What are enzymes? GR8CF-77? 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (GR8CF-77?, represent the cutting edge in, enzyme formulation) -> GR8CF-77? (11889ms)
What are enzymes? The money 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The money, will be used to develop, enzymes) -> The money (11868ms)
What are enzymes? the end 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the end, helps develop, oxidative enzymes and mitochondria) -> the end (11847ms)
What are enzymes? Phenylbutazone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Phenylbutazone, also induces, hepatic microsomal enzyme activity) -> Phenylbutazone (11782ms)
What are enzymes? Resveratrol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Resveratrol, induces, an enzyme called quinone reductase) -> Resveratrol (11858ms)
What are enzymes? tobacco smoking 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (tobacco smoking, can induce, liver enzyme activities) -> tobacco smoking (11810ms)
What are enzymes? the NCI 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (the NCI, is underway to evaluate the use of, pancreatic enzymes) -> the NCI (11810ms)
What are enzymes? The former reactions 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (The former reactions, are represented by, enzymes) -> The former reactions (11810ms)
What are enzymes? A test arc 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (A test arc, to represent, enzyme activity) -> A test arc (11889ms)
What are enzymes? Codexis 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Codexis, develops, custom enzymes and catalysts) -> Codexis (11858ms)
What are enzymes? Digest Gold 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Digest Gold, represents, the most potent digestive enzyme) -> Digest Gold (11824ms)
What are enzymes? lecithin 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (lecithin, are used function of, enzyme systems) -> lecithin (11847ms)
What are enzymes? the missing link 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (the missing link, is the use of, the enzyme protocol) -> the missing link (11889ms)
What are enzymes? One long-considered solution 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (One long-considered solution, is the use of, lytic enzymes) -> One long-considered solution (11899ms)
What are enzymes? Rifampin/rifampicin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Rifampin/rifampicin, induces, hepatic enzymes) -> Rifampin/rifampicin (11858ms)
What are enzymes? a test 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (a test, was developed to detect, elevated liver enzymes) -> a test (11908ms)
What are enzymes? Hypericum-containing products 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Hypericum-containing products, appear to induce, hepatic enzymes) -> Hypericum-containing products (11796ms)
What are enzymes? the U.S. Department 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the U.S. Department, is developing, enzymes) -> the U.S. Department (11858ms)
What are enzymes? a color 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (a color, develops in, the presence of the bound enzyme) -> a color (11767ms)
What are enzymes? DIM 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (DIM, induces, certain P-450 enzymes) -> DIM (11782ms)
What are enzymes? Citrate cycle map 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Citrate cycle map, representing, enzymes present in L.) -> Citrate cycle map (11847ms)
What are enzymes? bioluminescence 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (bioluminescence, is the use of, the AK enzyme) -> bioluminescence (11927ms)
What are enzymes? FH 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (FH, represents, one mitochondrial enzyme) -> FH (11796ms)
What are enzymes? One remedy 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (One remedy, is the use of, digestive enzymes or probiotics) -> One remedy (11879ms)
What are enzymes? The SmartZYME process 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The SmartZYME process, is comprised of, multiple enzyme strains) -> The SmartZYME process (11847ms)
What are enzymes? Ozone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Ozone, Induces, specific Enzymes) -> Ozone (11810ms)
What are enzymes? ChemGen 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (ChemGen, is to develop, innovative feed enzyme products) -> ChemGen (11918ms)
What are enzymes? One study limitation 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (One study limitation, was the use of, various enzyme) -> One study limitation (11908ms)
What are enzymes? bioprocesses 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (bioprocesses, are the use of, microbial and enzyme biocatalysts) -> bioprocesses (11899ms)
What are enzymes? GalNAc residues 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (GalNAc residues, represent the products of, this enzyme) -> GalNAc residues (11782ms)
What are enzymes? a regular basis 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (a regular basis, develop, more fat burning enzymes) -> a regular basis (11899ms)
What are enzymes? Drugs and alcohol ingestion 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Drugs and alcohol ingestion, induce, microsomal enzymes) -> Drugs and alcohol ingestion (11899ms)
What are enzymes? SBC-102 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (SBC-102, is being developed as, an enzyme replacement therapy) -> SBC-102 (11889ms)
What are enzymes? distilled water 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (distilled water, is used instead of, enzyme solution) -> distilled water (11810ms)
What are enzymes? ALA 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (ALA, induces, liver phase II detoxification enzymes) -> ALA (11918ms)
What are enzymes? long-chain isothiocyanates 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (long-chain isothiocyanates, induces, the Phase II enzymes) -> long-chain isothiocyanates (11878ms)
What are enzymes? biotechnology 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (biotechnology, have developed, enzymes) -> biotechnology (11824ms)
What are enzymes? certain carbohydrates 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (certain carbohydrates, can induce, the presence of the enzymes) -> certain carbohydrates (11879ms)
What are enzymes? Drugs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Drugs, induce, hepatic microsomal enzymes) -> Drugs (11908ms)
What are enzymes? Dyadic 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Dyadic, develop, more efficient enzyme products and solutions) -> Dyadic (11858ms)
What are enzymes? curcumin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (curcumin, induces, an enzyme) -> curcumin (11879ms)
What are enzymes? a cornerstone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (a cornerstone, induces, the enzyme cytochrome P450) -> a cornerstone (11835ms)
What are enzymes? Carbamazepine 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Carbamazepine, induces, hepatic microsomal enzymes) -> Carbamazepine (11918ms)
What are enzymes? pentobarbital 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (pentobarbital, induce, hepatic chromosomal enzymes) -> pentobarbital (11858ms)
What are enzymes? The enzymatic cleaning composition 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The enzymatic cleaning composition, comprises, an enzyme) -> The enzymatic cleaning composition (11899ms)
What are enzymes? the skin gel 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the skin gel, is developed from, arctic marine enzymes) -> the skin gel (11835ms)
What are enzymes? Newborns 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Newborns, also have to develop, healthy enzymes) -> Newborns (11810ms)
What are enzymes? Sertraline 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Sertraline, was shown to induce, hepatic enzymes) -> Sertraline (11835ms)
What are enzymes? the program 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the program, is to develop, new enzyme systems) -> the program (11810ms)
What are enzymes? IGFBP2 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (IGFBP2, induces, the repair enzyme) -> IGFBP2 (11847ms)
What are enzymes? PAH 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (PAH, induced, enzymes) -> PAH (11835ms)
What are enzymes? linoleic acid 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (linoleic acid, induces, peroxisome-specific enzyme accumulation) -> linoleic acid (11782ms)
What are enzymes? the color determination 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the color determination, develop, new enzymes) -> the color determination (11908ms)
What are enzymes? hydrocarbons 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (hydrocarbons, induce, hepatic CYP450 microsomal enzymes) -> hydrocarbons (11928ms)
What are enzymes? brain compound 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (brain compound, induce, hepatic enzymes) -> brain compound (11847ms)
What are enzymes? Dr. Nussbaum?s lab 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Dr. Nussbaum?s lab, developed, a clinically useful enzyme test) -> Dr. Nussbaum?s lab (11918ms)
What are enzymes? Katzir 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Katzir, developed a method for, binding enzymes) -> Katzir (11908ms)
What are enzymes? the multi-enzyme composition 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the multi-enzyme composition, comprises, the enzyme) -> the multi-enzyme composition (11918ms)
What are enzymes? metabolism map 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (metabolism map, representing, enzymes present in L.) -> metabolism map (11847ms)
What are enzymes? MprF 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (MprF, represents a new class of, lipid-biosynthetic enzymes) -> MprF (11847ms)
What are enzymes? ZOLOFT 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (ZOLOFT, was shown to induce, hepatic enzymes) -> ZOLOFT (11918ms)
What are enzymes? Cancer cells 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Cancer cells, typically develop, an active telomerase enzyme) -> Cancer cells (11889ms)
What are enzymes? The drugs 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The drugs, were developed against, group-2 enzymes) -> The drugs (11908ms)
What are enzymes? the enzyme system 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the enzyme system, comprising, the cytochrome P450 enzymes) -> the enzyme system (11810ms)
What are enzymes? An example 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (An example, would be the use of, pancreatic enzyme) -> An example (11810ms)
What are enzymes? No participant 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (No participant, developed, liver enzyme elevations) -> No participant (11858ms)
What are enzymes? K1 Kcat K2 Here E 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (K1 Kcat K2 Here E, represents, Enzyme) -> K1 Kcat K2 Here E (11918ms)
What are enzymes? Ethanol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Ethanol, can induce, hepatic oxidative enzymes) -> Ethanol (11796ms)
What are enzymes? troglitazone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (troglitazone, may also induce, hepatic enzymes) -> troglitazone (11928ms)
What are enzymes? Ritonavir 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Ritonavir, to induce, metabolic enzymes) -> Ritonavir (11899ms)
What are enzymes? Genzyme 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Genzyme, previously developed, enzyme replacement therapies) -> Genzyme (11908ms)
What are enzymes? Enzymatic debridement 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Enzymatic debridement, is the use of, chemical enzymes) -> Enzymatic debridement (11868ms)
What are enzymes? Current research project 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Current research project, is exploring the use of, enzymes) -> Current research project (11879ms)
What are enzymes? Dr Kukol 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Dr Kukol, developed a 3D model of, the kinase IKK-? enzyme) -> Dr Kukol (11918ms)
What are enzymes? the combination 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the combination, comprises, the enzyme) -> the combination (11879ms)
What are enzymes? Soy 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Soy, induces, Phase II enzymes) -> Soy (11868ms)
What are enzymes? Albendazole 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Albendazole, induces, cytochrome P450 1A enzymes) -> Albendazole (11858ms)
What are enzymes? the agent 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the agent, comprises, a thrombin-like enzyme) -> the agent (11782ms)
What are enzymes? rifampin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (rifampin, induces, hepatic microsomal enzymes) -> rifampin (11868ms)
What are enzymes? The second step 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The second step, is to develop, an enzyme mixture) -> The second step (11868ms)
What are enzymes? a test arc 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (a test arc, can be used to represent, enzyme activity) -> a test arc (11908ms)
What are enzymes? n-3 PUFAs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (n-3 PUFAs, can induce, phase II detoxifying enzymes) -> n-3 PUFAs (11928ms)
What are enzymes? medications 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (medications, induce, liver enzymes) -> medications (11928ms)
What are enzymes? the company 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the company, has developed, an enzyme catalysed process) -> the company (11928ms)
What are enzymes? The known pathway 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The known pathway, comprises, five enzymes) -> The known pathway (11889ms)
What are enzymes? a specialty formula 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (a specialty formula, comprised of, key therapeutic enzymes) -> a specialty formula (11868ms)
What are enzymes? The acid protease 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The acid protease, comprises, one or more proteolytic enzymes) -> The acid protease (11847ms)
What are enzymes? Mat?s 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Mat?s, develops, innovative enzymes) -> Mat?s (11899ms)
What are enzymes? the CLA 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the CLA, induces the activity of, another enzyme) -> the CLA (11868ms)
What are enzymes? Omega-zyme 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Omega-zyme, is comprised of over, 20 different enzymes) -> Omega-zyme (11918ms)
What are enzymes? Tegretol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Tegretol, induces, enzymes) -> Tegretol (11796ms)
What are enzymes? the African grasshopper 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the African grasshopper, has developed, a specific enzyme) -> the African grasshopper (11835ms)
What are enzymes? Fibrozym? 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Fibrozym?, is comprised of, plant-based enzymes) -> Fibrozym? (11782ms)
What are enzymes? Alcohol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Alcohol, may induce, liver enzymes) -> Alcohol (11796ms)
What are enzymes? Compositions 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Compositions, comprise, an enzyme) -> Compositions (11908ms)
What are enzymes? the Action 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the Action, is to develop, novel enzymes) -> the Action (11824ms)
What are enzymes? Diamond shapes 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Diamond shapes, represent, enzymes) -> Diamond shapes (11824ms)
What are enzymes? antibodies 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (antibodies, comprise, the enzyme and hormonal systems) -> antibodies (11782ms)
What are enzymes? raw meals 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (raw meals, comprise, enzymes) -> raw meals (11879ms)
What are enzymes? smoking 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (smoking, induce, liver enzymes) -> smoking (11782ms)
What are enzymes? A lock-and-key model 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (A lock-and-key model, is useful in representing, enzyme activity) -> A lock-and-key model (11928ms)
What are enzymes? archaea 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (archaea, represent an important source of, enzymes) -> archaea (11937ms)
What are enzymes? poliovirus 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (poliovirus, induced, extensive cytopathology and enzyme release) -> poliovirus (11858ms)
What are enzymes? the pigment epithelium 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the pigment epithelium, induce, lysosomal enzyme) -> the pigment epithelium (11767ms)
What are enzymes? ABCB1 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (ABCB1, induce, numerous CYP enzymes) -> ABCB1 (11796ms)
What are enzymes? RSG 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (RSG, induced the transcription of, antioxidant enzymes) -> RSG (11868ms)
What are enzymes? ERT 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (ERT, develop immune responses to, the infused enzyme) -> ERT (11928ms)
What are enzymes? NF-kappaB 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (NF-kappaB, induces, phase 2 detoxifying enzyme activity) -> NF-kappaB (11879ms)
What are enzymes? Fermentation 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Fermentation, is a major use of, genes and enzymes) -> Fermentation (11918ms)
What are enzymes? 11 percent 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (11 percent, developed, high liver enzymes) -> 11 percent (11899ms)
What are enzymes? the work 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the work, has developed into, Enzyme Nutrition Therapy) -> the work (11928ms)
What are enzymes? biocatalysis research 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (biocatalysis research, develop, new enzymes) -> biocatalysis research (11879ms)
What are enzymes? Tacrine 0.6666666666609999 What are enzymes? -> $x: ($x, side, enzyme) -> (Tacrine, has side effects on, liver enzymes) -> Tacrine (11847ms)
What are enzymes? Duke 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Duke, developed, the recombinant porcine uricase enzyme) -> Duke (11889ms)
What are enzymes? Walker 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Walker, are studying the use of, enzymes) -> Walker (11868ms)
What are enzymes? drugs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (drugs, induce, these enzymes) -> drugs (11937ms)
What are enzymes? Ethanol Research 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Ethanol Research, is also working to develop, enzymes) -> Ethanol Research (11899ms)
What are enzymes? The composition 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The composition, comprises, a selected enzyme) -> The composition (11928ms)
What are enzymes? the potential 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the potential, has developed a class of, enzymes) -> the potential (11858ms)
What are enzymes? earth 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (earth, has developed some form of, the enzyme catalase) -> earth (11796ms)
What are enzymes? PP2A 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (PP2A, is comprised of, a core enzyme) -> PP2A (11858ms)
What are enzymes? Sulforaphane 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Sulforaphane, induces, enzymes) -> Sulforaphane (11824ms)
What are enzymes? Iogen and Novozymes 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Iogen and Novozymes, have been developing, enzymes) -> Iogen and Novozymes (11899ms)
What are enzymes? a phytochemical agent 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (a phytochemical agent, of inducing, an enzyme activity) -> a phytochemical agent (11847ms)
What are enzymes? Butanoate metabolic map 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Butanoate metabolic map, representing, enzymes present in L.) -> Butanoate metabolic map (11879ms)
What are enzymes? sertraline hydrochloride 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (sertraline hydrochloride, was shown to induce, hepatic enzymes) -> sertraline hydrochloride (11796ms)
What are enzymes? CAH 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (CAH, represent, enzyme deficiencies) -> CAH (11767ms)
What are enzymes? LH 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (LH, also induces, enzymes) -> LH (11810ms)
What are enzymes? Such anticonvulsants 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Such anticonvulsants, induce, hepatic P450 microsomal enzymes) -> Such anticonvulsants (11824ms)
What are enzymes? Symptoms 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Symptoms, may develop such as, elevated liver enzymes) -> Symptoms (11908ms)
What are enzymes? Sulfinpyrazone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Sulfinpyrazone, can induce, hepatic oxidative microsomal enzymes) -> Sulfinpyrazone (11889ms)
What are enzymes? Preparations 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Preparations, inducing, liver enzymes) -> Preparations (11782ms)
What are enzymes? Antiretrovirals 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Antiretrovirals, induce, the CYP enzymes) -> Antiretrovirals (11899ms)
What are enzymes? the edges 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the edges, represent, the enzymes) -> the edges (11918ms)
What are enzymes? treatment 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (treatment, will usually develop, abnormal liver enzyme levels) -> treatment (11835ms)
What are enzymes? Solvent 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Solvent, induced change of, enzyme enantioselectivity) -> Solvent (11824ms)
What are enzymes? lipids 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (lipids, induces, the same enzymes) -> lipids (11824ms)
What are enzymes? the DNA strands 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the DNA strands, induce synthesis of, repair enzymes) -> the DNA strands (11899ms)
What are enzymes? Duke University 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Duke University, developed, the recombinant uricase enzyme) -> Duke University (11889ms)
What are enzymes? a fever 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (a fever, induces, faster enzyme action) -> a fever (11782ms)
What are enzymes? hydrolase family 22 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (hydrolase family 22, comprises, enzymes) -> hydrolase family 22 (11878ms)
What are enzymes? epigallocatechingallate 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (epigallocatechingallate, induces, enzyme activity) -> epigallocatechingallate (11824ms)
What are enzymes? The parameter p 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (The parameter p, represents the percentage of, other enzymes) -> The parameter p (11810ms)
What are enzymes? the rainbow 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the rainbow, represented, the respiratory enzymes) -> the rainbow (11835ms)
What are enzymes? each of these categories 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (each of these categories, is represented by, multiple enzymes) -> each of these categories (11889ms)
What are enzymes? low.Rimonabant 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (low.Rimonabant, induce, other CYP enzymes) -> low.Rimonabant (11835ms)
What are enzymes? products 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (products, appear to induce, hepatic enzymes) -> products (11868ms)
What are enzymes? the regular basis 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the regular basis, will develop more of, fat burning enzymes) -> the regular basis (11810ms)
What are enzymes? Carbohydrates 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Carbohydrates, induce, enzymes) -> Carbohydrates (11824ms)
What are enzymes? METABONEX 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (METABONEX, induces, thermogenic enzymes) -> METABONEX (11868ms)
What are enzymes? isolated enzymes 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (isolated enzymes, will be developed for, enzymes) -> isolated enzymes (11847ms)
What are enzymes? honey ? honey 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (honey ? honey, comprises of, enzymes) -> honey ? honey (11918ms)
What are enzymes? Avicel and xylan 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Avicel and xylan, broadly induced, enzymes) -> Avicel and xylan (11868ms)
What are enzymes? AFA 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (AFA, has developed, wide and versatile enzyme systems) -> AFA (11835ms)
What are enzymes? Genzyme Corp. 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Genzyme Corp., has developed, enzyme replacement therapies) -> Genzyme Corp. (11868ms)
What are enzymes? Industrial workers 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Industrial workers, can be exposed to, various enzymes) -> Industrial workers (11997ms)
What are enzymes? Molecular biologists 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Molecular biologists, have discovered, many enzymes) -> Molecular biologists (11937ms)
What are enzymes? prescription 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (prescription, can be removed as, a enzyme) -> prescription (11937ms)
What are enzymes? list 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (list, can be used to switch between, enzymes) -> list (11997ms)
What are enzymes? Wine 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (Wine, could be fermented with, enzymes or concentrates) -> Wine (11946ms)
What are enzymes? degradation 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (degradation, could be counteracted by, de-ubiquitinating enzymes) -> degradation (11964ms)
What are enzymes? smaller particles 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (smaller particles, can be acted by, various enzymes) -> smaller particles (11989ms)
What are enzymes? YadB 0.6666666666600001 What are enzymes? -> $x: ($x, constitute, enzyme) -> (YadB, constitutes, the first enzyme) -> YadB (11946ms)
What are enzymes? Blackburn 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Blackburn, co-discovered, the telomerase enzyme) -> Blackburn (11964ms)
What are enzymes? Any residual stain 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (Any residual stain, could be treated with, an enzyme cleaner) -> Any residual stain (11981ms)
What are enzymes? starch 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (starch, can be digested by, vertebrate enzymes) -> starch (11937ms)
What are enzymes? LysoSENS 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (LysoSENS, has focused on discovering, microbial enzymes) -> LysoSENS (11981ms)
What are enzymes? 5-alpha reductase 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (5-alpha reductase, can be, an enzyme) -> 5-alpha reductase (11946ms)
What are enzymes? UCLA scientists 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (UCLA scientists, first discovered, this repair enzyme) -> UCLA scientists (11997ms)
What are enzymes? synthesis 0.6666666666600001 What are enzymes? -> $x: ($x, constitute, enzyme) -> (synthesis, constitutes, the enzymes) -> synthesis (11937ms)
What are enzymes? The major proteins 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The major proteins, could be digested by, proteolytic enzymes) -> The major proteins (11955ms)
What are enzymes? a starch thickener 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a starch thickener, can be broken down by, enzymes) -> a starch thickener (11964ms)
What are enzymes? Dr. Hiroyuki Sumi 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Dr. Hiroyuki Sumi, discovered, this enzyme) -> Dr. Hiroyuki Sumi (11955ms)
What are enzymes? the PI enzyme 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (the PI enzyme, could be converted into, the PII enzyme) -> the PI enzyme (11981ms)
What are enzymes? PKU 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (PKU, can be detected by, enzyme) -> PKU (11946ms)
What are enzymes? The same coenzyme 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (The same coenzyme, can be associated with, many enzymes) -> The same coenzyme (11955ms)
What are enzymes? Inactive macrophages 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (Inactive macrophages, could be, withholding vital enzymes) -> Inactive macrophages (11997ms)
What are enzymes? lysogenic B. subtilis cells 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (lysogenic B. subtilis cells, can be cut by, these enzymes) -> lysogenic B. subtilis cells (11946ms)
What are enzymes? The scientists 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (The scientists, discovered a way of using, enzymes) -> The scientists (11981ms)
What are enzymes? Greider 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Greider, discovered, the enzyme telomerase) -> Greider (11972ms)
What are enzymes? more oVOCs 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (more oVOCs, can be metabolized by, the enzymes) -> more oVOCs (11989ms)
What are enzymes? peeled and cut 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (peeled and cut, can be prevented from, enzyme browning) -> peeled and cut (11989ms)
What are enzymes? Dr. Fridovich 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Dr. Fridovich, discovered, the enzyme Cu,Zn-superoxide dismutase) -> Dr. Fridovich (11997ms)
What are enzymes? Doctors 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Doctors, have discovered, a miraculous enzyme) -> Doctors (11989ms)
What are enzymes? Aloe 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Aloe, can also be used to, heighten enzymes) -> Aloe (11972ms)
What are enzymes? The new research 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (The new research, has discovered, specific enzymes) -> The new research (11955ms)
What are enzymes? histamine intolerance benefits 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (histamine intolerance benefits, can be tamed by, the enzyme) -> histamine intolerance benefits (11955ms)
What are enzymes? the expanded PVA 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (the expanded PVA, could be used for, enzyme immobilisation) -> the expanded PVA (11955ms)
What are enzymes? the double helix 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the double helix, can be easily separated by, enzymes) -> the double helix (11972ms)
What are enzymes? Vascular Science 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Vascular Science, have discovered the role of, an enzyme) -> Vascular Science (11981ms)
What are enzymes? mRNA 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (mRNA, could be a memory for, an enzyme) -> mRNA (11989ms)
What are enzymes? An XNA alternative 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (An XNA alternative, could be impervious to, those enzymes) -> An XNA alternative (11989ms)
What are enzymes? The project 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (The project, aims to discover, enzymes) -> The project (11997ms)
What are enzymes? the junction 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the junction, can be used for, the enzyme) -> the junction (11964ms)
What are enzymes? PhD 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (PhD, co-discovered, the telomerase enzyme) -> PhD (11955ms)
What are enzymes? The DNA 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The DNA, could also be isolated using, restriction enzymes) -> The DNA (11964ms)
What are enzymes? the list 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the list, can be alleviated by, enzyme pills) -> the list (11997ms)
What are enzymes? Hot soup 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Hot soup, can be low in, live enzymes) -> Hot soup (11981ms)
What are enzymes? ? View PHEN375 0.6666666666600001 What are enzymes? -> $x: ($x, constitute, enzyme) -> (? View PHEN375, is constituted of, cyclic AMP enzyme boosters) -> ? View PHEN375 (11997ms)
What are enzymes? control 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (control, can be distributed over, the enzymes) -> control (11964ms)
What are enzymes? Milk 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Milk, can be treated with, the enzyme) -> Milk (11972ms)
What are enzymes? pee 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (pee, could be taken away by using, enzyme cleaning soap) -> pee (11964ms)
What are enzymes? Amoxicillin 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Amoxicillin, can be inactivated by, an enzyme) -> Amoxicillin (11997ms)
What are enzymes? disinfections 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (disinfections, can be removed by, catalase enzyme) -> disinfections (11972ms)
What are enzymes? a material 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a material, can be broken down by, enzymes) -> a material (11964ms)
What are enzymes? New research 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (New research, has discovered, enzymes) -> New research (11955ms)
What are enzymes? more tumor cells 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (more tumor cells, could be removed by, the enzymes) -> more tumor cells (11937ms)
What are enzymes? Schoenberg 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Schoenberg, first discovered, the PMR1 enzyme) -> Schoenberg (11989ms)
What are enzymes? Cambridge 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Cambridge, discovered the presence of, the enzyme) -> Cambridge (11955ms)
What are enzymes? The antibody 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (The antibody, can be directly labeled with, the enzyme) -> The antibody (11937ms)
What are enzymes? fructose 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (fructose, can be metabolized by, an enzyme) -> fructose (11946ms)
What are enzymes? ion 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (ion, can be transported by, several enzymes) -> ion (11989ms)
What are enzymes? Immune system regulation 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Immune system regulation, can also be accomplished with, enzymes) -> Immune system regulation (11946ms)
What are enzymes? Folkers 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Folkers, had also discovered, an easily measurable enzyme) -> Folkers (11964ms)
What are enzymes? osteoarthritis 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (osteoarthritis, could be helped with, enzyme therapy) -> osteoarthritis (11981ms)
What are enzymes? Li 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Li, also discovered, another enzyme) -> Li (11946ms)
What are enzymes? a propeptide 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a propeptide, can be cleaved extracellularly by, enzymes) -> a propeptide (11981ms)
What are enzymes? effectively isoflavones 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (effectively isoflavones, can be processed by, these enzymes) -> effectively isoflavones (11937ms)
What are enzymes? plant cell walls 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (plant cell walls, can be broken down by, enzymes) -> plant cell walls (11997ms)
What are enzymes? late-onset Pompe disease 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (late-onset Pompe disease, can be treated with, enzyme therapy) -> late-onset Pompe disease (11997ms)
What are enzymes? ABS 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (ABS, also has discovered, a novel enzyme) -> ABS (11972ms)
What are enzymes? noradrenaline 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (noradrenaline, could be neutralized by, an enzyme) -> noradrenaline (11946ms)
What are enzymes? certain tissues 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (certain tissues, could be replaced by, other PLC enzymes) -> certain tissues (11955ms)
What are enzymes? The affected protein 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The affected protein, could be, an enzyme) -> The affected protein (11937ms)
What are enzymes? diagnostic work-up 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (diagnostic work-up, could be to draw, cardiac enzymes) -> diagnostic work-up (11955ms)
What are enzymes? the plasmid 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the plasmid, can be opened using, restriction enzymes) -> the plasmid (11937ms)
What are enzymes? the original researchers 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (the original researchers, first discovered, co-enzyme Q10) -> the original researchers (11981ms)
What are enzymes? Temin and Baltimore 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Temin and Baltimore, discovered, this enzyme) -> Temin and Baltimore (11972ms)
What are enzymes? NEI investigators 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (NEI investigators, have discovered, a naturally occurring enzyme) -> NEI investigators (11989ms)
What are enzymes? 3000 bp 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (3000 bp, can be achieved with, this enzyme) -> 3000 bp (11972ms)
What are enzymes? the fat 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the fat, can be digested by, the enzymes) -> the fat (11946ms)
What are enzymes? a living organisms 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a living organisms, can be is dependent on, the enzymes) -> a living organisms (11946ms)
What are enzymes? The reason 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The reason, could be a deficiency of, digestive enzymes) -> The reason (11955ms)
What are enzymes? FOS 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (FOS, can also be synthesized by, enzymes) -> FOS (11989ms)
What are enzymes? Life 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Life, can be hell without, these enzymes) -> Life (11972ms)
What are enzymes? an additional substrate 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (an additional substrate, can be helped with, digestive enzymes) -> an additional substrate (11997ms)
What are enzymes? detection 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (detection, can be destroyed by, pancreatic enzymes) -> detection (11972ms)
What are enzymes? Km 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Km, can be used to compare, enzymes) -> Km (11981ms)
What are enzymes? Scotland 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Scotland, have discovered, a natural fluorinase enzyme) -> Scotland (11972ms)
What are enzymes? plant cells 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (plant cells, can be extracted with, enzymes) -> plant cells (11972ms)
What are enzymes? Bass 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Bass, discovered an entire new class of, enzymes) -> Bass (11937ms)
What are enzymes? Ph. D. 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Ph. D., co-discovered, the telomerase enzyme) -> Ph. D. (11989ms)
What are enzymes? cancer 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (cancer, could be determined by, these enzymes) -> cancer (11997ms)
What are enzymes? important proteins 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (important proteins, could be, enzymes) -> important proteins (11972ms)
What are enzymes? The azide component 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The azide component, could be tethered to, the enzyme surface) -> The azide component (11946ms)
Who is the conductor of the Boston Pops? Mr. Lockhart 0.222222222222 Who 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)
Who is the conductor of the Boston Pops? Casella 0.222222222222 Who is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Casella, was the principal conductor of, the Boston Pops) -> Casella (699ms)
Who is the conductor of the Boston Pops? Nakahara 0.222222222222 Who is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Nakahara, is primary conductor of, the SuperPops series) -> Nakahara (699ms)
Who is the conductor of the Boston Pops? Williams 0.222222222222 Who is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Williams, was the conductor of, the Boston Pops) -> Williams (699ms)
In what year was Warren Moon born? Felicia Moon -1.22222222222 In what year was Warren Moon born? -> $x: ($x, marry, warren moon) -> (Felicia Moon, was married to, Warren Moon) -> Felicia Moon (754ms)
When was the Red Cross founded? Libya 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (the Red Cross, have been found in, Libya) -> Libya (1829ms)
When was the Red Cross founded? an HIV infection case 1.666666666658 When 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)
When was the Red Cross founded? Geneva 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (The Red Cross Museum, is found in, Geneva) -> Geneva (1829ms)
When was the Red Cross founded? the town 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (the Red Cross, had been found in, the town) -> the town (1829ms)
When was the Red Cross founded? the ?About 1.666666666658 When 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)
When was the Red Cross founded? Australian Red Cross 1.444444444442 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society 1.222222222216 When 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)
When was the Red Cross founded? www.redcross .org 1.222222222216 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts 1.222222222216 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing 1.222222222216 When 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)
When was the Red Cross founded? www.redcross 1.222222222216 When 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)
When was the Red Cross founded? http://en.wikipedia.org/wiki/Australian%20Red%20Cross 1.222222222216 When 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)
When was the Red Cross founded? The lesson plan 1.1111111111079999 When 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)
When was the Red Cross founded? a compatible donor 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a compatible donor, was found by, the American Red Cross) -> a compatible donor (2961ms)
When was the Red Cross founded? a listing 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a listing, can be found on, the American Red Cross website) -> a listing (3568ms)
When was the Red Cross founded? A Spotted Gloucester Sow 1.1111111111079999 When 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)
When was the Red Cross founded? Crossing The Red Sea With The Adverts 1.1111111111079999 When 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)
When was the Red Cross founded? cardigan 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (cardigan, found at, my local Red Cross op shop) -> cardigan (2819ms)
When was the Red Cross founded? disaster supplies 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (disaster supplies, can be found on, the Red Cross website) -> disaster supplies (3523ms)
When was the Red Cross founded? retirees 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (retirees, find opportunities with, the Red Cross) -> retirees (3091ms)
When was the Red Cross founded? Humanity 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Humanity, Find, your nearest solicitor Red Cross) -> Humanity (2605ms)
When was the Red Cross founded? women 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (women, found, the American Red Cross) -> women (2961ms)
When was the Red Cross founded? the end 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the end, finds a closed door with, a giant red cross) -> the end (2819ms)
When was the Red Cross founded? Similar statements 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Similar statements, are found in, the Red Cross report) -> Similar statements (3568ms)
When was the Red Cross founded? a user 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a user, then find, the nearest American Red Cross chapter) -> a user (3651ms)
When was the Red Cross founded? Adolphus Solomons 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Adolphus Solomons, found, the American National Red Cross) -> Adolphus Solomons (3091ms)
When was the Red Cross founded? ? People 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (? People, can find, open Red Cross shelters) -> ? People (3523ms)
When was the Red Cross founded? the crowds 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the crowds, will also find, high-quality Red Cross products) -> the crowds (2819ms)
When was the Red Cross founded? the support 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the support, found, their Red Cross officer) -> the support (3651ms)
When was the Red Cross founded? a committed volunteer 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a committed volunteer, find some time for, American Red Cross) -> a committed volunteer (3651ms)
When was the Red Cross founded? More information 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (More information, can be found through, the American Red Cross) -> More information (3523ms)
When was the Red Cross founded? a little 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a little, found a great WWII pattern from, the Red Cross) -> a little (3523ms)
When was the Red Cross founded? CPR Certification 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (CPR Certification, Find, a red cross CPR instructor) -> CPR Certification (3091ms)
When was the Red Cross founded? community resources 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (community resources, can be found at, the American Red Cross) -> community resources (2819ms)
When was the Red Cross founded? the donation page 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the donation page, can be found at, Donate Red Cross) -> the donation page (3523ms)
When was the Red Cross founded? evacuees 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (evacuees, could find, the American Red Cross) -> evacuees (3091ms)
When was the Red Cross founded? Uganda Red Cross Society 1.1111111111079999 When 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)
When was the Red Cross founded? Clara Barton 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Clara Barton, helped found, the American Red Cross) -> Clara Barton (3651ms)
When was the Red Cross founded? Clara 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Clara, found out about, The Red Cross) -> Clara (3091ms)
When was the Red Cross founded? Japanese Red Cross College of Nursing 1.1111111111079999 When 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)
When was the Red Cross founded? military families 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (military families, Find, your local Red Cross) -> military families (3651ms)
When was the Red Cross founded? the Samouni family 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the Samouni family, were finally found by, the Red Cross) -> the Samouni family (2819ms)
When was the Red Cross founded? general 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (general, will find a link to, the Red Cross) -> general (3568ms)
When was the Red Cross founded? damage estimates 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (damage estimates, can be found in, Red Cross records) -> damage estimates (3091ms)
When was the Red Cross founded? more information 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (more information, can be found at, the American Red Cross) -> more information (3091ms)
When was the Red Cross founded? John 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (John, has also found, Red Cross support invaluable) -> John (3651ms)
When was the Red Cross founded? the middle 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the middle, you?ll find, a Red Cross emergency aid station) -> the middle (3651ms)
When was the Red Cross founded? reporters 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (reporters, found, the Red Cross tweets) -> reporters (3568ms)
When was the Red Cross founded? Related Sites American Red Cross 1.1111111111079999 When 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)
When was the Red Cross founded? broadcasting stations 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (broadcasting stations, had been found under, Red Cross control) -> broadcasting stations (3523ms)
When was the Red Cross founded? Dunant 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Dunant, found, the American Red Cross) -> Dunant (2819ms)
When was the Red Cross founded? the had 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the had, found, the Red-Cross or) -> the had (3523ms)
When was the Red Cross founded? Help someone 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Help someone, find, a Red Cross representative) -> Help someone (2819ms)
When was the Red Cross founded? food 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (food, are relieved to find, the Red Cross volunteers) -> food (3568ms)
When was the Red Cross founded? Maycie 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Maycie, found employment at, the Red Cross) -> Maycie (2961ms)
When was the Red Cross founded? a national guardsman 1.1111111111079999 When 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)
When was the Red Cross founded? Further advice 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Further advice, may be found on, the Red Cross website) -> Further advice (2961ms)
When was the Red Cross founded? Five potential donors 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Five potential donors, were found in, the Red Cross) -> Five potential donors (3568ms)
When was the Red Cross founded? Potter 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (Potter, created, the American Red Cross Youth Corps) -> Potter (3907ms)
When was the Red Cross founded? He?s 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (He?s, created, the Red Cross Online Disaster Portal) -> He?s (3917ms)
When was the Red Cross founded? W????rtenberg 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (W????rtenberg, created, the International Red Cross Movement) -> W????rtenberg (3912ms)
When was the Red Cross founded? 1864 0.999999999995 When was the Red Cross founded? -> $x: (red cross, start in, $x) -> (The Red Cross, was started in, 1864) -> 1864 (3912ms)
When was the Red Cross founded? Congress 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (Congress, created, the Red Cross) -> Congress (3917ms)
When was the Red Cross founded? Flat 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (Flat, created for, the American Red Cross) -> Flat (3912ms)
When was the Red Cross founded? the Civil War nurse 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (the Civil War nurse, created, the American Red Cross) -> the Civil War nurse (3778ms)
When was the Red Cross founded? New China News .VIETNAMISTAN ??Bush 0.999999999995 When 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)
When was the Red Cross founded? Darfur 0.999999999995 When was the Red Cross founded? -> $x: (red cross, found in, $x) -> (The Red Cross, found his family in, Darfur) -> Darfur (3917ms)
When was the Red Cross founded? eggs 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (eggs, were created to honor, the Red Cross) -> eggs (3902ms)
When was the Red Cross founded? 1863 0.999999999995 When was the Red Cross founded? -> $x: (red cross, start in, $x) -> (the Red Cross, was started in, 1863) -> 1863 (3907ms)
When was the Red Cross founded? a volunteer 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (a volunteer, create an album of, your summer Red Cross trip) -> a volunteer (3912ms)
When was the Red Cross founded? The EHL course 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (The EHL course, was created by, the Red Cross program) -> The EHL course (3902ms)
When was the Red Cross founded? the government 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (the government, creates, its own Filipino Red Cross society) -> the government (3917ms)
When was the Red Cross founded? Pakistan 0.999999999995 When was the Red Cross founded? -> $x: (red cross, found in, $x) -> (the kidnapped British Red Cross worker, found dead in, Pakistan) -> Pakistan (3907ms)
When was the Red Cross founded? Pringle 0.999999999995 When was the Red Cross founded? -> $x: ($x, invent, red cross) -> (Pringle, also co-invented, the Red Cross concept) -> Pringle (3902ms)
When was the Red Cross founded? temporary housing 0.999999999995 When was the Red Cross founded? -> $x: (red cross, found in, $x) -> (The American Red Cross, assisted in finding, temporary housing) -> temporary housing (3912ms)
When was the Red Cross founded? The ADGP 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (The ADGP, was created by, the American Red Cross) -> The ADGP (3777ms)
When was the Red Cross founded? the country 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (the country, create significant difficulties for, Red Cross) -> the country (3701ms)
When was the Red Cross founded? the early 1900s 0.999999999995 When 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)
When was the Red Cross founded? work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, work) -> work (3961ms)
When was the Red Cross founded? the actual role playing 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the American Red Cross, did, the actual role playing) -> the actual role playing (3952ms)
When was the Red Cross founded? marks 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the American Red Cross name, are federally protected, marks) -> marks (3964ms)
When was the Red Cross founded? a fantastic job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, a fantastic job) -> a fantastic job (3959ms)
When was the Red Cross founded? disasters 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does respond to, disasters) -> disasters (3966ms)
When was the Red Cross founded? Missouri 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened shelters in, Missouri) -> Missouri (3949ms)
When was the Red Cross founded? Wyatt 0.888888888884 When was the Red Cross founded? -> $x: ($x, discover, red cross) -> (Wyatt, claimed to have discovered, the Red Sea crossing) -> Wyatt (3959ms)
When was the Red Cross founded? excellent work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, excellent work) -> excellent work (3927ms)
When was the Red Cross founded? Muslims 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (glad the red cross, really do, Muslims) -> Muslims (3961ms)
When was the Red Cross founded? North Korea 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, was established in, North Korea) -> North Korea (3941ms)
When was the Red Cross founded? Red Cross volunteers 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross Emblem, did, Red Cross volunteers) -> Red Cross volunteers (3922ms)
When was the Red Cross founded? Hidalgo 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, has opened shelters in, Hidalgo) -> Hidalgo (3936ms)
When was the Red Cross founded? a damn good job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, a damn good job) -> a damn good job (3927ms)
When was the Red Cross founded? the Heinleins 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, so did, the Heinleins) -> the Heinleins (3964ms)
When was the Red Cross founded? offer assistance 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, did, offer assistance) -> offer assistance (3961ms)
When was the Red Cross founded? light 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the American Red Cross, will be made in, light) -> light (3959ms)
When was the Red Cross founded? Cutchogue-New Suffolk 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross as, did, Cutchogue-New Suffolk) -> Cutchogue-New Suffolk (3966ms)
When was the Red Cross founded? the Iowa School 0.888888888884 When 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)
When was the Red Cross founded? a wonderful job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, do, a wonderful job) -> a wonderful job (3927ms)
When was the Red Cross founded? mobile food distribution 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, was doing, mobile food distribution) -> mobile food distribution (3936ms)
When was the Red Cross founded? a lot of work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, is doing, a lot of work) -> a lot of work (3941ms)
When was the Red Cross founded? nearby villages 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Three Red Cross care centers, were opened in, nearby villages) -> nearby villages (3961ms)
When was the Red Cross founded? the purchase 0.888888888884 When 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)
When was the Red Cross founded? Center Point 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (3 Alabama Red Cross shelters, remain open in, Center Point) -> Center Point (3927ms)
When was the Red Cross founded? Milverton 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (-Tue Apr 29 , Red Cross, is opening a shelter in, Milverton) -> Milverton (3917ms)
When was the Red Cross founded? the same 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, the same) -> the same (3931ms)
When was the Red Cross founded? a local level 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does on, a local level) -> a local level (3949ms)
When was the Red Cross founded? the ground 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make on, $x) -> (the difference Red Cross, is making on, the ground) -> the ground (3964ms)
When was the Red Cross founded? much more than respond to disasters 0.888888888884 When 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)
When was the Red Cross founded? an excellent job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, an excellent job) -> an excellent job (3959ms)
When was the Red Cross founded? a lot of good work 0.888888888884 When 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)
When was the Red Cross founded? the Hempfield Twp 0.888888888884 When 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)
When was the Red Cross founded? medical workers 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the Red Cross, is supposed to protect, medical workers) -> medical workers (3959ms)
When was the Red Cross founded? Hood River and Newport 0.888888888884 When 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)
When was the Red Cross founded? 1917 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The American Red Cross, was established in, 1917) -> 1917 (3952ms)
When was the Red Cross founded? training course 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do first aid, training course) -> training course (3956ms)
When was the Red Cross founded? a lot 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, has done, a lot) -> a lot (3961ms)
When was the Red Cross founded? 2004 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the Red Cross, was established in, 2004) -> 2004 (3956ms)
When was the Red Cross founded? a good job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, is doing, a good job) -> a good job (3964ms)
When was the Red Cross founded? important work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, is doing, important work) -> important work (3952ms)
When was the Red Cross founded? Charleston County 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, will open shelters in, Charleston County) -> Charleston County (3927ms)
When was the Red Cross founded? the state 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened shelters in, the state) -> the state (3936ms)
When was the Red Cross founded? a tremendous job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a tremendous job) -> a tremendous job (3961ms)
When was the Red Cross founded? great work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does, great work) -> great work (3945ms)
When was the Red Cross founded? a rather special story 0.888888888884 When 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)
When was the Red Cross founded? Wichita Falls 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened shelters in, Wichita Falls) -> Wichita Falls (3964ms)
When was the Red Cross founded? Icard 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Icard) -> Icard (3922ms)
When was the Red Cross founded? class scheduling 0.888888888884 When was the Red Cross founded? -> $x: (red cross, found on, $x) -> (a local Red Cross, find information on, class scheduling) -> class scheduling (3952ms)
When was the Red Cross founded? an online course 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, do, an online course) -> an online course (3959ms)
When was the Red Cross founded? case work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, will continue to do, case work) -> case work (3936ms)
When was the Red Cross founded? Oklahoma 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened shelters in, Oklahoma) -> Oklahoma (3941ms)
When was the Red Cross founded? 1954 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Fiji Red Cross, was established in, 1954) -> 1954 (3959ms)
When was the Red Cross founded? May 21 , 1881 0.888888888884 When 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)
When was the Red Cross founded? North Carolina 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, to open in, North Carolina) -> North Carolina (3949ms)
When was the Red Cross founded? New York 0.888888888884 When 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)
When was the Red Cross founded? the Privacy 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (Australian Red Cross, is protected by, the Privacy) -> the Privacy (3945ms)
When was the Red Cross founded? finpecia work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (View Red Cross photos, does, finpecia work) -> finpecia work (3917ms)
When was the Red Cross founded? Marietta 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened a shelter in, Marietta) -> Marietta (3936ms)
When was the Red Cross founded? the Town 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened an office in, the Town) -> the Town (3922ms)
When was the Red Cross founded? everyday 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do, everyday) -> everyday (3945ms)
When was the Red Cross founded? the leg work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, the leg work) -> the leg work (3956ms)
When was the Red Cross founded? 1967 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The District Red Cross Society, was established in, 1967) -> 1967 (3956ms)
When was the Red Cross founded? Newburgh 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, has opened a shelter in, Newburgh) -> Newburgh (3952ms)
When was the Red Cross founded? communities 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened shelters in, communities) -> communities (3922ms)
When was the Red Cross founded? the Great Chicago Blizzard 0.888888888884 When 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)
When was the Red Cross founded? Oak Grove 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Stranded Motorists Red Cross, opens shelter in, Oak Grove) -> Oak Grove (3945ms)
When was the Red Cross founded? international law 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the Red Cross emblem, is protected by, international law) -> international law (3922ms)
When was the Red Cross founded? a great job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a great job) -> a great job (3952ms)
When was the Red Cross founded? Utah 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the American Red Cross, were made in, Utah) -> Utah (3961ms)
When was the Red Cross founded? Anjar 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the red cross, opened some schools in, Anjar) -> Anjar (3949ms)
When was the Red Cross founded? several 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be discover in, $x) -> (Red Cross parcels, was discovered in, several) -> several (3922ms)
When was the Red Cross founded? a regional disaster training 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, had done, a regional disaster training) -> a regional disaster training (3931ms)
When was the Red Cross founded? 29 May 1904 0.888888888884 When 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)
When was the Red Cross founded? sewing 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross POW, did, sewing) -> sewing (3941ms)
When was the Red Cross founded? the region 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (another 12 non-Red Cross shelters, opened in, the region) -> the region (3949ms)
When was the Red Cross founded? Massachusetts 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are also open in, Massachusetts) -> Massachusetts (3961ms)
When was the Red Cross founded? victims 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do for, victims) -> victims (3961ms)
When was the Red Cross founded? Rockport 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross, opens shelter in, Rockport) -> Rockport (3952ms)
When was the Red Cross founded? China 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (Red Cross, is well established in, China) -> China (3941ms)
When was the Red Cross founded? Arizona 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are open in, Arizona) -> Arizona (3949ms)
When was the Red Cross founded? Minneapolis 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, also opened a shelter in, Minneapolis) -> Minneapolis (3959ms)
When was the Red Cross founded? the most good 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, to do, the most good) -> the most good (3961ms)
When was the Red Cross founded? central Missouri 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Eight Red Cross shelters, remain open in, central Missouri) -> central Missouri (3966ms)
When was the Red Cross founded? a fine job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a fine job) -> a fine job (3936ms)
When was the Red Cross founded? Australia 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the Red Cross, was an established practice in, Australia) -> Australia (3949ms)
When was the Red Cross founded? relief use 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do, relief use) -> relief use (3956ms)
When was the Red Cross founded? Congressmen 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, so do, Congressmen) -> Congressmen (3952ms)
When was the Red Cross founded? the website 0.888888888884 When 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)
When was the Red Cross founded? matter 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, actually do, matter) -> matter (3931ms)
When was the Red Cross founded? the community 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (an additional Red Cross shelter, was opened in, the community) -> the community (3964ms)
When was the Red Cross founded? Charlestown 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Charlestown) -> Charlestown (3941ms)
When was the Red Cross founded? Delaware 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has additional shelters open in, Delaware) -> Delaware (3964ms)
When was the Red Cross founded? nearby Dansville 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the first Red Cross chapter, opens in, nearby Dansville) -> nearby Dansville (3941ms)
When was the Red Cross founded? the joints 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the red cross, Do, the joints) -> the joints (3956ms)
When was the Red Cross founded? Illinois 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, were open overnight in, Illinois) -> Illinois (3964ms)
When was the Red Cross founded? Chester County 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, was opening a shelter in, Chester County) -> Chester County (3931ms)
When was the Red Cross founded? 1881 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, was established in, 1881) -> 1881 (3945ms)
When was the Red Cross founded? Washington 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The American Red Cross, was established in, Washington) -> Washington (3956ms)
When was the Red Cross founded? Lowe?s stores 0.888888888884 When 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)
When was the Red Cross founded? Sierra Leone 0.888888888884 When 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)
When was the Red Cross founded? The Geneva Convention 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (The Red Cross, are protected by, The Geneva Convention) -> The Geneva Convention (3931ms)
When was the Red Cross founded? good work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, good work) -> good work (3936ms)
When was the Red Cross founded? American servicemen 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does for, American servicemen) -> American servicemen (3922ms)
When was the Red Cross founded? a thorough vetting 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, a thorough vetting) -> a thorough vetting (3945ms)
When was the Red Cross founded? Columbus 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Columbus) -> Columbus (3922ms)
When was the Red Cross founded? so 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, to do, so) -> so (3949ms)
When was the Red Cross founded? Alabama 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are open in, Alabama) -> Alabama (3961ms)
When was the Red Cross founded? a blood drive 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, a blood drive) -> a blood drive (3936ms)
When was the Red Cross founded? Canton 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, opened a shelter in, Canton) -> Canton (3952ms)
When was the Red Cross founded? Dora and Parrish 0.888888888884 When 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)
When was the Red Cross founded? 1953 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened in, 1953) -> 1953 (3949ms)
When was the Red Cross founded? Reno 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Two more Red Cross shelters, were also recently opened in, Reno) -> Reno (3945ms)
When was the Red Cross founded? Double Duty 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross Volunteer, Does, Double Duty) -> Double Duty (3945ms)
When was the Red Cross founded? the other abductees 0.888888888884 When was the Red Cross founded? -> $x: ($x, discover, red cross) -> (the other abductees, are discovered by, the Red Cross) -> the other abductees (3941ms)
When was the Red Cross founded? a decade 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Canadian Red Cross, did, a decade) -> a decade (3959ms)
When was the Red Cross founded? 1932 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Malawi Red Cross, was formally established in, 1932) -> 1932 (3956ms)
When was the Red Cross founded? Nebraska and Iowa due 0.888888888884 When 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)
When was the Red Cross founded? May 1881 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish on, $x) -> (the American Red Cross, was established on, May 1881) -> May 1881 (3958ms)
When was the Red Cross founded? Virginia 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (No Red Cross shelters, are open in, Virginia) -> Virginia (3952ms)
When was the Red Cross founded? 9/11 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the American Red Cross, did on, 9/11) -> 9/11 (3961ms)
When was the Red Cross founded? 1952as 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Fiji Red Cross Society, was established in, 1952as) -> 1952as (3956ms)
When was the Red Cross founded? a good deed 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do, a good deed) -> a good deed (3948ms)
When was the Red Cross founded? the billions 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do exactly with, the billions) -> the billions (3941ms)
When was the Red Cross founded? various areas 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (American Red Cross shelters, remain open in, various areas) -> various areas (3931ms)
When was the Red Cross founded? Haiti 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, is already well-established in, Haiti) -> Haiti (3956ms)
When was the Red Cross founded? forward 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does put, forward) -> forward (3952ms)
When was the Red Cross founded? several places 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has shelters open in, several places) -> several places (3961ms)
When was the Red Cross founded? different Allied countries 0.888888888884 When 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)
When was the Red Cross founded? the damaged areas 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross workers, opened shelters in, the damaged areas) -> the damaged areas (3927ms)
When was the Red Cross founded? the old Aoy School 0.888888888884 When 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)
When was the Red Cross founded? yen 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the Japanese Red Cross Society, must be made in, yen) -> yen (3959ms)
When was the Red Cross founded? 1950 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Hong Kong Red Cross, was established in, 1950) -> 1950 (3956ms)
When was the Red Cross founded? amazing work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, amazing work) -> amazing work (3945ms)
When was the Red Cross founded? the affected areas 0.888888888884 When 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)
When was the Red Cross founded? such a request 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did put forward, such a request) -> such a request (3949ms)
When was the Red Cross founded? Vietnamese foundations 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Vietnamese Red Cross, as do, Vietnamese foundations) -> Vietnamese foundations (3952ms)
When was the Red Cross founded? 1870 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the British Red Cross, was established in, 1870) -> 1870 (3922ms)
When was the Red Cross founded? urban areas 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (American Red Cross shelters, were only opened in, urban areas) -> urban areas (3927ms)
When was the Red Cross founded? Devine 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (One American Red Cross shelter, was open overnight in, Devine) -> Devine (3945ms)
When was the Red Cross founded? Monday 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open on, $x) -> (The Lebanese Red Cross, opened on, Monday) -> Monday (3945ms)
When was the Red Cross founded? the Canine Blood Bank 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, too does, the Canine Blood Bank) -> the Canine Blood Bank (3959ms)
When was the Red Cross founded? protection 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross symbol, did provide, protection) -> protection (3931ms)
When was the Red Cross founded? an amazing job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, an amazing job) -> an amazing job (3936ms)
When was the Red Cross founded? Norman 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, also opened a shelter in, Norman) -> Norman (3961ms)
When was the Red Cross founded? 1948 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the first Red Cross shop, opened in, 1948) -> 1948 (3927ms)
When was the Red Cross founded? symbols 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (Red Cross and Red Crescent emblems, are protected, symbols) -> symbols (3941ms)
When was the Red Cross founded? 1914 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (The Australian Red Cross, was formed in, 1914) -> 1914 (3966ms)
When was the Red Cross founded? Europe 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross Movement, was being formed in, Europe) -> Europe (3966ms)
When was the Red Cross founded? May 1905 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross, was first formed in, May 1905) -> May 1905 (3968ms)
When was the Red Cross founded? Switzerland 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (The Red Cross, was formed in, Switzerland) -> Switzerland (3968ms)
When was the Red Cross founded? response 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross, was formed in, response) -> response (3966ms)
When was the Red Cross founded? September 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be create in, $x) -> (the American Red Cross, was created in, September) -> September (3966ms)
When was the Red Cross founded? 1876 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be create in, $x) -> (The Yugoslav Red Cross Society, was created in, 1876) -> 1876 (3966ms)
When was the Red Cross founded? 1923 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Belgian Red Cross, is later formed in, 1923) -> 1923 (3966ms)
When was the Red Cross founded? 1779 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (Red Cross Sullivan County, was formed in, 1779) -> 1779 (3966ms)
When was the Red Cross founded? antisemitism 0.44444444443799996 When was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a history of, antisemitism) -> antisemitism (3968ms)
When was the Red Cross founded? training nurses 0.44444444443799996 When 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)
When was the Red Cross founded? fraud 0.44444444443799996 When was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a well documented history of, fraud) -> fraud (3968ms)
When was the Red Cross founded? partnering 0.44444444443799996 When was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The American Red Cross, has a long history of, partnering) -> partnering (3968ms)
When was the Red Cross founded? the herd 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the herd, is being crossed to, Swedish Red and Montbeliard sires) -> the herd (3970ms)
When was the Red Cross founded? Ecclestone 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Ecclestone, is also crossing his fingers for, Red Bull) -> Ecclestone (3973ms)
When was the Red Cross founded? The sound 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The sound, is a cross between, Otis Redding) -> The sound (3975ms)
When was the Red Cross founded? each wing 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (each wing, is crossed by, a bright red band) -> each wing (3970ms)
When was the Red Cross founded? a coherent picture 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (a coherent picture, is the crossing of, the Red Sea) -> a coherent picture (3973ms)
When was the Red Cross founded? plant 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (plant, is a cross between, a red raspberry) -> plant (3970ms)
When was the Red Cross founded? scary phrases 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (scary phrases, were crossed out in, red pen) -> scary phrases (3972ms)
When was the Red Cross founded? Red sex-links 0.33333333332900006 When 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)
When was the Red Cross founded? a driver 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (a driver, be allowed to cross, red traffic lights) -> a driver (3972ms)
When was the Red Cross founded? Israel 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Israel, were crossing, the Red Sea) -> Israel (3977ms)
When was the Red Cross founded? Mario Lanza 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Mario Lanza, is a cross of, a huge dark red) -> Mario Lanza (3970ms)
When was the Red Cross founded? the words 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the words, are crossed out in, red) -> the words (3975ms)
When was the Red Cross founded? A white-eyed female fruit fly 0.33333333332900006 When 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)
When was the Red Cross founded? L33VG4 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (L33VG4, is crossed by, red mark) -> L33VG4 (3977ms)
When was the Red Cross founded? the praying women 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the praying women, are cross-hatched patterns in, red) -> the praying women (3972ms)
When was the Red Cross founded? the Canadian Pacific 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Canadian Pacific, was to cross, the Red River) -> the Canadian Pacific (3977ms)
When was the Red Cross founded? The orders 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The orders, have been crossed through in, red) -> The orders (3974ms)
When was the Red Cross founded? Fingers 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fingers, are crossed, that Red Lights) -> Fingers (3977ms)
When was the Red Cross founded? the second half 0.33333333332900006 When 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)
When was the Red Cross founded? The 7th 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The 7th, is the crossing of, the Red Sea) -> The 7th (3972ms)
When was the Red Cross founded? The rose color 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The rose color, is a cross between, red and pink) -> The rose color (3974ms)
When was the Red Cross founded? the Jews 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Jews, were crossing, the Red Sea) -> the Jews (3973ms)
When was the Red Cross founded? Fuji apples 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji apples, are a cross between, Red Delicious) -> Fuji apples (3975ms)
When was the Red Cross founded? Foxander 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Foxander, is a cross between, a British Red Fox) -> Foxander (3977ms)
When was the Red Cross founded? WorldCom and Williams 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (WorldCom and Williams, are now crossing, the Red River) -> WorldCom and Williams (3975ms)
When was the Red Cross founded? the Bible 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Bible, are the crossing of, the Red Sea) -> the Bible (3977ms)
When was the Red Cross founded? the Sooners 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Sooners, have been crossing, the Red River) -> the Sooners (3972ms)
When was the Red Cross founded? The marionberry 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The marionberry, is a cross between, a red raspberry) -> The marionberry (3977ms)
When was the Red Cross founded? the marriage 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the marriage, are crossing, each other?s red lights) -> the marriage (3970ms)
When was the Red Cross founded? PB 111 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (PB 111, is a cross between, the Cameroon Red Dwarf) -> PB 111 (3972ms)
When was the Red Cross founded? Fordo 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fordo, is the crossing of, a red line) -> Fordo (3970ms)
When was the Red Cross founded? Fuji Fuji apples 0.33333333332900006 When 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)
When was the Red Cross founded? the flight 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the flight, was crossing, the red rock cliffs west) -> the flight (3975ms)
When was the Red Cross founded? The Johnson cattle 0.33333333332900006 When 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)
When was the Red Cross founded? The river 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The river, is crossed by, a picturesque arched red bridge) -> The river (3977ms)
When was the Red Cross founded? Blacks 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Blacks, are a cross between, a Rhode Island Red) -> Blacks (3970ms)
When was the Red Cross founded? Syria 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Syria, is crossing, previous red lines) -> Syria (3973ms)
When was the Red Cross founded? the index 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the index, are all crossed in, red crayon) -> the index (3975ms)
When was the Red Cross founded? the most successful 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the most successful, is the cross between, red and white) -> the most successful (3973ms)
When was the Red Cross founded? 23ft , 2gal This variety 0.33333333332900006 When 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)
When was the Red Cross founded? the Hebrews and their God 0.33333333332900006 When 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)
When was the Red Cross founded? the sync icon 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the sync icon, will be crossed by, red line) -> the sync icon (3973ms)
When was the Red Cross founded? the original elongated track 0.33333333332900006 When 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)
When was the Red Cross founded? The second event 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The second event, is the crossing of, the Red Sea) -> The second event (3972ms)
When was the Red Cross founded? the loganberry 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the loganberry, is a cross between, a red raspberry) -> the loganberry (3973ms)
When was the Red Cross founded? the mountains 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the mountains, was crossed by, a red pencil) -> the mountains (3975ms)
When was the Red Cross founded? the army 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the army, is crossing, the Red Sea) -> the army (3977ms)
When was the Red Cross founded? Marquis 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Marquis, is a cross between, Red Fife and Hard Red Calcutta) -> Marquis (3975ms)
When was the Red Cross founded? the highpoint 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the highpoint, is the crossing of, the Red Sea) -> the highpoint (3973ms)
When was the Red Cross founded? Sunvalley 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Sunvalley, is a cross between, Red Sunset) -> Sunvalley (3977ms)
When was the Red Cross founded? Fuji 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji, is a cross between, a Red Delicious) -> Fuji (3972ms)
When was the Red Cross founded? the address 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the address, was crossed out with, a red crayon) -> the address (3974ms)
When was the Red Cross founded? a French breed 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (a French breed, is a cross between, Rhode Island Red) -> a French breed (3970ms)
When was the Red Cross founded? The Fuji apple 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The Fuji apple, is a cross between, a Red Delicious) -> The Fuji apple (3972ms)
When was the Red Cross founded? truth and error 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (truth and error, is the crossing of, the Red Sea) -> truth and error (3973ms)
When was the Red Cross founded? international terrorism 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (international terrorism, was crossing, red lines) -> international terrorism (3970ms)
When was the Red Cross founded? the word ?commissioner ? 0.33333333332900006 When 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)
When was the Red Cross founded? CA 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (CA, was crossed out with, a red X) -> CA (3973ms)
When was the Red Cross founded? Arlet 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Arlet, is a cross of, Golden Delicious and Ida Red) -> Arlet (3972ms)
When was the Red Cross founded? Bnai Yisrael 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Bnai Yisrael, were crossing, the Red Sea) -> Bnai Yisrael (3970ms)
When was the Red Cross founded? the pedestrian 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the pedestrian, was crossing against, a red light) -> the pedestrian (3975ms)
When was the Red Cross founded? Yorkshire terriers 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Yorkshire terriers, were crossed to produce, a small , red) -> Yorkshire terriers (3973ms)
When was the Red Cross founded? a Muppet , I?d 0.33333333332900006 When 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)
When was the Red Cross founded? rectangle 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (rectangle, is tan cross with, red) -> rectangle (3973ms)
When was the Red Cross founded? Dine For', 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Dine For',, is a cross between, red and pink) -> Dine For', (3975ms)
When was the Red Cross founded? fingers 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (fingers, crossed I?ll be, bright red) -> fingers (3970ms)
When was the Red Cross founded? the Fuji 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Fuji, is a cross between, a Red Delicious) -> the Fuji (3970ms)
When was the Red Cross founded? refusal 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (refusal, is crossing, red lines) -> refusal (3972ms)
When was the Red Cross founded? the Israelites 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Israelites, were crossing, the Red Sea) -> the Israelites (3977ms)
When was the Red Cross founded? ?Grove Farm ? 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (?Grove Farm ?, was crossed with, ?Kohala Red?) -> ?Grove Farm ? (3975ms)
When was the Red Cross founded? the Swiss flag 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Swiss flag, is a white cross on, red) -> the Swiss flag (3977ms)
When was the Red Cross founded? the Jordan River 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Jordan River, is like crossing, the Red Sea) -> the Jordan River (3972ms)
When was the Red Cross founded? any RBC branch -0.0 When 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)
Who is the president of Stanford University? The author 1.5555555555500002 Who 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)
Who is the president of Stanford University? Jordan 1.5555555555500002 Who is the president of Stanford University? -> $x: ($x, be first president of, stanford university) -> (Jordan, was the first President of, Stanford University) -> Jordan (1114ms)
Who is the president of Stanford University? Ira 1.444444444441 Who is the president of Stanford University? -> $x: ($x, leader, stanford university) -> (Ira, is also an active leader at, Stanford University) -> Ira (1114ms)
Who is the president of Stanford University? The Watson Papers 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (The Watson Papers, may be found at, Stanford University) -> The Watson Papers (1114ms)
Who is the president of Stanford University? Google 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Google, found at, Stanford University) -> Google (1179ms)
Who is the president of Stanford University? 18:48 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (18:48, Find, a Faculty Member ? Stanford University) -> 18:48 (1114ms)
Who is the president of Stanford University? Linn 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Linn, found a study by, Stanford University) -> Linn (1227ms)
Who is the president of Stanford University? Ngai?s work 1.444444444439 Who 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)
Who is the president of Stanford University? different teacher resources 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (different teacher resources, found at, Stanford University) -> different teacher resources (1114ms)
Who is the president of Stanford University? Romney 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Romney, found, stanford university) -> Romney (1179ms)
Who is the president of Stanford University? Hakeem 1.444444444439 Who is the president of Stanford University? -> $x: ($x, first start, stanford university) -> (Hakeem, first started graduate school at, Stanford University) -> Hakeem (1227ms)
Who is the president of Stanford University? help 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (help, found, Stanford University) -> help (1179ms)
Who is the president of Stanford University? the Leland surname 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (the Leland surname, would found, Stanford University) -> the Leland surname (1114ms)
Who is the president of Stanford University? URL 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (URL, Find, a Faculty Member ? Stanford University) -> URL (1179ms)
Who is the president of Stanford University? information 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (information, can be found at, Stanford University) -> information (1227ms)
Who is the president of Stanford University? results 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (results, find information about, the stanford university website) -> results (1179ms)
Who is the president of Stanford University? the Matiases 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (the Matiases, found a short-stay home near, Stanford University) -> the Matiases (1179ms)
Who is the president of Stanford University? 18:47 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (18:47, Find, a Faculty Member ? Stanford University) -> 18:47 (1114ms)
Who is the president of Stanford University? Gerhard Casper 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Gerhard Casper, is president emeritus of, Stanford University) -> Gerhard Casper (1227ms)
Who is the president of Stanford University? Casper 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Casper, was the president of, Stanford University) -> Casper (1245ms)
Who is the president of Stanford University? Hennessy 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Hennessy, is President of, Stanford University) -> Hennessy (1245ms)
Who is the president of Stanford University? Donald Kennedy 1.4444444444380002 Who 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)
Who is the president of Stanford University? Greg 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Greg, is President of, Stanford University DAPER Investment Fund) -> Greg (1245ms)
Who is the president of Stanford University? John Hennessy 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (John Hennessy, is now President of, Stanford University) -> John Hennessy (1301ms)
Who is the president of Stanford University? David Starr Jordan 1.4444444444380002 Who 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)
Who is the president of Stanford University? Kennedy 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Kennedy, is former President of, Stanford University President) -> Kennedy (1245ms)
Who is the president of Stanford University? Richard W. Lyman 1.4444444444380002 Who 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)
Who is the president of Stanford University? the founder 1.4444444444380002 Who 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)
Who is the president of Stanford University? 1925 Oliphant 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (1925 Oliphant, was appointed a lecturer at, Stanford university) -> 1925 Oliphant (1301ms)
Who is the president of Stanford University? Bergman 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (Bergman, was appointed to, Stanford University) -> Bergman (1301ms)
Who is the president of Stanford University? The Chair 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (The Chair, is formally appointed to, Stanford University) -> The Chair (1301ms)
Who is the president of Stanford University? the University 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (the University, is formally appointed to, Stanford University) -> the University (1301ms)
Who is the president of Stanford University? Joe Edelheit Ross -0.7777777777789999 Who 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)
Who is the president of Stanford University? a graduate -0.7777777777789999 Who 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)
Who is the president of Stanford University? Order -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Order, was President of, the Stanford Law Review) -> Order (1301ms)
Who is the president of Stanford University? Banks -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Banks, was a vice president of, Stanford Consulting Group Inc.) -> Banks (1302ms)
Who is the president of Stanford University? 1999 Mr. Stanford -0.7777777777789999 Who 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)
Who is the president of Stanford University? Mr. Wilkins -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Mr. Wilkins, was President of, the Stanford Golf Club) -> Mr. Wilkins (1302ms)
How long is human gestation? 260 days 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (260 days, is also the length of, human gestation) -> 260 days (841ms)
How long is human gestation? Black women 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (Black women, were length of, gestation) -> Black women (841ms)
How long is human gestation? a baby 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (a baby, is its own normal length of, gestation) -> a baby (841ms)
How long is human gestation? abortion 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (abortion, are the length of, gestation) -> abortion (841ms)
How long is human gestation? example 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (example, only is the length of, gestation) -> example (841ms)
How long is human gestation? Inversely CYTOTEC 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (Inversely CYTOTEC, is just an average length of, gestation) -> Inversely CYTOTEC (842ms)
How long is human gestation? The Tiree Master Plan 1.777777777771 How 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)
How long is human gestation? the whole project 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (the whole project, has been a long time in, gestation) -> the whole project (1018ms)
How long is human gestation? 4.1.1 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (4.1.1, has been a long while in, the gestation) -> 4.1.1 (1018ms)
How long is human gestation? MD 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (MD, long was, the gestation) -> MD (1018ms)
How long is human gestation? A problem 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (A problem, has been long in, gestation) -> A problem (1018ms)
How long is human gestation? A Darker Music 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (A Darker Music, has been a long time in, gestation) -> A Darker Music (1018ms)
How long is human gestation? the Su-27IB 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (the Su-27IB, has been long in, the gestation) -> the Su-27IB (1018ms)
How long is human gestation? OBI 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (OBI, has been a long time in, gestation) -> OBI (1018ms)
How long is human gestation? The Dark Mountain Project 1.777777777771 How 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)
How long is human gestation? a problem 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (a problem, has been very long in, gestation) -> a problem (1018ms)
How long is human gestation? The Carousel 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (The Carousel, long was, the gestation period) -> The Carousel (1018ms)
How long is human gestation? ?The Finkler Question? 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (?The Finkler Question?, was a long time in, gestation) -> ?The Finkler Question? (1018ms)
How long is human gestation? Wenders 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (Wenders, had been long in, the gestation) -> Wenders (841ms)
How long is human gestation? Chants 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (Chants, was a long time in, the gestation) -> Chants (1018ms)
How long is human gestation? ?This huge book 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (?This huge book, has been a long time in, gestation) -> ?This huge book (841ms)
How long is human gestation? onset 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (onset, was relatively long compared to, gestation time) -> onset (1018ms)
How many types of human blood are there? plasmacytes 0.8888888888870001 How many types of human blood are there? -> $x: ($x, be different type of, blood) -> (plasmacytes, are different types of, white blood cells) -> plasmacytes (2551ms)
How many types of human blood are there? the disease 0.8888888888870001 How 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)
How many types of human blood are there? Blood and lymph tissue 0.8888888888870001 How 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)
How many types of human blood are there? Hairy cell leukemia 0.5555555555459999 How 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)
How many types of human blood are there? the platelet 0.5555555555459999 How 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)
How many types of human blood are there? Pheresis 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Pheresis, is a type of, blood donation) -> Pheresis (3358ms)
How many types of human blood are there? Multiple Myeloma Multiple myeloma 0.5555555555459999 How 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)
How many types of human blood are there? A venous thrombosis 0.5555555555459999 How 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)
How many types of human blood are there? The laver 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (The laver, was a type of, the Blood) -> The laver (6080ms)
How many types of human blood are there? arteries 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (arteries, are a type of, blood vessel) -> arteries (5879ms)
How many types of human blood are there? the plasma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the plasma, are three types of, blood cells) -> the plasma (6080ms)
How many types of human blood are there? Lymphoma Lymphoma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lymphoma Lymphoma, is a type of, blood cancer) -> Lymphoma Lymphoma (6770ms)
How many types of human blood are there? blood type O 0.5555555555459999 How 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)
How many types of human blood are there? Triglyceride 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Triglyceride, is another type of, blood fat) -> Triglyceride (3864ms)
How many types of human blood are there? every Circle 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (every Circle, is a type of, blood magic) -> every Circle (3864ms)
How many types of human blood are there? Leukemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Leukemia, is a type of, blood cancer) -> Leukemia (5879ms)
How many types of human blood are there? A platelet 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A platelet, is a type of, blood cell) -> A platelet (5879ms)
How many types of human blood are there? the Passover lamb 0.5555555555459999 How 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)
How many types of human blood are there? A PSA 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A PSA, is type of, blood test) -> A PSA (6807ms)
How many types of human blood are there? Triglycerides 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Triglycerides, are a type of, blood fat) -> Triglycerides (6807ms)
How many types of human blood are there? Systolic and diastolic 0.5555555555459999 How 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)
How many types of human blood are there? the Science Guy 0.5555555555459999 How 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)
How many types of human blood are there? Lymphoma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lymphoma, is a type of, blood cancer) -> Lymphoma (6079ms)
How many types of human blood are there? death 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (death, was some type of, blood disorder) -> death (6771ms)
How many types of human blood are there? Meningococcal septicaemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Meningococcal septicaemia, is a type of, blood poisoning) -> Meningococcal septicaemia (6771ms)
How many types of human blood are there? Platelets 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Platelets, are a specialized type of, blood cell) -> Platelets (6770ms)
How many types of human blood are there? platelets 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (platelets, is a type of, blood cell) -> platelets (5879ms)
How many types of human blood are there? Exodus 12 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Exodus 12, is a type of, the blood) -> Exodus 12 (6807ms)
How many types of human blood are there? the unblemished lamb 0.5555555555459999 How 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)
How many types of human blood are there? cholesterol and triglycerides 0.5555555555459999 How 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)
How many types of human blood are there? Arteries 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Arteries, are a type of, blood vessel) -> Arteries (6807ms)
How many types of human blood are there? Polycythaemia vera 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Polycythaemia vera, is a type of, blood disorder) -> Polycythaemia vera (6079ms)
How many types of human blood are there? Acute leukemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Acute leukemia, is a type of, blood cancer) -> Acute leukemia (6079ms)
How many types of human blood are there? PSA tests 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (PSA tests, are a type of, blood test) -> PSA tests (3864ms)
How many types of human blood are there? Multiple myeloma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Multiple myeloma, is a type of, blood cancer) -> Multiple myeloma (6080ms)
How many types of human blood are there? Veins Veins 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Veins Veins, are the type of, blood vessel) -> Veins Veins (6807ms)
How many types of human blood are there? the type AB 0.5555555555459999 How 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)
How many types of human blood are there? Lamb 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lamb, is a type of, the Blood) -> Lamb (6771ms)
How many types of human blood are there? A full blood count 0.5555555555459999 How 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)
How many types of human blood are there? G8 Countries Leukemia 0.5555555555459999 How 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)
How many types of human blood are there? a recipient 0.5555555555459999 How 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)
How many types of human blood are there? A glucose test 0.5555555555459999 How 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)
How many types of human blood are there? the possibilities 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the possibilities, are new types of, blood pressure) -> the possibilities (3358ms)
How many types of human blood are there? subchorionic hematoma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (subchorionic hematoma, is a type of, blood clot) -> subchorionic hematoma (3358ms)
How many types of human blood are there? A leukocyte 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A leukocyte, is a type of, blood cell) -> A leukocyte (2551ms)
How many types of human blood are there? Stem cells 0.5555555555459999 How 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)
How many types of human blood are there? Monocytes 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Monocytes, are type of, blood cells) -> Monocytes (2551ms)
How many types of human blood are there? Thalessemia intermedia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Thalessemia intermedia, is another type of, blood disorder) -> Thalessemia intermedia (3358ms)
How many types of human blood are there? the abnormal cells 0.5555555555459999 How 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)
How many types of human blood are there? bleeding Platelets 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (bleeding Platelets, are a type of, blood cell) -> bleeding Platelets (3864ms)
How many types of human blood are there? an Austrian , 0.22222222222 How many types of human blood are there? -> $x: ($x, type, human blood) -> (an Austrian ,, discovered different types of, human blood) -> an Austrian , (7551ms)
How many types of human blood are there? certain markers 0.111111111111 How many types of human blood are there? -> $x: (human blood, be type, $x) -> (Human blood, is typed by, certain markers) -> certain markers (7551ms)
How many types of human blood are there? biological cell 0.111111111111 How 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)
How many types of human blood are there? low blood pressure 0.11111111111099997 How 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)
How many types of human blood are there? shingles 0.11111111111099997 How many types of human blood are there? -> $x: ($x, be two type of, blood) -> (shingles, are two types of, white blood cells) -> shingles (7611ms)
How many types of human blood are there? neutrophils and lymphocytes 0.11111111111099997 How 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)
How many types of human blood are there? Thick Artificial Blood -1.0000056338554941E-12 How 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)
How many types of human blood are there? Liquid Artificial Blood -1.0000056338554941E-12 How 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)
How many types of human blood are there? Sirolimus -1.0000056338554941E-12 How many types of human blood are there? -> $x: ($x, major in, human blood) -> (Sirolimus, is the major component in, human whole blood) -> Sirolimus (7930ms)
How many types of human blood are there? Blood Energy Potion 48 -1.0000056338554941E-12 How 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)
How many types of human blood are there? zeaxanthin -1.0000056338554941E-12 How many types of human blood are there? -> $x: ($x, major in, human blood) -> (zeaxanthin, are major carotenoids in, human blood and tissues) -> zeaxanthin (7930ms)
How many types of human blood are there? only a few -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (only a few, have the same type of, blood) -> only a few (7978ms)
How many types of human blood are there? a Gujarati -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (a Gujarati, had a similar type of, blood) -> a Gujarati (7978ms)
How many types of human blood are there? B rh+ -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (B rh+, Type, Blood Bank) -> B rh+ (7978ms)
How many types of human blood are there? O -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (O, Type, Blood Type) -> O (8052ms)
How many types of human blood are there? Gang -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Gang, Criminal organizations of this type, Bloods) -> Gang (8081ms)
How many types of human blood are there? the gentleman -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (the gentleman, had a rare type of, blood) -> the gentleman (7930ms)
How many types of human blood are there? The children -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (The children, have two types of, blood) -> The children (8052ms)
How many types of human blood are there? A -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (A, Type, Blood Type) -> A (8062ms)
How many types of human blood are there? Schema staging -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Schema staging, Types, Blood type) -> Schema staging (7930ms)
How many types of human blood are there? AB -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (AB, Type, Blood Type) -> AB (8072ms)
How many types of human blood are there? B -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (B, Type, Blood type) -> B (8072ms)
How many types of human blood are there? Lapointe -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Lapointe, has Type, A blood) -> Lapointe (8081ms)
How many types of human blood are there? Blood -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Blood, Types, Blood Type) -> Blood (8052ms)
How many types of human blood are there? I?ve -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (I?ve, got a rare type of, blood) -> I?ve (8072ms)
How many types of human blood are there? O- blood -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (O- blood, can only receive this type of, blood) -> O- blood (8072ms)
How many types of human blood are there? the class -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (the class, Type, A Blood) -> the class (8052ms)
How many types of human blood are there? Sickle Cell patients -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Sickle Cell patients, need this special type of, blood) -> Sickle Cell patients (8052ms)
How many types of human blood are there? HOSPITAL INFORMATION SYSTEM -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (HOSPITAL INFORMATION SYSTEM, Types, Blood Bank) -> HOSPITAL INFORMATION SYSTEM (8072ms)
How many types of human blood are there? Kerry Keck -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Kerry Keck, has Type, A blood) -> Kerry Keck (8052ms)
How many types of human blood are there? ?the mother and baby -2.000039023286604E-12 How 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)
How many types of human blood are there? a horse -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (a horse, typed, blood) -> a horse (8062ms)
How many types of human blood are there? An 18-year-old man -2.000039023286604E-12 How 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)
How many types of human blood are there? every 1,000 -2.000039023286604E-12 How 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)
How many types of human blood are there? each parent -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (each parent, influences the type of, blood) -> each parent (8062ms)
How many types of human blood are there? local residents -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (local residents, need specific types of, blood) -> local residents (8052ms)
How many types of human blood are there? The baby -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (The baby, may have the type of, blood) -> The baby (8052ms)
How many types of human blood are there? people with -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (people with, type, A blood) -> people with (7978ms)
How many types of human blood are there? every thousand -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (every thousand, will have this specific type of, blood) -> every thousand (8062ms)
How many types of human blood are there? the test -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (the test, actually picks up different TYPES of, blood) -> the test (8072ms)
How many types of human blood are there? A Vulcan/Human -2.000039023286604E-12 How 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)
How many types of human blood are there? antibodies against -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (antibodies against, type, A blood) -> antibodies against (8052ms)
How many types of human blood are there? heart disease -0.11111111111100003 How 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)
How many types of human blood are there? connective tissue -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is considered a type of, connective tissue) -> connective tissue (8132ms)
How many types of human blood are there? sinusoids -0.11111111111100003 How many types of human blood are there? -> $x: ($x, be various type of, blood) -> (sinusoids, are various types of, immature blood cells) -> sinusoids (8116ms)
How many types of human blood are there? the outward , physical ceremony -0.11111111111100003 How 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)
How many types of human blood are there? lymphocytes -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (The blood, has three types of, lymphocytes) -> lymphocytes (8090ms)
How many types of human blood are there? donor program -0.11111111111100003 How 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)
How many types of human blood are there? rank or leadership position -0.11111111111100003 How 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)
How many types of human blood are there? SHRIMP -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (blood_worms, is a type of, SHRIMP) -> SHRIMP (8107ms)
How many types of human blood are there? the suffering aeon -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (blood, was a type of, the suffering aeon) -> the suffering aeon (8098ms)
How many types of human blood are there? DNA specific -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is often typed due to, DNA specific) -> DNA specific (8081ms)
How many types of human blood are there? fuel -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is a type of, fuel) -> fuel (8116ms)
How many types of human blood are there? cells -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (Blood, has several different types of, cells) -> cells (8140ms)
How many types of human blood are there? cancer -0.11111111111100003 How 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)
How many types of human blood are there? toxic chemicals -0.11111111111100003 How 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)
How many types of human blood are there? Venules and arterioles -0.22222222222200003 How 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)
How many types of human blood are there? fearless warriors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (fearless warriors, practiced, blood feuds) -> fearless warriors (8171ms)
How many types of human blood are there? a little salt -0.22222222222300003 How 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)
How many types of human blood are there? African forests -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (African forests, is used to cure, high blood pressure) -> African forests (8156ms)
How many types of human blood are there? Whey -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Whey, has a major role in, red blood cell production) -> Whey (8203ms)
How many types of human blood are there? a newborn sibling -0.22222222222300003 How 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)
How many types of human blood are there? subtle energy centers -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (subtle energy centers, cure, High Blood Pressure) -> subtle energy centers (8148ms)
How many types of human blood are there? the chief ones -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (the chief ones, was the practice of, blood feuds) -> the chief ones (8140ms)
How many types of human blood are there? Albumin -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Albumin, is the major protein in, the blood) -> Albumin (8178ms)
How many types of human blood are there? strawberries -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (strawberries, may play a major role in lowering, blood pressure) -> strawberries (8148ms)
How many types of human blood are there? a drug -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a drug, to cure, high blood pressure) -> a drug (8171ms)
How many types of human blood are there? the best -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the best, finally cure, high blood pressure) -> the best (8156ms)
How many types of human blood are there? transplantation -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (transplantation, cure, blood cancers) -> transplantation (8140ms)
How many types of human blood are there? stress -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (stress, are a major factor in, high blood pressure) -> stress (8163ms)
How many types of human blood are there? Magnesium deficiency -0.22222222222300003 How 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)
How many types of human blood are there? Surgical treatment -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Surgical treatment, 'can cure, high blood pressure) -> Surgical treatment (8192ms)
How many types of human blood are there? Theodism -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Theodism, regularly practices, blood sacrifice) -> Theodism (8209ms)
How many types of human blood are there? a medicine -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a medicine, to cure, high blood pressure) -> a medicine (8210ms)
How many types of human blood are there? Stress -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Stress, is a major factor in, high blood pressure) -> Stress (8164ms)
How many types of human blood are there? money -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (money, eventually cure, blood cancers) -> money (8220ms)
How many types of human blood are there? Journalism -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Journalism, is practiced by, flesh-and-blood people) -> Journalism (8192ms)
How many types of human blood are there? psychiatrists -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (psychiatrists, cure, blood drinking) -> psychiatrists (8163ms)
How many types of human blood are there? Mingle -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Mingle, cure, your blood thirsty cravings) -> Mingle (8220ms)
How many types of human blood are there? Vitamin C -0.22222222222300003 How 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)
How many types of human blood are there? caffeine -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (caffeine, causes major swings in, blood sugar) -> caffeine (8140ms)
How many types of human blood are there? dietary sugar -0.22222222222300003 How 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)
How many types of human blood are there? the sodium ion -0.22222222222300003 How 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)
How many types of human blood are there? a poison -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a poison, can only be cured by, the blood) -> a poison (8198ms)
How many types of human blood are there? Weight -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Weight, plays a major role in developing, high blood pressure) -> Weight (8140ms)
How many types of human blood are there? Dr Karsch -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Dr Karsch, cured, his own chronic blood disease) -> Dr Karsch (8148ms)
How many types of human blood are there? Israel -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Israel, had the major hand in, that blood libel) -> Israel (8203ms)
How many types of human blood are there? Dr Karsach -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Dr Karsach, cured, his own chronic blood disease) -> Dr Karsach (8178ms)
How many types of human blood are there? Lisinopril -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Lisinopril, is best used for curing, high blood pressure) -> Lisinopril (8209ms)
How many types of human blood are there? Hemoglobin -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Hemoglobin, is the major substance in, a red blood cells) -> Hemoglobin (8178ms)
How many types of human blood are there? the Leukemia and Lymphoma Society -0.22222222222300003 How 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)
How many types of human blood are there? the herb -0.22222222222300003 How 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)
How many types of human blood are there? Fosamprenavir -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Fosamprenavir, causes major increases in, blood levels) -> Fosamprenavir (8140ms)
How many types of human blood are there? the mainstream medical doctors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (the mainstream medical doctors, practiced, blood letting) -> the mainstream medical doctors (8163ms)
How many types of human blood are there? no consensus -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (no consensus, is helpful for curing, high blood pressure) -> no consensus (8140ms)
How many types of human blood are there? Human beings -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Human beings, have practiced, blood-drinking) -> Human beings (8185ms)
How many types of human blood are there? researchers -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (researchers, are trying to cure, high blood pressure) -> researchers (8192ms)
How many types of human blood are there? Barbers -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Barbers, also practiced, dentistry and blood-letting) -> Barbers (8178ms)
How many types of human blood are there? Calcium carbonicum 6X -0.22222222222300003 How 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)
How many types of human blood are there? Bloodstone -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Bloodstone, to cure, blood poisoning) -> Bloodstone (8203ms)
How many types of human blood are there? A six-year-old boy -0.22222222222300003 How 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)
How many types of human blood are there? phlebotomy -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (phlebotomy, was the practice of, ?blood-letting?) -> phlebotomy (8163ms)
How many types of human blood are there? vitamin B12 -0.22222222222300003 How 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)
How many types of human blood are there? leukemia patient -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (leukemia patient, cured with, cord blood stem cells) -> leukemia patient (8203ms)
How many types of human blood are there? BMT -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (BMT, can cure, both cancerous and non-cancerous blood disorders) -> BMT (8171ms)
How many types of human blood are there? Rev. Walker -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Rev. Walker, cured, his blood sugar) -> Rev. Walker (8220ms)
How many types of human blood are there? symptoms -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (symptoms, cure, diet treatment and high blood) -> symptoms (8156ms)
How many types of human blood are there? cold cereal -0.22222222222300003 How 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)
How many types of human blood are there? society -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (society, was the practice of giving, blood) -> society (8171ms)
How many types of human blood are there? The Leukemia & Lymphoma Society -0.22222222222300003 How 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)
How many types of human blood are there? breakfast bars -0.22222222222300003 How 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)
How many types of human blood are there? A bone marrow transplant -0.22222222222300003 How 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)
How many types of human blood are there? Sarah -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Sarah, is a major player in, ANGELS' BLOOD) -> Sarah (8215ms)
How many types of human blood are there? Water -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Water, helps to cure, high blood pressure) -> Water (8203ms)
How many types of human blood are there? Christians -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Christians, once practiced, the same blood-letting ritual) -> Christians (8192ms)
How many types of human blood are there? Mona Vie -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Mona Vie, cured, their high blood pressure) -> Mona Vie (8185ms)
How many types of human blood are there? Salt -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Salt, is a major factor in, high blood pressure) -> Salt (8215ms)
How many types of human blood are there? Natural remedies -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Natural remedies, always cure, high blood pressure) -> Natural remedies (8208ms)
How many types of human blood are there? Pastor Archer -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Pastor Archer, was cured of extremely, high blood pressure) -> Pastor Archer (8198ms)
How many types of human blood are there? Ervil LeBaron -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Ervil LeBaron, may have ended the practice of, blood atonement) -> Ervil LeBaron (8156ms)
How many types of human blood are there? Khady -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Khady, has been practicing taking, my blood) -> Khady (8209ms)
How many types of human blood are there? ACE secretion -0.22222222222300003 How 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)
How many types of human blood are there? ginger extract -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (ginger extract, to cure, any blood clot and digestive problems) -> ginger extract (8198ms)
How many types of human blood are there? a Doktor -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a Doktor, discovered a cure for, High Blood Pressure) -> a Doktor (8178ms)
How many types of human blood are there? No medicine -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (No medicine, can cure, high blood pressure) -> No medicine (8148ms)
How many types of human blood are there? the globe -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the globe, could cure the artificial disease in, his blood) -> the globe (8185ms)
How many types of human blood are there? America -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (America, is practiced as, blood sport) -> America (8185ms)
How many types of human blood are there? the blood -0.22222222222300003 How 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)
How many types of human blood are there? the Arab world -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the Arab world, be cured of, its blood-lust) -> the Arab world (8185ms)
How many types of human blood are there? rejuvenation -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (rejuvenation, cured, red blood) -> rejuvenation (8220ms)
How many types of human blood are there? Vitamin K -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Vitamin K, plays a major role in, blood clotting) -> Vitamin K (8148ms)
How many types of human blood are there? the liver -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (the liver, plays a major role in, blood coagulation) -> the liver (8164ms)
How many types of human blood are there? traditional Chinese doctors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (traditional Chinese doctors, cure, all blood related problems) -> traditional Chinese doctors (8215ms)
How many types of human blood are there? jellyfish -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (jellyfish, can cure, high blood pressure) -> jellyfish (8215ms)
How many types of human blood are there? the acai berry -0.22222222222300003 How 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)
How many types of human blood are there? Diet -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Diet, is a major factor in controlling, blood sugar levels) -> Diet (8192ms)
How many types of human blood are there? the Maya -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (the Maya, practiced, blood sacrifice) -> the Maya (8156ms)
How many types of human blood are there? Lucy Lucy -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Lucy Lucy, was cured with, Porter?s silver-laden blood) -> Lucy Lucy (8209ms)
How many types of human blood are there? vitamin B 12 -0.22222222222300003 How 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)
How many types of human blood are there? The kidneys -0.22222222222300003 How 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)
How many types of human blood are there? honey -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (honey, can cure, blood vomiting) -> honey (8171ms)
How many types of human blood are there? obesity -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (obesity, can cure, high blood pressure) -> obesity (8203ms)
How many types of human blood are there? diet -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (diet, plays a major role in lowering, high blood cholesterol) -> diet (8215ms)
How many types of human blood are there? Magnesium -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Magnesium, also plays a major role in regulating, blood pressure) -> Magnesium (8140ms)
How many types of human blood are there? risk -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (risk, are being cured for, high blood pressure) -> risk (8164ms)
How many types of human blood are there? Goldenseal -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Goldenseal, was used to cure, high blood pressure) -> Goldenseal (8215ms)
How many types of human blood are there? Students -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Students, will practice, extracting blood) -> Students (8163ms)
How many types of human blood are there? pressure -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (pressure, causes major variations in, blood pressure) -> pressure (8148ms)
How many types of human blood are there? Enchantment -0.22222222222300003 How many types of human blood are there? -> $x: ($x, type of, blood) -> (Enchantment, Card of this type, Exquisite Blood) -> Enchantment (8203ms)
How many types of human blood are there? a letter -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (a letter, criticized the practice of, blood libels) -> a letter (8192ms)
How many types of human blood are there? Pakistan -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Pakistan, cured, my high blood pressure) -> Pakistan (8156ms)
How many types of human blood are there? just a woman -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (just a woman, majored in, Blood) -> just a woman (8178ms)
How many types of human blood are there? The sweets -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (The sweets, are causing major fluctuations in, blood sugar) -> The sweets (8178ms)
How many types of human blood are there? diabetes -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (diabetes, will be cured of, the blood sugar disease) -> diabetes (8185ms)
How many types of human blood are there? hemoglobin -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (hemoglobin, is the major protein in, red blood cells) -> hemoglobin (8185ms)
How many types of human blood are there? They?re goal -0.22222222222300003 How 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)
How many types of human blood are there? a visitor -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a visitor, was cured of, a blood infection) -> a visitor (8209ms)
How many types of human blood are there? Aloe vera -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Aloe vera, cured, my high blood pressure) -> Aloe vera (8163ms)
How many types of human blood are there? Earth -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Earth, practiced, the darker blood-fueled arts) -> Earth (8209ms)
How many types of human blood are there? Alpha-1 antitrypsin -0.22222222222300003 How 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)
How many types of human blood are there? the LLS -0.22222222222300003 How 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)
How many types of human blood are there? decisive therapies -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (decisive therapies, cure, serious blood diseases) -> decisive therapies (8178ms)
How many types of human blood are there? Sodium -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Sodium, is the major electrolyte in, the blood) -> Sodium (8192ms)
How many types of human blood are there? genetic diseases and cancers -0.22222222222300003 How 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)
How many types of human blood are there? the narrowed artery -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the narrowed artery, even cure, the high blood pressure) -> the narrowed artery (8163ms)
How many types of human blood are there? carbohydrate -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (carbohydrate, plays a major role in, blood-glucose level) -> carbohydrate (8156ms)
How many types of human blood are there? ruby -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (ruby, was thought to cure, blood diseases) -> ruby (8140ms)
How many types of human blood are there? doctors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (doctors, cure by, letting blood) -> doctors (8215ms)
How many types of human blood are there? Patients -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Patients, are therefore cured of, the blood problem) -> Patients (8192ms)
How many types of human blood are there? Lozide -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Lozide, cannot cure, high blood pressure) -> Lozide (8192ms)
How many types of human blood are there? celery -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (celery, can cure, high blood pressure) -> celery (8215ms)
How many types of human blood are there? various articles -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (various articles, also helps to cure, low blood pressure) -> various articles (8209ms)
How many types of human blood are there? Turmeric -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Turmeric, is helpful in curing, high blood pressure) -> Turmeric (8198ms)
How many types of human blood are there? Functions and indications -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Functions and indications, cure, the high blood pressure) -> Functions and indications (8198ms)
How many types of human blood are there? more strain -0.22222222222300003 How 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)
How many types of human blood are there? Stresses -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Stresses, plays a major factor in, blood pressure) -> Stresses (8171ms)
How many types of human blood are there? Baltar -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Baltar, find a cure in, the blood) -> Baltar (8148ms)
How many types of human blood are there? every arrow-shot deer -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (every arrow-shot deer, practiced, blood-trailing skills) -> every arrow-shot deer (8209ms)
How many types of human blood are there? iron -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (iron, is a major mineral in, blood) -> iron (8178ms)
How many types of human blood are there? Relaxed environment -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Relaxed environment, cures, blood pressure) -> Relaxed environment (8198ms)
How many types of human blood are there? Phlebotomy -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Phlebotomy, is the practice of, drawing blood) -> Phlebotomy (8203ms)
How many types of human blood are there? an arrow -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (an arrow, can only be cured by, the blood) -> an arrow (8185ms)
How many types of human blood are there? Diabetes -0.333333333333 How 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)
How many types of human blood are there? Cowboy Bebop -0.333333333333 How 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)
How many types of human blood are there? ovarian cysts -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (ovarian cysts, are all examples of, Blood Stasis) -> ovarian cysts (8224ms)
How many types of human blood are there? women -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (women, is another example of, a blood rule) -> women (8220ms)
How many types of human blood are there? Mammals and birds -0.333333333333 How 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)
How many types of human blood are there? 2012 -0.333333333333 How 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)
How many types of human blood are there? The latter -0.333333333333 How 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)
How many types of human blood are there? tea -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (tea, are examples of, good non-prescription blood thinners) -> tea (8220ms)
How many types of human blood are there? a coconut -0.44444444445 How many types of human blood are there? -> $x: ($x, can substitute, human blood) -> (a coconut, can be substituted for, human blood) -> a coconut (8224ms)
How many types of human blood are there? the movie -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the movie, ?There will be, blood) -> the movie (8241ms)
How many types of human blood are there? a line -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (a line, There Will Be, Blood) -> a line (8245ms)
How many types of human blood are there? inadvertent honesty -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (inadvertent honesty, ?There is power in, blood) -> inadvertent honesty (8241ms)
How many types of human blood are there? dear God -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (dear God, is there, blood) -> dear God (8229ms)
How many types of human blood are there? lab -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (lab, was there to bring, blood) -> lab (8229ms)
How many types of human blood are there? knowledge regarding oil production -0.5555555555630001 How 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)
How many types of human blood are there? immersive atmospheric gameplay -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (immersive atmospheric gameplay, let there be, blood) -> immersive atmospheric gameplay (8241ms)
How many types of human blood are there? Daniel Day-Lewis em -0.5555555555630001 How 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)
How many types of human blood are there? Dr. Rizoli -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Dr. Rizoli, there?ll be, blood) -> Dr. Rizoli (8241ms)
How many types of human blood are there? the pillow -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the pillow, is there, blood) -> the pillow (8233ms)
How many types of human blood are there? Old Men, -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Old Men,, There Will Be, Blood) -> Old Men, (8237ms)
How many types of human blood are there? muckraker -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (muckraker, There Will Be, Blood) -> muckraker (8241ms)
How many types of human blood are there? the Muslim world -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the Muslim world, there are howling for, blood) -> the Muslim world (8224ms)
How many types of human blood are there? phrases -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (phrases, ?There will be, blood) -> phrases (8237ms)
How many types of human blood are there? the ground -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the ground, there is, blood) -> the ground (8245ms)
How many types of human blood are there? Old Men -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Old Men, There Will Be, Blood &) -> Old Men (8245ms)
How many types of human blood are there? the actors -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the actors, THERE WAS, BLOOD) -> the actors (8233ms)
How many types of human blood are there? Michael Clayton -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Michael Clayton, There Will Be, Blood) -> Michael Clayton (8237ms)
How many types of human blood are there? the words -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the words, there was, blood) -> the words (8241ms)
How many types of human blood are there? Paul Thomas Andersons new movie -0.5555555555630001 How 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)
How many types of human blood are there? Just caught Paul Thomas Anderson?s -0.5555555555630001 How 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)
How many types of human blood are there? The moose -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (The moose, there are out for, blood) -> The moose (8237ms)
How many types of human blood are there? theaters -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (theaters, was There Will Be, Blood) -> theaters (8245ms)
How many types of human blood are there? Jed Clampett -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Jed Clampett, There Will Be, Blood) -> Jed Clampett (8237ms)
How many types of human blood are there? Film Fight 2008 -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Film Fight 2008, is ? There Will Be, Blood) -> Film Fight 2008 (8233ms)
How many types of human blood are there? Hotel Rwanda, -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Hotel Rwanda,, There will be, blood) -> Hotel Rwanda, (8233ms)
How many types of human blood are there? Evidence -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Evidence, There Will Be, Blood) -> Evidence (8241ms)
How many types of human blood are there? colostrum -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (colostrum, there are in, blood) -> colostrum (8245ms)
How many types of human blood are there? Vicky Cristina Barcelona -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Vicky Cristina Barcelona, There Will Be, Blood) -> Vicky Cristina Barcelona (8237ms)
How many types of human blood are there? Number two -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Number two, was ?There will be, blood) -> Number two (8224ms)
How many types of human blood are there? the kid -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the kid, There Will Be, Blood) -> the kid (8224ms)
How many types of human blood are there? the film -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the film, ?There will be, blood?) -> the film (8229ms)
How many types of human blood are there? early years -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (early years, is there trace, blood) -> early years (8237ms)
How many types of human blood are there? the 2008 films -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the 2008 films, ?There Will be, Blood?) -> the 2008 films (8237ms)
How many types of human blood are there? razor sharp teeth -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (razor sharp teeth, are floating there in, blood) -> razor sharp teeth (8229ms)
How many types of human blood are there? one time -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (one time, there was, blood) -> one time (8229ms)
How many types of human blood are there? brush -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (brush, is there, blood) -> brush (8229ms)
How many types of human blood are there? FUN -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (FUN, is there is, blood) -> FUN (8233ms)
How many types of human blood are there? Atonement -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Atonement, There Will Be, Blood) -> Atonement (8224ms)
How many types of human blood are there? viewing -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (viewing, There Will Be, Blood) -> viewing (8233ms)
How many types of human blood are there? Trailer -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Trailer, There Will Be, Blood) -> Trailer (8237ms)
How many types of human blood are there? Paul Thomas Anderson -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Paul Thomas Anderson, There Will Be, Blood) -> Paul Thomas Anderson (8237ms)
How many types of human blood are there? art and download -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (art and download, There Wishes Be, Blood) -> art and download (8229ms)
How many types of human blood are there? Sanji...and -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Sanji...and, there appeared to be, blood) -> Sanji...and (8233ms)
How many types of human blood are there? Wherefore -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Wherefore, is there, blood) -> Wherefore (8241ms)
How many types of human blood are there? wounds -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (wounds, ?There was, blood) -> wounds (8229ms)
How many types of human blood are there? any revolution -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (any revolution, there promises to be, blood) -> any revolution (8237ms)
How many types of human blood are there? a bowel movement -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (a bowel movement, there was, blood) -> a bowel movement (8233ms)
How many types of human blood are there? Sallie Rios -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Sallie Rios, There was, blood) -> Sallie Rios (8233ms)
How many types of human blood are there? no-holds-barred hilarity -0.5555555555630001 How 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)
How many types of human blood are there? Depression Era -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Depression Era, There Will Be, Blood) -> Depression Era (8241ms)
How many types of human blood are there? the experimental drug -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the experimental drug, was there to get, blood) -> the experimental drug (8241ms)
How many types of human blood are there? no -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (no, There Will Be, Blood) -> no (8245ms)
How many types of human blood are there? Juno Atonement -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Juno Atonement, There Will Be, Blood) -> Juno Atonement (8241ms)
How many types of human blood are there? an entire toe -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (an entire toe, are there streaks of, blood) -> an entire toe (8245ms)
How many types of human blood are there? Daniel Day-Lewis ? performance -0.5555555555630001 How 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)
How many types of human blood are there? terms -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (terms, is There Will be, Blood) -> terms (8224ms)
How many types of human blood are there? WHYTHEFUCK -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (WHYTHEFUCK, is there, BLOOD) -> WHYTHEFUCK (8233ms)
How many types of human blood are there? Sure -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Sure, there was, blood) -> Sure (8233ms)
How many types of human blood are there? A parishioner -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (A parishioner, ?There was, blood) -> A parishioner (8224ms)
How many types of human blood are there? January 22 , 2008 Go -0.5555555555630001 How 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)
How many types of human blood are there? the head -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the head, ?there was, blood) -> the head (8229ms)
How many types of human blood are there? oh so fair , -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (oh so fair ,, is there, blood) -> oh so fair , (8237ms)
How many types of human blood are there? Niall Ferguson -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Niall Ferguson, :?There will be, blood) -> Niall Ferguson (8233ms)
How many types of human blood are there? 18-Jan-08 kirk and i -0.5555555555630001 How 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)
How many types of human blood are there? Nina -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Nina, was laying there with, blood) -> Nina (8237ms)
How many types of human blood are there? Anderson?s belongings -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Anderson?s belongings, there appeared to be, blood) -> Anderson?s belongings (8233ms)
How many types of human blood are there? bad news -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (bad news, There Will Be, Blood) -> bad news (8245ms)
How many types of human blood are there? 22-Jan-08 jonny greenwood?s score -0.5555555555630001 How 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)
How many types of human blood are there? Super -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Super, There Will Be, Blood) -> Super (8229ms)
How many types of human blood are there? Race -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Race, ?There Will be, Blood) -> Race (8245ms)
How many types of human blood are there? Paul Thomas Anderson?s Oscar?-nominated -0.5555555555630001 How 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)
How many types of human blood are there? Souichi -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Souichi, could react there was, blood) -> Souichi (8229ms)
How many types of human blood are there? the ground ad -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the ground ad, there was, blood) -> the ground ad (8245ms)
How many types of human blood are there? last year -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (last year, were There Will Be, Blood) -> last year (8229ms)
How many types of human blood are there? The sleeping room -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (The sleeping room, there are spots of, blood) -> The sleeping room (8224ms)
How many types of human blood are there? James -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (James, was there, blood) -> James (8241ms)
How many types of human blood are there? Atonement Juno -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Atonement Juno, There Will Be, Blood) -> Atonement Juno (8233ms)
How many types of human blood are there? a cinematic masterpiece and download -0.5555555555630001 How 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)
How many types of human blood are there? force and download -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (force and download, There Wishes Be, Blood) -> force and download (8224ms)
How many types of human blood are there? Daniel Day-Lewis -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Daniel Day-Lewis, There Will Be, Blood) -> Daniel Day-Lewis (8237ms)
How many types of human blood are there? blood group -0.66666666667 How 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)
How many types of human blood are there? mammary tissue -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (mammary tissue, consists only of, blood) -> mammary tissue (8257ms)
How many types of human blood are there? Any orange -0.666666666672 How 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)
How many types of human blood are there? Health checks -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Health checks, consist of, blood pressure) -> Health checks (8249ms)
How many types of human blood are there? the technique -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the technique, consisted of, blood test) -> the technique (8257ms)
How many types of human blood are there? the condition -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the condition, consists of removing, blood) -> the condition (8255ms)
How many types of human blood are there? health problems -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (health problems, consist of, poor blood flow) -> health problems (8252ms)
How many types of human blood are there? Chum -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Chum, consists of, fish parts and blood) -> Chum (8257ms)
How many types of human blood are there? Screening -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Screening, consists of, a simple blood test) -> Screening (8257ms)
How many types of human blood are there? The root canal -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The root canal, consists of, blood vessels) -> The root canal (8262ms)
How many types of human blood are there? hemochromatosis -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (hemochromatosis, consists of removing, blood) -> hemochromatosis (8252ms)
How many types of human blood are there? The menses or period -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The menses or period, consists of, blood) -> The menses or period (8252ms)
How many types of human blood are there? tissues -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (tissues, consists of, blood/ red blood cells) -> tissues (8259ms)
How many types of human blood are there? The meal -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The meal, consisted of, coagulated blood) -> The meal (8259ms)
How many types of human blood are there? HES solutions -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (HES solutions, can substitute, deficient blood volume) -> HES solutions (8245ms)
How many types of human blood are there? The Horde -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The Horde, consists of, Blood Elves) -> The Horde (8255ms)
How many types of human blood are there? The menstrual flow -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The menstrual flow, consists of, this blood) -> The menstrual flow (8259ms)
How many types of human blood are there? The cardiovascular system -0.666666666672 How 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)
How many types of human blood are there? a benign growth -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (a benign growth, consists of, small blood vessels) -> a benign growth (8255ms)
How many types of human blood are there? Such sacrifices -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Such sacrifices, consist of, the blood) -> Such sacrifices (8254ms)
How many types of human blood are there? the paint -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the paint, consisted of, animal blood) -> the paint (8249ms)
How many types of human blood are there? Serous fluid -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Serous fluid, consists of, blood plasma) -> Serous fluid (8257ms)
How many types of human blood are there? Stygmata -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Stygmata, consists of, liquid blood) -> Stygmata (8259ms)
How many types of human blood are there? The pus -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The pus, consists of, white blood cells) -> The pus (8259ms)
How many types of human blood are there? God -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (God, consists of, blood) -> God (8259ms)
How many types of human blood are there? the extracellular space -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the extracellular space, consists of, the blood vessels) -> the extracellular space (8252ms)
How many types of human blood are there? the English throne -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the English throne, consisted of, Vere blood) -> the English throne (8259ms)
How many types of human blood are there? the group -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the group, consisting of, blood) -> the group (8257ms)
How many types of human blood are there? The screening -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The screening, consists of, blood pressure) -> The screening (8262ms)
How many types of human blood are there? the percentage of -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the percentage of, consists of, red blood cells) -> the percentage of (8255ms)
How many types of human blood are there? Regular surveillance -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Regular surveillance, consists of, blood tests) -> Regular surveillance (8249ms)
How many types of human blood are there? bed bugs -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (bed bugs, consists of, blood) -> bed bugs (8252ms)
How many types of human blood are there? Food -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Food, consists of, digested blood) -> Food (8254ms)
How many types of human blood are there? Vitals signs -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Vitals signs, consist of, blood pressure) -> Vitals signs (8249ms)
How many types of human blood are there? the tooth -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the tooth, consists of, blood vessels) -> the tooth (8257ms)
How many types of human blood are there? the time -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the time, consisted of, blood letting) -> the time (8257ms)
How many types of human blood are there? Orthodox treatment -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Orthodox treatment, consists of, blood transfusions) -> Orthodox treatment (8255ms)
How many types of human blood are there? Metabolic Syndrome -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Metabolic Syndrome, consists of, high blood pressure) -> Metabolic Syndrome (8257ms)
How many types of human blood are there? the office -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the office, consisted of, blood tests) -> the office (8249ms)
How many types of human blood are there? The vertebrate circulatory system -0.666666666672 How 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)
How many types of human blood are there? the ECF -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the ECF, consists of, blood plasma) -> the ECF (8249ms)
How many types of human blood are there? East Africa -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (East Africa, consists largely of, blood) -> East Africa (8259ms)
How many types of human blood are there? the ear -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the ear, may consist of, blood) -> the ear (8252ms)
How many types of human blood are there? The B side -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The B side, consisted of, Bloods) -> The B side (8249ms)
How many types of human blood are there? The other component -0.666666666672 How 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)
How many types of human blood are there? The proportion of -0.666666666672 How 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)
How many types of human blood are there? The accumulated fluid -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The accumulated fluid, consists of, blood) -> The accumulated fluid (8254ms)
How many types of human blood are there? A positive control -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (A positive control, consists of, the blood) -> A positive control (8249ms)
How many types of human blood are there? Defective blood cells -0.666666666672 How 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)
How many types of human blood are there? Vital signs -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Vital signs, consist of, blood pressure) -> Vital signs (8252ms)
How many types of human blood are there? The standard test performed -0.666666666672 How 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)
How many types of human blood are there? Biological monitoring -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Biological monitoring, usually consists of, blood) -> Biological monitoring (8252ms)
How many types of human blood are there? Treatment -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Treatment, consists of, blood glucose) -> Treatment (8255ms)
How many types of human blood are there? The exam -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The exam, typically consists of, blood) -> The exam (8259ms)
How many types of human blood are there? vascular lesions -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (vascular lesions, consist of, blood vessels) -> vascular lesions (8255ms)
How many types of human blood are there? The pulp -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The pulp, consists of, nerves and blood vessels) -> The pulp (8255ms)
How many types of human blood are there? The red pulp -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The red pulp, consists of, blood vessels) -> The red pulp (8255ms)
How many types of human blood are there? the roots -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the roots, consist of, blood bile) -> the roots (8257ms)
How many types of human blood are there? aspirin -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (aspirin, can be substituted for, your blood thinners) -> aspirin (8249ms)
How many types of human blood are there? the endocrine system -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the endocrine system, consists of, the blood) -> the endocrine system (8257ms)
How many types of human blood are there? the spermatic cord -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the spermatic cord, consists of, blood vessels) -> the spermatic cord (8255ms)
How many types of human blood are there? A control group -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (A control group, consisted of, blood donors) -> A control group (8255ms)
How many types of human blood are there? a negative control -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (a negative control, consists of, the blood) -> a negative control (8252ms)
How many types of human blood are there? stools -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (stools, consist of, pure blood) -> stools (8249ms)
How many types of human blood are there? Incomplete blood cells -0.666666666672 How 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)
How many types of human blood are there? the skin -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the skin, consisting of, masses of blood vessels) -> the skin (8257ms)
How many types of human blood are there? The discharge -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The discharge, consists of, blood and cells) -> The discharge (8257ms)
How many types of human blood are there? gluten sensitivity/celiac sprue -0.666666666672 How 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)
How many types of human blood are there? Symptoms -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Symptoms, consist of, blood) -> Symptoms (8252ms)
How many types of human blood are there? plasma -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (plasma, can be substituted for, whole blood transfusions) -> plasma (8259ms)
How many types of human blood are there? a benign tumor -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (a benign tumor, consisting of, blood vessels) -> a benign tumor (8259ms)
How many types of human blood are there? the circulatory system -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the circulatory system, consists of, the blood) -> the circulatory system (8259ms)
How many types of human blood are there? lean meats -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (lean meats, consist of, Blood potassium) -> lean meats (8262ms)
How many types of human blood are there? One dish -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (One dish, consists of, blood sausage) -> One dish (8255ms)
How many types of human blood are there? The blood -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The blood, consists of, red blood cells) -> The blood (8257ms)
How many types of human blood are there? PRRSV -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (PRRSV, consists of, blood) -> PRRSV (8257ms)
How many types of human blood are there? noninfectious pustules -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (noninfectious pustules, consist of, white blood cells) -> noninfectious pustules (8249ms)
How many types of human blood are there? noninfectious pus -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (noninfectious pus, consisting of, white blood cells) -> noninfectious pus (8259ms)
How many types of human blood are there? Type O negative -0.88888888888 How 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)
How many types of human blood are there? Blood and Gold -0.888888888892 How 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)
How many types of human blood are there? Peripheral smear -0.888888888892 How 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)
How many types of human blood are there? CLL -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (CLL, can be found on, routine blood-tests) -> CLL (8267ms)
How many types of human blood are there? Blood Thirst -0.888888888892 How 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)
How many types of human blood are there? United Blood Nation -0.888888888892 How 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)
How many types of human blood are there? the blood spilt -0.888888888892 How 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)
How many types of human blood are there? International Society of Blood Transfusion -0.888888888892 How 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)
How many types of human blood are there? Back to Blood -0.888888888892 How 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)
How many types of human blood are there? dark blood -0.888888888892 How 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)
How many types of human blood are there? a particular marker -0.888888888892 How 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)
How many types of human blood are there? Wire in the Blood -0.888888888892 How 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)
How many types of human blood are there? Blood and Honor -0.888888888892 How 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)
How many types of human blood are there? Blood Storm -0.888888888892 How 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)
How many types of human blood are there? Blood Theatre -0.888888888892 How 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)
How many types of human blood are there? Hemophobia -0.888888888892 How 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)
How many types of human blood are there? Blood is thicker than water -0.888888888892 How 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)
How many types of human blood are there? blood of amber -0.888888888892 How 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)
How many types of human blood are there? Fangoria Blood Drive -0.888888888892 How 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)
How many types of human blood are there? Dragons Blood -0.888888888892 How 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)
How many types of human blood are there? life in cold blood -0.888888888892 How 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)
How many types of human blood are there? Get Yr Blood Sucked Out -0.888888888892 How 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)
How many types of human blood are there? Rise: Blood Hunter -0.888888888892 How 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)
How many types of human blood are there? baptized in blood -0.888888888892 How 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)
How many types of human blood are there? blood in my eye -0.888888888892 How 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)
How many types of human blood are there? Trauma Center: New Blood -0.888888888892 How 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)
How many types of human blood are there? Blood Diner -0.888888888892 How 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)
How many types of human blood are there? Blood Red Rivers -0.888888888892 How 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)
How many types of human blood are there? caleb blood smith -0.888888888892 How 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)
How many types of human blood are there? Sword Stained With Royal Blood -0.888888888892 How 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)
How many types of human blood are there? BLL -0.888888888892 How 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)
How many types of human blood are there? Blood Inside -0.888888888892 How 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)
How many types of human blood are there? In Your Blood -0.888888888892 How 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)
How many types of human blood are there? Blood oxygen level -0.888888888892 How 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)
How many types of human blood are there? blood noir -0.888888888892 How 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)
How many types of human blood are there? Corridors of Blood -0.888888888892 How 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)
How many types of human blood are there? Blood Wake -0.888888888892 How 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)
How many types of human blood are there? Blood Fire Death -0.888888888892 How 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)
How many types of human blood are there? America?s Blood Centers -0.888888888892 How 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)
How many types of human blood are there? BloodRayne: Betrayal -0.888888888892 How 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)
How many types of human blood are there? trinity Blood -0.888888888892 How 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)
How many types of human blood are there? melty blood -0.888888888892 How 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)
How many types of human blood are there? a dying empire -0.888888888892 How 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)
How many types of human blood are there? National Blood Service -0.888888888892 How 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)
How many types of human blood are there? marrow registry -0.888888888892 How 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)
How many types of human blood are there? The F.B.I -0.888888888892 How 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)
How many types of human blood are there? Blood Secret -0.888888888892 How 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)
How many types of human blood are there? blood canticle -0.888888888892 How 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)
How many types of human blood are there? Blood on the Sun -0.888888888892 How 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)
How many types of human blood are there? Blood 2 -0.888888888892 How 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)
How many types of human blood are there? Atoxoplasma -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Atoxoplasma, can be found on, blood smears) -> Atoxoplasma (8267ms)
How many types of human blood are there? blood promise -0.888888888892 How 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)
How many types of human blood are there? D.K. -0.888888888892 How many types of human blood are there? -> $x: ($x, sing with, blood) -> (D.K., sing with, his band ?Blood Cake? ?) -> D.K. (8270ms)
How many types of human blood are there? The Crown -0.888888888892 How 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)
How many types of human blood are there? Flesh 'n' Blood -0.888888888892 How 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)
How many types of human blood are there? World Painted Blood -0.888888888892 How 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)
How many types of human blood are there? The Blood Divine -0.888888888892 How 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)
How many types of human blood are there? arterial-blood -0.888888888892 How 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)
How many types of human blood are there? Bounty Hunter Bloods -0.888888888892 How 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)
How many types of human blood are there? Blood cockle -0.888888888892 How 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)
How many types of human blood are there? Red Blooded Woman -0.888888888892 How 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)
How many types of human blood are there? the blood doctor -0.888888888892 How 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)
How many types of human blood are there? Drawing Blood -0.888888888892 How 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)
How many types of human blood are there? Blood Red Throne -0.888888888892 How 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)
How many types of human blood are there? Surfer Blood -0.888888888892 How 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)
How many types of human blood are there? Tunnels of Blood -0.888888888892 How 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)
How many types of human blood are there? Blood Has Been Shed -0.888888888892 How 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)
How many types of human blood are there? Reign In Blood -0.888888888892 How 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)
How many types of human blood are there? Blood on the Arrow -0.888888888892 How 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)
How many types of human blood are there? Blood In Blood Out -0.888888888892 How 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)
How many types of human blood are there? Blood On the Tracks -0.888888888892 How 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)
How many types of human blood are there? Blood-spotted abalone -0.888888888892 How 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)
How many types of human blood are there? Too Much Blood -0.888888888892 How 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)
How many types of human blood are there? winter in the blood -0.888888888892 How 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)
How many types of human blood are there? Let The Blood Run Free -0.888888888892 How 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)
How many types of human blood are there? Blood Upon The Risers -0.888888888892 How 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)
How many types of human blood are there? willi one blood -0.888888888892 How 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)
How many types of human blood are there? Raining Blood -0.888888888892 How 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)
How many types of human blood are there? Aretas Blood -0.888888888892 How 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)
How many types of human blood are there? Tekken Hybrid -0.888888888892 How 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)
How many types of human blood are there? Rivers of Blood Speech -0.888888888892 How 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)
How many types of human blood are there? Thomas Blood -0.888888888892 How 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)
How many types of human blood are there? half the blood of brooklyn -0.888888888892 How 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)
How many types of human blood are there? Blood Magick Necromance -0.888888888892 How 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)
How many types of human blood are there? battle of blood river -0.888888888892 How 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)
How many types of human blood are there? Blood of the Fold -0.888888888892 How 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)
How many types of human blood are there? blood red -0.888888888892 How 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)
How many types of human blood are there? ShellShock 2: Blood Trails -0.888888888892 How 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)
How many types of human blood are there? Personal Darkness -0.888888888892 How 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)
How many types of human blood are there? It's Okay -0.888888888892 How 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)
How many types of human blood are there? Blood Hunt -0.888888888892 How 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)
How many types of human blood are there? blood -0.888888888892 How 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)
How many types of human blood are there? Impressions in Blood -0.888888888892 How 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)
How many types of human blood are there? Fecal occult blood test -0.888888888892 How 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)
How many types of human blood are there? Blood volume -0.888888888892 How 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)
How many types of human blood are there? The Blood Arm -0.888888888892 How 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)
How many types of human blood are there? Nicotine -0.888888888892 How 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)
How many types of human blood are there? Blood's Bird of Paradise -0.888888888892 How 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)
How many types of human blood are there? Blood of Elves -0.888888888892 How 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)
How many types of human blood are there? Blood Visions -0.888888888892 How 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)
How many types of human blood are there? Lymphocytes -0.99999999999 How 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)
How many types of human blood are there? T-cells -1.555555555553 How 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)
How many types of human blood are there? Macrophages -1.555555555553 How many types of human blood are there? -> $x: ($x, be one type of, blood) -> (Macrophages, are one type of, white blood cell) -> Macrophages (8271ms)
What color are UPS trucks? Captured 0.333333333329 What color are UPS trucks? -> $x: ($x, be color of, ups) -> (Captured, is all the color of, the build up , qualifying) -> Captured (1113ms)
What color are UPS trucks? the school 0.333333333329 What 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)
What color are UPS trucks? brown 0.333333333329 What color are UPS trucks? -> $x: ($x, be color of, ups) -> (brown, is the color of, UPS) -> brown (1113ms)
What color are UPS trucks? 21 year 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (21 year, were driving in, their pick up truck) -> 21 year (1516ms)
What color are UPS trucks? midnight and 3:00 0.111111111111 What 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)
What color are UPS trucks? The two 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The two, were driving along in, their humble pick-up truck) -> The two (1219ms)
What color are UPS trucks? counseling 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (counseling, is the ride in, the pick-up truck) -> counseling (1516ms)
What color are UPS trucks? The department 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (The department, does have, a back-up truck) -> The department (1516ms)
What color are UPS trucks? n?t 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (n?t, is n?t delivered in, brown UPS trucks) -> n?t (1514ms)
What color are UPS trucks? Blackburn 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Blackburn, was found dead in, a pick-up truck) -> Blackburn (1413ms)
What color are UPS trucks? Garbage 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Garbage, must be brought in, pick-up trucks or cars) -> Garbage (1413ms)
What color are UPS trucks? Jones 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Jones, was the passenger in, the pick-up truck) -> Jones (1516ms)
What color are UPS trucks? the corpses 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the corpses, were taken away in, a pick-up truck) -> the corpses (1514ms)
What color are UPS trucks? the stripey shirt 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the stripey shirt, was in, the pick up truck) -> the stripey shirt (1113ms)
What color are UPS trucks? guns 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (guns, were prominently displayed in, pick-up truck gun racks) -> guns (1220ms)
What color are UPS trucks? Elick 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Elick, is killed in, a pick-up truck) -> Elick (1518ms)
What color are UPS trucks? The pair 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The pair, was traveling in, a white 1995 pick-up truck) -> The pair (1516ms)
What color are UPS trucks? The crystal 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The crystal, is cold still from being in, the UPS truck) -> The crystal (1413ms)
What color are UPS trucks? even vans , service 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (even vans , service, is provided in, pick-up trucks) -> even vans , service (1219ms)
What color are UPS trucks? Juan Sin Miedo 0.111111111111 What 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)
What color are UPS trucks? each die 0.111111111111 What 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)
What color are UPS trucks? the tail 0.111111111111 What 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)
What color are UPS trucks? The shotguns 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The shotguns, were discovered in, the pick up truck) -> The shotguns (1516ms)
What color are UPS trucks? Inspections 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (Inspections, can be done from, a pick-up truck) -> Inspections (1113ms)
What color are UPS trucks? Two men 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Two men, were killed in, a parked pick-up truck) -> Two men (1413ms)
What color are UPS trucks? the driver 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the driver, was trapped in, the pick up truck) -> the driver (1219ms)
What color are UPS trucks? Hamda 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Hamda, was travelling in, a pick-up truck) -> Hamda (1514ms)
What color are UPS trucks? A 4-year-old boy 0.111111111111 What 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)
What color are UPS trucks? Not every client 0.111111111111 What 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)
What color are UPS trucks? the products 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the products, are picked up in, a pick-up truck) -> the products (1516ms)
What color are UPS trucks? Ice chunks 0.111111111111 What color are UPS trucks? -> $x: ($x, size be, ups truck) -> (Ice chunks, were the size of, pick-up trucks) -> Ice chunks (1413ms)
What color are UPS trucks? Counterbalance P.S. 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (Counterbalance P.S., Always did enjoy, a pick-up truck) -> Counterbalance P.S. (1220ms)
What color are UPS trucks? The soldiers 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The soldiers, were in, a pick-up truck) -> The soldiers (1413ms)
What color are UPS trucks? The Federales 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The Federales, are patrolling in, pick-up trucks) -> The Federales (1514ms)
What color are UPS trucks? Middle Eastern John 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (Middle Eastern John, Does in, a brown pick-up truck) -> Middle Eastern John (1219ms)
What color are UPS trucks? Dan Larkin 0.111111111111 What 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)
What color are UPS trucks? the victim 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the victim, was trapped in, a small pick-up truck) -> the victim (1113ms)
What color are UPS trucks? America 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (America, does make, some Japanese pick-up trucks) -> America (1516ms)
What color are UPS trucks? men 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (men, are indulging in, pick-up trucks and gaming) -> men (1518ms)
What color are UPS trucks? Azza 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Azza, was stuck in, the pick up truck) -> Azza (1413ms)
What color are UPS trucks? the parking lot 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (the parking lot, did contain as, many beat-up pickup trucks) -> the parking lot (1514ms)
What color are UPS trucks? The coffin 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The coffin, was found in, an abandoned pick-up truck) -> The coffin (1514ms)
What color are UPS trucks? Police officers 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Police officers, are now riding high in, pick-up trucks) -> Police officers (1518ms)
What color are UPS trucks? Suspect 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Suspect, was last seen in, a dark blue Ford pick-up truck) -> Suspect (1413ms)
What color are UPS trucks? an Uchiha 0.111111111111 What 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)
What color are UPS trucks? a man 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (a man, are driving in, their pick-up truck) -> a man (1514ms)
What color are UPS trucks? three 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (three, was in, the pick-up truck) -> three (1516ms)
What color are UPS trucks? friend Joe Salaz 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (friend Joe Salaz, were driving in, a pick-up truck) -> friend Joe Salaz (1516ms)
What color are UPS trucks? the criminal 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the criminal, is raping the girl in, his pick-up truck) -> the criminal (1516ms)
What color are UPS trucks? Littlehales 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Littlehales, had been in, a white pick-up truck) -> Littlehales (1514ms)
What color are UPS trucks? CargoCatch 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (CargoCatch, can be used in, any pick-up truck) -> CargoCatch (1514ms)
What color are UPS trucks? A Snover man 0.111111111111 What 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)
What color are UPS trucks? trick-or-treating 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (trick-or-treating, is done by, pick-up truck) -> trick-or-treating (1514ms)
What color are UPS trucks? seat belts 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (seat belts, be worn in, pick-up trucks) -> seat belts (1514ms)
What color are UPS trucks? Osman 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Osman, was in, a pick up truck) -> Osman (1514ms)
What color are UPS trucks? The 20-year-old 0.111111111111 What 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)
What color are UPS trucks? 7-year-old daughter 0.111111111111 What 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)
What color are UPS trucks? Brian 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Brian, was in, the pick-up truck) -> Brian (1516ms)
What color are UPS trucks? Malia Staggs 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Malia Staggs, were sitting in, a pick-up truck) -> Malia Staggs (1219ms)
What color are UPS trucks? Jackson 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Jackson, was off-duty in, his personal GMC pick-up truck) -> Jackson (1514ms)
What color are UPS trucks? The army -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (The army, is like, a 4X4 pick-up truck) -> The army (1519ms)
What color are UPS trucks? a ute -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (a ute, is like, a pick-up truck) -> a ute (1518ms)
What color are UPS trucks? The CNG trucks -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (The CNG trucks, look just like, the signature-brown UPS trucks) -> The CNG trucks (1518ms)
What color are UPS trucks? Anthony Hamilton -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (Anthony Hamilton, stands out like, a road tested pick-up truck) -> Anthony Hamilton (1519ms)
What color are UPS trucks? younger kids -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (younger kids, will like, the Marvel/monster truck link-up) -> younger kids (1518ms)
What color are UPS trucks? Jason Clarke -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (Jason Clarke, looks like, a pick-up truck) -> Jason Clarke (1518ms)
What color are UPS trucks? the market -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (the market, are one like, pick-up trucks) -> the market (1518ms)
What color are UPS trucks? a medium -0.5555555555439999 What color are UPS trucks? -> $x: ($x, size, ups truck) -> (a medium, sized, pick-up truck) -> a medium (1518ms)
What color are UPS trucks? The interior -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (The interior, looks like, a basic GMC Seirra pick-up truck) -> The interior (1518ms)
What color are UPS trucks? Command Vehicle Lt . Fick -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (Command Vehicle Lt . Fick, configured like, a pick-up truck) -> Command Vehicle Lt . Fick (1518ms)
What color are UPS trucks? the Police -0.7777777777770001 What 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)
What color are UPS trucks? Jesus -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Jesus, came after, John was delivered up) -> Jesus (1519ms)
What color are UPS trucks? The harnesses -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (The harnesses, are all color coded for, easy hook-up) -> The harnesses (1521ms)
What color are UPS trucks? the device -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the device, comes up after, power-up) -> the device (1522ms)
What color are UPS trucks? The decision -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The decision, came after, China stepped up a campaign) -> The decision (1519ms)
What color are UPS trucks? the SMRT depot -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the SMRT depot, comes after so, many wake-up calls) -> the SMRT depot (1522ms)
What color are UPS trucks? The move -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The move, comes only a few days after, a similar tie-up) -> The move (1522ms)
What color are UPS trucks? Transactions -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (Transactions, are color-coded for, easy look-up) -> Transactions (1521ms)
What color are UPS trucks? The first big rapid -0.7777777777770001 What 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)
What color are UPS trucks? Kuwait -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Kuwait, came days after, a goof-up) -> Kuwait (1519ms)
What color are UPS trucks? Read More -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Read More, Comes After, ?Start-Up?) -> Read More (1519ms)
What color are UPS trucks? a cream -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (a cream, comes after, the cover up) -> a cream (1519ms)
What color are UPS trucks? the hairstylist -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the hairstylist, came in after, the make-up artists) -> the hairstylist (1521ms)
What color are UPS trucks? a Win-Win feature -0.7777777777770001 What 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)
What color are UPS trucks? New Zealand -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (New Zealand, to come from behind after, Australia went 2-0 up) -> New Zealand (1519ms)
What color are UPS trucks? The revelation -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The revelation, comes just days after, a huge shake-up) -> The revelation (1521ms)
What color are UPS trucks? aid -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (aid, comes after, the initial clean-up) -> aid (1522ms)
What color are UPS trucks? ?The assistants -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (?The assistants, came in after, warm ups) -> ?The assistants (1519ms)
What color are UPS trucks? Black -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (Black, is the appropriate color for, this particular write-up) -> Black (1521ms)
What color are UPS trucks? The shows -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The shows, come after, Disturbed wraps up) -> The shows (1519ms)
What color are UPS trucks? the band -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the band, comes out after, the house lights have come up) -> the band (1519ms)
What color are UPS trucks? The Final Cut Pro v10.0.3 update -0.7777777777770001 What 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)
What color are UPS trucks? The real test -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The real test, will come after, spring break-up) -> The real test (1522ms)
What color are UPS trucks? The diagnosis -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The diagnosis, came after, a pre-conception check-up) -> The diagnosis (1521ms)
What color are UPS trucks? The purchase -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The purchase, comes just two years after, the start-up) -> The purchase (1521ms)
What color are UPS trucks? The three year extension -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The three year extension, comes after, an up) -> The three year extension (1522ms)
What color are UPS trucks? The big surprise -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The big surprise, came after, setting up the system) -> The big surprise (1520ms)
What color are UPS trucks? Poles -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (Poles, are color coded for, easy set-up) -> Poles (1521ms)
What color are UPS trucks? The protest -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The protest, came after, the setting-up) -> The protest (1521ms)
What color are UPS trucks? the game -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the game, came after, a heads-up play) -> the game (1521ms)
What color are UPS trucks? The announcement -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The announcement, comes after, a radical shake-up) -> The announcement (1522ms)
What color are UPS trucks? Elias Howe -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Elias Howe, came up after, waking up) -> Elias Howe (1522ms)
What color are UPS trucks? The process -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The process, comes after, a break up) -> The process (1519ms)
What color are UPS trucks? the responses -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the responses, came after, we had written up our findings) -> the responses (1521ms)
What color are UPS trucks? The divorce petition -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The divorce petition, came after, a long and emotional build-up) -> The divorce petition (1521ms)
What color are UPS trucks? Gyans 67th-minute equalizer -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Gyans 67th-minute equalizer, came after, a mix-up) -> Gyans 67th-minute equalizer (1521ms)
What color are UPS trucks? the color -0.888888888886 What color are UPS trucks? -> $x: ($x, color in, ups) -> (the color, choose a new color in, the pop-up menu) -> the color (1522ms)
What color are UPS trucks? the 7th century BC -0.8888888888869999 What 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)
What color are UPS trucks? Brazil -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (Brazil, is a history of, the ups and downs) -> Brazil (1522ms)
What color are UPS trucks? BC -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (BC, is an amazing history of, ups and downs) -> BC (1522ms)
What color are UPS trucks? The reality -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (The reality, is a history of, accidents and cover-ups) -> The reality (1522ms)
What color are UPS trucks? A faster history -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (A faster history, would be a history of, throw ups) -> A faster history (1522ms)
What color are UPS trucks? the castle -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (the castle, is a history of, ups and downs) -> the castle (1522ms)
What was the name of Ayn Rand's husband? Paul 0.44444444443799996 What was the name of Ayn Rand's husband? -> $x: ($x, marry, ayn rand) -> (Paul, is married to, Ayn Rand) -> Paul (523ms)
What was the name of Ayn Rand's husband? Hegel -0.555555555555 What 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)
What is Africa's largest country? the South African Champions 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the South African Champions, represented, Africa) -> the South African Champions (4832ms)
What is Africa's largest country? 2009 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (2009, is double the average growth rate of, Africa) -> 2009 (4866ms)
What is Africa's largest country? Cape Town 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Cape Town, is the top-ranked university in, Africa) -> Cape Town (4902ms)
What is Africa's largest country? any better nor 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (any better nor, fairly represent, Africa) -> any better nor (3562ms)
What is Africa's largest country? Botswana 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Botswana, is rated, the least corrupt country in Africa) -> Botswana (4902ms)
What is Africa's largest country? malnutrition 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (malnutrition, nearly double the rate of, sub-Saharan Africa) -> malnutrition (4882ms)
What is Africa's largest country? the North section 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the North section, will represent, Africa) -> the North section (4841ms)
What is Africa's largest country? Maples 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Maples, sailed again for, Africa) -> Maples (4866ms)
What is Africa's largest country? Transparency International 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Transparency International, rated, South Africa) -> Transparency International (3902ms)
What is Africa's largest country? the Reliance 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Reliance, sailed for, South Africa) -> the Reliance (3562ms)
What is Africa's largest country? Facebook 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Facebook, is the top-ranked site in, Africa) -> Facebook (4813ms)
What is Africa's largest country? Kardouche 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Kardouche, also rates, South Africa) -> Kardouche (4642ms)
What is Africa's largest country? the Turks 1.666666666653 What is Africa's largest country? -> $x: ($x, rule on, africa) -> (the Turks, imposed their rule on, North Africa) -> the Turks (4823ms)
What is Africa's largest country? HKI 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (HKI, worked closely with, South Africa) -> HKI (4832ms)
What is Africa's largest country? The game viewing 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The game viewing, is rated the best in, Africa) -> The game viewing (4794ms)
What is Africa's largest country? a charity 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a charity, works with, poor families in Africa) -> a charity (4804ms)
What is Africa's largest country? 2 million people 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (2 million people, surrounded by, South Africa) -> 2 million people (4841ms)
What is Africa's largest country? the selection 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the selection, will represent, Africa) -> the selection (4858ms)
What is Africa's largest country? organizations and individuals 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (organizations and individuals, working with, radio in Africa) -> organizations and individuals (4804ms)
What is Africa's largest country? the taboo 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the taboo, surrounds, the disease in Africa) -> the taboo (4841ms)
What is Africa's largest country? Okonjo-Iweala 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Okonjo-Iweala, will represent, Africa) -> Okonjo-Iweala (4823ms)
What is Africa's largest country? the countries 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the countries, surrounding, South Africa) -> the countries (4875ms)
What is Africa's largest country? The Kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (The Kingdom, surrounded by, South Africa) -> The Kingdom (4895ms)
What is Africa's largest country? Morocco 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Morocco, represented, Africa) -> Morocco (4849ms)
What is Africa's largest country? The Super Eagles 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Super Eagles, are currently ranked 9th in, Africa) -> The Super Eagles (4804ms)
What is Africa's largest country? Dr. Samuel 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Dr. Samuel, worked with, South Africa) -> Dr. Samuel (4774ms)
What is Africa's largest country? a peace broker 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a peace broker, say sources in, South Africa) -> a peace broker (4858ms)
What is Africa's largest country? Senegal and Cameroon 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Senegal and Cameroon, will represent, Africa) -> Senegal and Cameroon (4718ms)
What is Africa's largest country? the different Ecosystems 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the different Ecosystems, represented across, Africa) -> the different Ecosystems (4882ms)
What is Africa's largest country? FFV 100 % 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (FFV 100 %, sustainably sourced from, Africa) -> FFV 100 % (4866ms)
What is Africa's largest country? Libya 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Libya, is ranked fourth in, Africa) -> Libya (4849ms)
What is Africa's largest country? Eric 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Eric, sailed for, South Africa) -> Eric (4882ms)
What is Africa's largest country? gold 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (gold, sourced from, Africa) -> gold (4858ms)
What is Africa's largest country? the lion 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the lion, represents, Africa) -> the lion (4375ms)
What is Africa's largest country? a land-locked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a land-locked country, surrounded by, South Africa) -> a land-locked country (3562ms)
What is Africa's largest country? England 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (England, are the current top-ranked team ahead of, South Africa) -> England (4858ms)
What is Africa's largest country? a team 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (a team, representing, South Africa) -> a team (4375ms)
What is Africa's largest country? The countries 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The countries, likely represent, Africa) -> The countries (4858ms)
What is Africa's largest country? energy imports 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (energy imports, sourced from, West Asia and Africa) -> energy imports (3459ms)
What is Africa's largest country? Johannesburg 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Johannesburg, is the source of, South Africa) -> Johannesburg (4875ms)
What is Africa's largest country? The lion 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The lion, represents, Africa) -> The lion (4718ms)
What is Africa's largest country? Burkina Faso 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Burkina Faso, are currently the fourth-ranked team in, Africa) -> Burkina Faso (4823ms)
What is Africa's largest country? Derek 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Derek, sailed for, Africa) -> Derek (4857ms)
What is Africa's largest country? an independent nation 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (an independent nation, surrounded by, South Africa) -> an independent nation (4784ms)
What is Africa's largest country? The course 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The course, is rated, one of the top 5 in South Africa) -> The course (4643ms)
What is Africa's largest country? Ms. Sabiiti 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Ms. Sabiiti, has worked with, the All Africa Conference) -> Ms. Sabiiti (4889ms)
What is Africa's largest country? A Progressio expert 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (A Progressio expert, works with, Environment Africa) -> A Progressio expert (4794ms)
What is Africa's largest country? CineCentre 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (CineCentre, is rated amongst, South Africa) -> CineCentre (3333ms)
What is Africa's largest country? Edinburgh Slessor 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Edinburgh Slessor, set sail for, Africa) -> Edinburgh Slessor (4889ms)
What is Africa's largest country? very little advice or expertise 1.666666666653 What 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)
What is Africa's largest country? The Pacific 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Pacific, has been ranked alongside, sub-Saharan Africa) -> The Pacific (4902ms)
What is Africa's largest country? Purpose 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Purpose, works with in, Africa) -> Purpose (4784ms)
What is Africa's largest country? SCI-EA?s travel 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (SCI-EA?s travel, worked with, Africa Heart) -> SCI-EA?s travel (4774ms)
What is Africa's largest country? Prepaid Calling Cards 1.666666666653 What 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)
What is Africa's largest country? Israel 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Israel, worked with, South Africa) -> Israel (4832ms)
What is Africa's largest country? Trade and Industry 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Trade and Industry, has rated, South Africa) -> Trade and Industry (4858ms)
What is Africa's largest country? five two-legged play-offs 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (five two-legged play-offs, represents, Africa) -> five two-legged play-offs (4718ms)
What is Africa's largest country? a small mountainous country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a small mountainous country, surrounded by, South Africa) -> a small mountainous country (4902ms)
What is Africa's largest country? impunity 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (impunity, surrounding, rape in South Africa) -> impunity (4751ms)
What is Africa's largest country? Rice 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Rice, is the most rapidly growing food source in, Africa) -> Rice (4774ms)
What is Africa's largest country? Tunisia 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Tunisia, will represent, Africa) -> Tunisia (4858ms)
What is Africa's largest country? MSU faculty 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (MSU faculty, will work with, OER Africa) -> MSU faculty (4762ms)
What is Africa's largest country? gloomy Chicago 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (gloomy Chicago, has a higher rate than, sunny South Africa) -> gloomy Chicago (4375ms)
What is Africa's largest country? The UN/IMF 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (The UN/IMF, had surrounded, South Africa) -> The UN/IMF (4762ms)
What is Africa's largest country? the finest quality diamonds 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the finest quality diamonds, were sourced from, South Africa) -> the finest quality diamonds (4813ms)
What is Africa's largest country? 23 St John Ambulance Brigade members 1.666666666653 What 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)
What is Africa's largest country? a landlocked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a landlocked country, surrounded to the south by, South Africa) -> a landlocked country (4882ms)
What is Africa's largest country? HMS Hermes 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (HMS Hermes, sailed for, West Africa) -> HMS Hermes (4730ms)
What is Africa's largest country? Howard University 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Howard University, has been working with, South Africa) -> Howard University (3333ms)
What is Africa's largest country? Peter 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Peter, was working with, OneWorld Africa) -> Peter (3901ms)
What is Africa's largest country? Lesotho 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (Lesotho, is surrounded by, South Africa) -> Lesotho (4902ms)
What is Africa's largest country? 1997-2001 Mr. Cleave 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (1997-2001 Mr. Cleave, worked with, Bata South Africa) -> 1997-2001 Mr. Cleave (4762ms)
What is Africa's largest country? India?s crude oil imports 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (India?s crude oil imports, are sourced from, Africa) -> India?s crude oil imports (3333ms)
What is Africa's largest country? CRB 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (CRB, is now working with, South Africa) -> CRB (3901ms)
What is Africa's largest country? the United States 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (the United States, had rates akin to, Africa ?s) -> the United States (4849ms)
What is Africa's largest country? a freighter 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (a freighter, sailed for, Africa) -> a freighter (4866ms)
What is Africa's largest country? the end 1.666666666653 What 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)
What is Africa's largest country? 4 other growers associations 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (4 other growers associations, are working with, PAN Africa) -> 4 other growers associations (4882ms)
What is Africa's largest country? 2007 Many exotic essential oils 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (2007 Many exotic essential oils, are sourced from, Africa) -> 2007 Many exotic essential oils (4875ms)
What is Africa's largest country? Miss Malulu 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Miss Malulu, represented, Africa) -> Miss Malulu (4882ms)
What is Africa's largest country? Seychelles 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Seychelles, is ranked 8th in, Africa) -> Seychelles (4762ms)
What is Africa's largest country? the team 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the team, to represent, Africa) -> the team (4751ms)
What is Africa's largest country? the Second World War 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the Second World War, was sourced from, Africa) -> the Second World War (4841ms)
What is Africa's largest country? Beyond 1.666666666653 What is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Beyond, used to be called, CC Africa) -> Beyond (4875ms)
What is Africa's largest country? Borlaug 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Borlaug, began working with, the Sasakawa Africa Association) -> Borlaug (4533ms)
What is Africa's largest country? Bombay 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Bombay, sailed for, East Africa) -> Bombay (4762ms)
What is Africa's largest country? Captain Nathaniel Gordon 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Captain Nathaniel Gordon, set sail for, Africa) -> Captain Nathaniel Gordon (4774ms)
What is Africa's largest country? The rhetoric 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (The rhetoric, surrounding, Africa) -> The rhetoric (4896ms)
What is Africa's largest country? Progressio 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Progressio, works with, Environment Africa) -> Progressio (4882ms)
What is Africa's largest country? Innovative Finance 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Innovative Finance, works with, Africa ?s financial institutions) -> Innovative Finance (4794ms)
What is Africa's largest country? the Elswick Battery 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Elswick Battery, sailed for, South Africa) -> the Elswick Battery (4774ms)
What is Africa's largest country? the metropolis 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the metropolis, set sail for, North Africa) -> the metropolis (4730ms)
What is Africa's largest country? Uganda?s Luke Orombi 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Uganda?s Luke Orombi, will represent, Africa) -> Uganda?s Luke Orombi (4875ms)
What is Africa's largest country? a UK-based registered charity 1.666666666653 What 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)
What is Africa's largest country? major events 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (major events, also represent, Africa) -> major events (4813ms)
What is Africa's largest country? illegal rhino horn 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (illegal rhino horn, sourced from, Southern Africa) -> illegal rhino horn (3333ms)
What is Africa's largest country? UoN 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (UoN, is ranked 2nd in, East Africa) -> UoN (3517ms)
What is Africa's largest country? Bahrain 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Bahrain, is top ranked in, North Africa) -> Bahrain (4751ms)
What is Africa's largest country? Wednesday 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Wednesday, downgraded the long-term rating of, South Africa) -> Wednesday (4784ms)
What is Africa's largest country? Scipio 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Scipio, set sail for, Africa) -> Scipio (4896ms)
What is Africa's largest country? Lesotho today 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Lesotho today, has the highest literacy rate in, Africa) -> Lesotho today (3459ms)
What is Africa's largest country? a tiny mountainous kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a tiny mountainous kingdom, surrounded by, South Africa) -> a tiny mountainous kingdom (4813ms)
What is Africa's largest country? Horst K?hler 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Horst K?hler, see cultural work with, Africa) -> Horst K?hler (4823ms)
What is Africa's largest country? a tiny Mountain kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a tiny Mountain kingdom, surrounded by, South Africa) -> a tiny Mountain kingdom (4730ms)
What is Africa's largest country? 8000 horses 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (8000 horses, had sailed for, Africa) -> 8000 horses (3562ms)
What is Africa's largest country? the new system 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the new system, worked with, South Africa) -> the new system (4832ms)
What is Africa's largest country? the black stripe 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the black stripe, represents, Africa) -> the black stripe (4882ms)
What is Africa's largest country? the future biofuel feedstocks 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the future biofuel feedstocks, may well be sourced from, Africa) -> the future biofuel feedstocks (4774ms)
What is Africa's largest country? Minister Trevor Manuel 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Minister Trevor Manuel, is representing, Africa) -> Minister Trevor Manuel (4679ms)
What is Africa's largest country? HPIC 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (HPIC, has been working with, HEAL Africa) -> HPIC (3334ms)
What is Africa's largest country? 2006 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (2006, was ranked, Africa) -> 2006 (4679ms)
What is Africa's largest country? a new Roman army 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (a new Roman army, sailed for, Africa) -> a new Roman army (4784ms)
What is Africa's largest country? Josephine Baker 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Josephine Baker, represents, Africa) -> Josephine Baker (4741ms)
What is Africa's largest country? Cliff Maunze 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Cliff Maunze, works with, Environment Africa) -> Cliff Maunze (4679ms)
What is Africa's largest country? a project 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a project, are sourced from, South Africa) -> a project (3487ms)
What is Africa's largest country? mountainous country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (mountainous country, surrounded by, South Africa) -> mountainous country (4823ms)
What is Africa's largest country? the typical image 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the typical image, represented of, Africa) -> the typical image (4784ms)
What is Africa's largest country? Prime Minister Meles 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Prime Minister Meles, is representing, Africa) -> Prime Minister Meles (3517ms)
What is Africa's largest country? forty thousand men 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (forty thousand men, sailed for, Africa) -> forty thousand men (4858ms)
What is Africa's largest country? Business 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Business, rated top in, Africa) -> Business (4784ms)
What is Africa's largest country? Egypt and Kenya 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Egypt and Kenya, represented, Africa) -> Egypt and Kenya (4849ms)
What is Africa's largest country? Vegetables 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Vegetables, sourced from, Africa travel) -> Vegetables (4902ms)
What is Africa's largest country? Pemba/Ibo Ibo Island 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Pemba/Ibo Ibo Island, has special rates for, South Africa) -> Pemba/Ibo Ibo Island (4850ms)
What is Africa's largest country? The three other girls 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The three other girls, represented, Africa) -> The three other girls (4902ms)
What is Africa's largest country? a small country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a small country, entirely surrounded by, South Africa) -> a small country (4875ms)
What is Africa's largest country? Arabs 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Arabs, found new sources in, east Africa) -> Arabs (4866ms)
What is Africa's largest country? The successful candidate 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The successful candidate, will work with, the WCS Africa) -> The successful candidate (4841ms)
What is Africa's largest country? Smuts 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Smuts, represented, South Africa) -> Smuts (3517ms)
What is Africa's largest country? News 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (News, sourced from, South Africa) -> News (4896ms)
What is Africa's largest country? IBM 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (IBM, is also working with, Africa) -> IBM (4902ms)
What is Africa's largest country? The reserve 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The reserve, is rated as, Africa) -> The reserve (4730ms)
What is Africa's largest country? ridges 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (ridges, surrounding, Africa and Antarctica) -> ridges (4718ms)
What is Africa's largest country? the easiest and fastest place 1.666666666653 What 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)
What is Africa's largest country? Wittstock 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Wittstock, represented, South Africa) -> Wittstock (4823ms)
What is Africa's largest country? The five interlocking rings 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The five interlocking rings, represent, Africa) -> The five interlocking rings (4841ms)
What is Africa's largest country? the oceans 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the oceans, surrounding, Africa) -> the oceans (4804ms)
What is Africa's largest country? Members 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Members, represent, Africa) -> Members (4889ms)
What is Africa's largest country? Ashlea Surles 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Ashlea Surles, worked with, Operation Crossroads Africa) -> Ashlea Surles (3901ms)
What is Africa's largest country? Mercy Ships Southern Africa 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Mercy Ships Southern Africa, is working with, South Africa) -> Mercy Ships Southern Africa (4889ms)
What is Africa's largest country? 1963 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (1963, is rated as, Africa) -> 1963 (4804ms)
What is Africa's largest country? Namibia 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Namibia, was again rated the best in, Africa) -> Namibia (4882ms)
What is Africa's largest country? 1400 officers and sailors 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (1400 officers and sailors, sailed for, East Africa) -> 1400 officers and sailors (4762ms)
What is Africa's largest country? Alex 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Alex, represented, South Africa) -> Alex (4730ms)
What is Africa's largest country? Sub-Saharan 1.666666666653 What is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Sub-Saharan, used to be called, black Africa) -> Sub-Saharan (4902ms)
What is Africa's largest country? the teams 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the teams, representing, Africa) -> the teams (4903ms)
What is Africa's largest country? an enclave 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (an enclave, entirely surrounded by, South Africa) -> an enclave (4643ms)
What is Africa's largest country? a mountainous kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a mountainous kingdom, surrounded by, South Africa) -> a mountainous kingdom (4882ms)
What is Africa's largest country? the shirts 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the shirts, are sourced locally from, Africa) -> the shirts (4889ms)
What is Africa's largest country? Ghana 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Ghana, has been ranked first in, Africa) -> Ghana (4902ms)
What is Africa's largest country? The works 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The works, have been sourced from, South Africa) -> The works (4375ms)
What is Africa's largest country? a cut 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (a cut, set sail for, Africa) -> a cut (4866ms)
What is Africa's largest country? Sudan 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Sudan, to represent, Africa) -> Sudan (4832ms)
What is Africa's largest country? Airbus 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Airbus, has been working with, South Africa) -> Airbus (4463ms)
What is Africa's largest country? The colour 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The colour, represents, the Africa) -> The colour (4850ms)
What is Africa's largest country? Lyn 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Lyn, are working with, the Tunbridge Wells charity Build Africa) -> Lyn (4896ms)
What is Africa's largest country? bidorbuy.co.za 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (bidorbuy.co.za, is currently ranked among, South Africa) -> bidorbuy.co.za (4784ms)
What is Africa's largest country? CareerJunction 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (CareerJunction, is ranked, South Africa) -> CareerJunction (4804ms)
What is Africa's largest country? IUCN 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (IUCN, has been working with, partners PhytoTrade Africa) -> IUCN (4533ms)
What is Africa's largest country? the wooden frames 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the wooden frames, are sourced in, Africa) -> the wooden frames (4902ms)
What is Africa's largest country? Meles 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Meles, represents, Africa) -> Meles (4679ms)
What is Africa's largest country? The United States 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The United States, is also committed to working with, Africa) -> The United States (4813ms)
What is Africa's largest country? Churchward 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Churchward, then sailed for, South Africa) -> Churchward (4642ms)
What is Africa's largest country? Denis Jones 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Denis Jones, was sailing for, South Africa) -> Denis Jones (4718ms)
What is Africa's largest country? extensive background 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (extensive background, now works with, TransAfrica Forum) -> extensive background (4889ms)
What is Africa's largest country? the small landlocked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the small landlocked country, surrounded by, South Africa) -> the small landlocked country (4718ms)
What is Africa's largest country? soaps 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (soaps, are sourced from, Africa) -> soaps (4858ms)
What is Africa's largest country? Afrodolla 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Afrodolla, represents, Africa) -> Afrodolla (4896ms)
What is Africa's largest country? the new undersea cables 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the new undersea cables, surrounding, Africa) -> the new undersea cables (4866ms)
What is Africa's largest country? an Lieutenant 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (an Lieutenant, sailed for, South Africa) -> an Lieutenant (4784ms)
What is Africa's largest country? school 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (school, hope to work with, World Vision Africa one day) -> school (4858ms)
What is Africa's largest country? Burton 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Burton, was the ranking Republican on, the Africa subcommittee) -> Burton (4679ms)
What is Africa's largest country? David Livingstone 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (David Livingstone, set sail for, southern Africa) -> David Livingstone (4896ms)
What is Africa's largest country? China 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (China, will work together with, Africa) -> China (4762ms)
What is Africa's largest country? Rwanda 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Rwanda, has been ranked fourth in, Africa) -> Rwanda (4813ms)
What is Africa's largest country? Meles Zenawi 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Meles Zenawi, representing, Africa) -> Meles Zenawi (4740ms)
What is Africa's largest country? the youngest king 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the youngest king, represents, Africa) -> the youngest king (4533ms)
What is Africa's largest country? Swaziland 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (Swaziland, is surrounded by, South Africa) -> Swaziland (4841ms)
What is Africa's largest country? Malawi 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Malawi, is working with, Africa Bags) -> Malawi (4794ms)
What is Africa's largest country? Libyans 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Libyans, have the highest literacy rate in, Africa) -> Libyans (4774ms)
What is Africa's largest country? the former competitive swimmer 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the former competitive swimmer, represented, South Africa) -> the former competitive swimmer (3517ms)
What is Africa's largest country? Africa as well as 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Africa as well as, represent, Africa) -> Africa as well as (4784ms)
What is Africa's largest country? a small landlocked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a small landlocked country, surrounded by, South Africa) -> a small landlocked country (4823ms)
What is Africa's largest country? Dan Crawford 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Dan Crawford, sailed for, Africa) -> Dan Crawford (3901ms)
What is Africa's largest country? The NMMU Business School 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The NMMU Business School, was rated second in, South Africa) -> The NMMU Business School (4841ms)
What is Africa's largest country? Algeria 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Algeria, is ranked third worst in, Africa) -> Algeria (4896ms)
What is Africa's largest country? Guinea 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Guinea, was ranked, Africa) -> Guinea (4718ms)
What is Africa's largest country? part 1.666666666653 What is Africa's largest country? -> $x: ($x, use to be call, africa) -> (part, used to be called, Africa) -> part (4866ms)
What is Africa's largest country? America 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (America, has good reason to work with, Africa) -> America (3488ms)
What is Africa's largest country? Australia 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Australia, looks forward to working closely with, South Africa) -> Australia (4832ms)
What is Africa's largest country? GM-free maize 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (GM-free maize, could even be sourced in, South Africa) -> GM-free maize (4804ms)
What is Africa's largest country? The best drums 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The best drums, sourced from, West Africa) -> The best drums (4730ms)
What is Africa's largest country? the Moffats 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Moffats, sailed again for, South Africa) -> the Moffats (4762ms)
What is Africa's largest country? materials 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (materials, are sourced from, Africa) -> materials (4832ms)
What is Africa's largest country? Esperance 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Esperance, will represent, Africa) -> Esperance (4841ms)
What is Africa's largest country? the same way South Africa 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the same way South Africa, represented, Africa) -> the same way South Africa (4642ms)
What is Africa's largest country? AWAKE 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (AWAKE, worked with, WSPA Africa) -> AWAKE (4730ms)
What is Africa's largest country? the Kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the Kingdom, is completely surrounded by, South Africa) -> the Kingdom (4741ms)
What is Africa's largest country? Hanneke Cost Budde 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Hanneke Cost Budde, has worked with, the Africa Inland Church) -> Hanneke Cost Budde (4784ms)
What is Africa's largest country? IGD 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (IGD, is working with, TransFarm Africa) -> IGD (4679ms)
What is Africa's largest country? local schools 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (local schools, work with, Media Monitoring Africa) -> local schools (4896ms)
What is Africa's largest country? the Vandals 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Vandals, to sail for, North Africa) -> the Vandals (4875ms)
What is Africa's largest country? 533 Balisarius 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (533 Balisarius, sailed for, Africa b) -> 533 Balisarius (4841ms)
What is Africa's largest country? Muhammad Yunus 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Muhammad Yunus, pledged to work together with, Africa) -> Muhammad Yunus (4774ms)
What is Africa's largest country? The Bank 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Bank, is ranked 14th in, Africa) -> The Bank (4882ms)
What is Africa's largest country? also many different religions 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (also many different religions, represented in, Africa) -> also many different religions (4784ms)
What is Africa's largest country? The East Africa ?s largest economy 1.666666666653 What 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)
What is Africa's largest country? Simons 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Simons, represented, South Africa) -> Simons (3334ms)
What is Africa's largest country? Agriculture 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Agriculture, represents, Africa) -> Agriculture (4832ms)
What is Africa's largest country? Fifa and Match Hospitality 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Fifa and Match Hospitality, were working with, South Africa) -> Fifa and Match Hospitality (4642ms)
What is Africa's largest country? Livingstone 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Livingstone, sailed for, Africa) -> Livingstone (4642ms)
What is Africa's largest country? Ivory Coast 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Ivory Coast, is the top-ranked team in, Africa) -> Ivory Coast (4866ms)
What is Africa's largest country? 100 % pure cotton 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (100 % pure cotton, is sourced from, South Africa) -> 100 % pure cotton (4794ms)
What is Africa's largest country? NLNG 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (NLNG, is representing, Africa) -> NLNG (4889ms)
What is Africa's largest country? the Diaspora 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (the Diaspora, influence the rate of, Africa) -> the Diaspora (4889ms)
What is Africa's largest country? third place Nigeria 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (third place Nigeria, will represent, Africa) -> third place Nigeria (4462ms)
What is Africa's largest country? Computer Science 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Computer Science, rated top in, Middle-East and Africa) -> Computer Science (4730ms)
What is Africa's largest country? Africa Pads 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Africa Pads, is working with, Africa Bags) -> Africa Pads (4462ms)
What is Africa's largest country? the UK, 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the UK,, sourced from, South Africa) -> the UK, (4896ms)
What is Africa's largest country? a tree 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (a tree, represents, Africa) -> a tree (3517ms)
What is Africa's largest country? Turner 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Turner, represented, South Africa) -> Turner (4850ms)
What is Africa's largest country? the nuclear nation 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the nuclear nation, worked with, South Africa) -> the nuclear nation (4889ms)
What is Africa's largest country? GL 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (GL, has worked with in, South Africa) -> GL (4774ms)
What is Africa's largest country? Kofi Annan 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Kofi Annan, represents, Africa) -> Kofi Annan (4794ms)
What is Africa's largest country? seven thousand ventures 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (seven thousand ventures, sailed for, Africa) -> seven thousand ventures (4875ms)
What is Africa's largest country? Shubrick 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Shubrick, sailed for, North Africa) -> Shubrick (4866ms)
What is Africa's largest country? Kenya 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Kenya, represents, Africa) -> Kenya (4794ms)
What is Africa's largest country? the CAF region 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the CAF region, will represent, Africa) -> the CAF region (4850ms)
What is Africa's largest country? Titilayo Akinsanmi 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Titilayo Akinsanmi, currently works with, SchoolNet Africa) -> Titilayo Akinsanmi (3459ms)
What is Africa's largest country? a separate country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a separate country, surrounded by, South Africa) -> a separate country (4823ms)
What is Africa's largest country? trade 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (trade, is the source of, Africa) -> trade (4841ms)
What is Africa's largest country? ?This pavilion 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (?This pavilion, represents, Africa) -> ?This pavilion (4762ms)
What is Africa's largest country? medicine 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (medicine, sailed for, southern Africa) -> medicine (4841ms)
What is Africa's largest country? the G8 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the G8, worked with, Africa) -> the G8 (4882ms)
What is Africa's largest country? The farmers 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The farmers, worked with, FARM-Africa) -> The farmers (4375ms)
What is Africa's largest country? Sierra Leone 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Sierra Leone, are representing, Africa) -> Sierra Leone (4875ms)
What is Africa's largest country? GCB 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (GCB, was once rated 10th in, Africa) -> GCB (4794ms)
What is Africa's largest country? a country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a country, surrounded by, South Africa and Mozambique) -> a country (4866ms)
What is Africa's largest country? Togo and Angola 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Togo and Angola, represented, Africa) -> Togo and Angola (4882ms)
What is Africa's largest country? a willing tool 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a willing tool, worked with, apartheid South Africa) -> a willing tool (4832ms)
What is Africa's largest country? SATH 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (SATH, will work with, PhytoTrade Africa) -> SATH (4875ms)
What is Africa's largest country? Ethiopian Prime Minister Meles Zenawi 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Ethiopian Prime Minister Meles Zenawi, will represent, Africa) -> Ethiopian Prime Minister Meles Zenawi (4718ms)
What is Africa's largest country? Mr. Pharasi 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Mr. Pharasi, previously worked with, Viral Genetics South Africa) -> Mr. Pharasi (4866ms)
What is Africa's largest country? the deer family 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the deer family, is represented in, Africa) -> the deer family (4751ms)
What is Africa's largest country? February JWW 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (February JWW, worked with, Moriah Africa) -> February JWW (4740ms)
What is Africa's largest country? The Game Reserve 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The Game Reserve, is rated as, South Africa) -> The Game Reserve (4718ms)
What is Africa's largest country? Ibrahima 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Ibrahima, sailed for, Africa) -> Ibrahima (4814ms)
What is Africa's largest country? the fairly traded items 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the fairly traded items, are sourced from, Africa) -> the fairly traded items (4832ms)
What is Africa's largest country? The Kenyan womens national team 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The Kenyan womens national team, will represent, Africa) -> The Kenyan womens national team (3901ms)
What is Africa's largest country? the five countries 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the five countries, representing, Africa) -> the five countries (4849ms)
What is Africa's largest country? Miss Togo 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Miss Togo, has also worked with, the Miss South Africa team) -> Miss Togo (3458ms)
What is Africa's largest country? chair 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (chair, represents, Africa) -> chair (4463ms)
What is Africa's largest country? Wood 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Wood, is the main energy source in, rural Africa) -> Wood (4823ms)
What is Africa's largest country? guests 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (guests, surrounded by, the rich textures of Africa) -> guests (4533ms)
What is Africa's largest country? Eritrea 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Eritrea, has been ranked as, Africa) -> Eritrea (4902ms)
What is Africa's largest country? the Nile 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the Nile, are sourced from, central Africa) -> the Nile (4841ms)
What is Africa's largest country? the UK 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the UK, would continue to work with, South Africa) -> the UK (4902ms)
What is Africa's largest country? the size 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the size, is surrounded by, South Africa) -> the size (4858ms)
What is Africa's largest country? Moremi 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Moremi, is rated as, Africa) -> Moremi (3488ms)
What is Africa's largest country? Cameroon 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Cameroon, already had the highest tax rates in, Central Africa) -> Cameroon (4741ms)
What is Africa's largest country? haste 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (haste, then set sail for, Africa) -> haste (4762ms)
What is Africa's largest country? the Battalion 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Battalion, sailed for, East Africa) -> the Battalion (4896ms)
What is Africa's largest country? the armies 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the armies, were to sail for, africa) -> the armies (4823ms)
What is Africa's largest country? a man 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a man, worked closely with, Apartheid South Africa) -> a man (4751ms)
What is Africa's largest country? ships 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (ships, set sail for, Africa) -> ships (4774ms)
What is Africa's largest country? Zimbabwe 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Zimbabwe, has the highest literacy rate in, Africa) -> Zimbabwe (3487ms)
What is Africa's largest country? achievers and trend setters 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (achievers and trend setters, positively represent, Africa) -> achievers and trend setters (4751ms)
What is Africa's largest country? The 2nd battalion 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (The 2nd battalion, sailed for, South Africa) -> The 2nd battalion (4762ms)
What is Africa's largest country? David 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (David, representing, South Africa) -> David (4794ms)
What is Africa's largest country? consulates 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (consulates, representing, South Africa) -> consulates (4741ms)
What is Africa's largest country? NOC 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (NOC, works closely with, GOOS-Africa) -> NOC (4741ms)
What is Africa's largest country? the Rock 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Rock, sets sail for, Africa) -> the Rock (4794ms)
What is Africa's largest country? years 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (years, afterwards sailed for, Africa) -> years (3901ms)
What is Africa's largest country? Five teams 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Five teams, will represent, Africa) -> Five teams (4875ms)
What is Africa's largest country? Gandhi 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Gandhi, had sailed for, South Africa) -> Gandhi (4902ms)
What is Africa's largest country? Diamonds 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Diamonds, are another important source of, South Africa) -> Diamonds (4741ms)
What is Africa's largest country? Skills Development 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Skills Development, is ranking high on, South Africa) -> Skills Development (4804ms)
What is Africa's largest country? the fleets 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the fleets, sailed for, Africa and Arabia) -> the fleets (4882ms)
What is Africa's largest country? a naturally derived ingredient 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a naturally derived ingredient, sourced from, Africa) -> a naturally derived ingredient (4823ms)
What is Africa's largest country? the world?s 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the world?s, can be sourced from, Africa) -> the world?s (3562ms)
What is Africa's largest country? catalytic converters 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (catalytic converters, sourced from, South Africa) -> catalytic converters (4762ms)
What is Africa's largest country? The Indian girls 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Indian girls, are ranked just behind, South Africa) -> The Indian girls (4741ms)
What is Africa's largest country? Hayward 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Hayward, represented, South Africa) -> Hayward (4895ms)
What is Africa's largest country? the Heritage logo 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the Heritage logo, represents, Africa) -> the Heritage logo (4875ms)
What is Africa's largest country? gold ? 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (gold ?, sourced from, South Africa) -> gold ? (4850ms)
What is Africa's largest country? HRF 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (HRF, has been working with, the Africa Bureau) -> HRF (4730ms)
What is Africa's largest country? the waters 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the waters, surrounding, Africa) -> the waters (4889ms)
What is Africa's largest country? Yellowwood 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Yellowwood, works closely with, Open Africa) -> Yellowwood (4751ms)
What is Africa's largest country? the 82nd Airborne Division 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the 82nd Airborne Division, set sail for, North Africa) -> the 82nd Airborne Division (4832ms)
What is Africa's largest country? South Africa 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (South Africa, was ranked 10th in, Africa) -> South Africa (4875ms)
What is Africa's largest country? corn 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (corn, is still a primary food source in, Africa) -> corn (4814ms)
What is Africa's largest country? Christian media 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Christian media, sourced in, South Africa REAL LIFE EXPERIENCES) -> Christian media (4751ms)
What is Africa's largest country? the issues 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the issues, surrounding, Africa) -> the issues (4679ms)
What is Africa's largest country? the Indian team 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Indian team, set sail for, East Africa) -> the Indian team (4794ms)
What is Africa's largest country? a Cow 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a Cow, works with in, Africa) -> a Cow (4804ms)
What is Africa's largest country? The Second Contingent 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (The Second Contingent, sailed for, South Africa) -> The Second Contingent (4896ms)
What is Africa's largest country? the pieces 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the pieces, are sourced from, Africa) -> the pieces (4718ms)
What is Africa's largest country? Tanzania 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Tanzania, was ranked 11th in, Sub-Saharan Africa) -> Tanzania (4882ms)
What is Africa's largest country? a few examples 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a few examples, sourced from, Africa) -> a few examples (4804ms)
What is Africa's largest country? Today Ghana 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Today Ghana, represents, Africa) -> Today Ghana (4533ms)
What is Africa's largest country? the African Children?s Choir 1.666666666653 What 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)
What is Africa's largest country? the islands 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the islands, surrounding, Africa) -> the islands (4866ms)
What is Africa's largest country? Lotersztain 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Lotersztain, works with, the InAfrica Foundation) -> Lotersztain (4875ms)
What is Africa's largest country? The tender green leaves 1.666666666653 What 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)
What is Africa's largest country? Winning entries 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Winning entries, will represent, Africa) -> Winning entries (4375ms)
What is Africa's largest country? the Society 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Society, sailed for, Africa) -> the Society (4751ms)
What is Africa's largest country? 10,000 Australian soldiers 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (10,000 Australian soldiers, sailed for, South Africa) -> 10,000 Australian soldiers (4889ms)
What is Africa's largest country? Middle Jurassic strata 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Middle Jurassic strata, represented in, Africa) -> Middle Jurassic strata (3562ms)
What is Africa's largest country? an Anglican missionary 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (an Anglican missionary, sailed for, Africa) -> an Anglican missionary (4866ms)
What is Africa's largest country? Roberts 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Roberts, then set sail for, West Africa) -> Roberts (4832ms)
What is Africa's largest country? beautiful butterflies 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (beautiful butterflies, sourced from, africa and indonesia) -> beautiful butterflies (4679ms)
What is Africa's largest country? Major perennial rivers 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Major perennial rivers, have their sources in, South Africa) -> Major perennial rivers (4866ms)
What is Africa's largest country? The black colours of the flag 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The black colours of the flag, represent, Africa) -> The black colours of the flag (4751ms)
What is Africa's largest country? Hershey?s cocoa 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Hershey?s cocoa, is sourced from, West Africa) -> Hershey?s cocoa (4804ms)
What is Africa's largest country? African 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (African, was the top-ranked junior in, Morocco & Africa) -> African (4718ms)
What is Africa's largest country? themes 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (themes, surrounding, the World Cup and South Africa) -> themes (4896ms)
What is Africa's largest country? The Beast 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The Beast, was rated highly in, South Africa) -> The Beast (4804ms)
What is Africa's largest country? a mammalogist I?d 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a mammalogist I?d, worked with in, Africa) -> a mammalogist I?d (4730ms)
What is Africa's largest country? AIM 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (AIM, offers opportunities to work with, Africa) -> AIM (4902ms)
What is Africa's largest country? the ministry 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the ministry, will work closely with, South Africa) -> the ministry (4866ms)
What is Africa's largest country? a figure 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (a figure, representing, Africa) -> a figure (4679ms)
What is Africa's largest country? India 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (India, is still ranked above, South Africa) -> India (4463ms)
What is Africa's largest country? the kinara 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the kinara, represents, Africa) -> the kinara (4740ms)
What is Africa's largest country? films and events 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (films and events, represent, Africa) -> films and events (3333ms)
What is Africa's largest country? a landlocked nation 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a landlocked nation, surrounded by, South Africa) -> a landlocked nation (4774ms)
What is Africa's largest country? Jakobsen 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Jakobsen, worked with, Africa-related trade) -> Jakobsen (4889ms)
What is Africa's largest country? Eight South African?s 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Eight South African?s, will represent, Africa) -> Eight South African?s (4814ms)
What is Africa's largest country? Johnson Cook 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Johnson Cook, worked with, Operation Crossroads Africa) -> Johnson Cook (4814ms)
What is Africa's largest country? the women WOMANKIND 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the women WOMANKIND, works with in, Africa) -> the women WOMANKIND (4832ms)
What is Africa's largest country? Egypt 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Egypt, are ranked 2nd in, Africa) -> Egypt (4889ms)
What is Africa's largest country? The diamonds 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The diamonds, are sourced from, South Africa) -> The diamonds (4533ms)
What is Africa's largest country? Baltimore 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Baltimore, sailed for, Africa) -> Baltimore (4896ms)
What is Africa's largest country? a UK based charity 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a UK based charity, works with, communities across Africa) -> a UK based charity (4823ms)
What is Africa's largest country? Western Australia 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Western Australia, represented in, Africa) -> Western Australia (4889ms)
What is Africa's largest country? Chillies 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Chillies, are sourced from, Africa Invest) -> Chillies (4813ms)
What is Africa's largest country? an independent country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (an independent country, surrounded by, South Africa) -> an independent country (4741ms)
What is Africa's largest country? The basin 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The basin, is believed to be the source of, Africa ?s) -> The basin (4858ms)
What is Africa's largest country? Zambia 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Zambia, is ranked 11th in, Africa) -> Zambia (4751ms)
What is Africa's largest country? the Zambezi River 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the Zambezi River, surrounded by, Africa ?s incredible wild life) -> the Zambezi River (3333ms)
What is Africa's largest country? Colin 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Colin, worked extensively with, Highway Africa) -> Colin (3488ms)
What is Africa's largest country? a very small country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a very small country, is completely surrounded by, South Africa) -> a very small country (4794ms)
What is Africa's largest country? the former US Coast Guard cutter CHASE 1.666666666653 What 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)
What is Africa's largest country? Nnenna Nwakanma 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Nnenna Nwakanma, represented, Africa) -> Nnenna Nwakanma (4832ms)
What is Africa's largest country? Natural resources 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Natural resources, represent, Africa) -> Natural resources (4730ms)
What is Africa's largest country? books 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (books, will be sourced by, Biblionef South Africa) -> books (4533ms)
What is Africa's largest country? the flag 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the flag, represent, Africa) -> the flag (4813ms)
What is Africa's largest country? The rings 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The rings, represent, Africa) -> The rings (4730ms)
What is Africa's largest country? Jack Morton 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Jack Morton, is working with, SOS Africa) -> Jack Morton (4882ms)
What is Africa's largest country? rich mine owner 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (rich mine owner, had set sail for, Africa) -> rich mine owner (4679ms)
What is Africa's largest country? The country 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The country, was also ranked first in, Africa) -> The country (4774ms)
What is Africa's largest country? the 1st Batalion 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the 1st Batalion, sailed for, South Africa) -> the 1st Batalion (4730ms)
What is Africa's largest country? Nigeria 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Nigeria, will represent, Africa) -> Nigeria (4751ms)
What is Africa's largest country? New 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (New, reduced rates for, South Africa) -> New (4784ms)
What is Africa's largest country? The NYSA 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The NYSA, works very closely with, Lead Africa Schools League) -> The NYSA (4841ms)
What is Africa's largest country? ITC 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (ITC, works with, Africa) -> ITC (4850ms)
What is Africa's largest country? the country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the country, is entirely surrounded by, South Africa) -> the country (4832ms)
What is Africa's largest country? 2010 Uncertainty 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (2010 Uncertainty, surrounds the future of, Africa) -> 2010 Uncertainty (4762ms)
What is Africa's largest country? Balthazar 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Balthazar, represented, Africa) -> Balthazar (4784ms)
What is Africa's largest country? Smith 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Smith, sailed for, South Africa) -> Smith (4889ms)
What is Africa's largest country? Committee members 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Committee members, represent, Africa) -> Committee members (4463ms)
What is Africa's largest country? wildlife 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (wildlife, is the tallest mountain in, Africa) -> wildlife (4909ms)
What is Africa's largest country? Mount Kenya 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kenya, is the second tallest mountain in, Africa) -> Mount Kenya (4915ms)
What is Africa's largest country? Mt Kilimanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mt Kilimanjaro, is the tallest mountain in, Africa) -> Mt Kilimanjaro (4915ms)
What is Africa's largest country? 1920 1.1111111110979999 What is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (1920, had the largest urban population in, Africa) -> 1920 (4909ms)
What is Africa's largest country? Multiple Choice 1.1111111110979999 What is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (Multiple Choice, has the largest population in, Africa) -> Multiple Choice (4915ms)
What is Africa's largest country? KJ 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (KJ, is the tallest mountain in, Africa) -> KJ (4915ms)
What is Africa's largest country? Rand 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (Rand, is the monetary unit of, South Africa) -> Rand (4915ms)
What is Africa's largest country? Kili 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Kili, is the tallest mountain in, Africa) -> Kili (4909ms)
What is Africa's largest country? Bloemfontein 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be sixth largest city in, africa) -> (Bloemfontein, is the sixth largest city in, South Africa) -> Bloemfontein (4915ms)
What is Africa's largest country? The Rand 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (The Rand, is the monetary unit of, South Africa) -> The Rand (4909ms)
What is Africa's largest country? Country Context DRC 1.1111111110979999 What 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)
What is Africa's largest country? Kilimanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Kilimanjaro, is the tallest mountain in, Africa) -> Kilimanjaro (4909ms)
What is Africa's largest country? the equator 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (the equator, is the tallest mountain in, Africa) -> the equator (4915ms)
What is Africa's largest country? the Rand 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (the Rand, is the official monetary unit of, South Africa) -> the Rand (4909ms)
What is Africa's largest country? The mighty Okavango 1.1111111110979999 What 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)
What is Africa's largest country? game 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (game, is the tallest mountain in, Africa) -> game (4909ms)
What is Africa's largest country? Mount Kilamanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kilamanjaro, is the tallest mountain in, Africa) -> Mount Kilamanjaro (4909ms)
What is Africa's largest country? the ?rand? 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (the ?rand?, is the official monetary unit of, South Africa) -> the ?rand? (4915ms)
What is Africa's largest country? Mount Kilimanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kilimanjaro, is the tallest mountain in, Africa) -> Mount Kilimanjaro (4915ms)
What is Africa's largest country? 1 . Algeria 0.5555555555289999 What 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)
What is Africa's largest country? The Congo 0.5555555555289999 What 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)
What is Africa's largest country? Za?re 0.5555555555289999 What 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)
What is Africa's largest country? Overview Algeria 0.5555555555289999 What 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)
What is Africa's largest country? Congo 0.5555555555289999 What 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)
What is Africa's largest country? French StampAlgeria 0.5555555555289999 What 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)
What is Africa's largest country? Ethiopia 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Ethiopia, is the second largest country in, Africa) -> Ethiopia (4920ms)
What is Africa's largest country? Algeria Algeria 0.5555555555289999 What 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)
What is Africa's largest country? Dr Tlou 0.444444444445 What is Africa's largest country? -> $x: ($x, represent, eastern africa) -> (Dr Tlou, also represented, Eastern and Southern Africa) -> Dr Tlou (4920ms)
What is Africa's largest country? the capital Maputo 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, southern africa) -> (the capital Maputo, represents the gateway to, Southern Africa) -> the capital Maputo (4926ms)
What is Africa's largest country? only one species 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, southern africa) -> (only one species, represented in, southern Africa) -> only one species (4926ms)
What is Africa's largest country? The body 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (The body, representing nations in, West Africa) -> The body (4926ms)
What is Africa's largest country? SWAPO 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (SWAPO, represented radical elements in, South West Africa) -> SWAPO (4931ms)
What is Africa's largest country? the regional body 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (the regional body, representing, states in West Africa) -> the regional body (4926ms)
What is Africa's largest country? the regional bloc 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (the regional bloc, representing nations in, West Africa) -> the regional bloc (4920ms)
What is Africa's largest country? The regional body 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (The regional body, representing 15 nations in, West Africa) -> The regional body (4926ms)
What is Africa's largest country? Mungoshi 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, southern africa) -> (Mungoshi, was representing, Southern Africa) -> Mungoshi (4926ms)
What is Africa's largest country? the collection 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (the collection, represent the range of, West Africa) -> the collection (4926ms)
What is Africa's largest country? the Medicines Control Council 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Medicines Control Council, represented, South Africa) -> the Medicines Control Council (4955ms)
What is Africa's largest country? Khumalo 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Khumalo, represented, South Africa 50 times) -> Khumalo (4945ms)
What is Africa's largest country? South African franchise 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (South African franchise, represent, South Africa) -> South African franchise (4961ms)
What is Africa's largest country? The teams 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The teams, to represent, South Africa) -> The teams (4948ms)
What is Africa's largest country? ?The finalists 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (?The finalists, represent, the best South Africa) -> ?The finalists (4964ms)
What is Africa's largest country? Twalu?s population 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Twalu?s population, represents one third of, South Africa) -> Twalu?s population (4964ms)
What is Africa's largest country? Ryk 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Ryk, will represent, South Africa) -> Ryk (4948ms)
What is Africa's largest country? Barry 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Barry, has represented, South Africa) -> Barry (4931ms)
What is Africa's largest country? players 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (players, to represent, South Africa) -> players (4955ms)
What is Africa's largest country? Hip-hop 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Hip-hop, represents, South Africa) -> Hip-hop (4968ms)
What is Africa's largest country? Solomons 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Solomons, has been representing, South Africa) -> Solomons (4958ms)
What is Africa's largest country? the first black African cricketer 0.33333333333299997 What 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)
What is Africa's largest country? Simona 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Simona, has been represented in, South Africa) -> Simona (4964ms)
What is Africa's largest country? The team 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The team, selected to represent, South Africa) -> The team (4931ms)
What is Africa's largest country? ASISA 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (ASISA, represents the majority of, South Africa) -> ASISA (4958ms)
What is Africa's largest country? A team of 41 athletes 0.33333333333299997 What 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)
What is Africa's largest country? Karl Stegen 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Karl Stegen, represented, South Africa) -> Karl Stegen (4936ms)
What is Africa's largest country? the Western Cape 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Western Cape, represents the essence of, South Africa) -> the Western Cape (4970ms)
What is Africa's largest country? ?This clinical trial 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (?This clinical trial, represents a milestone for, South Africa) -> ?This clinical trial (4964ms)
What is Africa's largest country? Canada and Johnston 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Canada and Johnston, represented, South Africa) -> Canada and Johnston (4971ms)
What is Africa's largest country? PFF 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (PFF, represents most of, South Africa) -> PFF (4952ms)
What is Africa's largest country? The plant 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The plant, represents, South Africa) -> The plant (4968ms)
What is Africa's largest country? croquet 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (croquet, has represented, South Africa) -> croquet (4948ms)
What is Africa's largest country? Gail Anthony 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Gail Anthony, was selected to represent, South Africa) -> Gail Anthony (4966ms)
What is Africa's largest country? The transaction 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The transaction, represents, South Africa) -> The transaction (4968ms)
What is Africa's largest country? a political system 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a political system, represented everyone in, South Africa) -> a political system (4940ms)
What is Africa's largest country? Thomas Cook 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Thomas Cook, is represented in, South Africa) -> Thomas Cook (4961ms)
What is Africa's largest country? fists 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (fists, has represented, South Africa) -> fists (4964ms)
What is Africa's largest country? social justice 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (social justice, is perhaps represented by, South Africa) -> social justice (4964ms)
What is Africa's largest country? Skoonheid 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Skoonheid, represent, South Africa) -> Skoonheid (4955ms)
What is Africa's largest country? the squad 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the squad, will represent, South Africa) -> the squad (4970ms)
What is Africa's largest country? a sport 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a sport, would represent, South Africa) -> a sport (4958ms)
What is Africa's largest country? Britain 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Britain, was represented in, South Africa) -> Britain (4955ms)
What is Africa's largest country? Kronk 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Kronk, represent the spirit of, South Africa) -> Kronk (4970ms)
What is Africa's largest country? Bokang Montjane 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Bokang Montjane, will represent, South Africa) -> Bokang Montjane (4961ms)
What is Africa's largest country? the Amy Biehl Club 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Amy Biehl Club, proudly represented, South Africa) -> the Amy Biehl Club (4936ms)
What is Africa's largest country? a translation 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a translation, represent, South Africa) -> a translation (4945ms)
What is Africa's largest country? the single institution 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the single institution, represents, South Africa) -> the single institution (4966ms)
What is Africa's largest country? Just Music 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Just Music, also represents some of, South Africa) -> Just Music (4952ms)
What is Africa's largest country? Tinker Makhane 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Tinker Makhane, represented, South Africa) -> Tinker Makhane (4945ms)
What is Africa's largest country? LEARN 2 SURF 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (LEARN 2 SURF, represent, South Africa) -> LEARN 2 SURF (4971ms)
What is Africa's largest country? BP Microsystems 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (BP Microsystems, is now represented in, South Africa) -> BP Microsystems (4970ms)
What is Africa's largest country? Tough Love 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Tough Love, represented throughout, South Africa) -> Tough Love (4955ms)
What is Africa's largest country? Julian 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Julian, represented, his native South Africa) -> Julian (4945ms)
What is Africa's largest country? a National team 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a National team, to represent, South Africa) -> a National team (4964ms)
What is Africa's largest country? iVeri 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (iVeri, is represented in, South Africa) -> iVeri (4955ms)
What is Africa's largest country? Schabort 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Schabort, will likely represent, South Africa) -> Schabort (4966ms)
What is Africa's largest country? diverse sources 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (diverse sources, represent, South Africa) -> diverse sources (4948ms)
What is Africa's largest country? the major vehicle makers 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the major vehicle makers, are represented in, South Africa) -> the major vehicle makers (4931ms)
What is Africa's largest country? David Letterman Die Antwoord 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (David Letterman Die Antwoord, will be representing, South Africa) -> David Letterman Die Antwoord (4970ms)
What is Africa's largest country? Khanyisa Masebeni 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Khanyisa Masebeni, was selected to represent, South Africa) -> Khanyisa Masebeni (4964ms)
What is Africa's largest country? Nexus 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Nexus, represents, South Africa) -> Nexus (4935ms)
What is Africa's largest country? Vickerman 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Vickerman, represented, South Africa) -> Vickerman (4931ms)
What is Africa's largest country? Matapa 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Matapa, will represent, South Africa) -> Matapa (4961ms)
What is Africa's largest country? Zoe 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Zoe, has represented, South Africa) -> Zoe (4931ms)
What is Africa's largest country? Today Lufthansa Group 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Today Lufthansa Group, is strongly represented in, South Africa) -> Today Lufthansa Group (4966ms)
What is Africa's largest country? cricket 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (cricket, represented, South Africa) -> cricket (4945ms)
What is Africa's largest country? Africa 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Africa, will be represented by, South Africa) -> Africa (4970ms)
What is Africa's largest country? Geoff 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Geoff, has represented, South Africa) -> Geoff (4958ms)
What is Africa's largest country? KZN 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (KZN, is now representing, South Africa) -> KZN (4966ms)
What is Africa's largest country? the national squad 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the national squad, to represent, South Africa) -> the national squad (4971ms)
What is Africa's largest country? The Y shape 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The Y shape, represents the convergence of, South Africa) -> The Y shape (4945ms)
What is Africa's largest country? every art form 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (every art form, is represented all over, South Africa) -> every art form (4955ms)
What is Africa's largest country? Proteaceae 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Proteaceae, is best represented in, South Africa) -> Proteaceae (4961ms)
What is Africa's largest country? Hitachi Ltd 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Hitachi Ltd, is represented in, South Africa) -> Hitachi Ltd (4968ms)
What is Africa's largest country? the National Council 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the National Council, has represented, South Africa) -> the National Council (4971ms)
What is Africa's largest country? Catherine HIGGINS 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Catherine HIGGINS, represented, South Africa) -> Catherine HIGGINS (4955ms)
What is Africa's largest country? Venda--are 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Venda--are, represented in, South Africa) -> Venda--are (4970ms)
What is Africa's largest country? Shaun Pollock 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Shaun Pollock, represented, South Africa) -> Shaun Pollock (4949ms)
What is Africa's largest country? the athletes 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the athletes, to represent, South Africa) -> the athletes (4952ms)
What is Africa's largest country? Beth 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Beth, has subsequently represented, South Africa) -> Beth (4971ms)
What is Africa's largest country? CAF 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (CAF, has been represented in, South Africa) -> CAF (4948ms)
What is Africa's largest country? Rasool 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Rasool, has represented, South Africa) -> Rasool (4952ms)
What is Africa's largest country? a Verwoerd 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a Verwoerd, representing, the new South Africa) -> a Verwoerd (4972ms)
What is Africa's largest country? The frozen seas 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (The frozen seas, surrounding, the South Pole) -> The frozen seas (4972ms)
What is Africa's largest country? the bottom 0.222222222223 What is Africa's largest country? -> $x: ($x, represent, south pole) -> (the bottom, represents, the South Pole) -> the bottom (4972ms)
What is Africa's largest country? the circumference 0.222222222223 What is Africa's largest country? -> $x: ($x, represent, south pole) -> (the circumference, represents, the South Pole) -> the circumference (4973ms)
What is Africa's largest country? field sites 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (field sites, surrounding, the North and South Poles) -> field sites (4972ms)
What is Africa's largest country? a large region 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (a large region, surrounding, the planet 's south pole) -> a large region (4972ms)
What is Africa's largest country? the frozen continent 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (the frozen continent, surrounding, the Earth 's South Pole) -> the frozen continent (4972ms)
What is Africa's largest country? 27 men 0.222222222223 What is Africa's largest country? -> $x: ($x, sail for, south pole) -> (27 men, set sail for, the South Pole) -> 27 men (4972ms)
What is Africa's largest country? The city 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, savanna) -> (The city, is surrounded by, a vast savanna) -> The city (4973ms)
What is Africa's largest country? The continent of Antarctica 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (The continent of Antarctica, surrounds, the south pole) -> The continent of Antarctica (4973ms)
What is Africa's largest country? the yellow 0.222222222223 What is Africa's largest country? -> $x: ($x, represent, savanna) -> (the yellow, represents, the savannas) -> the yellow (4972ms)
What is Africa's largest country? Antarctica 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (Antarctica, surrounds, the south pole) -> Antarctica (4973ms)
What is Africa's largest country? Natural History Antarctica 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (Natural History Antarctica, surrounds, the South Pole) -> Natural History Antarctica (4972ms)
What is Africa's largest country? a continent 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (a continent, surrounding, the South Pole) -> a continent (4973ms)
What is Africa's largest country? the positive and negative 0.222222222223 What 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)
What is Dr. Ruth's last name? Acting Director -0.0 What is Dr. Ruth's last name? -> $x: (dr. ruth, be name, $x) -> (Dr. Ruth L. Kirschstein, is named, Acting Director) -> Acting Director (497ms)
Who is the manager of the Boston Pops? Boogie 0.33333333333299997 Who 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)
What is Curveball's real name? the Iraqi defector -0.333333333334 What is Curveball's real name? -> $x: (curveball, be name, $x) -> (Curveball, was the code name of, the Iraqi defector) -> the Iraqi defector (911ms)
What is Curveball's real name? the White House -0.6666666666650001 What is Curveball's real name? -> $x: ($x, be real, curveball) -> (the White House, was the real victim of, Curveball?s) -> the White House (911ms)
What is Curveball's real name? a better idea -0.777777777774 What is Curveball's real name? -> $x: ($x, happen to, curveball) -> (a better idea, happens to, high curveballs) -> a better idea (911ms)
What is Curveball's real name? Life -0.8888888888850001 What is Curveball's real name? -> $x: ($x, number, curveball) -> (Life, will definitely throw a number of, common curveballs) -> Life (950ms)
In what year was Padre Pio born? the village 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, the village) -> the village (721ms)
In what year was Padre Pio born? Pietrelcina 1.33333333333 In 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)
In what year was Padre Pio born? Italy 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Italy) -> Italy (721ms)
In what year was Padre Pio born? Southern Italy 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Southern Italy) -> Southern Italy (721ms)
In what year was Padre Pio born? 1887 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, 1887) -> 1887 (721ms)
In what year was Padre Pio born? Pietralcina 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Pietralcina) -> Pietralcina (721ms)
In what year was Padre Pio born? The same -1.5555555555529998 In what year was Padre Pio born? -> $x: ($x, happen to, padre pio) -> (The same, happened to, Padre Pio) -> The same (805ms)
What is schizophrenia? no particular 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (no particular, causes for, schizophrenia) -> no particular (6748ms)
What is schizophrenia? bromine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (bromine, can cause, schizophrenia) -> bromine (5644ms)
What is schizophrenia? Scientists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Scientists, causes, schizophrenia) -> Scientists (5475ms)
What is schizophrenia? toxoplasmosis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (toxoplasmosis, causes, schizophrenia) -> toxoplasmosis (4353ms)
What is schizophrenia? the search 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the search, cause, Schizophrenia) -> the search (6677ms)
What is schizophrenia? the root 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the root, causes of, schizophrenia) -> the root (2928ms)
What is schizophrenia? Schizophrenia Information > 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Schizophrenia Information >, Causes, Schizophrenia) -> Schizophrenia Information > (4353ms)
What is schizophrenia? Nobody 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Nobody, causes, schizophrenia) -> Nobody (6520ms)
What is schizophrenia? scientists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (scientists, causes, schizophrenia) -> scientists (6831ms)
What is schizophrenia? biology 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (biology, causes, schizophrenia) -> biology (2689ms)
What is schizophrenia? Google 0.33333333333299997 What is schizophrenia? -> $x: ($x, invent, schizophrenia) -> (Google, invented, a new form of schizophrenia) -> Google (5644ms)
What is schizophrenia? a chemical imbalance 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a chemical imbalance, caused, schizophrenia) -> a chemical imbalance (6748ms)
What is schizophrenia? schizoph 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (schizoph, causes, schizophrenia) -> schizoph (2689ms)
What is schizophrenia? Stress 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Stress, can cause, schizophrenia) -> Stress (6520ms)
What is schizophrenia? ? Marijuana 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (? Marijuana, causes, Schizophrenia) -> ? Marijuana (5475ms)
What is schizophrenia? no closer 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (no closer, causes, schizophrenia) -> no closer (7138ms)
What is schizophrenia? higher levels 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (higher levels, may cause, schizophrenia) -> higher levels (6677ms)
What is schizophrenia? the question 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the question, causes, schizophrenia) -> the question (2688ms)
What is schizophrenia? substance abuse 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (substance abuse, causes, schizophrenia) -> substance abuse (6678ms)
What is schizophrenia? order 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (order, causes, schizophrenia) -> order (4179ms)
What is schizophrenia? Dopamine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Dopamine, causes, Schizophrenia) -> Dopamine (5475ms)
What is schizophrenia? smoking cannabis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (smoking cannabis, causes, schizophrenia) -> smoking cannabis (5475ms)
What is schizophrenia? the biochemical imbalances 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the biochemical imbalances, cause, schizophrenia) -> the biochemical imbalances (6831ms)
What is schizophrenia? Psychosis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Psychosis, Causes, Schizophrenia) -> Psychosis (6520ms)
What is schizophrenia? housecats 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (housecats, can cause, schizophrenia) -> housecats (7138ms)
What is schizophrenia? cannabis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (cannabis, did cause, schizophrenia) -> cannabis (6521ms)
What is schizophrenia? tobacco 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (tobacco, causes, schizophrenia) -> tobacco (6520ms)
What is schizophrenia? Researchers 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Researchers, causes, schizophrenia) -> Researchers (2928ms)
What is schizophrenia? paranoid delusions 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (paranoid delusions, caused by, schizophrenia) -> paranoid delusions (6831ms)
What is schizophrenia? brain synaptic transfer 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain synaptic transfer, cause, schizophrenia) -> brain synaptic transfer (6748ms)
What is schizophrenia? Psychiatrists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Psychiatrists, causes, schizophrenia) -> Psychiatrists (7138ms)
What is schizophrenia? UndoJan 19 , 2012 ? 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (UndoJan 19 , 2012 ?, causes, schizophrenia) -> UndoJan 19 , 2012 ? (2928ms)
What is schizophrenia? Doctors 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Doctors, causes, schizophrenia) -> Doctors (6748ms)
What is schizophrenia? the Sun 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the Sun, causes, schizophrenia) -> the Sun (4353ms)
What is schizophrenia? Experts 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Experts, causes, schizophrenia) -> Experts (2928ms)
What is schizophrenia? Feline parasite 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Feline parasite, ?can cause, schizophrenia) -> Feline parasite (6677ms)
What is schizophrenia? sun 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (sun, can cause, schizophrenia) -> sun (5475ms)
What is schizophrenia? a gene or genes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a gene or genes, cause, schizophrenia) -> a gene or genes (2689ms)
What is schizophrenia? pot 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (pot, causes, schizophrenia) -> pot (6520ms)
What is schizophrenia? clinical psychopharmacologists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (clinical psychopharmacologists, causes, schizophrenia) -> clinical psychopharmacologists (5644ms)
What is schizophrenia? certain 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (certain, causes, schizophrenia) -> certain (6748ms)
What is schizophrenia? the categories 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the categories, actually seem to cause, Schizophrenia) -> the categories (6831ms)
What is schizophrenia? Jan 17 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Jan 17, causes, schizophrenia) -> Jan 17 (2928ms)
What is schizophrenia? reference 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (reference, Causes, Schizophrenia ?) -> reference (5644ms)
What is schizophrenia? cats 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (cats, cause, schizophrenia) -> cats (7138ms)
What is schizophrenia? Cause Experts 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Cause Experts, causes, schizophrenia) -> Cause Experts (7138ms)
What is schizophrenia? extra bodeads 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (extra bodeads, will cause, schizophrenia) -> extra bodeads (5475ms)
What is schizophrenia? brain volumes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain volumes, caused by, schizophrenia) -> brain volumes (4179ms)
What is schizophrenia? high dopamine levels 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (high dopamine levels, cause, schizophrenia) -> high dopamine levels (6748ms)
What is schizophrenia? dopamine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (dopamine, may cause, schizophrenia) -> dopamine (5475ms)
What is schizophrenia? the suffering 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the suffering, caused by, schizophrenia) -> the suffering (6831ms)
What is schizophrenia? the genetic code 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the genetic code, causes most cases of, schizophrenia) -> the genetic code (6749ms)
What is schizophrenia? the field 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the field, causes, schizophrenia) -> the field (5644ms)
What is schizophrenia? May 12 , 2011 Proof 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (May 12 , 2011 Proof, cause, schizophrenia) -> May 12 , 2011 Proof (7138ms)
What is schizophrenia? a clue 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a clue, causes, schizophrenia) -> a clue (6677ms)
What is schizophrenia? medical science 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (medical science, causes, schizophrenia) -> medical science (5475ms)
What is schizophrenia? drug abuse 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (drug abuse, will cause, schizophrenia) -> drug abuse (7138ms)
What is schizophrenia? Brain abnormalities 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Brain abnormalities, are the cause of, schizophrenia) -> Brain abnormalities (6831ms)
What is schizophrenia? information 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (information, causes, schizophrenia) -> information (6831ms)
What is schizophrenia? Environmental factor 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Environmental factor, Diseases or conditions caused, Schizophrenia) -> Environmental factor (7138ms)
What is schizophrenia? marijuana 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (marijuana, to causing, Schizophrenia) -> marijuana (7138ms)
What is schizophrenia? herpes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (herpes, causes, schizophrenia) -> herpes (4179ms)
What is schizophrenia? hallucinations 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (hallucinations, caused by, schizophrenia) -> hallucinations (4353ms)
What is schizophrenia? experts 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (experts, causes, schizophrenia) -> experts (6831ms)
What is schizophrenia? the behavior 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the behavior, caused by, schizophrenia) -> the behavior (4179ms)
What is schizophrenia? too much dopamine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (too much dopamine, must cause, schizophrenia) -> too much dopamine (4353ms)
What is schizophrenia? a gene 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a gene, causes, schizophrenia) -> a gene (2689ms)
What is schizophrenia? the mystery 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the mystery, causes, schizophrenia) -> the mystery (5644ms)
What is schizophrenia? the stress 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the stress, can cause, schizophrenia) -> the stress (4353ms)
What is schizophrenia? drugs 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (drugs, cause, schizophrenia) -> drugs (4179ms)
What is schizophrenia? child abuse 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (child abuse, can cause, schizophrenia) -> child abuse (5644ms)
What is schizophrenia? the brain 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the brain, can cause, schizophrenia) -> the brain (6521ms)
What is schizophrenia? brain atrophy 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain atrophy, causes, Schizophrenia) -> brain atrophy (2689ms)
What is schizophrenia? multiple genes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (multiple genes, cause, schizophrenia) -> multiple genes (4179ms)
What is schizophrenia? Marijuana 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Marijuana, causes, schizophrenia) -> Marijuana (4179ms)
What is schizophrenia? the factors 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the factors, causes, Schizophrenia) -> the factors (4353ms)
What is schizophrenia? the most important kinds of impairment 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the most important kinds of impairment, caused by, schizophrenia) -> the most important kinds of impairment (6677ms)
What is schizophrenia? Cannabis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Cannabis, causes, schizophrenia) -> Cannabis (6520ms)
What is schizophrenia? auditory hallucinations 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (auditory hallucinations, caused by, schizophrenia) -> auditory hallucinations (6677ms)
What is schizophrenia? anomalies 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (anomalies, develop prenatally in, schizophrenia) -> anomalies (7991ms)
What is schizophrenia? Melville C 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Melville C, Relapse in, schizophrenia) -> Melville C (8026ms)
What is schizophrenia? the brain changes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the brain changes, seen in, schizophrenia) -> the brain changes (7991ms)
What is schizophrenia? a doctor 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a doctor, specialized in, schizophrenia) -> a doctor (8043ms)
What is schizophrenia? insufficient motivation 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (insufficient motivation, observed in, schizophrenia) -> insufficient motivation (8026ms)
What is schizophrenia? the gene 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the gene, was first implicated in, schizophrenia) -> the gene (8026ms)
What is schizophrenia? the neural deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the neural deficits, observed in, schizophrenia) -> the neural deficits (8008ms)
What is schizophrenia? the brain regions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the brain regions, involved in, schizophrenia) -> the brain regions (7974ms)
What is schizophrenia? sentence 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (sentence, boundaries in, schizophrenia) -> sentence (8008ms)
What is schizophrenia? Neurolinguistics 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Neurolinguistics, Language in, Schizophrenia) -> Neurolinguistics (7955ms)
What is schizophrenia? Somatic hallucinations 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Somatic hallucinations, occur in, schizophrenia) -> Somatic hallucinations (7991ms)
What is schizophrenia? hearing voices 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (hearing voices, experience in, schizophrenia) -> hearing voices (8026ms)
What is schizophrenia? the deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the deficits, observed in, schizophrenia) -> the deficits (8008ms)
What is schizophrenia? the psychotic symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the psychotic symptoms, found in, schizophrenia) -> the psychotic symptoms (8026ms)
What is schizophrenia? Two gene variants 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Two gene variants, implicated in, schizophrenia) -> Two gene variants (8026ms)
What is schizophrenia? a syndrome 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a syndrome, seen in, schizophrenia) -> a syndrome (7974ms)
What is schizophrenia? cognitive deficit 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (cognitive deficit, observed in, schizophrenia) -> cognitive deficit (7138ms)
What is schizophrenia? yet psychoanalytic theorists 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (yet psychoanalytic theorists, found in, schizophrenia) -> yet psychoanalytic theorists (7974ms)
What is schizophrenia? genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (genes, play in, schizophrenia) -> genes (7974ms)
What is schizophrenia? Alcohol and cannabis 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Alcohol and cannabis, use in, schizophrenia) -> Alcohol and cannabis (7991ms)
What is schizophrenia? the cognitive/attentional abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive/attentional abnormalities, found in, schizophrenia) -> the cognitive/attentional abnormalities (8026ms)
What is schizophrenia? the central self 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the central self, happens in, schizophrenia) -> the central self (7991ms)
What is schizophrenia? the breakthroughs 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the breakthroughs, in treating, schizophrenia) -> the breakthroughs (7955ms)
What is schizophrenia? information-processing deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (information-processing deficits, occur in, schizophrenia) -> information-processing deficits (7991ms)
What is schizophrenia? brain regions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (brain regions, described in, schizophrenia) -> brain regions (7956ms)
What is schizophrenia? antipsychotic drugs 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (antipsychotic drugs, in treating, schizophrenia) -> antipsychotic drugs (8008ms)
What is schizophrenia? the hallucinations 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the hallucinations, occur in, schizophrenia) -> the hallucinations (8008ms)
What is schizophrenia? the symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the symptoms, occurring in, schizophrenia) -> the symptoms (8026ms)
What is schizophrenia? the cognitive deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive deficits, observed in, schizophrenia) -> the cognitive deficits (7973ms)
What is schizophrenia? basal ganglia 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (basal ganglia, function in, schizophrenia) -> basal ganglia (7956ms)
What is schizophrenia? A gene 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (A gene, implicated in, schizophrenia) -> A gene (7956ms)
What is schizophrenia? White matter 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (White matter, changes in, schizophrenia) -> White matter (8008ms)
What is schizophrenia? Flat 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Flat, affect in, schizophrenia) -> Flat (7973ms)
What is schizophrenia? Prodromal symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Prodromal symptoms, relapse prevention in, schizophrenia) -> Prodromal symptoms (8008ms)
What is schizophrenia? cognitive/attentional abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (cognitive/attentional abnormalities, found in, schizophrenia) -> cognitive/attentional abnormalities (7956ms)
What is schizophrenia? Zyprexa ? 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Zyprexa ?, used in, schizophrenia) -> Zyprexa ? (8043ms)
What is schizophrenia? depression 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (depression, observed in, schizophrenia) -> depression (7138ms)
What is schizophrenia? likely 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (likely, occurs in, schizophrenia) -> likely (7973ms)
What is schizophrenia? Dopamine D4 receptors 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Dopamine D4 receptors, elevated in, schizophrenia) -> Dopamine D4 receptors (8008ms)
What is schizophrenia? R.C. Flat 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (R.C. Flat, affect in, schizophrenia) -> R.C. Flat (7991ms)
What is schizophrenia? an inhibitory deficit 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (an inhibitory deficit, found in, schizophrenia) -> an inhibitory deficit (8044ms)
What is schizophrenia? the genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the genes, involved in, schizophrenia) -> the genes (7955ms)
What is schizophrenia? brain abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (brain abnormalities, occur in, schizophrenia) -> brain abnormalities (8026ms)
What is schizophrenia? the body 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the body, occurs in, schizophrenia) -> the body (8026ms)
What is schizophrenia? Anarchy 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Anarchy, works in, schizophrenia) -> Anarchy (8026ms)
What is schizophrenia? negative symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (negative symptoms, commonly observed in, schizophrenia) -> negative symptoms (7991ms)
What is schizophrenia? an area 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (an area, may be involved in, schizophrenia) -> an area (7991ms)
What is schizophrenia? the problem 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the problem, lie in, schizophrenia) -> the problem (7991ms)
What is schizophrenia? a brain chemical 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a brain chemical, involved in, schizophrenia) -> a brain chemical (7991ms)
What is schizophrenia? metabolites 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (metabolites, significantly altered in, schizophrenia) -> metabolites (7973ms)
What is schizophrenia? Toxiplasmosis 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Toxiplasmosis, plays a part in, schizophrenia) -> Toxiplasmosis (7991ms)
What is schizophrenia? circadian rhythm disturbances 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (circadian rhythm disturbances, observed in, schizophrenia) -> circadian rhythm disturbances (8043ms)
What is schizophrenia? psychodynamic psychotherapy 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (psychodynamic psychotherapy, in treating, schizophrenia) -> psychodynamic psychotherapy (7991ms)
What is schizophrenia? the fundamental defects 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the fundamental defects, found in, schizophrenia) -> the fundamental defects (7955ms)
What is schizophrenia? the auditory hallucinations 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the auditory hallucinations, observed in, schizophrenia) -> the auditory hallucinations (7956ms)
What is schizophrenia? Susan J. Out-of-body 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Susan J. Out-of-body, experiences in, schizophrenia) -> Susan J. Out-of-body (7974ms)
What is schizophrenia? active psychosis 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (active psychosis, seen in, schizophrenia) -> active psychosis (8008ms)
What is schizophrenia? Mitochondrial 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Mitochondrial, variants in, schizophrenia) -> Mitochondrial (7956ms)
What is schizophrenia? The Double Bind 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (The Double Bind, in promoting, schizophrenia) -> The Double Bind (8008ms)
What is schizophrenia? the cognitive impairments 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive impairments, seen in, schizophrenia) -> the cognitive impairments (8008ms)
What is schizophrenia? Suicide 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Suicide, attempts in, schizophrenia) -> Suicide (7956ms)
What is schizophrenia? the ability 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the ability, demonstrated in, schizophrenia) -> the ability (8026ms)
What is schizophrenia? the response patterns 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the response patterns, observed in, schizophrenia) -> the response patterns (8043ms)
What is schizophrenia? a phenomenon 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a phenomenon, implicated in, schizophrenia) -> a phenomenon (7955ms)
What is schizophrenia? the defect state 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the defect state, noted in, schizophrenia) -> the defect state (7973ms)
What is schizophrenia? reality distortion and symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (reality distortion and symptoms, occur in, schizophrenia) -> reality distortion and symptoms (7991ms)
What is schizophrenia? the cognitive functions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive functions, affected in, schizophrenia) -> the cognitive functions (7973ms)
What is schizophrenia? a circuit 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a circuit, implicated in, schizophrenia) -> a circuit (8008ms)
What is schizophrenia? disruption during early life 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (disruption during early life, may result in, schizophrenia) -> disruption during early life (8026ms)
What is schizophrenia? a psychiatrist 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a psychiatrist, specializes in, schizophrenia) -> a psychiatrist (8043ms)
What is schizophrenia? the thought disorder 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the thought disorder, seen in, schizophrenia) -> the thought disorder (8026ms)
What is schizophrenia? the voices 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the voices, heard in, schizophrenia) -> the voices (8008ms)
What is schizophrenia? frontal cortex brain 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (frontal cortex brain, proteins in, schizophrenia) -> frontal cortex brain (8043ms)
What is schizophrenia? the abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the abnormalities, seen in, schizophrenia) -> the abnormalities (8043ms)
What is schizophrenia? a person 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a person, has in, schizophrenia) -> a person (8043ms)
What is schizophrenia? the delusions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the delusions, seen in, schizophrenia) -> the delusions (7974ms)
What is schizophrenia? hallucination 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (hallucination, found in, schizophrenia) -> hallucination (8026ms)
What is schizophrenia? The genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (The genes, are implicated in, schizophrenia) -> The genes (7956ms)
What is schizophrenia? the OFC sulcogyral pattern 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the OFC sulcogyral pattern, differed in, schizophrenia) -> the OFC sulcogyral pattern (7991ms)
What is schizophrenia? a complex cognitive function 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a complex cognitive function, is impaired in, schizophrenia) -> a complex cognitive function (8008ms)
What is schizophrenia? mental disorders 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (mental disorders, found in, schizophrenia) -> mental disorders (7956ms)
What is schizophrenia? a schizophrenic individual 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a schizophrenic individual, happens in, schizophrenia) -> a schizophrenic individual (7956ms)
What is schizophrenia? candidate genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (candidate genes, involved in, schizophrenia) -> candidate genes (8043ms)
What is schizophrenia? older medications 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia patients, did as well on, older medications) -> older medications (8077ms)
What is schizophrenia? babies 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (developing schizophrenia, did, babies) -> babies (8060ms)
What is schizophrenia? vast improvements 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do make, vast improvements) -> vast improvements (8093ms)
What is schizophrenia? view recovery 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, view recovery) -> view recovery (8093ms)
What is schizophrenia? an individual 0.111111111111 What is schizophrenia? -> $x: ($x, r, schizophrenia) -> (an individual, met DSM-III-R criteria for, schizophrenia) -> an individual (8077ms)
What is schizophrenia? tribal societies 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia/psychosis, did fair better in, tribal societies) -> tribal societies (8060ms)
What is schizophrenia? women 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, women) -> women (8060ms)
What is schizophrenia? every level 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do perform at, every level) -> every level (8060ms)
What is schizophrenia? researchers 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia prevalence, have been done by, researchers) -> researchers (8077ms)
What is schizophrenia? the progress 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (the progress, described the market for, schizophrenia drugs) -> the progress (8061ms)
What is schizophrenia? paranoia 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has more to do with, paranoia) -> paranoia (8077ms)
What is schizophrenia? a *very slight* hint 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Moral schizophrenia, does have, a *very slight* hint) -> a *very slight* hint (8093ms)
What is schizophrenia? the disorder 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (label schizophrenia, does have, the disorder) -> the disorder (8060ms)
What is schizophrenia? the other leg 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (the other leg, be described as, schizophrenia) -> the other leg (8061ms)
What is schizophrenia? the other people 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (SCHIZOPHRENIA, do the activities like, the other people) -> the other people (8093ms)
What is schizophrenia? a combination 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do best with, a combination) -> a combination (8093ms)
What is schizophrenia? aerobic exercise 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, did 30 minutes of, aerobic exercise) -> aerobic exercise (8043ms)
What is schizophrenia? IGT performance 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (both schizophrenia groups, did worse on, IGT performance) -> IGT performance (8093ms)
What is schizophrenia? run in families 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does tend to, run in families) -> run in families (8093ms)
What is schizophrenia? best 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, best) -> best (8061ms)
What is schizophrenia? low-level jobs 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia cannot, do anything except, low-level jobs) -> low-level jobs (8077ms)
What is schizophrenia? Colby Cosh 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (Colby Cosh, has done a good job of describing, the schizophrenia) -> Colby Cosh (8077ms)
What is schizophrenia? olfactory dysfunction 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (olfactory dysfunction, is well described in, schizophrenia) -> olfactory dysfunction (8093ms)
What is schizophrenia? split personalities 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, split personalities) -> split personalities (8077ms)
What is schizophrenia? families 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do worse in, families) -> families (8093ms)
What is schizophrenia? mental tasks 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do poorly on, mental tasks) -> mental tasks (8060ms)
What is schizophrenia? Laing 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (Laing, described, Schizophrenia) -> Laing (8077ms)
What is schizophrenia? psychologists 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (psychologists, have described, schizophrenia) -> psychologists (8061ms)
What is schizophrenia? a secret 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does n?t have to remain, a secret) -> a secret (8093ms)
What is schizophrenia? everyone else 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, so did, everyone else) -> everyone else (8060ms)
What is schizophrenia? smoking 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, can do to reduce, smoking) -> smoking (8077ms)
What is schizophrenia? the pseudonyms influence 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, far do, the pseudonyms influence) -> the pseudonyms influence (8077ms)
What is schizophrenia? psychotic inpatients 0.111111111111 What is schizophrenia? -> $x: ($x, r, schizophrenia) -> (psychotic inpatients, met DSM-III-R criteria for, schizophrenia) -> psychotic inpatients (8077ms)
What is schizophrenia? risks 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does have, risks) -> risks (8093ms)
What is schizophrenia? cause split personalities 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does n \'t, cause split personalities) -> cause split personalities (8077ms)
What is schizophrenia? associations 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, as do, associations) -> associations (8061ms)
What is schizophrenia? violent ? 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do become, violent ?) -> violent ? (8060ms)
What is schizophrenia? aggression 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does n?t mention, aggression) -> aggression (8077ms)
What is schizophrenia? exist 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does nt, exist) -> exist (8093ms)
What is schizophrenia? grieving 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia ?We carers, do a lot of, grieving) -> grieving (8077ms)
What is schizophrenia? daemons 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, daemons) -> daemons (8043ms)
What is schizophrenia? a level 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (chronic/intermittent schizophrenia, do so at, a level) -> a level (8077ms)
What is schizophrenia? SHANK3 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (SHANK3, have been described in, atypical schizophrenia) -> SHANK3 (8043ms)
What is schizophrenia? physicians 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (physicians, describe, schizophrenia) -> physicians (8061ms)
What is schizophrenia? multiple personality 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, multiple personality) -> multiple personality (8043ms)
What is schizophrenia? the oppressive structure 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, did, the oppressive structure) -> the oppressive structure (8093ms)
What is schizophrenia? cognitive impairment limit improvement 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, Does, cognitive impairment limit improvement) -> cognitive impairment limit improvement (8093ms)
What is schizophrenia? forms 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is just a catch-all term for, forms) -> forms (8125ms)
What is schizophrenia? Chemical imbalances 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Chemical imbalances, can produce, schizophrenia and depression) -> Chemical imbalances (8218ms)
What is schizophrenia? WHAS 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (WHAS, Produces, A Disaster Called Schizophrenia) -> WHAS (8218ms)
What is schizophrenia? long 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been untouched for so, long) -> long (8125ms)
What is schizophrenia? patients 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is looking for, patients) -> patients (8125ms)
What is schizophrenia? such beautiful voices 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is an awful name for, such beautiful voices) -> such beautiful voices (8218ms)
What is schizophrenia? political rather 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been used for, political rather) -> political rather (8157ms)
What is schizophrenia? King Scar 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (King Scar, defines, the escalating schizophrenia) -> King Scar (8141ms)
What is schizophrenia? a schizo-obsessive subtype 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is there evidence for, a schizo-obsessive subtype) -> a schizo-obsessive subtype (8125ms)
What is schizophrenia? the worst 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (paranoid schizophrenia, is to prepare for, the worst) -> the worst (8203ms)
What is schizophrenia? a group 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is the word for, a group) -> a group (8093ms)
What is schizophrenia? a heterogeneous group 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is the collective term for, a heterogeneous group) -> a heterogeneous group (8156ms)
What is schizophrenia? psychiatric treatment 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been admitted for, psychiatric treatment) -> psychiatric treatment (8187ms)
What is schizophrenia? the onset 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, are basic for, the onset) -> the onset (8172ms)
What is schizophrenia? disturbances 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is noted for, disturbances) -> disturbances (8187ms)
What is schizophrenia? distress 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is important for alleviating, distress) -> distress (8172ms)
What is schizophrenia? normal and abnormal behavior 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (normal and abnormal behavior, do, schizophrenia) -> normal and abnormal behavior (8172ms)
What is schizophrenia? heart disease 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are at increased risk for, heart disease) -> heart disease (8141ms)
What is schizophrenia? a mental illness but society 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a mental illness but society, does see, schizophrenia) -> a mental illness but society (8125ms)
What is schizophrenia? OC symptoms 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (chronic schizophrenia, were assessed for, OC symptoms) -> OC symptoms (8141ms)
What is schizophrenia? a living 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (a living, is actually defined as, Schizophrenia) -> a living (8141ms)
What is schizophrenia? genetic counselling 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, be considered for, genetic counselling) -> genetic counselling (8187ms)
What is schizophrenia? bipolar disorder 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are effective for, bipolar disorder) -> bipolar disorder (8187ms)
What is schizophrenia? transient residents 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia rates, are only increased for, transient residents) -> transient residents (8172ms)
What is schizophrenia? The role Toxoplasm gondii 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (The role Toxoplasm gondii, may play in producing, schizophrenia) -> The role Toxoplasm gondii (8125ms)
What is schizophrenia? the impairments 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are important for characterizing, the impairments) -> the impairments (8172ms)
What is schizophrenia? political science 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is also taken for granted in, political science) -> political science (8157ms)
What is schizophrenia? the European initiative 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the European initiative, has produced, the usual schizophrenia) -> the European initiative (8141ms)
What is schizophrenia? Alfred Lion 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Alfred Lion, Releases produced, Schizophrenia) -> Alfred Lion (8109ms)
What is schizophrenia? clinical reasons 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is changed for, clinical reasons) -> clinical reasons (8157ms)
What is schizophrenia? concern 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a cause for, concern) -> concern (8203ms)
What is schizophrenia? Mary Jeffries 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Mary Jeffries, Produces, A Disaster Called Schizophrenia) -> Mary Jeffries (8187ms)
What is schizophrenia? Left theory 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is deeply problematic for, Left theory) -> Left theory (8172ms)
What is schizophrenia? pathological TDP-43 , 18 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was negative for, pathological TDP-43 , 18) -> pathological TDP-43 , 18 (8218ms)
What is schizophrenia? the philosophy 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is an ideal case study for, the philosophy) -> the philosophy (8203ms)
What is schizophrenia? Hallucinogenics 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Hallucinogenics, can produce, schizophrenia) -> Hallucinogenics (8218ms)
What is schizophrenia? mediumistic forces 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (mediumistic forces, produces symptoms of, schizophrenia) -> mediumistic forces (8141ms)
What is schizophrenia? the study 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were recruited for, the study) -> the study (8125ms)
What is schizophrenia? reasons 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (chronic schizophrenia, are discussed for, reasons) -> reasons (8203ms)
What is schizophrenia? unnatural causes 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is accounted for by, unnatural causes) -> unnatural causes (8109ms)
What is schizophrenia? the psychiatrist 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (the psychiatrist, defines, schizophrenia) -> the psychiatrist (8109ms)
What is schizophrenia? Aired 6-11-2010 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Aired 6-11-2010, did the definition of, schizophrenia change) -> Aired 6-11-2010 (8109ms)
What is schizophrenia? the thalamus ? 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (the thalamus ?, do people with, schizophrenia) -> the thalamus ? (8218ms)
What is schizophrenia? the first time 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is usually diagnosed for, the first time) -> the first time (8172ms)
What is schizophrenia? ?silkyegg? ? ? 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (?silkyegg? ? ?, Do, your research?SCHIZOPHRENIA) -> ?silkyegg? ? ? (8172ms)
What is schizophrenia? MPD 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (MPD, is nothing to do with, schizophrenia) -> MPD (8157ms)
What is schizophrenia? family members 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, can be especially difficult for, family members) -> family members (8172ms)
What is schizophrenia? Tom Middleton 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Tom Middleton, Tracks produced, Entrance to Exit (feat. Schizophrenia)) -> Tom Middleton (8109ms)
What is schizophrenia? abnormality 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (abnormality, characterized, schizophrenia patients) -> abnormality (8172ms)
What is schizophrenia? violent behavior 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were assessed for, violent behavior) -> violent behavior (8203ms)
What is schizophrenia? a long time 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, may have been ill for, a long time) -> a long time (8218ms)
What is schizophrenia? one hundred years 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been recognized for over, one hundred years) -> one hundred years (8157ms)
What is schizophrenia? the major and minor alleles 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the major and minor alleles) -> the major and minor alleles (8218ms)
What is schizophrenia? 6 weeks 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were treated for, 6 weeks) -> 6 weeks (8125ms)
What is schizophrenia? exercise 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (exercise, is doing good in, the treatment of schizophrenia) -> exercise (8157ms)
What is schizophrenia? caregivers 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a challenging task for, caregivers) -> caregivers (8157ms)
What is schizophrenia? a Section Chief 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a Section Chief, has done research on, schizophrenia) -> a Section Chief (8172ms)
What is schizophrenia? a revolution 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are ripe for, a revolution) -> a revolution (8202ms)
What is schizophrenia? Parasurama 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Parasurama, does, the schizophrenia) -> Parasurama (8125ms)
What is schizophrenia? publication 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was accepted for, publication) -> publication (8187ms)
What is schizophrenia? a few weeks 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, only need to be tested for, a few weeks) -> a few weeks (8218ms)
What is schizophrenia? each person 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is different for, each person) -> each person (8125ms)
What is schizophrenia? treatments 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (treatments, do help a person with, schizophrenia) -> treatments (8125ms)
What is schizophrenia? large deletions 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were also found for, large deletions) -> large deletions (8218ms)
What is schizophrenia? long time 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been an issue for, long time) -> long time (8203ms)
What is schizophrenia? a formal diagnosis 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is too young for, a formal diagnosis) -> a formal diagnosis (8232ms)
What is schizophrenia? men and women 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is the same for, men and women) -> men and women (8187ms)
What is schizophrenia? Psychiatry 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (Psychiatry, characterizes, schizophrenia) -> Psychiatry (8218ms)
What is schizophrenia? A remarkable study 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (A remarkable study, was done on, schizophrenia) -> A remarkable study (8109ms)
What is schizophrenia? upper-class families 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (upper-class families, do patients with, schizophrenia) -> upper-class families (8203ms)
What is schizophrenia? Read 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Read, exactly does, schizophrenia work) -> Read (8109ms)
What is schizophrenia? any parent 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a life-changing moment for, any parent) -> any parent (8218ms)
What is schizophrenia? madness 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (madness, do patients with, schizophrenia) -> madness (8109ms)
What is schizophrenia? the human body 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the human body, can produce the same symptoms of, schizophrenia) -> the human body (8172ms)
What is schizophrenia? individuals 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is almost doubled for, individuals) -> individuals (8141ms)
What is schizophrenia? psychosurgery 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, was n?t the strong suit for, psychosurgery) -> psychosurgery (8187ms)
What is schizophrenia? the most part 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (the most part, defined, schizophrenia) -> the most part (8157ms)
What is schizophrenia? violent incidents 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (violent incidents, did those with, schizophrenia) -> violent incidents (8187ms)
What is schizophrenia? users 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (users, produces, schizophrenia) -> users (8187ms)
What is schizophrenia? elderly patients 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are commonly prescribed for, elderly patients) -> elderly patients (8187ms)
What is schizophrenia? Dogma 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Dogma, will produce, schizophrenia) -> Dogma (8203ms)
What is schizophrenia? children 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is for, children) -> children (8172ms)
What is schizophrenia? a famous psychiatrist 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (a famous psychiatrist, defined, schizophrenia) -> a famous psychiatrist (8203ms)
What is schizophrenia? RD Laing 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (RD Laing, did on, Schizophrenia) -> RD Laing (8202ms)
What is schizophrenia? positive symptoms 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been used for, positive symptoms) -> positive symptoms (8141ms)
What is schizophrenia? the top-two primary 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the top-two primary, produces, an electoral schizophrenia) -> the top-two primary (8187ms)
What is schizophrenia? cytomegalovirus 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were treated for, cytomegalovirus) -> cytomegalovirus (8157ms)
What is schizophrenia? folks 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (folks, are already doing with, schizophrenia) -> folks (8109ms)
What is schizophrenia? aging than 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (aging than, do patients with, Schizophrenia) -> aging than (8109ms)
What is schizophrenia? close relatives 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is much greater for, close relatives) -> close relatives (8109ms)
What is schizophrenia? the major allele 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the major allele) -> the major allele (8156ms)
What is schizophrenia? Francis Wolff 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Francis Wolff, Releases produced, Schizophrenia) -> Francis Wolff (8232ms)
What is schizophrenia? the individual 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia symptoms, again are for, the individual) -> the individual (8218ms)
What is schizophrenia? young people 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is especially destructive for, young people) -> young people (8187ms)
What is schizophrenia? Ray Davies 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Ray Davies, Tracks produced, Acute Schizophrenia Paranoia Blues) -> Ray Davies (8141ms)
What is schizophrenia? The CCCS 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (The CCCS, does help people with, schizophrenia) -> The CCCS (8218ms)
What is schizophrenia? Armstrong 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Armstrong, would be able to do on, schizophrenia) -> Armstrong (8141ms)
What is schizophrenia? a board game ? 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a board game ?, does, manic depression top schizophrenia) -> a board game ? (8157ms)
What is schizophrenia? the thalamus 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (the thalamus, as do people with, schizophrenia) -> the thalamus (8172ms)
What is schizophrenia? diabetes 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is an independent risk factor for, diabetes) -> diabetes (8218ms)
What is schizophrenia? the sufferer 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are terrifying for, the sufferer) -> the sufferer (8203ms)
What is schizophrenia? assessment interview 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were referred for, assessment interview) -> assessment interview (8187ms)
What is schizophrenia? the treatment 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia SEROQUEL, is indicated for, the treatment) -> the treatment (8203ms)
What is schizophrenia? Fluoridation 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Fluoridation, produces, schizophrenia) -> Fluoridation (8109ms)
What is schizophrenia? The symptoms 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (The symptoms, characterizing, Schizophrenia) -> The symptoms (8125ms)
What is schizophrenia? Japan 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Japan, has decided to do away with, the term schizophrenia) -> Japan (8141ms)
What is schizophrenia? the person 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, can be very difficult for, the person) -> the person (8187ms)
What is schizophrenia? treatment 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is an indication for, treatment) -> treatment (8141ms)
What is schizophrenia? trials 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, there is an urgent need for, trials) -> trials (8157ms)
What is schizophrenia? 6 months 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, there is a requirement for, 6 months) -> 6 months (8125ms)
What is schizophrenia? Western 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, appears to be roughly the same for, Western) -> Western (8203ms)
What is schizophrenia? type 2 diabetes 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are at increased risk for, type 2 diabetes) -> type 2 diabetes (8203ms)
What is schizophrenia? David Cornwell Tony Zichi 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (David Cornwell Tony Zichi, did n?t choose to have, schizophrenia) -> David Cornwell Tony Zichi (8141ms)
What is schizophrenia? influenza exposure 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was increased 7-fold for, influenza exposure) -> influenza exposure (8125ms)
What is schizophrenia? the minor allele 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the minor allele) -> the minor allele (8141ms)
What is schizophrenia? auditory cortex 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (auditory cortex, reliably characterizes, schizophrenia) -> auditory cortex (8157ms)
What is schizophrenia? a psychosis 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a psychosis, was "doing, a schizophrenia) -> a psychosis (8109ms)
What is schizophrenia? Malkin 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Malkin, did n?t say something like, ?Schizophrenia) -> Malkin (8156ms)
What is schizophrenia? small non-connected areas -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (small non-connected areas, creates, schizophrenia) -> small non-connected areas (8247ms)
What is schizophrenia? A large study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A large study, found the risk of, schizophrenia) -> A large study (8278ms)
What is schizophrenia? the world scientists -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the world scientists, are finding, schizophrenia-related genes) -> the world scientists (8278ms)
What is schizophrenia? mother-infant interaction -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (mother-infant interaction, found in, the schizophrenia group) -> mother-infant interaction (8278ms)
What is schizophrenia? Auditory hallucinations -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Auditory hallucinations, are classically found in, schizophrenia) -> Auditory hallucinations (8307ms)
What is schizophrenia? Dopamine hypothesis of schizophrenia -0.0 What 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)
What is schizophrenia? structures -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (structures, found to be abnormal in, chronic schizophrenia) -> structures (8278ms)
What is schizophrenia? He?s -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (He?s, dealt with, schizophrenia) -> He?s (8292ms)
What is schizophrenia? a family member -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a family member, dealing with, schizophrenia) -> a family member (8233ms)
What is schizophrenia? the nervous system -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the nervous system, is found in, schizophrenia) -> the nervous system (8248ms)
What is schizophrenia? Israel -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Israel, is creating a kind of, moral schizophrenia) -> Israel (8307ms)
What is schizophrenia? 14 Brown -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (14 Brown, found a seven-fold increased risk of, schizophrenia) -> 14 Brown (8278ms)
What is schizophrenia? no genes -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (no genes, have been found for, depression or schizophrenia) -> no genes (8248ms)
What is schizophrenia? 18 Brown -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (18 Brown, found a seven-fold increased risk of, schizophrenia) -> 18 Brown (8292ms)
What is schizophrenia? The work -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (The work, deals with, schizophrenia) -> The work (8292ms)
What is schizophrenia? INVEGA? and Schizophrenia -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (INVEGA? and Schizophrenia, Find, schizophrenia) -> INVEGA? and Schizophrenia (8248ms)
What is schizophrenia? Helping -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Helping, Find Treatment For, Schizophrenia) -> Helping (8233ms)
What is schizophrenia? enrollment -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (enrollment, was found in, 6 first-episode schizophrenia) -> enrollment (8307ms)
What is schizophrenia? The MGS study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (The MGS study, also found an association between, schizophrenia) -> The MGS study (8233ms)
What is schizophrenia? the disturbance -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the disturbance, is found in, schizophrenia) -> the disturbance (8233ms)
What is schizophrenia? Brian Cohn -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (Brian Cohn, was learning to deal with, the Schizophrenia) -> Brian Cohn (8263ms)
What is schizophrenia? diagnostic , physical abnormality -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (diagnostic , physical abnormality, is found in, schizophrenia) -> diagnostic , physical abnormality (8307ms)
What is schizophrenia? Divergent ERP responses -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Divergent ERP responses, have been found in, schizophrenia) -> Divergent ERP responses (8262ms)
What is schizophrenia? A scientist -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A scientist, finds a gene associated with, schizophrenia) -> A scientist (8278ms)
What is schizophrenia? More information -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (More information, can be found about, schizophrenia) -> More information (8248ms)
What is schizophrenia? a freelance writer -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a freelance writer, has been dealing with, schizophrenia) -> a freelance writer (8247ms)
What is schizophrenia? schizophrenia_research -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (schizophrenia_research, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Schizophrenia%20Research) -> schizophrenia_research (8278ms)
What is schizophrenia? A peptide -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A peptide, found in, schizophrenia and autism) -> A peptide (8292ms)
What is schizophrenia? Cognitive deficits -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Cognitive deficits, found in, patients with schizophrenia) -> Cognitive deficits (8307ms)
What is schizophrenia? Study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Study, finds patients with, schizophrenia) -> Study (8292ms)
What is schizophrenia? a relation -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (a relation, has been found between, schizophrenia) -> a relation (8248ms)
What is schizophrenia? Morality -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Morality, creates, schizophrenia) -> Morality (8233ms)
What is schizophrenia? 7 Brown -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (7 Brown, found a seven-fold increased risk of, schizophrenia) -> 7 Brown (8247ms)
What is schizophrenia? Sedlacek -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Sedlacek, was found to have, schizophrenia) -> Sedlacek (8233ms)
What is schizophrenia? Disorganized schizophrenia -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Disorganized schizophrenia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Disorganized%20schizophrenia) -> Disorganized schizophrenia (8292ms)
What is schizophrenia? 4 / 5 -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (4 / 5, Find, More Schizophrenia) -> 4 / 5 (8307ms)
What is schizophrenia? I?ve -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (I?ve, always found, schizophrenia fuckin? excellent) -> I?ve (8262ms)
What is schizophrenia? Numerous brain abnormalities -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Numerous brain abnormalities, have been found in, schizophrenia) -> Numerous brain abnormalities (8307ms)
What is schizophrenia? The new reality -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (The new reality, created the feeling of, schizophrenia) -> The new reality (8307ms)
What is schizophrenia? aetiology -0.0 What is schizophrenia? -> $x: ($x, refer, schizophrenia) -> (aetiology, is referred to as, schizophrenia) -> aetiology (8262ms)
What is schizophrenia? a family -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a family, dealing with, schizophrenia) -> a family (8292ms)
What is schizophrenia? No single cause -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (No single cause, has been found for, schizophrenia) -> No single cause (8262ms)
What is schizophrenia? e-mail -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (e-mail, Find, schizophrenia) -> e-mail (8278ms)
What is schizophrenia? long-term follow-up -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (long-term follow-up, usually finds, schizophrenia) -> long-term follow-up (8262ms)
What is schizophrenia? King -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (King, found the exact same prevalence of, schizophrenia) -> King (8248ms)
What is schizophrenia? context use -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (context use, found previously in, schizophrenia and male SPD) -> context use (8248ms)
What is schizophrenia? The researchers -0.0 What is schizophrenia? -> $x: ($x, happen to, schizophrenia) -> (The researchers, might happen to, schizophrenia cases) -> The researchers (8233ms)
What is schizophrenia? No association -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (No association, was found with, schizophrenia) -> No association (8248ms)
What is schizophrenia? Nava?s dual positions -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Nava?s dual positions, had created a sort of, ?schizophrenia?) -> Nava?s dual positions (8262ms)
What is schizophrenia? evidence -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (evidence, found in, all schizophrenia algorithms) -> evidence (8233ms)
What is schizophrenia? King?s research -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (King?s research, found a two-fold increase in, schizophrenia) -> King?s research (8278ms)
What is schizophrenia? an increased receptor density -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (an increased receptor density, was found in, schizophrenia) -> an increased receptor density (8262ms)
What is schizophrenia? high levels -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (high levels, are found in, schizophrenia) -> high levels (8307ms)
What is schizophrenia? the literature inquiring -0.0 What is schizophrenia? -> $x: ($x, happen to, schizophrenia) -> (the literature inquiring, happens to, Schizophrenia) -> the literature inquiring (8262ms)
What is schizophrenia? Durden -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Durden, was found to be suffering from, paranoid schizophrenia) -> Durden (8248ms)
What is schizophrenia? Intellectual impairments -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Intellectual impairments, are commonly found in, schizophrenia) -> Intellectual impairments (8292ms)
What is schizophrenia? apoptosis -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (apoptosis, is found associated with, schizophrenia) -> apoptosis (8233ms)
What is schizophrenia? everyone disappoints -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (everyone disappoints, creates a bit of, schizophrenia) -> everyone disappoints (8233ms)
What is schizophrenia? young Muslim -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (young Muslim, creates, a schizophrenia) -> young Muslim (8262ms)
What is schizophrenia? Anorexia -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Anorexia, has been found to be as inheritable as, schizophrenia) -> Anorexia (8292ms)
What is schizophrenia? the scientists -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the scientists, must find out the cause of, schizophrenia) -> the scientists (8278ms)
What is schizophrenia? cyberspace networks -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (cyberspace networks, also create, schizophrenia) -> cyberspace networks (8278ms)
What is schizophrenia? 1959 -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (1959, found the rate of, Schizophrenia) -> 1959 (8278ms)
What is schizophrenia? Scotland -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Scotland, found a significant decline in, schizophrenia) -> Scotland (8233ms)
What is schizophrenia? An earlier study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (An earlier study, found twice the risk of, schizophrenia) -> An earlier study (8307ms)
What is schizophrenia? food -0.0 What is schizophrenia? -> $x: ($x, refer, schizophrenia) -> (food, refers to, ?schizophrenia) -> food (8307ms)
What is schizophrenia? ventral pathway abnormalities -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (ventral pathway abnormalities, were only found in, schizophrenia) -> ventral pathway abnormalities (8292ms)
What is schizophrenia? Shame based religion -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Shame based religion, created, a certain schizophrenia) -> Shame based religion (8262ms)
What is schizophrenia? no country -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (no country, was found to be free of, schizophrenia) -> no country (8292ms)
What is schizophrenia? alcoholics -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (alcoholics, have had to deal with, schizophrenia) -> alcoholics (8292ms)
What is schizophrenia? ?Israel -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (?Israel, is creating a kind of, moral schizophrenia) -> ?Israel (8262ms)
What is schizophrenia? common -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (common, is, Schizophrenia ?) -> common (8498ms)
What is schizophrenia? Older people and children -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Older people and children, can develop, schizophrenia) -> Older people and children (8336ms)
What is schizophrenia? ?clear consciousness -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (?clear consciousness, is contestable in, schizophrenia) -> ?clear consciousness (8601ms)
What is schizophrenia? NRG1-induced AKT phosphorylation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (NRG1-induced AKT phosphorylation, is decreased in, schizophrenia) -> NRG1-induced AKT phosphorylation (8548ms)
What is schizophrenia? the store , redheads and blonds -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the store , redheads and blonds, are prone to, schizophrenia) -> the store , redheads and blonds (8575ms)
What is schizophrenia? the thought process -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the thought process, is more similar to, schizophrenia) -> the thought process (8392ms)
What is schizophrenia? Afghanistan -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Afghanistan, is, schizophrenia) -> Afghanistan (8584ms)
What is schizophrenia? expertise -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (expertise, is, schizophrenia) -> expertise (8593ms)
What is schizophrenia? microRNAs -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (microRNAs, may be altered in, schizophrenia) -> microRNAs (8433ms)
What is schizophrenia? Depression -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Depression, is an emotion associated with, Schizophrenia) -> Depression (8557ms)
What is schizophrenia? The problem -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The problem, is highly similar to, schizophrenia) -> The problem (8610ms)
What is schizophrenia? 30 times higher -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 30 times higher) -> 30 times higher (8392ms)
What is schizophrenia? head injury -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (head injury, however can be seen in, schizophrenia) -> head injury (8601ms)
What is schizophrenia? cyanocobalamin -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cyanocobalamin, is useful in treating, schizophrenia) -> cyanocobalamin (8365ms)
What is schizophrenia? 1 percent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1 percent) -> 1 percent (8566ms)
What is schizophrenia? Paliperidone -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Paliperidone, is used to treat, schizophrenia) -> Paliperidone (8584ms)
What is schizophrenia? CB1R immunoreactivity -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (CB1R immunoreactivity, may be common in, schizophrenia) -> CB1R immunoreactivity (8593ms)
What is schizophrenia? 3.5 -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was about, 3.5) -> 3.5 (8519ms)
What is schizophrenia? Lewis SW -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Lewis SW, Is, Schizophrenia) -> Lewis SW (8350ms)
What is schizophrenia? Religion -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Religion, is, schizophrenia) -> Religion (8566ms)
What is schizophrenia? motivation and judgment -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (motivation and judgment, are all common in, schizophrenia) -> motivation and judgment (8350ms)
What is schizophrenia? the big concerns -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the big concerns, is, schizophrenia) -> the big concerns (8392ms)
What is schizophrenia? marijuana usage -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (marijuana usage, can be a contributing trigger to, schizophrenia) -> marijuana usage (8472ms)
What is schizophrenia? common genetic variations -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (common genetic variations, can lead to, schizophrenia) -> common genetic variations (8321ms)
What is schizophrenia? one percent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, one percent) -> one percent (8433ms)
What is schizophrenia? inadequate social skills -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (inadequate social skills, can bring on, schizophrenia) -> inadequate social skills (8379ms)
What is schizophrenia? An Overview -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (An Overview, Is, Schizophrenia) -> An Overview (8584ms)
What is schizophrenia? Hoffman-LaRoche -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Hoffman-LaRoche, is, schizophrenia) -> Hoffman-LaRoche (8392ms)
What is schizophrenia? the extent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, little is known about, the extent) -> the extent (8379ms)
What is schizophrenia? psychiatry -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (psychiatry, are, schizophrenia) -> psychiatry (8419ms)
What is schizophrenia? whites -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (whites, to be diagnosed with, schizophrenia) -> whites (8350ms)
What is schizophrenia? Dysbandin expression -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Dysbandin expression, is decreased in, schizophrenia) -> Dysbandin expression (8419ms)
What is schizophrenia? Toxo infection -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Toxo infection, may be linked to, schizophrenia) -> Toxo infection (8419ms)
What is schizophrenia? amphetamines -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (amphetamines, are virtually identical to, schizophrenia) -> amphetamines (8433ms)
What is schizophrenia? adverse conditions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adverse conditions, are likely linked to, schizophrenia) -> adverse conditions (8498ms)
What is schizophrenia? Lorazepam -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Lorazepam, can help some patients with, schizophrenia) -> Lorazepam (8601ms)
What is schizophrenia? MET -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (MET, influenced the risk for, schizophrenia) -> MET (8419ms)
What is schizophrenia? GRM3 gene -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (GRM3 gene, have been implicated in, schizophrenia) -> GRM3 gene (8528ms)
What is schizophrenia? more than one month -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (more than one month, is needed to diagnose, schizophrenia) -> more than one month (8321ms)
What is schizophrenia? DISC1 binding partners -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (DISC1 binding partners, is reduced in, schizophrenia) -> DISC1 binding partners (8350ms)
What is schizophrenia? pruning -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (pruning, has been implicated in, schizophrenia) -> pruning (8472ms)
What is schizophrenia? the above factors -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (the above factors, influence the course of, schizophrenia) -> the above factors (8485ms)
What is schizophrenia? Hallucinations -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Hallucinations, are common in, schizophrenia) -> Hallucinations (8459ms)
What is schizophrenia? CLOZAPINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (CLOZAPINE, is used to treat, schizophrenia) -> CLOZAPINE (8321ms)
What is schizophrenia? seroquel -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (seroquel, is a drug that might treat, Schizophrenia) -> seroquel (8575ms)
What is schizophrenia? predominant concern -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (predominant concern, are, schizophrenia) -> predominant concern (8547ms)
What is schizophrenia? cognitive impairment -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cognitive impairment, was higher in, schizophrenia) -> cognitive impairment (8365ms)
What is schizophrenia? voice hearers -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (voice hearers, can be diagnosed with, schizophrenia) -> voice hearers (8584ms)
What is schizophrenia? The same -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (The same, can be said of, Schizophrenia) -> The same (8321ms)
What is schizophrenia? The condition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The condition, is thought to be linked to, schizophrenia) -> The condition (8508ms)
What is schizophrenia? cognition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cognition, have been reported in, schizophrenia) -> cognition (8350ms)
What is schizophrenia? sample size -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia Bulletin, is all about, sample size) -> sample size (8350ms)
What is schizophrenia? the past -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the past, were, schizophrenia) -> the past (8538ms)
What is schizophrenia? So lobotomy -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (So lobotomy, was used to treat, schizophrenia) -> So lobotomy (8406ms)
What is schizophrenia? Modern medicine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Modern medicine, can diagnose, schizophrenia) -> Modern medicine (8557ms)
What is schizophrenia? higher doses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (higher doses, is used to treat, schizophrenia) -> higher doses (8529ms)
What is schizophrenia? 1 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1 %) -> 1 % (8321ms)
What is schizophrenia? DISC1 splice variants -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (DISC1 splice variants, are upregulated in, schizophrenia) -> DISC1 splice variants (8459ms)
What is schizophrenia? total neuron number -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (total neuron number, are reduced in, schizophrenia) -> total neuron number (8601ms)
What is schizophrenia? clozapine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (clozapine, is a drug that might treat, Schizophrenia) -> clozapine (8538ms)
What is schizophrenia? The drug -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The drug, is used to treat, schizophrenia) -> The drug (8365ms)
What is schizophrenia? sensory input processing -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (sensory input processing, is often impaired in, schizophrenia) -> sensory input processing (8498ms)
What is schizophrenia? Panic attacks -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Panic attacks, are often associated to, schizophrenia) -> Panic attacks (8419ms)
What is schizophrenia? Abilify -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Abilify, can help, schizophrenia) -> Abilify (8584ms)
What is schizophrenia? mental illnesses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (mental illnesses, is, schizophrenia) -> mental illnesses (8498ms)
What is schizophrenia? now its most overt manifestation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (now its most overt manifestation, is, schizophrenia) -> now its most overt manifestation (8621ms)
What is schizophrenia? only psychiatrists -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (only psychiatrists, can provide for, schizophrenia) -> only psychiatrists (8620ms)
What is schizophrenia? Flutterrage -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Flutterrage, is, schizophrenia) -> Flutterrage (8498ms)
What is schizophrenia? patients Risperidone -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (patients Risperidone, is used to treat, schizophrenia) -> patients Risperidone (8557ms)
What is schizophrenia? nineteen million dollars -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, nineteen million dollars) -> nineteen million dollars (8519ms)
What is schizophrenia? the issue -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the issue, was, schizophrenia) -> the issue (8620ms)
What is schizophrenia? the Mentally Ill -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the Mentally Ill, Is, Schizophrenia) -> the Mentally Ill (8584ms)
What is schizophrenia? The a7-nAChRs -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The a7-nAChRs, are also linked to, Schizophrenia) -> The a7-nAChRs (8459ms)
What is schizophrenia? An example of a psychotic disorder -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (An example of a psychotic disorder, is, Schizophrenia) -> An example of a psychotic disorder (8459ms)
What is schizophrenia? Clozaril -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Clozaril, is used to treat, schizophrenia) -> Clozaril (8575ms)
What is schizophrenia? the definition -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, are questions about, the definition) -> the definition (8601ms)
What is schizophrenia? Bipolar Disorder -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Bipolar Disorder, can go on to develop, Schizophrenia) -> Bipolar Disorder (8610ms)
What is schizophrenia? ADHD children -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (ADHD children, were developed to treat, schizophrenia) -> ADHD children (8419ms)
What is schizophrenia? the cortex -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cortex, is extensive in, schizophrenia) -> the cortex (8419ms)
What is schizophrenia? The first example -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The first example, is, schizophrenia) -> The first example (8547ms)
What is schizophrenia? 60 Minutes and PBS Frontline -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (60 Minutes and PBS Frontline, is, schizophrenia) -> 60 Minutes and PBS Frontline (8485ms)
What is schizophrenia? Psychosocial treatments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Psychosocial treatments, can help people with, schizophrenia) -> Psychosocial treatments (8557ms)
What is schizophrenia? Schizo-Affctive -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Schizo-Affctive, is, Schizophrenia) -> Schizo-Affctive (8365ms)
What is schizophrenia? dissociation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (dissociation, can lead to, schizophrenia) -> dissociation (8459ms)
What is schizophrenia? one twin -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (one twin, can develop, schizophrenia) -> one twin (8485ms)
What is schizophrenia? Family counselling -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Family counselling, can help people with, schizophrenia) -> Family counselling (8433ms)
What is schizophrenia? antipsychotics -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (antipsychotics, are used to treat, schizophrenia) -> antipsychotics (8459ms)
What is schizophrenia? The hippocampus -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The hippocampus, is strongly implicated in, schizophrenia) -> The hippocampus (8406ms)
What is schizophrenia? adderall users -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adderall users, is related to, schizophrenia) -> adderall users (8406ms)
What is schizophrenia? OLANZAPINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (OLANZAPINE, is used to treat, schizophrenia) -> OLANZAPINE (8419ms)
What is schizophrenia? speed -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (speed, are known problems in, schizophrenia) -> speed (8392ms)
What is schizophrenia? disjointed ways -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (disjointed ways, is common in, schizophrenia) -> disjointed ways (8472ms)
What is schizophrenia? a 10 % risk -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia, is associated with about, a 10 % risk) -> a 10 % risk (8557ms)
What is schizophrenia? niacin pyridoxine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (niacin pyridoxine, is useful in treating, schizophrenia) -> niacin pyridoxine (8610ms)
What is schizophrenia? multiple pathogens -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (multiple pathogens, have been implicated in, schizophrenia) -> multiple pathogens (8547ms)
What is schizophrenia? Quetiapine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Quetiapine, is used to treat, schizophrenia) -> Quetiapine (8593ms)
What is schizophrenia? prevalent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia spectrum disorders, are about twice as, prevalent) -> prevalent (8519ms)
What is schizophrenia? online zyprexa -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (online zyprexa, can be prescribed for, schizophrenia) -> online zyprexa (8433ms)
What is schizophrenia? tri-personal -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (tri-personal, is, schizophrenia) -> tri-personal (8472ms)
What is schizophrenia? risperdal -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (risperdal, is a drug that might treat, Schizophrenia) -> risperdal (8472ms)
What is schizophrenia? 2006 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (2006, is, schizophrenia) -> 2006 (8557ms)
What is schizophrenia? an expert -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (an expert, can cure, schizophrenia) -> an expert (8378ms)
What is schizophrenia? symptoms -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (symptoms, can be diagnosed as, schizophrenia) -> symptoms (8459ms)
What is schizophrenia? insight -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (insight, was first identified in, schizophrenia) -> insight (8593ms)
What is schizophrenia? comparison subjects -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (comparison subjects, has been shown in, schizophrenia) -> comparison subjects (8575ms)
What is schizophrenia? chromosome 16 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (chromosome 16, can increase the risk of, schizophrenia) -> chromosome 16 (8498ms)
What is schizophrenia? Atypical antipsychotics -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Atypical antipsychotics, are used to treat, schizophrenia) -> Atypical antipsychotics (8365ms)
What is schizophrenia? Bipolar illness -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Bipolar illness, is, schizophrenia) -> Bipolar illness (8433ms)
What is schizophrenia? COMT -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (COMT, is involved in, schizophrenia) -> COMT (8446ms)
What is schizophrenia? LOXAPINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (LOXAPINE, is used to manage, schizophrenia) -> LOXAPINE (8621ms)
What is schizophrenia? Only a doctor -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Only a doctor, can diagnose, schizophrenia) -> Only a doctor (8350ms)
What is schizophrenia? chromosome 8p12 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (chromosome 8p12, influences susceptibility to, schizophrenia) -> chromosome 8p12 (8379ms)
What is schizophrenia? nicotinic acid -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (nicotinic acid, is effective in treating, schizophrenia) -> nicotinic acid (8392ms)
What is schizophrenia? Recognition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Recognition, can be normalized in, schizophrenia) -> Recognition (8446ms)
What is schizophrenia? addiction -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (addiction, are, schizophrenia) -> addiction (8529ms)
What is schizophrenia? the diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the diagnosis, is, schizophrenia) -> the diagnosis (8447ms)
What is schizophrenia? Egon Leubner -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Egon Leubner, was interested in, schizophrenia) -> Egon Leubner (8538ms)
What is schizophrenia? critical roles -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (critical roles, is affected in, schizophrenia) -> critical roles (8378ms)
What is schizophrenia? Glutamate -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Glutamate, is also deficient in, schizophrenia) -> Glutamate (8433ms)
What is schizophrenia? African Americans -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (African Americans, to be diagnosed with, schizophrenia) -> African Americans (8610ms)
What is schizophrenia? Acupuncture -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Acupuncture, was effective in alleviating, schizophrenia) -> Acupuncture (8485ms)
What is schizophrenia? Antipsychotic medication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Antipsychotic medication, is key to treating, schizophrenia) -> Antipsychotic medication (8485ms)
What is schizophrenia? social support -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (social support, might influence the prevalence of, schizophrenia) -> social support (8620ms)
What is schizophrenia? such damage -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (such damage, is also seen in, schizophrenia) -> such damage (8547ms)
What is schizophrenia? the disease -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, should be educated about, the disease) -> the disease (8519ms)
What is schizophrenia? One Dutch reader -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (One Dutch reader, was particularly interested in, schizophrenia) -> One Dutch reader (8547ms)
What is schizophrenia? severe nausea -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (severe nausea, is used to treat, schizophrenia) -> severe nausea (8472ms)
What is schizophrenia? 1 Yes No -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (1 Yes No, is, schizophrenia) -> 1 Yes No (8557ms)
What is schizophrenia? 10 -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 10) -> 10 (8508ms)
What is schizophrenia? a given point -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (a given point, can be quite similar between, schizophrenia) -> a given point (8336ms)
What is schizophrenia? the patients -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the patients, were, schizophrenia) -> the patients (8379ms)
What is schizophrenia? Among the health conditions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Among the health conditions, are, Schizophrenia) -> Among the health conditions (8459ms)
What is schizophrenia? sentences -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (sentences, was normal in, schizophrenia) -> sentences (8433ms)
What is schizophrenia? NAMI | Schizophrenia -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (NAMI | Schizophrenia, Is, Schizophrenia) -> NAMI | Schizophrenia (8575ms)
What is schizophrenia? overactive dopamine pathways -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (overactive dopamine pathways, are implicated in, schizophrenia) -> overactive dopamine pathways (8392ms)
What is schizophrenia? The first one -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The first one, is, Schizophrenia) -> The first one (8508ms)
What is schizophrenia? 13 percent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 13 percent) -> 13 percent (8472ms)
What is schizophrenia? private -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (private, Is, Schizophrenia) -> private (8321ms)
What is schizophrenia? The alpha-7 receptor -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The alpha-7 receptor, is important in, schizophrenia) -> The alpha-7 receptor (8566ms)
What is schizophrenia? control -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (control, are, schizophrenia) -> control (8519ms)
What is schizophrenia? Haldol -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Haldol, was used to treat, schizophrenia) -> Haldol (8378ms)
What is schizophrenia? Toxo -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Toxo, is, schizophrenia) -> Toxo (8321ms)
What is schizophrenia? the depression -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the depression, can accompany, Schizophrenia) -> the depression (8547ms)
What is schizophrenia? psychological treatments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (psychological treatments, can help people with, schizophrenia) -> psychological treatments (8336ms)
What is schizophrenia? no organic lesion -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (no organic lesion, are, schizophrenia) -> no organic lesion (8584ms)
What is schizophrenia? NIMH Schizophrenia ? -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (NIMH Schizophrenia ?, is, schizophrenia) -> NIMH Schizophrenia ? (8584ms)
What is schizophrenia? Psychotherapy -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Psychotherapy, be used to treat, Schizophrenia) -> Psychotherapy (8566ms)
What is schizophrenia? 66 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (66, is dopamine implicated in, schizophrenia) -> 66 (8498ms)
What is schizophrenia? prolonged meth abuse -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (prolonged meth abuse, can resemble those of, schizophrenia) -> prolonged meth abuse (8538ms)
What is schizophrenia? PCP -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (PCP, can be confused with, schizophrenia) -> PCP (8575ms)
What is schizophrenia? 25 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 25 %) -> 25 % (8365ms)
What is schizophrenia? glutamate -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (glutamate, may be involved in, schizophrenia) -> glutamate (8584ms)
What is schizophrenia? sun-deprived regions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (sun-deprived regions, are especially prone to, schizophrenia) -> sun-deprived regions (8566ms)
What is schizophrenia? neurotransmitters -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (neurotransmitters, has been linked to, schizophrenia) -> neurotransmitters (8575ms)
What is schizophrenia? The same deficiencies -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The same deficiencies, are common in, schizophrenia) -> The same deficiencies (8584ms)
What is schizophrenia? Various treatments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Various treatments, are used in handling, schizophrenia) -> Various treatments (8365ms)
What is schizophrenia? five -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (five, can develop, schizophrenia) -> five (8593ms)
What is schizophrenia? 50 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 50 %) -> 50 % (8433ms)
What is schizophrenia? retreatism -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (retreatism, is, schizophrenia) -> retreatism (8538ms)
What is schizophrenia? Kundalini Yoga -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Kundalini Yoga, are used to model, Schizophrenia) -> Kundalini Yoga (8575ms)
What is schizophrenia? perc -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (perc, can increase the risk of, schizophrenia) -> perc (8307ms)
What is schizophrenia? Risperidone Risperidone -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Risperidone Risperidone, is used to treat, schizophrenia) -> Risperidone Risperidone (8350ms)
What is schizophrenia? adderall customers -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adderall customers, is comparable to, schizophrenia) -> adderall customers (8538ms)
What is schizophrenia? the corpus callosum -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the corpus callosum, is abnormal in, schizophrenia) -> the corpus callosum (8557ms)
What is schizophrenia? cannabis use -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (cannabis use, can trigger, schizophrenia) -> cannabis use (8566ms)
What is schizophrenia? 3 times -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 3 times) -> 3 times (8321ms)
What is schizophrenia? The most common psychosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The most common psychosis, is, schizophrenia) -> The most common psychosis (8405ms)
What is schizophrenia? memory saccade -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (memory saccade, is often impaired in, schizophrenia) -> memory saccade (8529ms)
What is schizophrenia? the innocent and guilty -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the innocent and guilty, is, Schizophrenia) -> the innocent and guilty (8446ms)
What is schizophrenia? the young people -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the young people, was then considered to be, schizophrenia) -> the young people (8557ms)
What is schizophrenia? The most commonly known mental health issue -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The most commonly known mental health issue, is, schizophrenia ?) -> The most commonly known mental health issue (8433ms)
What is schizophrenia? the cause -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the cause, is, Schizophrenia) -> the cause (8378ms)
What is schizophrenia? the answer -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the answer, is, schizophrenia) -> the answer (8307ms)
What is schizophrenia? the illness -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, are educated about, the illness) -> the illness (8321ms)
What is schizophrenia? the most prevalent psychosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most prevalent psychosis, is, schizophrenia) -> the most prevalent psychosis (8621ms)
What is schizophrenia? substance misuse -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (substance misuse, can aggravate the symptoms of, schizophrenia) -> substance misuse (8508ms)
What is schizophrenia? 30 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is only about, 30 %) -> 30 % (8529ms)
What is schizophrenia? non-users -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (non-users, to be diagnosed with, schizophrenia) -> non-users (8566ms)
What is schizophrenia? CBT -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (CBT, can successfully treat people with, schizophrenia) -> CBT (8365ms)
What is schizophrenia? The diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The diagnosis, was, schizophrenia) -> The diagnosis (8508ms)
What is schizophrenia? psychosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (psychosis, can occur with, schizophrenia) -> psychosis (8593ms)
What is schizophrenia? LAN za peen -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (LAN za peen, is used to treat, schizophrenia) -> LAN za peen (8392ms)
What is schizophrenia? possible impacts -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia patients, little is known about, possible impacts) -> possible impacts (8621ms)
What is schizophrenia? Risperdal -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Risperdal, is approved to treat, schizophrenia) -> Risperdal (8593ms)
What is schizophrenia? Drug use -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Drug use, can mimic the symptoms of, schizophrenia) -> Drug use (8365ms)
What is schizophrenia? brain cells -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (brain cells, are damaged in, schizophrenia) -> brain cells (8405ms)
What is schizophrenia? protein X -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (protein X, was involved in, schizophrenia) -> protein X (8459ms)
What is schizophrenia? BPD -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was written about, BPD) -> BPD (8538ms)
What is schizophrenia? the dentate gyrus -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the dentate gyrus, was decreased in, schizophrenia) -> the dentate gyrus (8584ms)
What is schizophrenia? the risk factors -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is crucial to finding out about, the risk factors) -> the risk factors (8365ms)
What is schizophrenia? private What -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (private What, is, schizophrenia) -> private What (8508ms)
What is schizophrenia? perception and attention -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (perception and attention, are common in, schizophrenia) -> perception and attention (8529ms)
What is schizophrenia? NMDARs -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (NMDARs, was suspected in, schizophrenia) -> NMDARs (8529ms)
What is schizophrenia? such functions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (such functions, has been implicated in, schizophrenia) -> such functions (8538ms)
What is schizophrenia? an anti-depressant and -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (an anti-depressant and, can treat, schizophrenia) -> an anti-depressant and (8350ms)
What is schizophrenia? deeper laminae -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (deeper laminae, are decreased in, schizophrenia) -> deeper laminae (8433ms)
What is schizophrenia? fickle human behavior -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (fickle human behavior, can be related to, schizophrenia) -> fickle human behavior (8620ms)
What is schizophrenia? performing lobotomies -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (performing lobotomies, was to treat, schizophrenia) -> performing lobotomies (8621ms)
What is schizophrenia? Dopaminergic overactivity -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Dopaminergic overactivity, is linked to, schizophrenia) -> Dopaminergic overactivity (8529ms)
What is schizophrenia? OCD -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (OCD, is a precursor to, Schizophrenia) -> OCD (8498ms)
What is schizophrenia? Zyprexa -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Zyprexa, is approved to treat, schizophrenia) -> Zyprexa (8610ms)
What is schizophrenia? Substance abuse -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Substance abuse, is very common in, Schizophrenia) -> Substance abuse (8621ms)
What is schizophrenia? attention training -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (attention training, is effective in, schizophrenia) -> attention training (8419ms)
What is schizophrenia? physical exercise -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (physical exercise, can help reduce symptoms of, schizophrenia) -> physical exercise (8575ms)
What is schizophrenia? results -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (results, are normal in, schizophrenia) -> results (8601ms)
What is schizophrenia? an attorney -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (an attorney, is, Schizophrenia) -> an attorney (8336ms)
What is schizophrenia? celiac disease -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (celiac disease, are highly exposed to, Schizophrenia) -> celiac disease (8321ms)
What is schizophrenia? Teens -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Teens, can get, schizophrenia) -> Teens (8459ms)
What is schizophrenia? the drug -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the drug, can hasten the onset of, schizophrenia) -> the drug (8446ms)
What is schizophrenia? the CUS -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the CUS, was driven to, schizophrenia) -> the CUS (8538ms)
What is schizophrenia? the most common main diagnoses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most common main diagnoses, were, schizophrenia) -> the most common main diagnoses (8566ms)
What is schizophrenia? refreshing -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (refreshing, was impaired in, schizophrenia) -> refreshing (8575ms)
What is schizophrenia? NRG3 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (NRG3, is linked to, schizophrenia) -> NRG3 (8392ms)
What is schizophrenia? nerve cells -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (nerve cells, are altered in, schizophrenia) -> nerve cells (8307ms)
What is schizophrenia? The primary diagnoses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The primary diagnoses, were, schizophrenia) -> The primary diagnoses (8392ms)
What is schizophrenia? inappropriate responses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (inappropriate responses, is, schizophrenia) -> inappropriate responses (8593ms)
What is schizophrenia? The study -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The study, is, schizophrenia) -> The study (8584ms)
What is schizophrenia? African-Americans -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (African-Americans, to be diagnosed with, schizophrenia) -> African-Americans (8365ms)
What is schizophrenia? items -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (items, is impaired in, schizophrenia) -> items (8519ms)
What is schizophrenia? Thought disorders -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Thought disorders, can occur in, schizophrenia) -> Thought disorders (8610ms)
What is schizophrenia? any comments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (any comments, is, Schizophrenia) -> any comments (8566ms)
What is schizophrenia? Schizoaffect Disorder -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Schizoaffect Disorder, is, Schizophrenia) -> Schizoaffect Disorder (8547ms)
What is schizophrenia? the public -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the public, is likely to have, schizophrenia?) -> the public (8321ms)
What is schizophrenia? Executive control -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Executive control, is disturbed in, schizophrenia) -> Executive control (8433ms)
What is schizophrenia? Cognition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Cognition, is very important in, schizophrenia) -> Cognition (8307ms)
What is schizophrenia? 80 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was about, 80 %) -> 80 % (8566ms)
What is schizophrenia? P300 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (P300, have been demonstrated in, schizophrenia) -> P300 (8566ms)
What is schizophrenia? primary psychiatric diagnoses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (primary psychiatric diagnoses, were, schizophrenia) -> primary psychiatric diagnoses (8419ms)
What is schizophrenia? linguistic context -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (linguistic context, are disrupted in, schizophrenia) -> linguistic context (8557ms)
What is schizophrenia? GABA and glutamate -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (GABA and glutamate, are also implicated in, schizophrenia) -> GABA and glutamate (8529ms)
What is schizophrenia? Evidence based treatment summaries -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Evidence based treatment summaries, is, schizophrenia) -> Evidence based treatment summaries (8350ms)
What is schizophrenia? A psychiatrist -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (A psychiatrist, can treat those with, schizophrenia) -> A psychiatrist (8419ms)
What is schizophrenia? visual perception -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (visual perception, is, schizophrenia) -> visual perception (8472ms)
What is schizophrenia? Haloperidol -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Haloperidol, is used to treat, schizophrenia) -> Haloperidol (8620ms)
What is schizophrenia? the PubMed search -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the PubMed search, were, 'schizophrenia) -> the PubMed search (8336ms)
What is schizophrenia? manganese -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (manganese, can be useful in treating, schizophrenia) -> manganese (8519ms)
What is schizophrenia? Medical care -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Medical care, is needed to treat, schizophrenia) -> Medical care (8446ms)
What is schizophrenia? January 13 , 2010 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (January 13 , 2010, is, schizophrenia) -> January 13 , 2010 (8593ms)
What is schizophrenia? the drug Clozapine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the drug Clozapine, is used to treat, schizophrenia) -> the drug Clozapine (8528ms)
What is schizophrenia? Anonymous Seroquel -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Anonymous Seroquel, is used to treat, schizophrenia) -> Anonymous Seroquel (8538ms)
What is schizophrenia? the only other topic worth -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (*Schizophrenia, is about, the only other topic worth) -> the only other topic worth (8336ms)
What is schizophrenia? the dysbindin gene -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the dysbindin gene, is linked to, schizophrenia) -> the dysbindin gene (8566ms)
What is schizophrenia? Fanapt -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Fanapt, is used to treat, schizophrenia) -> Fanapt (8485ms)
What is schizophrenia? Skunk cannabis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Skunk cannabis, can induce, schizophrenia) -> Skunk cannabis (8336ms)
What is schizophrenia? Even genes -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (Even genes, seem to influence, schizophrenia) -> Even genes (8392ms)
What is schizophrenia? the principal form of which -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the principal form of which, is, schizophrenia) -> the principal form of which (8365ms)
What is schizophrenia? acute stress -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (acute stress, can trigger the onset of, schizophrenia) -> acute stress (8392ms)
What is schizophrenia? the first instance -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, classify as, schizophrenia) -> (the first instance, are classified as, schizophrenia) -> the first instance (8498ms)
What is schizophrenia? a certain gene -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a certain gene, are predisposed to develop, schizophrenia) -> a certain gene (8498ms)
What is schizophrenia? pregnancy -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (pregnancy, can increase the risk of, schizophrenia) -> pregnancy (8519ms)
What is schizophrenia? ?Personal identity -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (?Personal identity, is frequently disturbed in, schizophrenia) -> ?Personal identity (8446ms)
What is schizophrenia? a painter -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (a painter, was influenced by, his schizophrenia) -> a painter (8575ms)
What is schizophrenia? a medication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (a medication, can also be used for, schizophrenia) -> a medication (8601ms)
What is schizophrenia? communication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (communication, is key to managing, schizophrenia) -> communication (8610ms)
What is schizophrenia? the cerebral cortex -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cerebral cortex, is decreased in, schizophrenia) -> the cerebral cortex (8518ms)
What is schizophrenia? the frontal lobe -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the frontal lobe, can be misdiagnosed as, schizophrenia) -> the frontal lobe (8601ms)
What is schizophrenia? amphetamine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (amphetamine, can exacerbate the symptoms of, schizophrenia) -> amphetamine (8575ms)
What is schizophrenia? Altered serotonin levels -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Altered serotonin levels, have been implicated in, schizophrenia) -> Altered serotonin levels (8336ms)
What is schizophrenia? Seroquel -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Seroquel, is approved to treat, schizophrenia) -> Seroquel (8406ms)
What is schizophrenia? a criminal matter -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a criminal matter, is linked to, schizophrenia) -> a criminal matter (8472ms)
What is schizophrenia? the cerebellum -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cerebellum, have been implicated in, schizophrenia) -> the cerebellum (8406ms)
What is schizophrenia? Extinction memory -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Extinction memory, is impaired in, schizophrenia) -> Extinction memory (8508ms)
What is schizophrenia? stigmatising -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (stigmatising, is, schizophrenia) -> stigmatising (8336ms)
What is schizophrenia? B-3 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (B-3, is used to treat, schizophrenia) -> B-3 (8601ms)
What is schizophrenia? out methylation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (out methylation, have been implicated in, schizophrenia) -> out methylation (8378ms)
What is schizophrenia? the experience -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia Empirically, little is known about, the experience) -> the experience (8472ms)
What is schizophrenia? Three major psychiatric disorders -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Three major psychiatric disorders, are, schizophrenia) -> Three major psychiatric disorders (8472ms)
What is schizophrenia? healthy subjects -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (healthy subjects, is reduced in, schizophrenia) -> healthy subjects (8628ms)
What is schizophrenia? Key Q&A Key Q&A -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Key Q&A Key Q&A, is, schizophrenia) -> Key Q&A Key Q&A (8519ms)
What is schizophrenia? 0.01 -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 0.01) -> 0.01 (8447ms)
What is schizophrenia? the most frequent -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most frequent, is, SCHIZOPHRENIA) -> the most frequent (8508ms)
What is schizophrenia? masked stimuli -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (masked stimuli, is impaired in, schizophrenia) -> masked stimuli (8557ms)
What is schizophrenia? the medication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the medication, is prescribed to treat, schizophrenia) -> the medication (8336ms)
What is schizophrenia? psychiatric case register -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (psychiatric case register, Is, schizophrenia) -> psychiatric case register (8472ms)
What is schizophrenia? 1-2 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1-2 %) -> 1-2 % (8601ms)
What is schizophrenia? day life situations -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (day life situations, can be a sign of, schizophrenia) -> day life situations (8379ms)
What is schizophrenia? SSDs The outcome -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (SSDs The outcome, was, schizophrenia) -> SSDs The outcome (8485ms)
What is schizophrenia? interacting genes -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (interacting genes, influence susceptibility to, schizophrenia) -> interacting genes (8593ms)
What is schizophrenia? serum proline -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (serum proline, was specific to, schizophrenia) -> serum proline (8538ms)
What is schizophrenia? the research diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the research diagnosis, was, schizophrenia) -> the research diagnosis (8610ms)
What is schizophrenia? P300 asymmetry -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (P300 asymmetry, is specific to, schizophrenia) -> P300 asymmetry (8365ms)
What is schizophrenia? Children -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Children, can have, Schizophrenia) -> Children (8498ms)
What is schizophrenia? 100 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (100, can be expected to develop, schizophrenia) -> 100 (8620ms)
What is schizophrenia? 10360 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (10360, is, schizophrenia) -> 10360 (8610ms)
What is schizophrenia? a patient -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a patient, to be diagnosed with, schizophrenia) -> a patient (8406ms)
What is schizophrenia? April 17 , 2006 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (April 17 , 2006, is, schizophrenia) -> April 17 , 2006 (8472ms)
What is schizophrenia? the primary diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the primary diagnosis, is, Schizophrenia) -> the primary diagnosis (8336ms)
What is schizophrenia? illegal hallucinogens -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (illegal hallucinogens, can cause problems with, schizophrenia) -> illegal hallucinogens (8419ms)
What is schizophrenia? More About -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (More About, is, Schizophrenia) -> More About (8593ms)
What is schizophrenia? THIORIDAZINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (THIORIDAZINE, is used to treat, schizophrenia) -> THIORIDAZINE (8610ms)
What is schizophrenia? 41 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (41, was compromised in, schizophrenia) -> 41 (8610ms)
What is schizophrenia? a new idea -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (a new idea, was, schizophrenia) -> a new idea (8447ms)
What is schizophrenia? split personality -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (split personality, is, schizophrenia) -> split personality (8364ms)
What is schizophrenia? Approximately 2.4 million Americans -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Approximately 2.4 million Americans, develop, schizophrenia) -> Approximately 2.4 million Americans (8652ms)
What is schizophrenia? a hundred young people -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a hundred young people, develop, schizophrenia) -> a hundred young people (8629ms)
What is schizophrenia? offspring -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (offspring, developing, schizophrenia) -> offspring (8659ms)
What is schizophrenia? false memories -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (false memories, induce by, schizophrenia) -> false memories (8673ms)
What is schizophrenia? Schizotypal Personality Disorder -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (Schizotypal Personality Disorder, represents, mild schizophrenia) -> Schizotypal Personality Disorder (8666ms)
What is schizophrenia? children and adolescents -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (children and adolescents, develop, schizophrenia) -> children and adolescents (8666ms)
What is schizophrenia? the child -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the child, to develop, schizophrenia) -> the child (8666ms)
What is schizophrenia? musical prodigy Nathaniel Ayers -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (musical prodigy Nathaniel Ayers, developed, schizophrenia) -> musical prodigy Nathaniel Ayers (8666ms)
What is schizophrenia? Mesoridazine -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Mesoridazine, is used to treat the symptoms of, schizophrenia) -> Mesoridazine (8629ms)
What is schizophrenia? the children -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the children, developed, schizophrenia) -> the children (8629ms)
What is schizophrenia? a musical prodigy -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a musical prodigy, developed, schizophrenia) -> a musical prodigy (8644ms)
What is schizophrenia? high-risk individuals -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (high-risk individuals, developed, schizophrenia) -> high-risk individuals (8659ms)
What is schizophrenia? Schizotypal Many -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (Schizotypal Many, represents, mild schizophrenia) -> Schizotypal Many (8673ms)
What is schizophrenia? kids -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (kids, develop, schizophrenia) -> kids (8652ms)
What is schizophrenia? a mechanism -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a mechanism, develops, schizophrenia) -> a mechanism (8666ms)
What is schizophrenia? Approximately 1 % of the population -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Approximately 1 % of the population, develops, schizophrenia) -> Approximately 1 % of the population (8666ms)
What is schizophrenia? a musician -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a musician, develops, schizophrenia) -> a musician (8636ms)
What is schizophrenia? one young lad -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (one young lad, developed, schizophrenia) -> one young lad (8659ms)
What is schizophrenia? males -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (males, develop, schizophrenia) -> males (8629ms)
What is schizophrenia? Women -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Women, to develop, schizophrenia) -> Women (8636ms)
What is schizophrenia? Used Clozapine -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Used Clozapine, is used to treat the symptoms of, schizophrenia) -> Used Clozapine (8629ms)
What is schizophrenia? A Kabbalah member -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (A Kabbalah member, developed, schizophrenia) -> A Kabbalah member (8644ms)
What is schizophrenia? not enough money -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (not enough money, developed, schizophrenia) -> not enough money (8629ms)
What is schizophrenia? Slightly more males -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Slightly more males, develop, schizophrenia) -> Slightly more males (8628ms)
What is schizophrenia? a classical bass student -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a classical bass student, developed, schizophrenia) -> a classical bass student (8644ms)
What is schizophrenia? GEODON -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (GEODON, can be used to treat symptoms of, schizophrenia) -> GEODON (8659ms)
What is schizophrenia? adults -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (adults, develop, schizophrenia) -> adults (8666ms)
What is schizophrenia? only one twin -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (only one twin, develops, schizophrenia) -> only one twin (8644ms)
What is schizophrenia? Antipsychotics -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Antipsychotics, are used to treat the symptoms of, schizophrenia) -> Antipsychotics (8628ms)
What is schizophrenia? The cannabis users -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (The cannabis users, developed, schizophrenia) -> The cannabis users (8628ms)
What is schizophrenia? a former Juilliard student -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a former Juilliard student, developed, schizophrenia) -> a former Juilliard student (8652ms)
What is schizophrenia? Psilocybin -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (Psilocybin, induces, schizophrenia-like psychosis) -> Psilocybin (8659ms)
What is schizophrenia? Olanzapine -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Olanzapine, is used to treat the symptoms of, schizophrenia) -> Olanzapine (8659ms)
What is schizophrenia? Prader-Willi syndrome -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Prader-Willi syndrome, develop, schizophrenia) -> Prader-Willi syndrome (8636ms)
What is schizophrenia? one identical twin -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (one identical twin, develops, schizophrenia) -> one identical twin (8666ms)
What is schizophrenia? LSD experiments -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (LSD experiments, had induced, schizophrenia) -> LSD experiments (8636ms)
What is schizophrenia? Saphris -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Saphris, is used to treat symptoms of, schizophrenia) -> Saphris (8673ms)
What is schizophrenia? The patients -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (The patients, developed, schizophrenia) -> The patients (8659ms)
What is schizophrenia? drug -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (drug, induced, schizophrenia) -> drug (8652ms)
What is schizophrenia? 5 years -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (5 years, induce, Schizophrenia) -> 5 years (8652ms)
What is schizophrenia? men -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (men, to develop, schizophrenia) -> men (8644ms)
What is schizophrenia? Luis -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Luis, developed, schizophrenia) -> Luis (8659ms)
What is schizophrenia? 757 subjects -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (757 subjects, developed, schizophrenia) -> 757 subjects (8644ms)
What is schizophrenia? Eduard -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Eduard, developed, schizophrenia) -> Eduard (8666ms)
What is schizophrenia? Participants -0.11111111111100003 What is schizophrenia? -> $x: ($x, comprise, schizophrenia) -> (Participants, comprised, 16 chronic schizophrenia patients) -> Participants (8644ms)
What is schizophrenia? A Zurich University study -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (A Zurich University study, developing, schizophrenia) -> A Zurich University study (8652ms)
What is schizophrenia? cannabis users -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (cannabis users, to developing, schizophrenia) -> cannabis users (8636ms)
What is schizophrenia? schizotypal -> Many believe -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (schizotypal -> Many believe, represents, mild schizophrenia) -> schizotypal -> Many believe (8644ms)
What is schizophrenia? real news -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (real news, may induce a kind of, schizophrenia) -> real news (8666ms)
What is schizophrenia? the non-users -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the non-users, developed, schizophrenia) -> the non-users (8652ms)
What is schizophrenia? Lucia -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Lucia, developed, schizophrenia) -> Lucia (8636ms)
What is schizophrenia? the offspring -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the offspring, developed, schizophrenia) -> the offspring (8666ms)
What is schizophrenia? pregnant women -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (pregnant women, developed, schizophrenia) -> pregnant women (8652ms)
What is schizophrenia? harder drugs -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (harder drugs, develop, schizophrenia) -> harder drugs (8652ms)
What is schizophrenia? VCFS -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (VCFS, thus represents a rare genetic cause of, schizophrenia) -> VCFS (8628ms)
What is schizophrenia? a man -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a man, developed, schizophrenia) -> a man (8659ms)
What is schizophrenia? the population -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the population, develops, schizophrenia) -> the population (8644ms)
What is schizophrenia? 7,331 of the offspring -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (7,331 of the offspring, developed, schizophrenia) -> 7,331 of the offspring (8636ms)
What is schizophrenia? sister -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (sister, developed, schizophrenia) -> sister (8644ms)
What is schizophrenia? 100 people -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (100 people, develops, schizophrenia) -> 100 people (8659ms)
What is schizophrenia? every five people -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (every five people, develop, schizophrenia) -> every five people (8636ms)
What is schizophrenia? a teenager -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a teenager, developing, Schizophrenia) -> a teenager (8666ms)
What is schizophrenia? ZYPREXA -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (ZYPREXA, is used to treat symptoms of, schizophrenia) -> ZYPREXA (8652ms)
What is schizophrenia? a child -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a child, would develop, schizophrenia) -> a child (8659ms)
What is schizophrenia? newer drugs -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (newer drugs, developed for, schizophrenia) -> newer drugs (8673ms)
What is schizophrenia? the OT Levels -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (the OT Levels, induce, schizophrenia) -> the OT Levels (8659ms)
What is schizophrenia? boys -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (boys, develop, schizophrenia) -> boys (8628ms)
What is schizophrenia? a twin brother -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a twin brother, developed, schizophrenia) -> a twin brother (8659ms)
What is schizophrenia? the 274 conscripts -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the 274 conscripts, developed, schizophrenia) -> the 274 conscripts (8636ms)
What is schizophrenia? migration -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (migration, develops, schizophrenia) -> migration (8652ms)
What is schizophrenia? One identical twin -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (One identical twin, develops, schizophrenia) -> One identical twin (8673ms)
What is schizophrenia? Aripiprazole -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Aripiprazole, is used to treat symptoms of, schizophrenia) -> Aripiprazole (8636ms)
What is schizophrenia? a twin pair -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a twin pair, develop, schizophrenia) -> a twin pair (8666ms)
What is schizophrenia? a music prodigy -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a music prodigy, developed, schizophrenia) -> a music prodigy (8673ms)
What is schizophrenia? Ziprasidone -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Ziprasidone, is used to treat the symptoms of, schizophrenia) -> Ziprasidone (8629ms)
What is schizophrenia? teens -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (teens, develop, schizophrenia) -> teens (8652ms)
What is schizophrenia? psychotic symptoms -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (psychotic symptoms, develop, schizophrenia) -> psychotic symptoms (8644ms)
What is schizophrenia? personality -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (personality, could be, Schizophrenia) -> personality (8681ms)
What is schizophrenia? ghosts -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (ghosts, could be a slight form of, schizophrenia) -> ghosts (8674ms)
What is schizophrenia? a more thorough discussion -0.111111111112 What is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (a more thorough discussion, constitutes, childhood schizophrenia) -> a more thorough discussion (8681ms)
What is schizophrenia? aware -0.111111111112 What is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (aware, constitutes, schizophrenia) -> aware (8680ms)
What is schizophrenia? the mother?s genes -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (the mother?s genes, could be, schizophrenia) -> the mother?s genes (8681ms)
What is schizophrenia? God -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (God, could be a symptom of, schizophrenia) -> God (8681ms)
What is schizophrenia? an actual demon possession -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (an actual demon possession, could be diagnosed as, schizophrenia) -> an actual demon possession (8687ms)
What is schizophrenia? times -0.111111111112 What is schizophrenia? -> $x: ($x, can be, schizophrenia) -> (times, can be a form of, controlled schizophrenia) -> times (8688ms)
What is schizophrenia? Such behaviors -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (Such behaviors, could be signs of, schizophrenia) -> Such behaviors (8681ms)
What is schizophrenia? a cure -0.111111111112 What is schizophrenia? -> $x: ($x, discover, schizophrenia) -> (a cure, is finally discovered for, schizophrenia) -> a cure (8674ms)
What is schizophrenia? such a woman -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (such a woman, could only be the case of, schizophrenia) -> such a woman (8687ms)
What is schizophrenia? mother and fetus -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (mother and fetus, could be a risk factor for, schizophrenia) -> mother and fetus (8681ms)
What is schizophrenia? medication -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (medication, could be used to treat, schizophrenia) -> medication (8687ms)
What is schizophrenia? the work -0.111111111112 What is schizophrenia? -> $x: ($x, can be, schizophrenia) -> (the work, can be covered by, schizophrenia.com) -> the work (8673ms)
What is schizophrenia? An individual -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (An individual, could be diagnosed with, Schizophrenia) -> An individual (8687ms)
What is schizophrenia? opinion -0.111111111112 What is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (opinion, constitutes, schizophrenia) -> opinion (8674ms)
What is schizophrenia? a hospital -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, died in, a hospital) -> a hospital (8694ms)
What is schizophrenia? the world?s population -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the world?s population, is getting affected by, Schizophrenia) -> the world?s population (8726ms)
What is schizophrenia? reality -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, reality) -> reality (8726ms)
What is schizophrenia? Authorities Concept Scheme -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (8706ms)
What is schizophrenia? Susano -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Susano, gets a nasty case of, schizophrenia) -> Susano (8701ms)
What is schizophrenia? late adolescence or early adulthood -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, begins in, late adolescence or early adulthood) -> late adolescence or early adulthood (8711ms)
What is schizophrenia? about 1 % of the population -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, occurs in, about 1 % of the population) -> about 1 % of the population (8711ms)
What is schizophrenia? Link -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Link, get over, his schizophrenia) -> Link (8694ms)
What is schizophrenia? humans -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerges in, humans) -> humans (8701ms)
What is schizophrenia? Li Hongzhi -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, obsessed in, Li Hongzhi) -> Li Hongzhi (8701ms)
What is schizophrenia? The child -0.222222222222 What is schizophrenia? -> $x: ($x, raise be, schizophrenia) -> (The child, was raised by, a paranoid schizophrenia) -> The child (8716ms)
What is schizophrenia? tune -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (tune, then got, schizophrenia) -> tune (8726ms)
What is schizophrenia? BMJ 305 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, BMJ 305) -> BMJ 305 (8706ms)
What is schizophrenia? a state hospital -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, died in, a state hospital) -> a state hospital (8716ms)
What is schizophrenia? a Scottish population -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, confirmed in, a Scottish population) -> a Scottish population (8711ms)
What is schizophrenia? young adult life -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerges in, young adult life) -> young adult life (8716ms)
What is schizophrenia? outpatient research protocols -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, participated in, outpatient research protocols) -> outpatient research protocols (8711ms)
What is schizophrenia? degree and type -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, varies in, degree and type) -> degree and type (8716ms)
What is schizophrenia? the soul -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the soul, gets into, a state of schizophrenia) -> the soul (8711ms)
What is schizophrenia? volume -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is a decrease in, volume) -> volume (8721ms)
What is schizophrenia? hospitals -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, were in, hospitals) -> hospitals (8711ms)
What is schizophrenia? Triangle 32 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, Triangle 32) -> Triangle 32 (8716ms)
What is schizophrenia? a young person -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (a young person, gets treatment for, schizophrenia) -> a young person (8721ms)
What is schizophrenia? fact -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, fact) -> fact (8706ms)
What is schizophrenia? type and severity -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, vary in, type and severity) -> type and severity (8726ms)
What is schizophrenia? the reader -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the reader, can get a sense of, the doctrinal schizophrenia) -> the reader (8706ms)
What is schizophrenia? New York -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurred in, New York) -> New York (8706ms)
What is schizophrenia? the late teens or early 20s -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, starts in, the late teens or early 20s) -> the late teens or early 20s (8706ms)
What is schizophrenia? need -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, need) -> need (8716ms)
What is schizophrenia? young -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (young, get, schizophrenia) -> young (8716ms)
What is schizophrenia? Bibi?s family -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, runs in, Bibi?s family) -> Bibi?s family (8711ms)
What is schizophrenia? a few cases -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, benefited in, a few cases) -> a few cases (8694ms)
What is schizophrenia? the June issue -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appears in, the June issue) -> the June issue (8694ms)
What is schizophrenia? the model -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerge in, the model) -> the model (8711ms)
What is schizophrenia? Males -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Males, typically get, schizophrenia) -> Males (8701ms)
What is schizophrenia? the workplace -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, succeed in, the workplace) -> the workplace (8711ms)
What is schizophrenia? Margaret Sanger -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Margaret Sanger, gets diagnosed with, Schizophrenia) -> Margaret Sanger (8694ms)
What is schizophrenia? 1990 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurred in, 1990) -> 1990 (8711ms)
What is schizophrenia? the August 6 edition -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appear in, the August 6 edition) -> the August 6 edition (8726ms)
What is schizophrenia? Curtis?s family -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, runs in, Curtis?s family) -> Curtis?s family (8721ms)
What is schizophrenia? CUD -0.222222222222 What is schizophrenia? -> $x: ($x, compare to, schizophrenia) -> (CUD, were compared to, 51 first-episode schizophrenia subjects) -> CUD (8694ms)
What is schizophrenia? literature -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, receive in, literature) -> literature (8694ms)
What is schizophrenia? common and -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, have in, common and) -> common and (8711ms)
What is schizophrenia? the copy -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, perform in, the copy) -> the copy (8726ms)
What is schizophrenia? adolescence or adulthood -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appears in, adolescence or adulthood) -> adolescence or adulthood (8701ms)
What is schizophrenia? part -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, depends in, part) -> part (8716ms)
What is schizophrenia? Ouran High School Host Club -0.222222222222 What is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (Ouran High School Host Club, Leave, schizophrenia) -> Ouran High School Host Club (8694ms)
What is schizophrenia? a plan -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (a plan, get the most from, your Schizophrenia treatment) -> a plan (8726ms)
What is schizophrenia? Table 1 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, Table 1) -> Table 1 (8711ms)
What is schizophrenia? hes -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (hes, got, mild schizophrenia) -> hes (8706ms)
What is schizophrenia? suicide -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, ends in, suicide) -> suicide (8701ms)
What is schizophrenia? the community -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, live in, the community) -> the community (8725ms)
What is schizophrenia? 1952 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, began in, 1952) -> 1952 (8730ms)
What is schizophrenia? reductions -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, resulted in, reductions) -> reductions (8706ms)
What is schizophrenia? Topical Terms Concept Scheme -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (8706ms)
What is schizophrenia? identical twins -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, occurs in, identical twins) -> identical twins (8701ms)
What is schizophrenia? deletion carriers -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurs in, deletion carriers) -> deletion carriers (8716ms)
What is schizophrenia? enough adrenochrome -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (enough adrenochrome, then will get, schizophrenia) -> enough adrenochrome (8725ms)
What is schizophrenia? recordings -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, lies in, recordings) -> recordings (8701ms)
What is schizophrenia? cycles -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, worsen in, cycles) -> cycles (8711ms)
What is schizophrenia? adolescence -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, develops in, adolescence) -> adolescence (8726ms)
What is schizophrenia? equal rates among men and women -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, to occur in, equal rates among men and women) -> equal rates among men and women (8711ms)
What is schizophrenia? two steps -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, goes in, two steps) -> two steps (8716ms)
What is schizophrenia? late preclinical testing -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, late preclinical testing) -> late preclinical testing (8716ms)
What is schizophrenia? White Denim -0.222222222222 What is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (White Denim, left behind, their schizophrenia) -> White Denim (8725ms)
What is schizophrenia? ventricular size and structure -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, reflected in, ventricular size and structure) -> ventricular size and structure (8721ms)
What is schizophrenia? various forums -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, headlined in, various forums) -> various forums (8716ms)
What is schizophrenia? an Internal Medicine journal -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, reported in, an Internal Medicine journal) -> an Internal Medicine journal (8721ms)
What is schizophrenia? ambush -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, lay in, ambush) -> ambush (8711ms)
What is schizophrenia? community settings -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, living in, community settings) -> community settings (8721ms)
What is schizophrenia? 14297 -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (14297, gets, Schizophrenia) -> 14297 (8706ms)
What is schizophrenia? touch -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, get in, touch) -> touch (8721ms)
What is schizophrenia? the 1950s -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerged in, the 1950s) -> the 1950s (8721ms)
What is schizophrenia? Longest Journey -0.222222222222 What is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (Longest Journey, Leave, schizophrenia) -> Longest Journey (8726ms)
What is schizophrenia? the mind -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, reigned in, the mind) -> the mind (8721ms)
What is schizophrenia? late adolescence -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, begin in, late adolescence) -> late adolescence (8694ms)
What is schizophrenia? several varieties -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, comes in, several varieties) -> several varieties (8706ms)
What is schizophrenia? cancer -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (cancer, are much less apt to get, schizophrenia) -> cancer (8721ms)
What is schizophrenia? greater danger -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, greater danger) -> greater danger (8711ms)
What is schizophrenia? the residual phase -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, the residual phase) -> the residual phase (8694ms)
What is schizophrenia? concert -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, rose in, concert) -> concert (8725ms)
What is schizophrenia? Charlie Giles ? family -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, runs in, Charlie Giles ? family) -> Charlie Giles ? family (8721ms)
What is schizophrenia? different cultures -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, vary in, different cultures) -> different cultures (8721ms)
What is schizophrenia? the winter -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, born in, the winter) -> the winter (8730ms)
What is schizophrenia? the elderly population -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurs in, the elderly population) -> the elderly population (8706ms)
What is schizophrenia? insufficient NR signaling -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (insufficient NR signaling, has been involved with, schizophrenia) -> insufficient NR signaling (8730ms)
What is schizophrenia? the vagus nerve low levels -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (the vagus nerve low levels, may be involved in, schizophrenia) -> the vagus nerve low levels (8734ms)
What is schizophrenia? The latter -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (The latter, are presumably those involved with, schizophrenia) -> The latter (8734ms)
What is schizophrenia? NOS1AP -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (NOS1AP, is involved in, schizophrenia) -> NOS1AP (8730ms)
What is schizophrenia? a study -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (a study, involving, schizophrenia) -> a study (8734ms)
What is schizophrenia? David Shakow -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (David Shakow, involved, schizophrenia research) -> David Shakow (8734ms)
What is schizophrenia? the same genes -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (the same genes, are involved in, schizophrenia) -> the same genes (8730ms)
What is schizophrenia? Site -0.44444444444500003 What is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (Site, contains information on, schizophrenia) -> Site (8734ms)
What is schizophrenia? Psychiatrie -0.44444444444500003 What is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (Psychiatrie, contained his classifications of, schizophrenia) -> Psychiatrie (8734ms)
What is schizophrenia? The psychosis group -0.44444444444500003 What is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (The psychosis group, contained, schizophrenia) -> The psychosis group (8734ms)
What is schizophrenia? China -0.5555555555539999 What is schizophrenia? -> $x: ($x, demonstrate, schizophrenia) -> (China, have demonstrated a degree of, schizophrenia) -> China (8734ms)
What is schizophrenia? studies -0.5555555555539999 What is schizophrenia? -> $x: ($x, demonstrate, schizophrenia) -> (studies, demonstrate the validity of, schizophrenia) -> studies (8734ms)
What is schizophrenia? informed consent -0.555555555555 What is schizophrenia? -> $x: ($x, concerned, schizophrenia) -> (informed consent, has concerned patients with, schizophrenia) -> informed consent (8734ms)
What is schizophrenia? Improvements -0.555555555555 What is schizophrenia? -> $x: ($x, concerned, schizophrenia) -> (Improvements, concerned, the schizophrenia-like symptoms) -> Improvements (8734ms)
What is schizophrenia? a poor concept -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are already known to have, a poor concept) -> a poor concept (8767ms)
What is schizophrenia? the Community -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community) -> the Community (8738ms)
What is schizophrenia? a higher occurrence -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been associated with, a higher occurrence) -> a higher occurrence (8769ms)
What is schizophrenia? the Community Jan Volavka Risk -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community Jan Volavka Risk) -> the Community Jan Volavka Risk (8765ms)
What is schizophrenia? an effect -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been thought to be, an effect) -> an effect (8776ms)
What is schizophrenia? lower levels -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, lower levels) -> lower levels (8757ms)
What is schizophrenia? every two weeks -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has to be given, every two weeks) -> every two weeks (8777ms)
What is schizophrenia? several centres -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is practised in, several centres) -> several centres (8777ms)
What is schizophrenia? sequential phases -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, can be described in, sequential phases) -> sequential phases (8769ms)
What is schizophrenia? recent years -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been revolutionized in, recent years) -> recent years (8774ms)
What is schizophrenia? abnormalities -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have also been shown to have, abnormalities) -> abnormalities (8771ms)
What is schizophrenia? the new book Essentials -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, can be found in, the new book Essentials) -> the new book Essentials (8769ms)
What is schizophrenia? detail -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are described in, detail) -> detail (8767ms)
What is schizophrenia? origin -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is biological in, origin) -> origin (8767ms)
What is schizophrenia? 6.8 -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been increasing by, 6.8) -> 6.8 (8754ms)
What is schizophrenia? two independent studies -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been revealed by, two independent studies) -> two independent studies (8774ms)
What is schizophrenia? the cold sore virus -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been exposed to, the cold sore virus) -> the cold sore virus (8776ms)
What is schizophrenia? P. Seeman et al -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is claimed in, P. Seeman et al) -> P. Seeman et al (8765ms)
What is schizophrenia? one 6- week -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, one 6- week) -> one 6- week (8746ms)
What is schizophrenia? younger males -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is especially common in, younger males) -> younger males (8767ms)
What is schizophrenia? the prefrontal or frontal cortex -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been, the prefrontal or frontal cortex) -> the prefrontal or frontal cortex (8746ms)
What is schizophrenia? a waking dream state -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been described as, a waking dream state) -> a waking dream state (8775ms)
What is schizophrenia? a prominent feature -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been recognized as, a prominent feature) -> a prominent feature (8738ms)
What is schizophrenia? study -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been under, study) -> study (8750ms)
What is schizophrenia? the Community John S. Brekke -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community John S. Brekke) -> the Community John S. Brekke (8760ms)
What is schizophrenia? either Zyprexa or Risperdal -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been placed on, either Zyprexa or Risperdal) -> either Zyprexa or Risperdal (8754ms)
What is schizophrenia? an adolescent girl -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, could be developing in, an adolescent girl) -> an adolescent girl (8769ms)
What is schizophrenia? a separate disease -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been considered, a separate disease) -> a separate disease (8765ms)
What is schizophrenia? social skill -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (social skill, have been well established in, schizophrenia) -> social skill (8762ms)
What is schizophrenia? gluten intolerance -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, gluten intolerance) -> gluten intolerance (8760ms)
What is schizophrenia? 60 percent -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is successful in, 60 percent) -> 60 percent (8762ms)
What is schizophrenia? the make-believe story -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is told in, the make-believe story) -> the make-believe story (8777ms)
What is schizophrenia? an early stage -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is still in, an early stage) -> an early stage (8750ms)
What is schizophrenia? satisfying relationships -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are able to have, satisfying relationships) -> satisfying relationships (8760ms)
What is schizophrenia? nature -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are bizarre in, nature) -> nature (8760ms)
What is schizophrenia? a hard plastic chair -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been shackled to, a hard plastic chair) -> a hard plastic chair (8738ms)
What is schizophrenia? single day -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, single day) -> single day (8742ms)
What is schizophrenia? a good safety -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been shown to have, a good safety) -> a good safety (8767ms)
What is schizophrenia? special powers -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are seen as having, special powers) -> special powers (8769ms)
What is schizophrenia? the late teens -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is typically in, the late teens) -> the late teens (8777ms)
What is schizophrenia? 72 cases -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, was present in, 72 cases) -> 72 cases (8750ms)
What is schizophrenia? the Age , Beginning and Course -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was included in, the Age , Beginning and Course) -> the Age , Beginning and Course (8771ms)
What is schizophrenia? collaboration -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been established in, collaboration) -> collaboration (8771ms)
What is schizophrenia? 5 placebo-controlled studies -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was evaluated in, 5 placebo-controlled studies) -> 5 placebo-controlled studies (8750ms)
What is schizophrenia? a biological basis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are now recognized as having, a biological basis) -> a biological basis (8757ms)
What is schizophrenia? a genetic component -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, is considered to have, a genetic component) -> a genetic component (8738ms)
What is schizophrenia? the mental health system -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are treated in, the mental health system) -> the mental health system (8754ms)
What is schizophrenia? the May issue -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, was published in, the May issue) -> the May issue (8765ms)
What is schizophrenia? a new edition -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, will be published in, a new edition) -> a new edition (8738ms)
What is schizophrenia? a long journey -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been, a long journey) -> a long journey (8769ms)
What is schizophrenia? the 19th century -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been recognized since, the 19th century) -> the 19th century (8767ms)
What is schizophrenia? low blood levels -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been found to have, low blood levels) -> low blood levels (8771ms)
What is schizophrenia? now -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been linked, now) -> now (8777ms)
What is schizophrenia? a biological disease -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has also been termed, a biological disease) -> a biological disease (8776ms)
What is schizophrenia? the first sample -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was strongly reduced in, the first sample) -> the first sample (8738ms)
What is schizophrenia? increased rate -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been associated with, increased rate) -> increased rate (8765ms)
What is schizophrenia? school -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in teaching, $x) -> (the way schizophrenia, is taught in, school) -> school (8738ms)
What is schizophrenia? three 6-week trials -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, three 6-week trials) -> three 6-week trials (8746ms)
What is schizophrenia? 0.1 cases -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been estimated as, 0.1 cases) -> 0.1 cases (8754ms)
What is schizophrenia? an emphasis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been replaced by, an emphasis) -> an emphasis (8742ms)
What is schizophrenia? behavioral deficits -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are known to have, behavioral deficits) -> behavioral deficits (8776ms)
What is schizophrenia? low melatonin output -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, low melatonin output) -> low melatonin output (8774ms)
What is schizophrenia? object working memory -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (object working memory, established, schizophrenia) -> object working memory (8750ms)
What is schizophrenia? reviewers -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been characterized by, reviewers) -> reviewers (8760ms)
What is schizophrenia? gifted children -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been intellectually, gifted children) -> gifted children (8773ms)
What is schizophrenia? least two years -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had all been diagnosed at, least two years) -> least two years (8774ms)
What is schizophrenia? a failure -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been attributed to, a failure) -> a failure (8774ms)
What is schizophrenia? terms -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are impaired in, terms) -> terms (8771ms)
What is schizophrenia? a section -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was listed in, a section) -> a section (8750ms)
What is schizophrenia? improper lateralization -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been linked to, improper lateralization) -> improper lateralization (8750ms)
What is schizophrenia? Figure 1 -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are summarized in, Figure 1) -> Figure 1 (8765ms)
What is schizophrenia? the pattern -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been estimated from, the pattern) -> the pattern (8777ms)
What is schizophrenia? the media -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is often confused in, the media) -> the media (8771ms)
What is schizophrenia? perceptual closure -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are profoundly impaired in, perceptual closure) -> perceptual closure (8759ms)
What is schizophrenia? Dr. Goff -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (Dr. Goff, established, the Schizophrenia Program) -> Dr. Goff (8776ms)
What is schizophrenia? a disorder -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been hypothesized to be, a disorder) -> a disorder (8742ms)
What is schizophrenia? poor social functioning -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, poor social functioning) -> poor social functioning (8738ms)
What is schizophrenia? a stable dose -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been on, a stable dose) -> a stable dose (8774ms)
What is schizophrenia? a result -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been shown to be, a result) -> a result (8769ms)
What is schizophrenia? recurrent and disabling -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been regarded as, recurrent and disabling) -> recurrent and disabling (8757ms)
What is schizophrenia? a plethora -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, a plethora) -> a plethora (8771ms)
What is schizophrenia? point -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, is a case in, point) -> point (8757ms)
What is schizophrenia? a disease -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been known as, a disease) -> a disease (8757ms)
What is schizophrenia? non-affected relatives -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are also found in, non-affected relatives) -> non-affected relatives (8767ms)
What is schizophrenia? latent inhibition -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are impaired in, latent inhibition) -> latent inhibition (8760ms)
What is schizophrenia? interior products -0.777777777778 What is schizophrenia? -> $x: ($x, inspired, schizophrenia) -> (interior products, are inspired by, schizophrenia) -> interior products (8773ms)
What is schizophrenia? British political life -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is becoming apparent in, British political life) -> British political life (8750ms)
What is schizophrenia? an age -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was treated in, an age) -> an age (8762ms)
What is schizophrenia? cities -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was more common in, cities) -> cities (8760ms)
What is schizophrenia? several respects -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, is similar in, several respects) -> several respects (8757ms)
What is schizophrenia? 38 , 39 ] -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been reported [, 38 , 39 ]) -> 38 , 39 ] (8742ms)
What is schizophrenia? a rollercoaster ride -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been described as, a rollercoaster ride) -> a rollercoaster ride (8762ms)
What is schizophrenia? Found -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, Has been, Found) -> Found (8762ms)
What is schizophrenia? recent decades -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been published in, recent decades) -> recent decades (8746ms)
What is schizophrenia? several loci -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been identified at, several loci) -> several loci (8754ms)
What is schizophrenia? HLA type -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been correlated with, HLA type) -> HLA type (8774ms)
What is schizophrenia? the NIMH -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (the NIMH, has established, a Schizophrenia Genetics Initiative) -> the NIMH (8757ms)
What is schizophrenia? doubt -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been established beyond, doubt) -> doubt (8746ms)
What is schizophrenia? the left temporal lobe -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, the left temporal lobe) -> the left temporal lobe (8769ms)
What is schizophrenia? cultures -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is rare in, cultures) -> cultures (8767ms)
What is schizophrenia? intensive research -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been the focus of, intensive research) -> intensive research (8760ms)
What is schizophrenia? several studies -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been reported in, several studies) -> several studies (8765ms)
What is schizophrenia? previous neuroimaging -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been described by, previous neuroimaging) -> previous neuroimaging (8754ms)
What is schizophrenia? low selenium regions -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is more common in, low selenium regions) -> low selenium regions (8762ms)
What is schizophrenia? Israeli researchers -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been proposed by, Israeli researchers) -> Israeli researchers (8746ms)
What is schizophrenia? bad genes or even bad parents -0.777777777778 What 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)
What is schizophrenia? a higher risk -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been linked to, a higher risk) -> a higher risk (8777ms)
What is schizophrenia? the basis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been postulated on, the basis) -> the basis (8750ms)
What is schizophrenia? the general population -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is found in, the general population) -> the general population (8750ms)
What is schizophrenia? a $ 1 million boost -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been given, a $ 1 million boost) -> a $ 1 million boost (8757ms)
What is schizophrenia? the haplotype analysis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was detected in, the haplotype analysis) -> the haplotype analysis (8776ms)
What is schizophrenia? cohorts -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was examined in, cohorts) -> cohorts (8771ms)
What is schizophrenia? bewilderment -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been a source of, bewilderment) -> bewilderment (8757ms)
What is schizophrenia? date -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been published to, date) -> date (8771ms)
What is schizophrenia? around -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been, around) -> around (8757ms)
What is schizophrenia? early detection -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is very important in, early detection) -> early detection (8765ms)
What is schizophrenia? Table 6-8 -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are summarized in, Table 6-8) -> Table 6-8 (8769ms)
What is schizophrenia? the July 1 , 2009 issue -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is published in, the July 1 , 2009 issue) -> the July 1 , 2009 issue (8769ms)
What is the length of the Big Dig? the service browser 0.999999999995 What 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)
What is the length of the Big Dig? Tani 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tani, then goes back to, digging) -> Tani (2192ms)
What is the length of the Big Dig? Max Spaniel 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Max Spaniel, decides to go on, a dinosaur dig) -> Max Spaniel (2207ms)
What is the length of the Big Dig? Yellow- 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Yellow-, Go to, the dig site) -> Yellow- (2192ms)
What is the length of the Big Dig? Binah 0.8888888888840001 What 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)
What is the length of the Big Dig? The Battn 0.8888888888840001 What 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)
What is the length of the Big Dig? the day 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the day, went to, my digs) -> the day (2206ms)
What is the length of the Big Dig? officers 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (officers, go back to, their digging) -> officers (2068ms)
What is the length of the Big Dig? the Old Man 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Old Man, went to, digging) -> the Old Man (2192ms)
What is the length of the Big Dig? Rick 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Rick, went off to, a dig) -> Rick (2207ms)
What is the length of the Big Dig? the tour group 0.8888888888840001 What 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)
What is the length of the Big Dig? the squirrel suit 0.8888888888840001 What 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)
What is the length of the Big Dig? I?m 0.8888888888840001 What 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)
What is the length of the Big Dig? Readers 0.8888888888840001 What 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)
What is the length of the Big Dig? Harry 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Harry, went back to, digging) -> Harry (1972ms)
What is the length of the Big Dig? Scan 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Scan, then go back to do, the digging) -> Scan (2192ms)
What is the length of the Big Dig? Interested contributors 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Interested contributors, should go to, the ht ://Dig developer) -> Interested contributors (2203ms)
What is the length of the Big Dig? joke 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (joke, ? go to, Donna?s blog & dig) -> joke (2203ms)
What is the length of the Big Dig? the excavator 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the excavator, is going to start, their digging) -> the excavator (2206ms)
What is the length of the Big Dig? A woman from New England 0.8888888888840001 What 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)
What is the length of the Big Dig? Hopalong Cassidy 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Hopalong Cassidy, is long gone to, the big dig) -> Hopalong Cassidy (2207ms)
What is the length of the Big Dig? Michael 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Michael, goes back to, his digging area) -> Michael (2207ms)
What is the length of the Big Dig? the Grand Palace 0.8888888888840001 What 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)
What is the length of the Big Dig? a pig 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (a pig, went to, dig) -> a pig (2203ms)
What is the length of the Big Dig? a daffy hound dog 0.8888888888840001 What 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)
What is the length of the Big Dig? the place 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the place, to go deeper to, dig) -> the place (2192ms)
What is the length of the Big Dig? race .5 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (race .5, Went to, Digging) -> race .5 (2069ms)
What is the length of the Big Dig? Tiffany Milburn 0.8888888888840001 What 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)
What is the length of the Big Dig? I?d 0.8888888888840001 What 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)
What is the length of the Big Dig? just maybe I?ll 0.8888888888840001 What 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)
What is the length of the Big Dig? Matt 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Matt, went back to, digging) -> Matt (1972ms)
What is the length of the Big Dig? the wasp 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the wasp, will soon go back to, its digging) -> the wasp (2192ms)
What is the length of the Big Dig? Wonder 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Wonder, else is going to take, digs) -> Wonder (2172ms)
What is the length of the Big Dig? The kids 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The kids, get to go on, a pretend dig) -> The kids (1972ms)
What is the length of the Big Dig? Olsen 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Olsen, recorded 15 assists to go along with, 4 digs) -> Olsen (2206ms)
What is the length of the Big Dig? the Normandy ? 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Normandy ?, went right to, the dig site) -> the Normandy ? (2206ms)
What is the length of the Big Dig? trucks 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (trucks, are all going to scanned, an dig?i?tized) -> trucks (2203ms)
What is the length of the Big Dig? man 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, invent, dig) -> (man, invented, the dug-out canoe) -> man (2173ms)
What is the length of the Big Dig? so many airlines 0.8888888888840001 What 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)
What is the length of the Big Dig? The Doctor 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The Doctor, plans to go to, the archaeological dig) -> The Doctor (1972ms)
What is the length of the Big Dig? Chapter 90 funds 0.8888888888840001 What 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)
What is the length of the Big Dig? the gold fever 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the gold fever, went west to, DIG) -> the gold fever (2203ms)
What is the length of the Big Dig? ? Auntie 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (? Auntie, goes back to, digging) -> ? Auntie (2192ms)
What is the length of the Big Dig? Jonathan 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jonathan, goes back to, digging) -> Jonathan (2173ms)
What is the length of the Big Dig? Buckbeak 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Buckbeak, then went back to, digging) -> Buckbeak (2069ms)
What is the length of the Big Dig? San Diego 0.8888888888840001 What 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)
What is the length of the Big Dig? Celia 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Celia, loves to go on, archaeological digs) -> Celia (2207ms)
What is the length of the Big Dig? Tony 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tony, goes to, the digs) -> Tony (2209ms)
What is the length of the Big Dig? the team from Ibex 0.8888888888840001 What 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)
What is the length of the Big Dig? Tim and Rich 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tim and Rich, were going to, the dig) -> Tim and Rich (2192ms)
What is the length of the Big Dig? Freedom 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Freedom, went back to work on, the digging) -> Freedom (2206ms)
What is the length of the Big Dig? Asia 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Asia, went back to, her digging) -> Asia (2068ms)
What is the length of the Big Dig? good news ? 0.8888888888840001 What 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)
What is the length of the Big Dig? spring 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (spring, goes on to do, a little digging) -> spring (2203ms)
What is the length of the Big Dig? Paul 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Paul, went up to, the dig) -> Paul (2068ms)
What is the length of the Big Dig? the price 0.8888888888840001 What 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)
What is the length of the Big Dig? Bridget 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Bridget, goes to, an archaeological dig and kisses) -> Bridget (2173ms)
What is the length of the Big Dig? Egypt 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Egypt, went to, the King Tut dig) -> Egypt (2192ms)
What is the length of the Big Dig? Bell 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Bell, continued to go on, many archaeological digs) -> Bell (2068ms)
What is the length of the Big Dig? the Orioles and Jays 0.8888888888840001 What 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)
What is the length of the Big Dig? the safari activity window 0.8888888888840001 What 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)
What is the length of the Big Dig? the Librarian 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Librarian, goes to, a dig) -> the Librarian (2207ms)
What is the length of the Big Dig? an archeology major 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (an archeology major, can go to, a dig) -> an archeology major (2172ms)
What is the length of the Big Dig? the answers 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the answers, was going to do, a little digging) -> the answers (2203ms)
What is the length of the Big Dig? Jacka 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jacka, had gone to, his dug-out) -> Jacka (2207ms)
What is the length of the Big Dig? intrest 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (intrest, are now going to have to do, a dig) -> intrest (2173ms)
What is the length of the Big Dig? Danaos 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, invent, dig) -> (Danaos, invented, the digging) -> Danaos (2203ms)
What is the length of the Big Dig? Jules and Martin 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jules and Martin, went to have, a dig) -> Jules and Martin (2203ms)
What is the length of the Big Dig? Mood 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Mood, go to, the park digging) -> Mood (1972ms)
What is the length of the Big Dig? the plaines 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the plaines, went over to, Spanish Dry Digging) -> the plaines (2203ms)
What is the length of the Big Dig? a flat , flexible molding strip 0.777777777774 What 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)
What is the length of the Big Dig? Eaton Bray 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Eaton Bray, needed, a drainage system digging) -> Eaton Bray (2217ms)
What is the length of the Big Dig? Soetoro and Holder 0.777777777774 What 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)
What is the length of the Big Dig? course 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (course, also need to establish, digs) -> course (2209ms)
What is the length of the Big Dig? a fancy fox 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a fancy fox, needs, some fancy digs) -> a fancy fox (2212ms)
What is the length of the Big Dig? the best DUI attorney 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the best DUI attorney, really needs, some digging) -> the best DUI attorney (2220ms)
What is the length of the Big Dig? a journalist 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a journalist, needs to, dig deeper) -> a journalist (2217ms)
What is the length of the Big Dig? Exterior Excavation Exterior excavation 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Exterior Excavation Exterior excavation, needs, the digging) -> Exterior Excavation Exterior excavation (2217ms)
What is the length of the Big Dig? The toll increases 0.777777777774 What 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)
What is the length of the Big Dig? The Sloughi 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The Sloughi, may need training to, discourage digging holes) -> The Sloughi (2220ms)
What is the length of the Big Dig? the trench 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the trench, needs to, be dug) -> the trench (2215ms)
What is the length of the Big Dig? the organization 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the organization, need to do a lot of, digging) -> the organization (2220ms)
What is the length of the Big Dig? only 1 magazine 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (only 1 magazine, is needed per, digs) -> only 1 magazine (2215ms)
What is the length of the Big Dig? Solar Power options 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Solar Power options, eliminate the need for, digging) -> Solar Power options (2220ms)
What is the length of the Big Dig? Scripts and HTML code 0.777777777774 What 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)
What is the length of the Big Dig? Dean 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Dean, need to upgrade to, bigger digs) -> Dean (2209ms)
What is the length of the Big Dig? Dimond 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Dimond, needed money and resources to, help her dig it out) -> Dimond (2212ms)
What is the length of the Big Dig? the cable 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the cable, needs to, be dug up) -> the cable (2220ms)
What is the length of the Big Dig? Badgers 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Badgers, need, these digging tools) -> Badgers (2212ms)
What is the length of the Big Dig? small wooden dolls 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (small wooden dolls, need, some new digs) -> small wooden dolls (2217ms)
What is the length of the Big Dig? Student Newspapers 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Student Newspapers, need to challenge, the SRC and ?dig?) -> Student Newspapers (2212ms)
What is the length of the Big Dig? players 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (players, need to, dig to the underground well before the others) -> players (2215ms)
What is the length of the Big Dig? Ben 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Ben, needs, a digging alien) -> Ben (2209ms)
What is the length of the Big Dig? the rain 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the rain, needs to, get dug out as ice-cubes) -> the rain (2215ms)
What is the length of the Big Dig? the best equipment 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the best equipment, needs, some serious pocket digging) -> the best equipment (2209ms)
What is the length of the Big Dig? Juvenile justice reforms 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Juvenile justice reforms, need to, dig deeper) -> Juvenile justice reforms (2215ms)
What is the length of the Big Dig? the grade 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the grade, eliminates the need for, digging) -> the grade (2212ms)
What is the length of the Big Dig? intelligent women 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (intelligent women, need to do some of, their own digging) -> intelligent women (2220ms)
What is the length of the Big Dig? a new line 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a new line, needs, new digs) -> a new line (2209ms)
What is the length of the Big Dig? support 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (support, is there any need to have, a dig) -> support (2215ms)
What is the length of the Big Dig? The roots 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The roots, need to, be dug out) -> The roots (2212ms)
What is the length of the Big Dig? Kilmer 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Kilmer, will need to do, more digging) -> Kilmer (2212ms)
What is the length of the Big Dig? the observatory 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the observatory, will need, some digging) -> the observatory (2220ms)
What is the length of the Big Dig? Joe Contractor 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Joe Contractor, needs, a dedicated digging machine) -> Joe Contractor (2217ms)
What is the length of the Big Dig? an ?oopsy ? 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (an ?oopsy ?, so needs, a ?dig) -> an ?oopsy ? (2209ms)
What is the length of the Big Dig? the soil 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the soil, reduce the need for, digging) -> the soil (2212ms)
What is the length of the Big Dig? a good soil mix 0.777777777774 What 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)
What is the length of the Big Dig? Justin 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Justin, needed to move into, his new digs) -> Justin (2217ms)
What is the length of the Big Dig? Buyer beware , @ groupon 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Buyer beware , @ groupon, needs to do, a little digging) -> Buyer beware , @ groupon (2217ms)
What is the length of the Big Dig? the new well 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the new well, needed to, be dug) -> the new well (2220ms)
What is the length of the Big Dig? shallow foundation tubes 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (shallow foundation tubes, eliminated the need for, deep digging) -> shallow foundation tubes (2215ms)
What is the length of the Big Dig? the home 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the home, will reduce the need for, extensive digging) -> the home (2220ms)
What is the length of the Big Dig? Small trees 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Small trees, need to, be dug up or pulled out) -> Small trees (2217ms)
What is the length of the Big Dig? The holes 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The holes, need to, be dug) -> The holes (2215ms)
What is the length of the Big Dig? garden 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (garden, needs, dug/de-graveled/watered etc.) -> garden (2209ms)
What is the length of the Big Dig? The answer 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The answer, needed, some digging) -> The answer (2212ms)
What is the length of the Big Dig? the steps 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the steps, needed to use, the ht ://Dig system) -> the steps (2209ms)
What is the length of the Big Dig? Mr. Sharf 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Mr. Sharf, needed, a digging shovel) -> Mr. Sharf (2217ms)
What is the length of the Big Dig? Sweetcorn 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Sweetcorn, needs, a well dug , rich soil) -> Sweetcorn (2212ms)
What is the length of the Big Dig? waste 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (waste, will need to, be dug out and taken elsewhere) -> waste (2220ms)
What is the length of the Big Dig? 716 m 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (716 m, has regularly needed, 4 hour + digging dives) -> 716 m (2212ms)
What is the length of the Big Dig? larger clients 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (larger clients, often need, a little digging) -> larger clients (2215ms)
What is the length of the Big Dig? subsidization options 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (subsidization options, will need to do, some digging) -> subsidization options (2217ms)
What is the length of the Big Dig? Schwarzenegger 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Schwarzenegger, Needs, Digs) -> Schwarzenegger (2209ms)
What is the length of the Big Dig? Permission 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Permission, will be needed before, any digging) -> Permission (2215ms)
What is the length of the Big Dig? answer 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (answer, need to do, some more digging) -> answer (2212ms)
What is the length of the Big Dig? diving 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (diving, is needed to get to, this dig) -> diving (2212ms)
What is the length of the Big Dig? groupon 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (groupon, needs to do, a little digging) -> groupon (2209ms)
What is the length of the Big Dig? the garden 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the garden, needs to, be dug) -> the garden (2217ms)
What is the length of the Big Dig? Ill 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Ill, need to, dig further) -> Ill (2220ms)
What is the length of the Big Dig? a road 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a road, needs, digging up) -> a road (2215ms)
What is the length of the Big Dig? a cite 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a cite, need to do, some digging) -> a cite (2215ms)
What is the length of the Big Dig? You?ll 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (You?ll, probably need to do, some digging) -> You?ll (2220ms)
What is the length of the Big Dig? Cauliflowers 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Cauliflowers, need, a well dug) -> Cauliflowers (2220ms)
What is the length of the Big Dig? HTML code 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (HTML code, needed for using, ht ://Dig) -> HTML code (2215ms)
What is the length of the Big Dig? Key contributions 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Key contributions, will be needed from, the dug-out) -> Key contributions (2215ms)
What is the length of the Big Dig? IMD 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (IMD, needed, new digs) -> IMD (2209ms)
What is the length of the Big Dig? DGCI 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (DGCI, need, new digs) -> DGCI (2217ms)
What is the length of the Big Dig? college student 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (college student, will need to outfit, their new digs) -> college student (2222ms)
What is the length of the Big Dig? the tree 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the tree, would need, giant digging machines) -> the tree (2222ms)
What is the length of the Big Dig? Somebody 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Somebody, needs to do, some digging) -> Somebody (2217ms)
What is the length of the Big Dig? Every able-bodied man 0.777777777774 What 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)
What is the length of the Big Dig? Hump Day ? 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Hump Day ?, needs a bit of, a dig) -> Hump Day ? (2220ms)
What is the length of the Big Dig? the hole 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the hole, needed, digging) -> the hole (2220ms)
What is the length of the Big Dig? The tides 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The tides, need to be right for, clam digging) -> The tides (2212ms)
What is the length of the Big Dig? Star 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Star, needs to, dig deeper into critical issues) -> Star (2220ms)
What is the length of the Big Dig? a beginner 0.777777777774 What 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)
What is the length of the Big Dig? the Malakettes 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the Malakettes, needed, better digs) -> the Malakettes (2217ms)
What is the length of the Big Dig? James Davidson 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (James Davidson, dug deeply into, the Mac) -> James Davidson (2229ms)
What is the length of the Big Dig? chinchoks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (chinchoks, dig, Sesshu , Bach , John D. MacDonald) -> chinchoks (2224ms)
What is the length of the Big Dig? The crowd 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The crowd, is digging, Giant big time) -> The crowd (2229ms)
What is the length of the Big Dig? family 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (family, dig, a big hole) -> family (2225ms)
What is the length of the Big Dig? Emily 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Emily, just dug, big comfortable hole) -> Emily (2226ms)
What is the length of the Big Dig? The article 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (The article, digs into, Vince MacMahon) -> The article (2225ms)
What is the length of the Big Dig? Americans 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Americans, dig, big cars) -> Americans (2227ms)
What is the length of the Big Dig? the villagers 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the villagers, dig out, big stones) -> the villagers (2228ms)
What is the length of the Big Dig? a backhoe 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a backhoe, dug, a big hole) -> a backhoe (2223ms)
What is the length of the Big Dig? Dad and son 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Dad and son, dug, a big hole) -> Dad and son (2229ms)
What is the length of the Big Dig? ?We?ve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (?We?ve, dug, a big hole) -> ?We?ve (2227ms)
What is the length of the Big Dig? extremely powerful back legs rabbits 0.666666666667 What 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)
What is the length of the Big Dig? Windows 7 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Windows 7, dug out, a MacBook) -> Windows 7 (2223ms)
What is the length of the Big Dig? a smile 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (a smile, dug back into, his mac'n'cheese) -> a smile (2228ms)
What is the length of the Big Dig? a matter 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a matter, dug, a hole big and deep enough) -> a matter (2228ms)
What is the length of the Big Dig? the children 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the children, dug, a big pail) -> the children (2224ms)
What is the length of the Big Dig? Native Americans 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Native Americans, dug, big holes) -> Native Americans (2228ms)
What is the length of the Big Dig? they?ve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (they?ve, dug, a big hole) -> they?ve (2222ms)
What is the length of the Big Dig? the end 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the end, dig, a big deep hole) -> the end (2228ms)
What is the length of the Big Dig? the flashy advertising 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the flashy advertising, dug, two big pits) -> the flashy advertising (2228ms)
What is the length of the Big Dig? waste ? 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (waste ?, dig, a big hole) -> waste ? (2222ms)
What is the length of the Big Dig? the atom bomb 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the atom bomb, dug, a big canal) -> the atom bomb (2227ms)
What is the length of the Big Dig? the kids 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the kids, just dug, the big beats) -> the kids (2224ms)
What is the length of the Big Dig? hospitals 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (hospitals, dig into, Big Data) -> hospitals (2228ms)
What is the length of the Big Dig? Khan 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Khan, dug, his big fingers) -> Khan (2222ms)
What is the length of the Big Dig? chicks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (chicks, dig, big vocabularies) -> chicks (2222ms)
What is the length of the Big Dig? the street 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (the street, maybe dig into, some delicious mac ?n cheese) -> the street (2224ms)
What is the length of the Big Dig? Youre 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Youre, digging yourself, a big hole) -> Youre (2229ms)
What is the length of the Big Dig? ?Chicks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (?Chicks, dig, big brains) -> ?Chicks (2222ms)
What is the length of the Big Dig? Mike Mulligan and his steam shovel 0.666666666667 What 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)
What is the length of the Big Dig? Black Oak Ridge .... Big engines 0.666666666667 What 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)
What is the length of the Big Dig? local governments 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (local governments, start digging, big tunnels) -> local governments (2227ms)
What is the length of the Big Dig? An estimated 30 million U. First 0.666666666667 What 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)
What is the length of the Big Dig? Arie Kamp 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Arie Kamp, has dug up, Pat MacKay) -> Arie Kamp (2228ms)
What is the length of the Big Dig? Commerce 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Commerce, dug, a big hole) -> Commerce (2228ms)
What is the length of the Big Dig? the pigs 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the pigs, dig up, big patches) -> the pigs (2222ms)
What is the length of the Big Dig? Harrison 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Harrison, dug into, his mac n? cheese & grapes) -> Harrison (2222ms)
What is the length of the Big Dig? the Warriors 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the Warriors, dig, another big hole) -> the Warriors (2227ms)
What is the length of the Big Dig? Mr. Sharon 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Mr. Sharon, has dug, a very big hole) -> Mr. Sharon (2230ms)
What is the length of the Big Dig? Windows users 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Windows users, dig around in, Mac filesystems) -> Windows users (2227ms)
What is the length of the Big Dig? a place 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a place, digs, a big hole) -> a place (2224ms)
What is the length of the Big Dig? Swam 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Swam, dug, a big hole) -> Swam (2229ms)
What is the length of the Big Dig? a mud puddle 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a mud puddle, dig, a big dirt pit) -> a mud puddle (2229ms)
What is the length of the Big Dig? ?How 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (?How, dig, such a big hole) -> ?How (2222ms)
What is the length of the Big Dig? the Titus Brothers 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the Titus Brothers, dig, the big tunnel) -> the Titus Brothers (2227ms)
What is the length of the Big Dig? Fancy 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Fancy, digs in, a big city) -> Fancy (2228ms)
What is the length of the Big Dig? The director 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The director, dug, a big hole) -> The director (2226ms)
What is the length of the Big Dig? a girl 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a girl, digs, a guy with a big dick) -> a girl (2222ms)
What is the length of the Big Dig? the new structure 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the new structure, dig, a big hole) -> the new structure (2228ms)
What is the length of the Big Dig? Don?t 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Don?t, dig, a big deep hole) -> Don?t (2229ms)
What is the length of the Big Dig? Bush 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Bush, dug, a really big hole) -> Bush (2227ms)
What is the length of the Big Dig? The Teso 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The Teso, can dig, a big portion) -> The Teso (2227ms)
What is the length of the Big Dig? bricks and rocks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (bricks and rocks, dug, a big hole) -> bricks and rocks (2229ms)
What is the length of the Big Dig? Kevin 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Kevin, dug, big holes) -> Kevin (2228ms)
What is the length of the Big Dig? the bulldozer 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the bulldozer, dug, a big hole) -> the bulldozer (2225ms)
What is the length of the Big Dig? somebody 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (somebody, to dig, a big hole) -> somebody (2225ms)
What is the length of the Big Dig? head-on 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (head-on, digs up, big hypocrisies) -> head-on (2225ms)
What is the length of the Big Dig? Theyve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Theyve, dug, a big hole) -> Theyve (2228ms)
What is the length of the Big Dig? Chicks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Chicks, dig, Mac OS X) -> Chicks (2225ms)
What is the length of the Big Dig? an intense bout 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (an intense bout, digged up, my old Mac Plus) -> an intense bout (2225ms)
What is the length of the Big Dig? the soldiers 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the soldiers, dug, a big hole) -> the soldiers (2224ms)
What is the length of the Big Dig? a man 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a man, dug up, a big , earthenware cask) -> a man (2224ms)
What is the length of the Big Dig? The excavator 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The excavator, dug, a big hole) -> The excavator (2229ms)
What is the length of the Big Dig? Weve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Weve, dug ourselves, a big hole) -> Weve (2225ms)
What is the length of the Big Dig? Lord Para?ur?ma 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Lord Para?ur?ma, dug, five big lakes) -> Lord Para?ur?ma (2227ms)
What is the length of the Big Dig? gardening 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (gardening, Dig, two big holes) -> gardening (2224ms)
What is the length of the Big Dig? Location 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Location, Digging, the big hole) -> Location (2222ms)
What is the length of the Big Dig? the guys 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the guys, dig, big holes) -> the guys (2230ms)
What is the length of the Big Dig? Karen 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Karen, is totally digging, her MacBook Pro) -> Karen (2225ms)
What is the length of the Big Dig? Don?t fig 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Don?t fig, dig, a big wide hole) -> Don?t fig (2225ms)
What is the length of the Big Dig? bricks and stones 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (bricks and stones, dug, a big hole) -> bricks and stones (2225ms)
What is the length of the Big Dig? Old Romney quote 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Old Romney quote, dug up by, @AlecMacGillis) -> Old Romney quote (2227ms)
What is the length of the Big Dig? Certain critics 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Certain critics, dig, big fat juice) -> Certain critics (2225ms)
What is the length of the Big Dig? the contractor 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the contractor, dug, a big hole) -> the contractor (2227ms)
What is the length of the Big Dig? the entire socailist democratic party 0.666666666667 What 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)
What is the length of the Big Dig? the table and 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the table and, dug into, big bowls) -> the table and (2228ms)
What is the length of the Big Dig? Microsoft 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Microsoft, have dug, an awfully big hole) -> Microsoft (2225ms)
What is the length of the Big Dig? the lawnmower 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the lawnmower, dug, a big hole) -> the lawnmower (2229ms)
What is the length of the Big Dig? Season 1 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Season 1, really dug, Kyle MacLachlan?s button-down look) -> Season 1 (2229ms)
What is the length of the Big Dig? Justis 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Justis, dug, a big whole) -> Justis (2224ms)
What is the length of the Big Dig? a smaller plant 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a smaller plant, just dig, a hole big enough) -> a smaller plant (2225ms)
What is the length of the Big Dig? the insulation value 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the insulation value, dig, a big hole) -> the insulation value (2227ms)
What is the length of the Big Dig? a forest 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a forest, dig, a big mine) -> a forest (2229ms)
What is the length of the Big Dig? the iPad end-user licensing agreement 0.666666666667 What 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)
What is the length of the Big Dig? Ash 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Ash, was digging for, second and Mac) -> Ash (2224ms)
What is the length of the Big Dig? the builders 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the builders, dug, a big hole) -> the builders (2229ms)
What is the length of the Big Dig? the east face 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the east face, dug, a snow cave big) -> the east face (2229ms)
What is the length of the Big Dig? Fans 0.555555555556 What is the length of the Big Dig? -> $x: ($x, dig, big bang) -> (Fans, are digging, Big Bang?s strong promotions) -> Fans (2230ms)
What president created social security? Title V 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Title V, were created by, the Social Security Act) -> Title V (1394ms)
What president created social security? the U.S. 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (the U.S., were established with, the Social Security Act) -> the U.S. (1652ms)
What president created social security? Johnson 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (Johnson, found, the social security act) -> Johnson (1451ms)
What president created social security? unions 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (unions, had created, the social security act) -> unions (772ms)
What president created social security? foster care system 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (foster care system, was created under, the Social Security Act) -> foster care system (1652ms)
What president created social security? AFDC 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (AFDC, was first created by, the Social Security Act) -> AFDC (772ms)
What president created social security? Congress 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Congress, created, the Social Security Act) -> Congress (772ms)
What president created social security? The Medicaid program 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (The Medicaid program, was created under, the Social Security Act) -> The Medicaid program (772ms)
What president created social security? a defined benefit category 0.555555555553 What 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)
What president created social security? The program 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (The program, was established by, the federal Social Security Act) -> The program (1394ms)
What president created social security? hospice benefits 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (hospice benefits, are found in, the Social Security Act) -> hospice benefits (1394ms)
What president created social security? Roosevelt 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (Roosevelt, established, the Social Security Act) -> Roosevelt (1451ms)
What president created social security? a bill 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (a bill, established, the Social Security Act) -> a bill (1394ms)
What president created social security? Social Security 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Social Security, was created by, the Social Security Act) -> Social Security (1394ms)
What president created social security? roosevelt 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (roosevelt, found, the social security act) -> roosevelt (1451ms)
What president created social security? The requirements 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (The requirements, are established by, the Social Security Act) -> The requirements (772ms)
What president created social security? A program 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (A program, established by, the Social Security Act of 1935) -> A program (1451ms)
What president created social security? The system 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (The system, was established by, the Social Security Act of 1935) -> The system (1652ms)
What president created social security? Economic Security 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Economic Security, created, the Social Security Act) -> Economic Security (1451ms)
What president created social security? SSA 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (SSA, was established by, the Social Security Act) -> SSA (1451ms)
What president created social security? The federal law 0.555555555553 What 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)
What president created social security? Need 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Need, help finding, your Social Security form) -> Need (1925ms)
What president created social security? national standards 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (national standards, establish, a social security system) -> national standards (1905ms)
What president created social security? Chinese workers 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Chinese workers, will find, that state-provided social security) -> Chinese workers (1948ms)
What president created social security? 800-772-1213 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (800-772-1213, find, the Social Security office) -> 800-772-1213 (1932ms)
What president created social security? lifespans 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (lifespans, have created havoc with, Social Security) -> lifespans (1948ms)
What president created social security? Social Security Offices 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Social Security Offices, Find, a social security office) -> Social Security Offices (1745ms)
What president created social security? disabled people 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (disabled people, found expression in, Social Security) -> disabled people (1925ms)
What president created social security? U.S. 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (U.S., created through, the Social Security Administration system) -> U.S. (1946ms)
What president created social security? The Democrats 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The Democrats, created, Social Security) -> The Democrats (1946ms)
What president created social security? the criteria 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the criteria, established by, the Social Security Administration) -> the criteria (1935ms)
What president created social security? the zip code 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the zip code, can help find, a social security lawyer) -> the zip code (1948ms)
What president created social security? the legislation 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the legislation, establishing, Social Security) -> the legislation (1941ms)
What president created social security? Armenian 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Armenian, can find out about, Social Security) -> Armenian (1941ms)
What president created social security? He?s 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (He?s, create, Social Security) -> He?s (1941ms)
What president created social security? an individual 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (an individual, found in, the Social Security Death Index) -> an individual (1929ms)
What president created social security? The government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The government, created, the Social Security) -> The government (1944ms)
What president created social security? thieves 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (thieves, easily create, fake Social Security numbers) -> thieves (1932ms)
What president created social security? President Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (President Roosevelt, created, Social Security) -> President Roosevelt (1795ms)
What president created social security? Legal Phone Book 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Legal Phone Book, Find, Lawyers Texas Social Security Lawyers) -> Legal Phone Book (1938ms)
What president created social security? The survey 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The survey, also found vigorous support for, Social Security) -> The survey (1929ms)
What president created social security? George 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (George, wants to create, Social Security Savings Accounts) -> George (1935ms)
What president created social security? ?Has Obama 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (?Has Obama, created, a Social Security ?death panel?) -> ?Has Obama (1876ms)
What president created social security? the federal government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the federal government, created, Social Security) -> the federal government (1948ms)
What president created social security? An answer 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (An answer, can be found in, the 2011 Social Security report) -> An answer (1925ms)
What president created social security? The company 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (The company, had even established, a social security system) -> The company (1941ms)
What president created social security? The form 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The form, can be found at, your local Social Security office) -> The form (1938ms)
What president created social security? security officers 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (security officers, found, a social security card) -> security officers (1795ms)
What president created social security? The Listing 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The Listing, found in, the Social Security regulations) -> The Listing (1847ms)
What president created social security? Perkins 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (Perkins, helped establish, the Social Security program) -> Perkins (1946ms)
What president created social security? legislation 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (legislation, created, the Social Security Program) -> legislation (1905ms)
What president created social security? a collection agency 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a collection agency, find, the social security numbers) -> a collection agency (1946ms)
What president created social security? President Franklin Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (President Franklin Roosevelt, created, Social Security) -> President Franklin Roosevelt (1935ms)
What president created social security? the United States 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the United States, created, Social Security) -> the United States (1941ms)
What president created social security? persons 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (persons, seeking to establish, Social Security eligibility) -> persons (1932ms)
What president created social security? a denial 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a denial, find, a Social Security lawyer) -> a denial (1819ms)
What president created social security? 18 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (18, can establish an account with, a Social Security Number) -> 18 (1905ms)
What president created social security? The federal government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The federal government, created, Social Security) -> The federal government (1946ms)
What president created social security? Fox poll 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Fox poll, finds support for, private Social Security accounts) -> Fox poll (1688ms)
What president created social security? medical expenses 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (medical expenses, find, that Social Security) -> medical expenses (1819ms)
What president created social security? Law 100 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Law 100, created, a new general social security system) -> Law 100 (1929ms)
What president created social security? a U.S. Congressman 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (a U.S. Congressman, voted to create, Social Security) -> a U.S. Congressman (1932ms)
What president created social security? less than one child 0.555555555551 What 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)
What president created social security? Biomass production 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Biomass production, should create, social security) -> Biomass production (1925ms)
What president created social security? jobs 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (jobs, establish a new system of, social security) -> jobs (1943ms)
What president created social security? ?disability ? 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (?disability ?, found in, the Social Security regulations) -> ?disability ? (1932ms)
What president created social security? the Social Security Act 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the Social Security Act, established, the Social Security Board) -> the Social Security Act (1847ms)
What president created social security? Seniors 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Seniors, often find, their Social Security income) -> Seniors (1943ms)
What president created social security? 2. Bush 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (2. Bush, still wants to create, a Social Security system) -> 2. Bush (1935ms)
What president created social security? the U.S. federal government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the U.S. federal government, created, social security) -> the U.S. federal government (1794ms)
What president created social security? More information 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (More information, can be found on, the Social Security website) -> More information (1819ms)
What president created social security? FDR 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (FDR, created, the Social Security system) -> FDR (1946ms)
What president created social security? civil service 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (civil service, creates, Social Security Administration) -> civil service (1929ms)
What president created social security? work incentives 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (work incentives, can be found on, the Social Security web site) -> work incentives (1745ms)
What president created social security? the U.S. government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the U.S. government, created, its social security program) -> the U.S. government (1938ms)
What president created social security? the tab 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the tab, Find, a Social Security Office ') -> the tab (1876ms)
What president created social security? arthritis 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (arthritis, will be found disabled under, Social Security rules) -> arthritis (1938ms)
What president created social security? life 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (life, can be found in, Social Security or immediate annuities) -> life (1941ms)
What president created social security? state 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (state, can be found on, Social Security web site) -> state (1745ms)
What president created social security? the Congress 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Congress, created, Social Security or Medicare) -> the Congress (1745ms)
What president created social security? the New-Deal 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the New-Deal, created, Social Security) -> the New-Deal (1938ms)
What president created social security? SSI 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (SSI, can be found at, Social Security) -> SSI (1941ms)
What president created social security? 87 ? 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (87 ?, Creates, a social security fund) -> 87 ? (1938ms)
What president created social security? Inmate 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Inmate, was found by, the Social Security Admin) -> Inmate (1688ms)
What president created social security? sleep apnea 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (sleep apnea, will be found disabled under, Social Security rules) -> sleep apnea (1946ms)
What president created social security? National Social Security Workers Union 0.555555555551 What 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)
What president created social security? McCoy 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (McCoy, did find, Jonestown social security beneficiaries) -> McCoy (1941ms)
What president created social security? The State 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (The State, establishes, a social security system) -> The State (1932ms)
What president created social security? France 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (France, created, a fifth national social security agency) -> France (1652ms)
What president created social security? turn 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (turn, created, the corporate social security system) -> turn (1932ms)
What president created social security? the Needy 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the Needy, establish a system of, Social Security) -> the Needy (1932ms)
What president created social security? any hacker 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (any hacker, can find, my social security number) -> any hacker (1943ms)
What president created social security? Franklin D. Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Franklin D. Roosevelt, created, Social Security) -> Franklin D. Roosevelt (1944ms)
What president created social security? the federal laws 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the federal laws, established, the Social Security program) -> the federal laws (1847ms)
What president created social security? individuals 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (individuals, find, their local Social Security office) -> individuals (1946ms)
What president created social security? The Social Security Board 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The Social Security Board, then created, 10 Social Security) -> The Social Security Board (1946ms)
What president created social security? No Culpeppers 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (No Culpeppers, found, Social Security Death Index Source) -> No Culpeppers (1948ms)
What president created social security? a plan 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (a plan, would establish, Social Security private accounts) -> a plan (1905ms)
What president created social security? The charter 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The charter, also creates new rights to, social security) -> The charter (1905ms)
What president created social security? Sensitive Data 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Sensitive Data, Find, unsecured Social Security Numbers) -> Sensitive Data (1905ms)
What president created social security? Tibet 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (Tibet, has established, a social security system) -> Tibet (1795ms)
What president created social security? One reader 0.555555555551 What president created social security? -> $x: ($x, discover, social security) -> (One reader, discovered errors in, her Social Security statements) -> One reader (1935ms)
What president created social security? the president 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the president, first created, a Social Security system) -> the president (1795ms)
What president created social security? Political Movement for Social Security 0.555555555551 What 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)
What president created social security? government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (government, creates, a social security system) -> government (1935ms)
What president created social security? the author 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the author, find disappointing in, the Social Security program) -> the author (1941ms)
What president created social security? The new web pages 0.555555555551 What 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)
What president created social security? you?ll 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (you?ll, find, a Social Security disability attorney) -> you?ll (1946ms)
What president created social security? the commission 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the commission, thus created, the Social Security surplus) -> the commission (1925ms)
What president created social security? Chipotle 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Chipotle, found, incorrect Social Security numbers) -> Chipotle (1925ms)
What president created social security? Franklin Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Franklin Roosevelt, created, social security) -> Franklin Roosevelt (1925ms)
What president created social security? President Franklin Delano Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (President Franklin Delano Roosevelt, created, Social Security) -> President Franklin Delano Roosevelt (1935ms)
What president created social security? a state 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (a state, to establish, a system of social security) -> a state (1938ms)
What president created social security? information 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (information, found in, the Social Security Death Index) -> information (1943ms)
What president created social security? the promise 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the promise, create, a social security network) -> the promise (1932ms)
What president created social security? Old Friends 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Old Friends, will help create, a social security system) -> Old Friends (1905ms)
What president created social security? Rall 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Rall, says finding, a social security card) -> Rall (1929ms)
What president created social security? Liberals 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Liberals, created, Social Security) -> Liberals (1819ms)
What president created social security? the header 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the header, Find, A Social Security Office) -> the header (1847ms)
What president created social security? the heading 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the heading, Find, A Social Security Office) -> the heading (1935ms)
What president created social security? the politicians 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the politicians, created, the Social Security program) -> the politicians (1938ms)
What president created social security? Local Office Search 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Local Office Search, find, your local Social Security office) -> Local Office Search (1932ms)
What president created social security? the party 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the party, created, Social Security and Medicare) -> the party (1948ms)
What president created social security? Quigley?s office 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Quigley?s office, found out, the Social Security Administration) -> Quigley?s office (1929ms)
What president created social security? dhss 0.555555555551 What 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)
What president created social security? any age 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (any age, can be found disabled by, Social Security) -> any age (1932ms)
What president created social security? the bill 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the bill, creating, Social Security) -> the bill (1948ms)
What president created social security? the government 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the government, established, Social Security) -> the government (1948ms)
What president created social security? software 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (software, find, Social Security Numbers) -> software (1935ms)
What president created social security? the staff 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the staff, will be able to find, their Social Security Number) -> the staff (1943ms)
What president created social security? Generations 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Generations, worked to create, our Social Security) -> Generations (1929ms)
What president created social security? a business 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a business, may find, Social Security) -> a business (1688ms)
What president created social security? the New Deal 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the New Deal, created, Social Security) -> the New Deal (1941ms)
What president created social security? 35 % 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (35 %, establish private accounts for, Social Security) -> 35 % (1929ms)
What president created social security? People Search GUIDE TOOLS 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (People Search GUIDE TOOLS, Find Out, Social Security Numbers) -> People Search GUIDE TOOLS (1688ms)
What president created social security? much less work 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (much less work, even created, a social-security system) -> much less work (1935ms)
What president created social security? a child 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a child, was found to have, six social security numbers) -> a child (1819ms)
What president created social security? Crooks 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Crooks, can find, all the Social Security numbers) -> Crooks (1946ms)
What president created social security? Bachelet 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Bachelet, created, a social security network) -> Bachelet (1935ms)
What president created social security? the Rich 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Rich, Created, the Social Security) -> the Rich (1795ms)
What president created social security? Eric Karros 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Eric Karros, found, their social security checks) -> Eric Karros (1905ms)
What president created social security? India 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (India, create, an American-style Social Security Administration) -> India (1938ms)
What president created social security? International Social Security Association 0.555555555551 What 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)
What president created social security? E-Verify 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (E-Verify, was created at, Social Security) -> E-Verify (1847ms)
What president created social security? online businesses 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (online businesses, are finding, inactive Social Security numbers) -> online businesses (1938ms)
What president created social security? the law 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the law, creating, Social Security) -> the law (1948ms)
What president created social security? the IRA. 9 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the IRA. 9, Find out about, your Social Security benefits) -> the IRA. 9 (1948ms)
What president created social security? progressives politicians 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (progressives politicians, create, Social Security) -> progressives politicians (1929ms)
What president created social security? a switch 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (a switch, also could create, Social Security issues) -> a switch (1652ms)
What president created social security? Ralphs 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Ralphs, created, fake Social Security Numbers) -> Ralphs (1905ms)
What president created social security? higher brackets 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (higher brackets, may find, that Social Security income) -> higher brackets (1929ms)
What president created social security? the Democrats 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Democrats, created, Social Security and the Republicans) -> the Democrats (1935ms)
What president created social security? death records 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (death records, find people by, name or social security number) -> death records (1925ms)
What president created social security? the Great Depression 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Great Depression, was to create, Social Security) -> the Great Depression (1941ms)
What president created social security? 1935 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (1935, created, Social Security) -> 1935 (1905ms)
What president created social security? the Act 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the Act, established, Social Security) -> the Act (1943ms)
What president created social security? The Act 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The Act, creates, a Social Security Board) -> The Act (1935ms)
What president created social security? licenses 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (licenses, will find, their Social Security numbers) -> licenses (1938ms)
What president created social security? harness modern science 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (harness modern science, establish, personal Social Security) -> harness modern science (1688ms)
What president created social security? the option 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the option, Find, a Social Security office) -> the option (1944ms)
What president created social security? the country 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the country, must create a real system of, social security) -> the country (1935ms)
What president created social security? The information 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The information, found in, the Social Security Death Index) -> The information (1943ms)
What president created social security? The Communists 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (The Communists, produced, social security) -> The Communists (1948ms)
What president created social security? a waiver 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (a waiver, produce, a Social Security Card) -> a waiver (1950ms)
What president created social security? The accounts 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (The accounts, produce a permanent surplus in, Social Security) -> The accounts (1950ms)
What president created social security? the demographics 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (the demographics, produce, a Social Security gap) -> the demographics (1950ms)
What president created social security? Sanae 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Sanae, also produced, a Social Security number) -> Sanae (1950ms)
What president created social security? workers 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (workers, must produce, a Social Security card) -> workers (1950ms)
What president created social security? Flores 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Flores, produced, a Social Security card) -> Flores (1950ms)
What president created social security? Andy Cox 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Andy Cox, Tracks produced, Social Security) -> Andy Cox (1950ms)
What president created social security? the Machine 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (the Machine, produces, the social security number) -> the Machine (1950ms)
What president created social security? Diaz 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Diaz, had produced, a Social Security number) -> Diaz (1950ms)
What president created social security? David Steele 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (David Steele, Tracks produced, Social Security) -> David Steele (1950ms)
What president created social security? the hiring hall 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (the hiring hall, produced, the Social Security cards) -> the hiring hall (1950ms)
What president created social security? Non-Residents 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Non-Residents, are required to produce, Social Security number) -> Non-Residents (1948ms)
What president created social security? Alvarez 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Alvarez, was unable to produce, a valid Social Security card) -> Alvarez (1950ms)
What president created social security? Roland Gift 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Roland Gift, Tracks produced, Social Security) -> Roland Gift (1950ms)
What president created social security? the accounts 0.222222222221 What president created social security? -> $x: ($x, created, social security number) -> (the accounts, are created under, the same Social Security number) -> the accounts (1952ms)
When was it introduced into the U.S.? Japanese scientists 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Japanese scientists, introduced into, U.S. soft drinks) -> Japanese scientists (988ms)
When was it introduced into the U.S.? Bill 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Bill, introduced into, the U.S. House) -> Bill (990ms)
When was it introduced into the U.S.? sweet potatoes 1.22222222221 When 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)
When was it introduced into the U.S.? Kudzu 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Kudzu, was introduced into, the U.S.) -> Kudzu (990ms)
When was it introduced into the U.S.? The Maxixe 1.22222222221 When 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)
When was it introduced into the U.S.? Introduction Houndstongue 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Introduction Houndstongue, was introduced into, the U.S.) -> Introduction Houndstongue (989ms)
When was it introduced into the U.S.? metrazol convulsive therapy 1.22222222221 When 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)
When was it introduced into the U.S.? the virus 1.22222222221 When 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)
When was it introduced into the U.S.? an act 1.22222222221 When 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)
When was it introduced into the U.S.? an innovative method 1.22222222221 When 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)
When was it introduced into the U.S.? Water chestnut 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Water chestnut, was introduced into, the U.S.) -> Water chestnut (987ms)
When was it introduced into the U.S.? Mass. 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mass., had introduced into, the U.S.) -> Mass. (984ms)
When was it introduced into the U.S.? autumn olive 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (autumn olive, was introduced into, the U.S.) -> autumn olive (991ms)
When was it introduced into the U.S.? The House Sparrow 1.22222222221 When 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)
When was it introduced into the U.S.? Distribution Autumn olive 1.22222222221 When 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)
When was it introduced into the U.S.? Green Star 1.22222222221 When 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)
When was it introduced into the U.S.? Sales 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Sales, introduced into, the U.S. market) -> Sales (989ms)
When was it introduced into the U.S.? The elm leaf beetle 1.22222222221 When 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)
When was it introduced into the U.S.? Counterfeits Act ? 1.22222222221 When 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)
When was it introduced into the U.S.? Europe or Asia 1.22222222221 When 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)
When was it introduced into the U.S.? The Asian grass carp 1.22222222221 When 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)
When was it introduced into the U.S.? The pest 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The pest, was introduced into, the U.S.) -> The pest (991ms)
When was it introduced into the U.S.? a new pest/disease 1.22222222221 When 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)
When was it introduced into the U.S.? Fabaceae Soybeans 1.22222222221 When 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)
When was it introduced into the U.S.? The PROTECT IP Act 1.22222222221 When 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)
When was it introduced into the U.S.? GMOs 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (GMOs, are rapidly being introduced into, U.S. agriculture) -> GMOs (990ms)
When was it introduced into the U.S.? The method 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The method, was introduced into, the U.S.) -> The method (984ms)
When was it introduced into the U.S.? One bill 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (One bill, introduced into, the U.S. Senate) -> One bill (989ms)
When was it introduced into the U.S.? disease 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (disease, is first introduced into, the U.S.) -> disease (984ms)
When was it introduced into the U.S.? cultivar 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (cultivar, was introduced into, the U.S.) -> cultivar (988ms)
When was it introduced into the U.S.? The predators 1.22222222221 When 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)
When was it introduced into the U.S.? Mexico and Canada 1.22222222221 When 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)
When was it introduced into the U.S.? West Nile 1.22222222221 When 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)
When was it introduced into the U.S.? garlic mustard 1.22222222221 When 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)
When was it introduced into the U.S.? Russian bee queens 1.22222222221 When 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)
When was it introduced into the U.S.? Europe 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe, was introduced into, the U.S.) -> Europe (986ms)
When was it introduced into the U.S.? Amur honeysuckles 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Amur honeysuckles, were introduced into, the U.S.) -> Amur honeysuckles (988ms)
When was it introduced into the U.S.? The seeds 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The seeds, were introduced into, the U.S) -> The seeds (984ms)
When was it introduced into the U.S.? the products 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the products, were introduced into, the U.S.) -> the products (986ms)
When was it introduced into the U.S.? Project 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Project, have been introduced into, the U.S.) -> Project (989ms)
When was it introduced into the U.S.? Europe centuries 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe centuries, was introduced into, the U.S.) -> Europe centuries (984ms)
When was it introduced into the U.S.? antidepressant medication 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (antidepressant medication, was introduced into, the U.S.) -> antidepressant medication (989ms)
When was it introduced into the U.S.? Air yam 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Air yam, was introduced into, the U.S.) -> Air yam (989ms)
When was it introduced into the U.S.? China 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (China, was introduced into, the U.S.) -> China (988ms)
When was it introduced into the U.S.? GA Mimosa Tree 1.22222222221 When 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)
When was it introduced into the U.S.? the varroa mite 1.22222222221 When 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)
When was it introduced into the U.S.? Paulownia tomentosa Princesstree 1.22222222221 When 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)
When was it introduced into the U.S.? a leading supplier 1.22222222221 When 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)
When was it introduced into the U.S.? the 128 kHz microchip 1.22222222221 When 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)
When was it introduced into the U.S.? Morrow?s and Amur honeysuckles 1.22222222221 When 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)
When was it introduced into the U.S.? vegetable oils 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (vegetable oils, was introduced into, the U.S.) -> vegetable oils (990ms)
When was it introduced into the U.S.? data breach response 1.22222222221 When 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)
When was it introduced into the U.S.? The soybean plant 1.22222222221 When 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)
When was it introduced into the U.S.? Chinaberry 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Chinaberry, was introduced into, the U.S.) -> Chinaberry (989ms)
When was it introduced into the U.S.? Repair Act 1.22222222221 When 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)
When was it introduced into the U.S.? every 10 new books 1.22222222221 When 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)
When was it introduced into the U.S.? new soybean accessions 1.22222222221 When 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)
When was it introduced into the U.S.? First 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (First, introduced into, the U.S.) -> First (990ms)
When was it introduced into the U.S.? Hertz 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Hertz, introduced into, its U.S. fleet) -> Hertz (990ms)
When was it introduced into the U.S.? 555 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (555, was introduced into, the U. S. Senate) -> 555 (987ms)
When was it introduced into the U.S.? Faith 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Faith, will be introduced into, U.S. public) -> Faith (990ms)
When was it introduced into the U.S.? risks 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (risks, are introduced into, U.S. waters) -> risks (984ms)
When was it introduced into the U.S.? a fungus 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a fungus, introduced into, the U.S.) -> a fungus (986ms)
When was it introduced into the U.S.? the tomato 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the tomato, was introduced into, the U.S.) -> the tomato (990ms)
When was it introduced into the U.S.? the same name 1.22222222221 When 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)
When was it introduced into the U.S.? Africa 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Africa, introduced into, the U.S.) -> Africa (984ms)
When was it introduced into the U.S.? The M3 1.22222222221 When 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)
When was it introduced into the U.S.? 230 new pizzas 1.22222222221 When 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)
When was it introduced into the U.S.? Red fire ants 1.22222222221 When 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)
When was it introduced into the U.S.? the monkeypox virus 1.22222222221 When 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)
When was it introduced into the U.S.? the PWR 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the PWR, introduced into, the U.S. market) -> the PWR (986ms)
When was it introduced into the U.S.? The Elise 1.22222222221 When 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)
When was it introduced into the U.S.? a member 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a member, was introduced into, the U.S.) -> a member (988ms)
When was it introduced into the U.S.? The Chinese Jujube 1.22222222221 When 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)
When was it introduced into the U.S.? a native 1.22222222221 When 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)
When was it introduced into the U.S.? Iridology 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Iridology, was introduced into, the U. S.) -> Iridology (986ms)
When was it introduced into the U.S.? deterrence 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (deterrence, should also be introduced into, U.S. policy) -> deterrence (986ms)
When was it introduced into the U.S.? a resolution 1.22222222221 When 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)
When was it introduced into the U.S.? SAM-e 1.22222222221 When 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)
When was it introduced into the U.S.? Mimosa 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mimosa, was first introduced into, the U.S.) -> Mimosa (990ms)
When was it introduced into the U.S.? GHB and ketamine 1.22222222221 When 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)
When was it introduced into the U.S.? Green-oriented legislation 1.22222222221 When 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)
When was it introduced into the U.S.? Senator Obama 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Senator Obama, introduced into, the U.S. Senate) -> Senator Obama (990ms)
When was it introduced into the U.S.? Several technologies 1.22222222221 When 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)
When was it introduced into the U.S.? The Gardnerian sect 1.22222222221 When 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)
When was it introduced into the U.S.? The B-biotype 1.22222222221 When 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)
When was it introduced into the U.S.? the Troya brand 1.22222222221 When 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)
When was it introduced into the U.S.? the Beetle 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the Beetle, was introduced into, the U.S.) -> the Beetle (988ms)
When is Jennifer Lopez's birthday? the USA 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez, was born in, the USA) -> the USA (773ms)
When is Jennifer Lopez's birthday? 1970 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez and Beck, were all born in, 1970) -> 1970 (773ms)
When is Jennifer Lopez's birthday? the Castle Hill section 0.111111111108 When 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)
When is Jennifer Lopez's birthday? New York City 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez, was born in, New York City) -> New York City (773ms)
When is Jennifer Lopez's birthday? the Bronx , New York 0.111111111108 When 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)
When is Jennifer Lopez's birthday? the Bronx , NY , 0.111111111108 When 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)
When is Jennifer Lopez's birthday? July 24 -0.333333333335 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lynn Lopez, was born on, July 24) -> July 24 (773ms)
When is Jennifer Lopez's birthday? 24th July 1969 -0.333333333335 When 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)
When is Jennifer Lopez's birthday? July 24 , 1970 -0.333333333335 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lopez, was born on, July 24 , 1970) -> July 24 , 1970 (773ms)
When is Jennifer Lopez's birthday? July 24 , 1969 -0.333333333335 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lopez, was born on, July 24 , 1969) -> July 24 , 1969 (773ms)
When was Shakespeare born? England 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, England) -> England (6544ms)
When was Shakespeare born? April , 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (6933ms)
When was Shakespeare born? the depths 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (6545ms)
When was Shakespeare born? the year 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the year) -> the year (6640ms)
When was Shakespeare born? April 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (THE POET William Shakespeare, was born in, April 1564) -> April 1564 (6933ms)
When was Shakespeare born? Stratford 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, is born in, Stratford) -> Stratford (6640ms)
When was Shakespeare born? late April 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (6545ms)
When was Shakespeare born? Stratford-on-Avon 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (6640ms)
When was Shakespeare born? Stratford-upon-Avon 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (2007 William Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (6933ms)
When was Shakespeare born? Stratford and today 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (5275ms)
When was Shakespeare born? 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, 1564) -> 1564 (6640ms)
When was Shakespeare born? the town 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the town) -> the town (5349ms)
When was Shakespeare born? the county of Warwick 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (6933ms)
When was Shakespeare born? April 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, April) -> April (6545ms)
When was Shakespeare born? St . Austell 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (9644ms)
When was Shakespeare born? Kingston 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (11787ms)
When was Shakespeare born? 1529 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (7560ms)
When was Shakespeare born? the village 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, the village) -> the village (12057ms)
When was Shakespeare born? Teaneck 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (11660ms)
When was Shakespeare born? Worcester 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (11660ms)
When was Shakespeare born? the same year 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (12057ms)
When was Shakespeare born? Henley Street 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (11660ms)
When was Shakespeare born? 1554 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (9589ms)
When was Shakespeare born? Italy 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, Italy) -> Italy (11273ms)
When was Shakespeare born? the Warwickshire town 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (12057ms)
When was Shakespeare born? April and World book day 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (6933ms)
When was Shakespeare born? a small town 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, a small town) -> a small town (12057ms)
When was Shakespeare born? the latter half 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (7560ms)
When was Shakespeare born? Jackson 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (6933ms)
When was Shakespeare born? the same city 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the same city) -> the same city (12092ms)
When was Shakespeare born? England four hundred years 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, England four hundred years) -> England four hundred years (12091ms)
When was Shakespeare born? 26 April 1564 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (12192ms)
When was Shakespeare born? April 23 , 1564 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, may have been born on, April 23 , 1564) -> April 23 , 1564 (12192ms)
When was Shakespeare born? London 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> ('s Southwark William Shakespeare, lived in, London) -> London (12092ms)
When was Shakespeare born? a time 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, also lived in, a time) -> a time (12192ms)
When was Shakespeare born? the epoch 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the epoch) -> the epoch (12159ms)
When was Shakespeare born? April 23 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, April 23) -> April 23 (12159ms)
When was Shakespeare born? 23 April 1564 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (12125ms)
When was Shakespeare born? the 26th 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (12192ms)
When was Shakespeare born? a 23... dead 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (12125ms)
When was Shakespeare born? April 23 , 1616 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, April 23 , 1616) -> April 23 , 1616 (12270ms)
When was Shakespeare born? 1564 ! 5 hours ago 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (12192ms)
When was Shakespeare born? The town 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (12320ms)
When was Shakespeare born? 1564 ! 1 hour ago 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (12245ms)
When was Shakespeare born? 23 April 1616 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, 23 April 1616) -> 23 April 1616 (12320ms)
When was Shakespeare born? 1564 ! 2 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (12192ms)
When was Shakespeare born? Stratford upon Avon 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford upon Avon, is the birthplace of, William Shakespeare) -> Stratford upon Avon (12245ms)
When was Shakespeare born? What town 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (12218ms)
When was Shakespeare born? Avon 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Avon, is the birthplace of, William Shakespeare) -> Avon (12245ms)
When was Shakespeare born? 1564 ! 3 hours ago 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (12192ms)
When was Shakespeare born? an island 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare?s Prospero, lived on, an island) -> an island (12572ms)
When was Shakespeare born? Lafayette 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Lafayette) -> Lafayette (12505ms)
When was Shakespeare born? such a nasty 'ouse 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, such a nasty 'ouse) -> such a nasty 'ouse (12438ms)
When was Shakespeare born? 23rd April 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (12550ms)
When was Shakespeare born? St George?s day 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (12548ms)
When was Shakespeare born? 1616 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, 1616) -> 1616 (12460ms)
When was Shakespeare born? London writing 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, London writing) -> London writing (12572ms)
When was Shakespeare born? 23 April 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, 23 April) -> 23 April (12483ms)
When was Shakespeare born? such a time 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, did live in, such a time) -> such a time (12526ms)
When was Shakespeare born? the present day 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (shakespeare, lived in, the present day) -> the present day (12548ms)
When was Shakespeare born? the parish 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in, the parish) -> the parish (12572ms)
When was Shakespeare born? an era 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an era) -> an era (12415ms)
When was Shakespeare born? a very turbulent time 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a very turbulent time) -> a very turbulent time (12460ms)
When was Shakespeare born? high schools 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, is living today?in, high schools) -> high schools (12460ms)
When was Shakespeare born? a world 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (?Shakespeare, lived in, a world) -> a world (12438ms)
When was Shakespeare born? a theatre 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (10 professionally-produced Shakespeare plays, live in, a theatre) -> a theatre (12460ms)
When was Shakespeare born? Sunday 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (12438ms)
When was Shakespeare born? the overwhelming fascination 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in was, the overwhelming fascination) -> the overwhelming fascination (12526ms)
When was Shakespeare born? Buenos Aires 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Nicholas Shakespeare, lived in, Buenos Aires) -> Buenos Aires (12392ms)
When was Shakespeare born? the countryside 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s day, lived in, the countryside) -> the countryside (12504ms)
When was Shakespeare born? theater 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s Play, live in, theater) -> theater (12571ms)
When was Shakespeare born? an absolutist world 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an absolutist world) -> an absolutist world (12548ms)
When was Shakespeare born? Mars 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Bierce and Shakespeare, are all living on, Mars) -> Mars (12415ms)
When was Shakespeare born? April 26 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (12504ms)
When was Shakespeare born? an age 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an age) -> an age (12571ms)
When was Shakespeare born? a tiny house 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a tiny house) -> a tiny house (12483ms)
When was Shakespeare born? Lancashire 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, may have lived in, Lancashire) -> Lancashire (12505ms)
When was Shakespeare born? Tudor England 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, Tudor England) -> Tudor England (12548ms)
When was Shakespeare born? retirement 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, retirement) -> retirement (12593ms)
When was Shakespeare born? April 26 , 1564 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (12593ms)
When was Shakespeare born? Muggleton Street 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Muggleton Street) -> Muggleton Street (12505ms)
When was Shakespeare born? April 23rd 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (! Shakespeare, was born on, April 23rd) -> April 23rd (12526ms)
When was Shakespeare born? the streets 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (this Shakespeare, lived in, the streets) -> the streets (12483ms)
When was Shakespeare born? the 23rd too 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (12571ms)
When was Shakespeare born? Aprill 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, Aprill) -> Aprill (12614ms)
When was Shakespeare born? murder sleep 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare Macbeth, does, murder sleep) -> murder sleep (12634ms)
When was Shakespeare born? Charlie Brown love 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (. William Shakespeare 14, did, Charlie Brown love) -> Charlie Brown love (12613ms)
When was Shakespeare born? wrong 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, do, wrong) -> wrong (12613ms)
When was Shakespeare born? today effects tomorrow 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (~William Shakespeare, is done, today effects tomorrow) -> today effects tomorrow (12613ms)
When was Shakespeare born? a kindness 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (- William Shakespeare, cannot do, a kindness) -> a kindness (12593ms)
When was Shakespeare born? a laptop? 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (?William Shakespeare, did n?t have, a laptop?) -> a laptop? (12613ms)
When was Shakespeare born? April 1616 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, April 1616) -> April 1616 (12613ms)
When was Shakespeare born? success 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare Commitment, does n?t guarantee, success) -> success (12634ms)
When was Shakespeare born? now 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, Did my heart love till, now) -> now (12593ms)
When was Shakespeare born? a sponge 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did have the brain like, a sponge) -> a sponge (12634ms)
When was Shakespeare born? matter 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare ?It, does n?t, matter) -> matter (12634ms)
When was Shakespeare born? the ghost 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did play the role of, the ghost) -> the ghost (12613ms)
When was Shakespeare born? battle 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, battle) -> battle (12613ms)
When was Shakespeare born? college 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did n?t go to, college) -> college (12613ms)
When was Shakespeare born? Witchcraft 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did, Witchcraft) -> Witchcraft (12613ms)
When was Shakespeare born? 1830 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1830) -> 1830 (12654ms)
When was Shakespeare born? 1840 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1840) -> 1840 (12751ms)
When was Shakespeare born? 1852 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, being born in, 1852) -> 1852 (12674ms)
When was Shakespeare born? 1849 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1849) -> 1849 (12732ms)
When was Shakespeare born? 1811 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1811) -> 1811 (12693ms)
When was Shakespeare born? Missouri 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Missouri) -> Missouri (12732ms)
When was Shakespeare born? 1765 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1765) -> 1765 (12674ms)
When was Shakespeare born? Wales 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Wales) -> Wales (12712ms)
When was Shakespeare born? 1915 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1915) -> 1915 (12634ms)
When was Shakespeare born? 1833 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1833) -> 1833 (12654ms)
When was Shakespeare born? 1864 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1864) -> 1864 (12732ms)
When was Shakespeare born? 1804 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1804) -> 1804 (12751ms)
When was Shakespeare born? Toronto 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Toronto) -> Toronto (12674ms)
When was Shakespeare born? 1787 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1787) -> 1787 (12654ms)
When was Shakespeare born? Boston 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Boston) -> Boston (12712ms)
When was Shakespeare born? Miss 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (william, was born in, Miss) -> Miss (12674ms)
When was Shakespeare born? Sydney 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Sydney) -> Sydney (12732ms)
When was Shakespeare born? Belfast City 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belfast City) -> Belfast City (12712ms)
When was Shakespeare born? Greene County 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greene County) -> Greene County (12693ms)
When was Shakespeare born? Brooklyn 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Brooklyn) -> Brooklyn (12693ms)
When was Shakespeare born? 1827 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1827) -> 1827 (12654ms)
When was Shakespeare born? 1893 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1893) -> 1893 (12732ms)
When was Shakespeare born? 1728 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1728) -> 1728 (12674ms)
When was Shakespeare born? 1892 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1892) -> 1892 (12712ms)
When was Shakespeare born? New York 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, New York) -> New York (12732ms)
When was Shakespeare born? 1825 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1825) -> 1825 (12751ms)
When was Shakespeare born? 1822 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1822) -> 1822 (12673ms)
When was Shakespeare born? Edinburgh 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Edinburgh) -> Edinburgh (12732ms)
When was Shakespeare born? 1836 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1836) -> 1836 (12693ms)
When was Shakespeare born? 1818 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1818) -> 1818 (12732ms)
When was Shakespeare born? 1763 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1763) -> 1763 (12751ms)
When was Shakespeare born? orleans 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in the city, orleans) -> orleans (12674ms)
When was Shakespeare born? 1770 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1770) -> 1770 (12732ms)
When was Shakespeare born? Mitre Lane 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Mitre Lane) -> Mitre Lane (12751ms)
When was Shakespeare born? 1817 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1817) -> 1817 (12712ms)
When was Shakespeare born? San Jose 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, San Jose) -> San Jose (12634ms)
When was Shakespeare born? Ala 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Ala) -> Ala (12751ms)
When was Shakespeare born? 1803 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1803) -> 1803 (12634ms)
When was Shakespeare born? 1931 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1931) -> 1931 (12732ms)
When was Shakespeare born? Texas 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Texas) -> Texas (12673ms)
When was Shakespeare born? 1880 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1880) -> 1880 (12693ms)
When was Shakespeare born? 1887 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1887) -> 1887 (12751ms)
When was Shakespeare born? America 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, America) -> America (12654ms)
When was Shakespeare born? 1937 0.33333333333 When was Shakespeare born? -> $x: (prose, be bear in, $x) -> (Prose Alain Labrousse, was born in, 1937) -> 1937 (12693ms)
When was Shakespeare born? 1790 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1790) -> 1790 (12751ms)
When was Shakespeare born? Cambridge 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Cambridge) -> Cambridge (12654ms)
When was Shakespeare born? 1824 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1824) -> 1824 (12693ms)
When was Shakespeare born? 1831 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1831) -> 1831 (12712ms)
When was Shakespeare born? 1794 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1794) -> 1794 (12654ms)
When was Shakespeare born? 1841 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1841) -> 1841 (12654ms)
When was Shakespeare born? Chicago 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Chicago) -> Chicago (12693ms)
When was Shakespeare born? Derby 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Derby) -> Derby (12654ms)
When was Shakespeare born? Madison 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Madison) -> Madison (12751ms)
When was Shakespeare born? Lycoming County 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Lycoming County) -> Lycoming County (12654ms)
When was Shakespeare born? Connecticut 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Connecticut) -> Connecticut (12751ms)
When was Shakespeare born? Columbus 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Columbus) -> Columbus (12693ms)
When was Shakespeare born? 1872 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1872) -> 1872 (12634ms)
When was Shakespeare born? Alabama 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Alabama) -> Alabama (12673ms)
When was Shakespeare born? Salem 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Salem) -> Salem (12712ms)
When was Shakespeare born? Pennsylvania 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Pennsylvania) -> Pennsylvania (12693ms)
When was Shakespeare born? Bedford Co. 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Bedford Co.) -> Bedford Co. (12673ms)
When was Shakespeare born? Alexandria 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Alexandria) -> Alexandria (12693ms)
When was Shakespeare born? 1932 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1932) -> 1932 (12751ms)
When was Shakespeare born? 1778 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1778) -> 1778 (12693ms)
When was Shakespeare born? 1866 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1866) -> 1866 (12751ms)
When was Shakespeare born? 1865 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1865) -> 1865 (12732ms)
When was Shakespeare born? Dublin barracks 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Dublin barracks) -> Dublin barracks (12674ms)
When was Shakespeare born? Greenwood Township 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greenwood Township) -> Greenwood Township (12693ms)
When was Shakespeare born? 1869 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1869) -> 1869 (12673ms)
When was Shakespeare born? Belfast 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belfast) -> Belfast (12732ms)
When was Shakespeare born? Virginia 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Virginia) -> Virginia (12732ms)
When was Shakespeare born? Plainfield 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Plainfield) -> Plainfield (12654ms)
When was Shakespeare born? 1826 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1826) -> 1826 (12712ms)
When was Shakespeare born? 1027 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1027) -> 1027 (12751ms)
When was Shakespeare born? South Carolina 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, South Carolina) -> South Carolina (12712ms)
When was Shakespeare born? 1876 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1876) -> 1876 (12712ms)
When was Shakespeare born? April 1885 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, April 1885) -> April 1885 (12732ms)
When was Shakespeare born? India 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, India) -> India (12712ms)
When was Shakespeare born? Kentucky 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was actually born in, Kentucky) -> Kentucky (12751ms)
When was Shakespeare born? Tennessee 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Tennessee) -> Tennessee (12674ms)
When was Shakespeare born? 1911 0.33333333333 When was Shakespeare born? -> $x: (prose, be bear in, $x) -> (prose writer and translator, was born in, 1911) -> 1911 (12732ms)
When was Shakespeare born? 1797 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1797) -> 1797 (12674ms)
When was Shakespeare born? Accomack Co. 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Accomack Co.) -> Accomack Co. (12654ms)
When was Shakespeare born? Springfield 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Springfield) -> Springfield (12634ms)
When was Shakespeare born? Belper 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belper) -> Belper (12654ms)
When was Shakespeare born? YORK 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in the location, YORK) -> YORK (12693ms)
When was Shakespeare born? 1816 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1816) -> 1816 (12674ms)
When was Shakespeare born? 1873 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1873) -> 1873 (12634ms)
When was Shakespeare born? Indiana 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Indiana) -> Indiana (12674ms)
When was Shakespeare born? Rutherford 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Rutherford) -> Rutherford (12712ms)
When was Shakespeare born? 1743 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1743) -> 1743 (12693ms)
When was Shakespeare born? 1871 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1871) -> 1871 (12712ms)
When was Shakespeare born? 1839 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1839) -> 1839 (12654ms)
When was Shakespeare born? The star 0.222222222221 When was Shakespeare born? -> $x: ($x, date be, shakespeare) -> (The star, has been dating, the Royal Shakespeare Company actor) -> The star (12806ms)
When was Shakespeare born? the pox 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, is also dying of, the pox) -> the pox (12908ms)
When was Shakespeare born? prostate cancer 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Clive Shakespeare, died of, prostate cancer) -> prostate cancer (12940ms)
When was Shakespeare born? cholera infantum 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (the aforesaid W. Shakespeare, had died of, cholera infantum) -> cholera infantum (12770ms)
When was Shakespeare born? the same day 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same day) -> the same day (12956ms)
When was Shakespeare born? the very same day 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the very same day) -> the very same day (12892ms)
When was Shakespeare born? Rare Cancer 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, Died of, Rare Cancer) -> Rare Cancer (12875ms)
When was Shakespeare born? a fever there 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, a fever there) -> a fever there (12924ms)
When was Shakespeare born? unknown causes 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, unknown causes) -> unknown causes (12908ms)
When was Shakespeare born? May 3 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, May 3) -> May 3 (12908ms)
When was Shakespeare born? 23rd April 1616 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, 23rd April 1616) -> 23rd April 1616 (12841ms)
When was Shakespeare born? a fever 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, a fever) -> a fever (12841ms)
When was Shakespeare born? an unknown cause 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Hamnet Shakespeare, died of, an unknown cause) -> an unknown cause (12841ms)
When was Shakespeare born? the same date 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same date) -> the same date (12956ms)
When was Shakespeare born? the best piece of writing 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the best piece of writing, done by, William Shakespeare , Hamlet) -> the best piece of writing (13033ms)
When was Shakespeare born? the 5th floor 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the 5th floor, do a search for, " William Shakespeare) -> the 5th floor (13033ms)
When was Shakespeare born? Markey 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Markey, does, William Shakespeare) -> Markey (13033ms)
When was Shakespeare born? Oct. 28 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Oct. 28, Did, William Shakespeare) -> Oct. 28 (13033ms)
When was Shakespeare born? Julius Caesar 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Julius Caesar, does bring to, mind William Shakespeare) -> Julius Caesar (13048ms)
When was Shakespeare born? rel=shortlink 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (rel=shortlink, does, the name ?William Shakespeare ?) -> rel=shortlink (13048ms)
When was Shakespeare born? playwrights 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (playwrights, does, the name William Shakespeare ring) -> playwrights (13048ms)
When was Shakespeare born? Favourite poet or writer 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Favourite poet or writer, Does, William Shakespeare count) -> Favourite poet or writer (13033ms)
When was Shakespeare born? vz-nostalgia 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (vz-nostalgia, so did, William Shakespeare) -> vz-nostalgia (13048ms)
When was Shakespeare born? the shocking question 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the shocking question, Did, William Shakespeare) -> the shocking question (13033ms)
When was Shakespeare born? the qoutes 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the qoutes, are done by, William Shakespeare) -> the qoutes (13048ms)
When was Shakespeare born? Erin 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Erin, does, William Shakespeare) -> Erin (13048ms)
When was Shakespeare born? Mark Antony 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Mark Antony, did in, William Shakespeare?s Julius Caesar) -> Mark Antony (13033ms)
When was Shakespeare born? the film ?Miguel & William? Press / EP 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the film ?Miguel & William? Press / EP, Did, William Shakespeare) -> the film ?Miguel & William? Press / EP (13048ms)
When was Shakespeare born? Canada 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (Golden Globe-nominated New Zealand actress, was born in, Canada) -> Canada (13048ms)
When was Shakespeare born? Montreal 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (-The Globe and Mail Samantha Warwick, was born in, Montreal) -> Montreal (13048ms)
When was Shakespeare born? the Philippines 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe?he, was born in, the Philippines) -> the Philippines (13048ms)
When was Shakespeare born? the regions 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe, were born here in, the regions) -> the regions (13048ms)
When was Shakespeare born? 1951 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (The Boston Sunday Globe Paul Muldoon, was born in, 1951) -> 1951 (13048ms)
When was Shakespeare born? groups 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (The globe-shaped flower heads, are borne in, groups) -> groups (13048ms)
When was Shakespeare born? Germany 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe-trotter, was born in, Germany) -> Germany (13048ms)
When was Shakespeare born? first 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did it, first) -> first (13127ms)
When was Shakespeare born? Polanski orchestrate 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, successfully does, Polanski orchestrate) -> Polanski orchestrate (13097ms)
When was Shakespeare born? Romeo and Juliet 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, Romeo and Juliet) -> Romeo and Juliet (13127ms)
When was Shakespeare born? care 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, care) -> care (13171ms)
When was Shakespeare born? thangs 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, thangs) -> thangs (13139ms)
When was Shakespeare born? Roger Zelazny 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, so did, Roger Zelazny) -> Roger Zelazny (13150ms)
When was Shakespeare born? the ending 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did alter, the ending) -> the ending (13171ms)
When was Shakespeare born? Marlowe 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, Marlowe) -> Marlowe (13139ms)
When was Shakespeare born? before 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, done, before) -> before (13082ms)
When was Shakespeare born? Hamlet 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, Hamlet) -> Hamlet (13161ms)
When was Shakespeare born? April 2003 , four months 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mrs. Shakespeare, died in, April 2003 , four months) -> April 2003 , four months (13161ms)
When was Shakespeare born? Dickens? 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, Dickens?) -> Dickens? (13150ms)
When was Shakespeare born? the same 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, the same) -> the same (13150ms)
When was Shakespeare born? pen 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, pen) -> pen (13127ms)
When was Shakespeare born? an excellent job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, an excellent job) -> an excellent job (13150ms)
When was Shakespeare born? Israel 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, unfortunately did, Israel) -> Israel (13161ms)
When was Shakespeare born? likewise 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, likewise) -> likewise (13097ms)
When was Shakespeare born? n?t Punctuate 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (?Shakespeare, Did, n?t Punctuate) -> n?t Punctuate (13161ms)
When was Shakespeare born? the end 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare?s tragedies main characters, die in, the end) -> the end (13127ms)
When was Shakespeare born? supernatural stuff 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did write, supernatural stuff) -> supernatural stuff (13082ms)
When was Shakespeare born? 1601 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (John Shakespeare, died in, 1601) -> 1601 (13161ms)
When was Shakespeare born? verse 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did ? in, verse) -> verse (13150ms)
When was Shakespeare born? Anne Hathaway 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did to, Anne Hathaway) -> Anne Hathaway (13082ms)
When was Shakespeare born? Condell 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, presumably did, Condell) -> Condell (13097ms)
When was Shakespeare born? lyrics 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did include, lyrics) -> lyrics (13097ms)
When was Shakespeare born? Juliet 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, Juliet) -> Juliet (13139ms)
When was Shakespeare born? Spanish 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did speak, Spanish) -> Spanish (13112ms)
When was Shakespeare born? the Bible 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did read, the Bible) -> the Bible (13127ms)
When was Shakespeare born? 1896 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1896) -> 1896 (13150ms)
When was Shakespeare born? right ? 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, is done, right ?) -> right ? (13160ms)
When was Shakespeare born? a very good job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, a very good job) -> a very good job (13161ms)
When was Shakespeare born? n?t touch 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, n?t touch) -> n?t touch (13150ms)
When was Shakespeare born? 1599 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1599) -> 1599 (13127ms)
When was Shakespeare born? childhood 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (the Shakespeare household?three, died in, childhood) -> childhood (13161ms)
When was Shakespeare born? Troilus and Cressida 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did in, Troilus and Cressida) -> Troilus and Cressida (13171ms)
When was Shakespeare born? few years 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, few years) -> few years (13082ms)
When was Shakespeare born? 1596 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1596) -> 1596 (13171ms)
When was Shakespeare born? infancy 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare Quiney, died in, infancy) -> infancy (13112ms)
When was Shakespeare born? best 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, best) -> best (13139ms)
When was Shakespeare born? discretion and valor 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did relate, discretion and valor) -> discretion and valor (13139ms)
When was Shakespeare born? 1608 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mary Shakespeare, died in, 1608) -> 1608 (13112ms)
When was Shakespeare born? English 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, English) -> English (13139ms)
When was Shakespeare born? the Seven Deadly Sins 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, Does, the Seven Deadly Sins) -> the Seven Deadly Sins (13082ms)
When was Shakespeare born? the same centuries 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, the same centuries) -> the same centuries (13082ms)
When was Shakespeare born? the old stories 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, the old stories) -> the old stories (13112ms)
When was Shakespeare born? a marvelous job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, a marvelous job) -> a marvelous job (13082ms)
When was Shakespeare born? when he left school 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, when he left school) -> when he left school (13171ms)
When was Shakespeare born? an immersion 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does require, an immersion) -> an immersion (13161ms)
When was Shakespeare born? art excell 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did in, art excell) -> art excell (13097ms)
When was Shakespeare born? more than 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, more than) -> more than (13161ms)
When was Shakespeare born? 1585 and 1592 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did between, 1585 and 1592) -> 1585 and 1592 (13127ms)
When was Shakespeare born? exert 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, exert) -> exert (13112ms)
When was Shakespeare born? n?t interest 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, n?t interest) -> n?t interest (13161ms)
When was Shakespeare born? the equation 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did draw, the equation) -> the equation (13082ms)
When was Shakespeare born? English literature 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, English literature) -> English literature (13127ms)
When was Shakespeare born? so 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, so) -> so (13081ms)
When was Shakespeare born? crosswords 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, crosswords) -> crosswords (13097ms)
When was Shakespeare born? too 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, too) -> too (13161ms)
When was Shakespeare born? Dickens 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, so did, Dickens) -> Dickens (13139ms)
When was Shakespeare born? a hand 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did have, a hand) -> a hand (13161ms)
When was Shakespeare born? dwarfs 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do, dwarfs) -> dwarfs (13171ms)
When was Shakespeare born? the work 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do, the work) -> the work (13127ms)
When was Shakespeare born? students 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do study, students) -> students (13082ms)
When was Shakespeare born? often 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, often) -> often (13097ms)
When was Shakespeare born? once 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did say, once) -> once (13127ms)
When was Shakespeare born? 1623 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare 's widow, died in, 1623) -> 1623 (13150ms)
When was Shakespeare born? the play 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, the play) -> the play (13139ms)
When was Shakespeare born? the software work 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, the software work) -> the software work (13150ms)
When was Shakespeare born? words 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, words) -> words (13082ms)
When was Shakespeare born? a certain Anne Hathaway 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did marry, a certain Anne Hathaway) -> a certain Anne Hathaway (13150ms)
When was Shakespeare born? the early twenty-first century 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, will die in, the early twenty-first century) -> the early twenty-first century (13160ms)
When was Shakespeare born? a marvellous job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, a marvellous job) -> a marvellous job (13082ms)
When was Shakespeare born? re-enactments 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does monthly, re-enactments) -> re-enactments (13139ms)
When was Shakespeare born? the role 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, the role) -> the role (13150ms)
When was Shakespeare born? actor/manager 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did as, actor/manager) -> actor/manager (13150ms)
When was Shakespeare born? 400 years ago 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, 400 years ago) -> 400 years ago (13097ms)
When was Shakespeare born? the day 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, the day) -> the day (13211ms)
When was Shakespeare born? John and Mary Shakespeare 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (1564 /William Shakespeare, is born to, John and Mary Shakespeare) -> John and Mary Shakespeare (13221ms)
When was Shakespeare born? two years 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, two years) -> two years (13202ms)
When was Shakespeare born? the time 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, the time) -> the time (13230ms)
When was Shakespeare born? allegedly on April 23 , 1564 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, allegedly on April 23 , 1564) -> allegedly on April 23 , 1564 (13192ms)
When was Shakespeare born? the start 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born at, the start) -> the start (13211ms)
When was Shakespeare born? April 23 , 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (?William Shakespeare, was born, April 23 ,) -> April 23 , (13181ms)
When was Shakespeare born? John Shakespeare 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born to, John Shakespeare) -> John Shakespeare (13192ms)
When was Shakespeare born? humble stock 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born of quite, humble stock) -> humble stock (13181ms)
When was Shakespeare born? a Taurean sun 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, were also born under, a Taurean sun) -> a Taurean sun (13221ms)
When was Shakespeare born? Charlottesville -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, has lived in, Charlottesville) -> Charlottesville (13299ms)
When was Shakespeare born? 1789 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1789) -> 1789 (13355ms)
When was Shakespeare born? the Ranch -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams ?, live on, the Ranch) -> the Ranch (13299ms)
When was Shakespeare born? the same block -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, had lived on, the same block) -> the same block (13380ms)
When was Shakespeare born? 16 March 1934 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, was living on, 16 March 1934) -> 16 March 1934 (13266ms)
When was Shakespeare born? the Cross Bronx Expressway -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Betty Williams, lived on, the Cross Bronx Expressway) -> the Cross Bronx Expressway (13384ms)
When was Shakespeare born? Blairstown Township -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Blairstown Township) -> Blairstown Township (13365ms)
When was Shakespeare born? the road -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Walrath, lived on, the road) -> the road (13307ms)
When was Shakespeare born? the southwest corner -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Howarth, lived on, the southwest corner) -> the southwest corner (13299ms)
When was Shakespeare born? Vancouver Island -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (artist E. Colin Williams, live on, Vancouver Island) -> Vancouver Island (13330ms)
When was Shakespeare born? Hanslape -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Hanslape) -> Hanslape (13316ms)
When was Shakespeare born? 1847 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1847) -> 1847 (13291ms)
When was Shakespeare born? Christmas St -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, Lived on, Christmas St) -> Christmas St (13370ms)
When was Shakespeare born? Dan Post -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Morey, lived on, Dan Post) -> Dan Post (13380ms)
When was Shakespeare born? 1585 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1585) -> 1585 (13283ms)
When was Shakespeare born? Dummer Twp. -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dummer Twp.) -> Dummer Twp. (13337ms)
When was Shakespeare born? Basin Harbor -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Solomon and William Kellogg, lived on, Basin Harbor) -> Basin Harbor (13299ms)
When was Shakespeare born? Stony Brook -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Stony Brook) -> Stony Brook (13258ms)
When was Shakespeare born? 1875 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1875) -> 1875 (13258ms)
When was Shakespeare born? an alley -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Brewster, lived on, an alley) -> an alley (13291ms)
When was Shakespeare born? Palm Coast -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Palm Coast) -> Palm Coast (13275ms)
When was Shakespeare born? Paris -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Paris) -> Paris (13344ms)
When was Shakespeare born? North Water Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, North Water Street) -> North Water Street (13249ms)
When was Shakespeare born? Eagle Township -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Eagle Township) -> Eagle Township (13337ms)
When was Shakespeare born? Wolf -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Judge William Sparks, lived on, Wolf) -> Wolf (13316ms)
When was Shakespeare born? 12 March 1925 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (177 William, was living on, 12 March 1925) -> 12 March 1925 (13283ms)
When was Shakespeare born? C-SPAN. -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, was broadcast live on, C-SPAN.) -> C-SPAN. (13299ms)
When was Shakespeare born? Isleworth -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Isleworth) -> Isleworth (13323ms)
When was Shakespeare born? Hawaii -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Hawaii) -> Hawaii (13275ms)
When was Shakespeare born? PEI -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, has lived on, PEI) -> PEI (13299ms)
When was Shakespeare born? Mercer County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Mercer County) -> Mercer County (13316ms)
When was Shakespeare born? Ohio Ave -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Merrill HAMILTON, lived on, Ohio Ave) -> Ohio Ave (13344ms)
When was Shakespeare born? Pine Ridge -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (The Rev. Mr. Williams, lived on, Pine Ridge) -> Pine Ridge (13275ms)
When was Shakespeare born? Denver -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William E. Barrett, now lived in, Denver) -> Denver (13375ms)
When was Shakespeare born? a flat -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, a flat) -> a flat (13380ms)
When was Shakespeare born? the property -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (stipulation William, will live on, the property) -> the property (13380ms)
When was Shakespeare born? campus -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams students, live on, campus) -> campus (13350ms)
When was Shakespeare born? the Clear Fork -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Holden, lived on, the Clear Fork) -> the Clear Fork (13315ms)
When was Shakespeare born? lot 532 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, probably lived on, lot 532) -> lot 532 (13380ms)
When was Shakespeare born? Kansas City -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Kansas City) -> Kansas City (13384ms)
When was Shakespeare born? Park Lane -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William B. Randall, lived on, Park Lane) -> Park Lane (13366ms)
When was Shakespeare born? the past -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, the past) -> the past (13330ms)
When was Shakespeare born? the Bebout farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the Bebout farm) -> the Bebout farm (13344ms)
When was Shakespeare born? the new house -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the new house) -> the new house (13375ms)
When was Shakespeare born? Maine -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Bob Williams, now live in, Maine) -> Maine (13350ms)
When was Shakespeare born? New Jersey -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, New Jersey) -> New Jersey (13330ms)
When was Shakespeare born? Memphis ? streets -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Sam Williams, lived on, Memphis ? streets) -> Memphis ? streets (13370ms)
When was Shakespeare born? Creek -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on Back, Creek) -> Creek (13267ms)
When was Shakespeare born? the same street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, was living on, the same street) -> the same street (13365ms)
When was Shakespeare born? the reign -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the reign) -> the reign (13355ms)
When was Shakespeare born? a house -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house) -> a house (13275ms)
When was Shakespeare born? Lot 48 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Lot 48) -> Lot 48 (13275ms)
When was Shakespeare born? Scaly Mountain -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Scaly Mountain) -> Scaly Mountain (13307ms)
When was Shakespeare born? England ? ' -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (WIlliam, live in, England ? ') -> England ? ' (13307ms)
When was Shakespeare born? Norwich -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Norwich) -> Norwich (13380ms)
When was Shakespeare born? Grand Bahama -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, has lived on, Grand Bahama) -> Grand Bahama (13350ms)
When was Shakespeare born? the street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (John T. Williams, lived on, the street) -> the street (13299ms)
When was Shakespeare born? 1795 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1795) -> 1795 (13365ms)
When was Shakespeare born? North Carolina -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, North Carolina) -> North Carolina (13337ms)
When was Shakespeare born? Dublin -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dublin) -> Dublin (13344ms)
When was Shakespeare born? the east coast -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, has been living on, the east coast) -> the east coast (13350ms)
When was Shakespeare born? the Sanctuary -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Ricketts, lived on at, the Sanctuary) -> the Sanctuary (13384ms)
When was Shakespeare born? Wimple Creek -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (John and William Boyd, live on, Wimple Creek) -> Wimple Creek (13337ms)
When was Shakespeare born? Fairfield village -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fairfield village) -> Fairfield village (13266ms)
When was Shakespeare born? death row -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, lived on, death row) -> death row (13291ms)
When was Shakespeare born? a large farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Mary Jane Wilson, lived on, a large farm) -> a large farm (13330ms)
When was Shakespeare born? 1620 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1620) -> 1620 (13370ms)
When was Shakespeare born? the homestead -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the homestead) -> the homestead (13360ms)
When was Shakespeare born? Fauquier and Loudon counties -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fauquier and Loudon counties) -> Fauquier and Loudon counties (13350ms)
When was Shakespeare born? the old homestead -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the old homestead) -> the old homestead (13380ms)
When was Shakespeare born? Wood Co. -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Wood Co.) -> Wood Co. (13366ms)
When was Shakespeare born? Graig Terrace -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William Williams, lived in, Graig Terrace) -> Graig Terrace (13375ms)
When was Shakespeare born? Westline Rd. -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (KNOX William, Lived on, Westline Rd.) -> Westline Rd. (13375ms)
When was Shakespeare born? the Town -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Town) -> the Town (13291ms)
When was Shakespeare born? two very different worlds -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, two very different worlds) -> two very different worlds (13344ms)
When was Shakespeare born? Metropolitan Opera Radio -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Berger, live on, Metropolitan Opera Radio) -> Metropolitan Opera Radio (13307ms)
When was Shakespeare born? Jefferson -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Jefferson) -> Jefferson (13360ms)
When was Shakespeare born? Carland -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Carland) -> Carland (13275ms)
When was Shakespeare born? Wake Forest -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Wake Forest) -> Wake Forest (13323ms)
When was Shakespeare born? sixteen more years -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on for, sixteen more years) -> sixteen more years (13258ms)
When was Shakespeare born? stage -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Shatner, live on, stage) -> stage (13330ms)
When was Shakespeare born? a farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, a farm) -> a farm (13330ms)
When was Shakespeare born? Miles Ave -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William J. Elliott, lived on, Miles Ave) -> Miles Ave (13307ms)
When was Shakespeare born? Utah -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Utah) -> Utah (13344ms)
When was Shakespeare born? the famous Glastonbury Abbey -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the famous Glastonbury Abbey) -> the famous Glastonbury Abbey (13266ms)
When was Shakespeare born? South St. -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Judge William WALKER, lived on, South St.) -> South St. (13384ms)
When was Shakespeare born? the home -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the home) -> the home (13370ms)
When was Shakespeare born? Sea Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Captain William Truman Tuttle, lived on, Sea Street) -> Sea Street (13355ms)
When was Shakespeare born? LOT 48 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, LOT 48) -> LOT 48 (13370ms)
When was Shakespeare born? the farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (6 ~ ~ William Roberson, lived on, the farm) -> the farm (13299ms)
When was Shakespeare born? U City -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, U City) -> U City (13307ms)
When was Shakespeare born? Elmley Castle -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Elmley Castle) -> Elmley Castle (13344ms)
When was Shakespeare born? 1635 -0.0 When was Shakespeare born? -> $x: (william, be from in, $x) -> (Williams, was banished from the colony in, 1635) -> 1635 (13308ms)
When was Shakespeare born? a hotel room -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams and Allen, now live in, a hotel room) -> a hotel room (13323ms)
When was Shakespeare born? the Tuscarora Reservation -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Mike Williams, live on, the Tuscarora Reservation) -> the Tuscarora Reservation (13380ms)
When was Shakespeare born? Albany -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Albany) -> Albany (13366ms)
When was Shakespeare born? a Brooklyn condo -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now living in, a Brooklyn condo) -> a Brooklyn condo (13299ms)
When was Shakespeare born? part -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, part) -> part (13330ms)
When was Shakespeare born? Bull Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Jim Williams, lived on, Bull Street) -> Bull Street (13283ms)
When was Shakespeare born? Hungary -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Hungary) -> Hungary (13366ms)
When was Shakespeare born? Clay county -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William MARESBECK, is now living in, Clay county) -> Clay county (13299ms)
When was Shakespeare born? death -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Dennis Williams, lived on, death) -> death (13266ms)
When was Shakespeare born? Orange County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Orange County) -> Orange County (13366ms)
When was Shakespeare born? New River -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Col . William Christian, lived on, New River) -> New River (13355ms)
When was Shakespeare born? Cincinnati -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Cincinnati) -> Cincinnati (13291ms)
When was Shakespeare born? Campbell Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Miss Carrie Williams, lived on, Campbell Street) -> Campbell Street (13258ms)
When was Shakespeare born? Lexington -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lexington) -> Lexington (13316ms)
When was Shakespeare born? Illinois -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Illinois) -> Illinois (13375ms)
When was Shakespeare born? the months -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the months) -> the months (13355ms)
When was Shakespeare born? 1842 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1842) -> 1842 (13365ms)
When was Shakespeare born? Tucson -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Tucson) -> Tucson (13370ms)
When was Shakespeare born? the province -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the province) -> the province (13375ms)
When was Shakespeare born? New York City -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, New York City) -> New York City (13323ms)
When was Shakespeare born? 1881 -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living In, 1881) -> 1881 (13337ms)
When was Shakespeare born? Forestdale -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (His son William, now live in, Forestdale) -> Forestdale (13316ms)
When was Shakespeare born? Oxford village -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William, is now living in, Oxford village) -> Oxford village (13258ms)
When was Shakespeare born? the premises -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Janelle Williams, lived on, the premises) -> the premises (13299ms)
When was Shakespeare born? Cuba and China -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Cuba and China) -> Cuba and China (13360ms)
When was Shakespeare born? a sober house -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now living in, a sober house) -> a sober house (13384ms)
When was Shakespeare born? Liverpool -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Liverpool) -> Liverpool (13360ms)
When was Shakespeare born? Geyserville -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Geyserville) -> Geyserville (13323ms)
When was Shakespeare born? the adjacent lot -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Lillie Morse, lived on, the adjacent lot) -> the adjacent lot (13283ms)
When was Shakespeare born? adjacent farms -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Sarah, lived on, adjacent farms) -> adjacent farms (13375ms)
When was Shakespeare born? the air -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Brian Williams, live on, the air) -> the air (13344ms)
When was Shakespeare born? a Quonset hut -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Cavanaugh, lived on, a Quonset hut) -> a Quonset hut (13337ms)
When was Shakespeare born? Amherst -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William P. Noies, is now living in, Amherst) -> Amherst (13355ms)
When was Shakespeare born? an island inIrondequoit Bay -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Held, lived on, an island inIrondequoit Bay) -> an island inIrondequoit Bay (13258ms)
When was Shakespeare born? San Diego -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, San Diego) -> San Diego (13370ms)
When was Shakespeare born? a ranch -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Bent, lived on, a ranch) -> a ranch (13323ms)
When was Shakespeare born? Loves Creek -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Poe, lived on, Loves Creek) -> Loves Creek (13380ms)
When was Shakespeare born? Tharpe?s land -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Dougherty, lived on, Tharpe?s land) -> Tharpe?s land (13366ms)
When was Shakespeare born? Knob Fork -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Rosa, lived on, Knob Fork) -> Knob Fork (13384ms)
When was Shakespeare born? Michigan -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living in, Michigan) -> Michigan (13355ms)
When was Shakespeare born? California -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, California) -> California (13316ms)
When was Shakespeare born? a mountain -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, live on, a mountain) -> a mountain (13266ms)
When was Shakespeare born? a house trailer -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house trailer) -> a house trailer (13355ms)
When was Shakespeare born? the house -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the house) -> the house (13330ms)
When was Shakespeare born? CBS -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, live on, CBS) -> CBS (13375ms)
When was Shakespeare born? Granville County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Granville County) -> Granville County (13323ms)
When was Shakespeare born? Central -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Central) -> Central (13299ms)
When was Shakespeare born? Chepstow -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Chepstow) -> Chepstow (13375ms)
When was Shakespeare born? the ocean -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Kunz, has lived on, the ocean) -> the ocean (13355ms)
When was Shakespeare born? the home farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, is living on, the home farm) -> the home farm (13366ms)
When was Shakespeare born? Lancashire ,England -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lancashire ,England) -> Lancashire ,England (13283ms)
When was Shakespeare born? Rehoboth -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Rehoboth) -> Rehoboth (13366ms)
When was Shakespeare born? Davenport -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Davenport) -> Davenport (13283ms)
When was Shakespeare born? Elizabethton -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, had lived in, Elizabethton) -> Elizabethton (13258ms)
When was Shakespeare born? the Nisqually flats -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Packwood, lived on, the Nisqually flats) -> the Nisqually flats (13323ms)
When was Shakespeare born? Walton County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Walton County) -> Walton County (13266ms)
When was Shakespeare born? an apartment -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now back to living in, an apartment) -> an apartment (13307ms)
When was Shakespeare born? the Society -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Society) -> the Society (13355ms)
When was Shakespeare born? 1925 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, 1925) -> 1925 (13323ms)
When was Shakespeare born? Fleming Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Fleming Street) -> Fleming Street (13380ms)
When was Shakespeare born? the corner -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Parrott, lived on, the corner) -> the corner (13360ms)
When was Shakespeare born? the French Quarter -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the French Quarter) -> the French Quarter (13330ms)
When was Shakespeare born? Portsmouth -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Portsmouth) -> Portsmouth (13344ms)
When was Shakespeare born? the green mountains -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the green mountains) -> the green mountains (13337ms)
When was Shakespeare born? Beaver -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Roy, was living on, Beaver) -> Beaver (13379ms)
When was Shakespeare born? Bussey Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Scollay, lived on, Bussey Street) -> Bussey Street (13370ms)
When was Shakespeare born? Japan -0.0 When was Shakespeare born? -> $x: (prose, live in, $x) -> (the poetry and prose, lived in, Japan) -> Japan (13360ms)
When was Shakespeare born? North Court -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, North Court) -> North Court (13337ms)
When was Shakespeare born? Union St -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William John Moore, lived on, Union St) -> Union St (13355ms)
When was Shakespeare born? four different residences -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, four different residences) -> four different residences (13291ms)
When was Shakespeare born? 12/1/58 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (ROSE WILLIAMS, Lived on, 12/1/58) -> 12/1/58 (13370ms)
When was Shakespeare born? the caravan -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, will get live reports on, the caravan) -> the caravan (13316ms)
When was Shakespeare born? the Woodland neighborhood -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the Woodland neighborhood) -> the Woodland neighborhood (13366ms)
When was Shakespeare born? the west coast -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Emanuel, live on, the west coast) -> the west coast (13380ms)
When was Shakespeare born? CSN -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Mary, live on, CSN) -> CSN (13350ms)
When was Shakespeare born? 1901 -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living in, 1901) -> 1901 (13291ms)
When was Shakespeare born? 1906 -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living In, 1906) -> 1906 (13370ms)
When was Shakespeare born? Orchard Drive -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Baker, lived on, Orchard Drive) -> Orchard Drive (13366ms)
When was Shakespeare born? Sparta -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sparta) -> Sparta (13283ms)
When was Shakespeare born? Natchez -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Natchez) -> Natchez (13307ms)
When was Shakespeare born? Sefton -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sefton) -> Sefton (13360ms)
When was Shakespeare born? Montour Run -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Tucker, lived on, Montour Run) -> Montour Run (13316ms)
When was Shakespeare born? Georgia -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Georgia) -> Georgia (13365ms)
When was Shakespeare born? Ohio -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Ohio) -> Ohio (13370ms)
When was Shakespeare born? Key West -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Key West) -> Key West (13307ms)
When was Shakespeare born? broadway -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Robin Williams, live on, broadway) -> broadway (13375ms)
When was Shakespeare born? NPR -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Hear Jason D. Williams, live on, NPR) -> NPR (13275ms)
When was Shakespeare born? Oakham Rutlandshire -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Oakham Rutlandshire) -> Oakham Rutlandshire (13360ms)
When was Shakespeare born? Geoffrey Boycott -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Geoffrey Boycott, do, Shakespeare) -> Geoffrey Boycott (13388ms)
When was Shakespeare born? Nobody -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Nobody, does, Shakespeare) -> Nobody (13392ms)
When was Shakespeare born? JUST A DREAM -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (JUST A DREAM, do, Shakespeare) -> JUST A DREAM (13392ms)
When was Shakespeare born? the Americans -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the Americans, do, Shakespeare) -> the Americans (13388ms)
When was Shakespeare born? the companies -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the companies, do, Shakespeare) -> the companies (13388ms)
When was Shakespeare born? any -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (any, did, Shakespeare) -> any (13384ms)
When was Shakespeare born? Goethe -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Goethe, so did, Shakespeare) -> Goethe (13384ms)
When was Shakespeare born? Brits -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Brits, do, Shakespeare) -> Brits (13388ms)
When was Shakespeare born? youre -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (youre, doing, Shakespeare) -> youre (13388ms)
When was Shakespeare born? Ed Westwick -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ed Westwick, do, Shakespeare) -> Ed Westwick (13392ms)
When was Shakespeare born? Branagh -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Branagh, doing, Shakespeare) -> Branagh (13392ms)
When was Shakespeare born? Mark Twain -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Mark Twain, did for, Shakespeare) -> Mark Twain (13392ms)
When was Shakespeare born? Bacon -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Bacon, did write, Shakespeare) -> Bacon (13388ms)
When was Shakespeare born? Ger -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ger, does, Shakespeare) -> Ger (13392ms)
When was Shakespeare born? famous actors -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (famous actors, do, Shakespeare) -> famous actors (13388ms)
When was Shakespeare born? Touching -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Touching, did, Shakespeare) -> Touching (13392ms)
When was Shakespeare born? each year -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (each year, only did, Shakespeare) -> each year (13392ms)
When was Shakespeare born? just an entertaining play -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (just an entertaining play, did, Shakespeare) -> just an entertaining play (13392ms)
When was Shakespeare born? 1.2 -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (1.2, does, Shakespeare) -> 1.2 (13392ms)
When was Shakespeare born? Coleridge -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Coleridge, did, Shakespeare) -> Coleridge (13388ms)
When was Shakespeare born? A DREAM -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (A DREAM, do, Shakespeare) -> A DREAM (13392ms)
When was Shakespeare born? a more dramatic and poetic form -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a more dramatic and poetic form, did, Shakespeare) -> a more dramatic and poetic form (13388ms)
When was Shakespeare born? Karamazov Brothers -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Karamazov Brothers, do, Shakespeare) -> Karamazov Brothers (13384ms)
When was Shakespeare born? Hes -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Hes, done, Shakespeare) -> Hes (13388ms)
When was Shakespeare born? a balcony -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a balcony, could do, Shakespeare) -> a balcony (13388ms)
When was Shakespeare born? literature?s great mysteries ? -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (literature?s great mysteries ?, did, Shakespeare) -> literature?s great mysteries ? (13388ms)
When was Shakespeare born? Tessa -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Tessa, Does, Shakespeare) -> Tessa (13384ms)
When was Shakespeare born? UK Company Propeller -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (UK Company Propeller, does, Shakespeare) -> UK Company Propeller (13392ms)
When was Shakespeare born? critics or scholars -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (critics or scholars, did, Shakespeare) -> critics or scholars (13388ms)
When was Shakespeare born? How many plays -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (How many plays, did write, Shakespeare) -> How many plays (13388ms)
When was Shakespeare born? Olivier -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Olivier, did, Shakespeare) -> Olivier (13388ms)
When was Shakespeare born? a professional company -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a professional company, did, Shakespeare) -> a professional company (13384ms)
When was Shakespeare born? pretty melodies -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (pretty melodies, do, Shakespeare) -> pretty melodies (13392ms)
When was Shakespeare born? Gargoyles -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Gargoyles, do, Shakespeare) -> Gargoyles (13384ms)
When was Shakespeare born? Description -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Description, Did, Shakespeare) -> Description (13392ms)
When was Shakespeare born? a toddler -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a toddler, do, Shakespeare) -> a toddler (13392ms)
When was Shakespeare born? The question -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The question, is did, Shakespeare) -> The question (13392ms)
When was Shakespeare born? Dunster -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Dunster, does, Shakespeare) -> Dunster (13384ms)
When was Shakespeare born? the rules -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the rules, did, Shakespeare) -> the rules (13388ms)
When was Shakespeare born? Adam Sandler -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Adam Sandler, did, Shakespeare) -> Adam Sandler (13384ms)
What year did Patsy Cline die? an airplane crash 0.555555555564 What year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, an airplane crash) -> an airplane crash (1063ms)
What year did Patsy Cline die? 1963 0.555555555564 What year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, 1963) -> 1963 (1063ms)
What year did Patsy Cline die? a plane crash 0.555555555564 What year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, a plane crash) -> a plane crash (1063ms)
What year did Patsy Cline die? the Shenandoah Valley 0.555555555555 What year did Patsy Cline die? -> $x: (patsy cline, be bear in, $x) -> (Patsy Cline, was born in, the Shenandoah Valley) -> the Shenandoah Valley (1063ms)
What year did Patsy Cline die? 1932 0.555555555555 What year did Patsy Cline die? -> $x: (patsy cline, be bear in, $x) -> (Patsy Cline, was born in, 1932) -> 1932 (1102ms)
What year did Patsy Cline die? age 30 0.333333333333 What year did Patsy Cline die? -> $x: (patsy cline, die, $x) -> (legendary country singer Patsy Cline, died at, age 30) -> age 30 (1102ms)
What year did Patsy Cline die? studio gadgets -1.33333333333 What 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)
What year did Patsy Cline die? holloween -1.33333333333 What year did Patsy Cline die? -> $x: (patsy cline, make up, $x) -> (Lexi martinez crazy patsy cline lyrics, make up for, holloween) -> holloween (1261ms)
What year did Patsy Cline die? Air disaster -1.444444444443 What year did Patsy Cline die? -> $x: ($x, die, patsy cline) -> (Air disaster, People Who Died This Way, Patsy Cline) -> Air disaster (1284ms)
What is neuropathy? Stavudine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Stavudine, may cause, neuropathies) -> Stavudine (2176ms)
What is neuropathy? diabetic foot ulcers 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (diabetic foot ulcers, are typically caused by, neuropathy) -> diabetic foot ulcers (1724ms)
What is neuropathy? denture adhesives 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (denture adhesives, could cause, neuropathy) -> denture adhesives (3724ms)
What is neuropathy? a foot deformity 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a foot deformity, caused by, neuropathy) -> a foot deformity (3931ms)
What is neuropathy? trichlorphon and/or dichlorvos 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (trichlorphon and/or dichlorvos, cause delayed, neuropathy) -> trichlorphon and/or dichlorvos (4195ms)
What is neuropathy? Scientists 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Scientists, causes, diabetic neuropathy) -> Scientists (2023ms)
What is neuropathy? glycyl-tRNA synthetase 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (glycyl-tRNA synthetase, causes, neuropathy) -> glycyl-tRNA synthetase (3724ms)
What is neuropathy? Pinched nerve 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Pinched nerve, can cause, neuropathy) -> Pinched nerve (2176ms)
What is neuropathy? Diabetes 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Diabetes, is the most common cause of, neuropathy) -> Diabetes (4195ms)
What is neuropathy? higher daily doses 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (higher daily doses, can actually cause symptoms of, neuropathy) -> higher daily doses (3299ms)
What is neuropathy? Alcoholism 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Alcoholism, is a leading cause of, neuropathy) -> Alcoholism (4162ms)
What is neuropathy? the injuries 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the injuries, causing, neuropathy) -> the injuries (3931ms)
What is neuropathy? even a few antibiotics 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (even a few antibiotics, will also cause, neuropathy) -> even a few antibiotics (2195ms)
What is neuropathy? Neurogenic bladder 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Neurogenic bladder, Causes, Neuropathy) -> Neurogenic bladder (4195ms)
What is neuropathy? the nervous system 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the nervous system, are the primarily cause of, neuropathy) -> the nervous system (4195ms)
What is neuropathy? Hormonal imbalances 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Hormonal imbalances, cause, neuropathies) -> Hormonal imbalances (3299ms)
What is neuropathy? a genetic biomarker 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a genetic biomarker, causes, neuropathy) -> a genetic biomarker (3795ms)
What is neuropathy? chemotherapy 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (chemotherapy, can also cause, neuropathy) -> chemotherapy (1944ms)
What is neuropathy? a number of factors 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a number of factors, can cause, neuropathies) -> a number of factors (1618ms)
What is neuropathy? Does Vincristine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Does Vincristine, Cause, Neuropathy) -> Does Vincristine (3794ms)
What is neuropathy? Two inherited disorders 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Two inherited disorders, are known to cause, neuropathy) -> Two inherited disorders (4162ms)
What is neuropathy? VISUAL IMPROVEMENTS Diplopia 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (VISUAL IMPROVEMENTS Diplopia, is caused by, neuropathy) -> VISUAL IMPROVEMENTS Diplopia (1944ms)
What is neuropathy? the peripheral nervous system 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the peripheral nervous system, causes, neuropathy) -> the peripheral nervous system (3794ms)
What is neuropathy? Researchers 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Researchers, causes, diabetic neuropathy) -> Researchers (1618ms)
What is neuropathy? MDMA 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (MDMA, caused, neuropathy) -> MDMA (3724ms)
What is neuropathy? alcohol abuse 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (alcohol abuse, is a frequent cause of, neuropathy) -> alcohol abuse (3931ms)
What is neuropathy? Vinblastine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Vinblastine, also causes, neuropathy) -> Vinblastine (4162ms)
What is neuropathy? Sjogren Syndrome 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Sjogren Syndrome, are the cause of, neuropathy) -> Sjogren Syndrome (3724ms)
What is neuropathy? glyburide 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (glyburide, might cause, neuropathy) -> glyburide (4162ms)
What is neuropathy? Diabetes mellitus 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Diabetes mellitus, Diseases or conditions caused, Diabetic Peripheral Neuropathy) -> Diabetes mellitus (2023ms)
What is neuropathy? type 1 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (type 1, has caused, neuropathy) -> type 1 (2176ms)
What is neuropathy? the body tissues 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the body tissues, cause, neuropathy) -> the body tissues (4162ms)
What is neuropathy? Mechanical compression and ischemia 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Mechanical compression and ischemia, also cause, neuropathies) -> Mechanical compression and ischemia (1945ms)
What is neuropathy? Medications 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Medications, can treat pain caused by, neuropathy) -> Medications (1724ms)
What is neuropathy? The latter 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The latter, can cause, neuropathy) -> The latter (2023ms)
What is neuropathy? NARP 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (NARP, causes, neuropathy) -> NARP (3931ms)
What is neuropathy? Foot drop 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Foot drop, can be caused by, diabetic neuropathy) -> Foot drop (3931ms)
What is neuropathy? AIDS 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (AIDS, can cause, neuropathy) -> AIDS (2195ms)
What is neuropathy? the body 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the body, can also cause, neuropathy) -> the body (4195ms)
What is neuropathy? certain artificial sweeteners 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (certain artificial sweeteners, can cause, neuropathy) -> certain artificial sweeteners (3299ms)
What is neuropathy? radiation treatments 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (radiation treatments, often cause, neuropathy) -> radiation treatments (4195ms)
What is neuropathy? Damage 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Damage, caused by, diabetic neuropathy) -> Damage (4195ms)
What is neuropathy? Neurological disorder 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Neurological disorder, Includes causes of death, Neuropathy) -> Neurological disorder (3794ms)
What is neuropathy? men 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (men, causes, diabetic neuropathy) -> men (3299ms)
What is neuropathy? vitamin 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (vitamin, causes, neuropathy) -> vitamin (3931ms)
What is neuropathy? the combination 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the combination, has the potential to cause, neuropathy) -> the combination (4195ms)
What is neuropathy? injured areas 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (injured areas, relieves pain caused by, diabetic neuropathy) -> injured areas (1724ms)
What is neuropathy? a B12 deficiency 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a B12 deficiency, can cause, neuropathy) -> a B12 deficiency (1945ms)
What is neuropathy? the pain and discomfort 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the pain and discomfort, caused by, neuropathy) -> the pain and discomfort (4195ms)
What is neuropathy? Amiodarone 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Amiodarone, can cause, neuropathy) -> Amiodarone (3724ms)
What is neuropathy? severe vocal spasms 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (severe vocal spasms, are caused by, neuropathy) -> severe vocal spasms (4162ms)
What is neuropathy? The leg pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The leg pain, could be caused by, Neuropathy) -> The leg pain (4195ms)
What is neuropathy? lower cholesterol 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (lower cholesterol, will cause, neuropathy) -> lower cholesterol (1945ms)
What is neuropathy? bacterial or viral infections 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (bacterial or viral infections, may cause, neuropathy) -> bacterial or viral infections (1618ms)
What is neuropathy? The treatment 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The treatment, causes, neuropathy) -> The treatment (2023ms)
What is neuropathy? High blood pressure medication 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (High blood pressure medication, can cause, neuropathy) -> High blood pressure medication (2195ms)
What is neuropathy? drop foot 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (drop foot, is caused by, Diabetic Neuropathy) -> drop foot (1944ms)
What is neuropathy? Pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Pain, caused by, neuropathy) -> Pain (4195ms)
What is neuropathy? defective heme synthesis 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (defective heme synthesis, causes, neuropathy) -> defective heme synthesis (3299ms)
What is neuropathy? Chronic exposure 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Chronic exposure, can cause, neuropathy) -> Chronic exposure (1724ms)
What is neuropathy? the back 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the back, can be another cause of, neuropathy) -> the back (2176ms)
What is neuropathy? Lelio Luttazzi 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Lelio Luttazzi, Cause of death, Neuropathy) -> Lelio Luttazzi (2023ms)
What is neuropathy? The virus 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The virus, can cause several different forms of, neuropathy) -> The virus (1725ms)
What is neuropathy? a chemotherapy drug 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a chemotherapy drug, has the potential for causing, neuropathy) -> a chemotherapy drug (1618ms)
What is neuropathy? diabetes 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (diabetes, is the most common cause of, neuropathy) -> diabetes (3931ms)
What is neuropathy? nerves 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (nerves, causes, Diabetic Neuropathy) -> nerves (3724ms)
What is neuropathy? Gastroparesis 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Gastroparesis, is a condition caused by, neuropathy) -> Gastroparesis (3931ms)
What is neuropathy? Nerve Pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Nerve Pain, caused by, diabetic neuropathy) -> Nerve Pain (4195ms)
What is neuropathy? drugs 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (drugs, are known potent causes of, neuropathy) -> drugs (2195ms)
What is neuropathy? affinity 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (affinity, are likely the cause of, neuropathy) -> affinity (4195ms)
What is neuropathy? not all pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (not all pain, is caused by, neuropathy) -> not all pain (4195ms)
What is neuropathy? Vitamin B6 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Vitamin B6, can cause, neuropathy) -> Vitamin B6 (3794ms)
What is neuropathy? pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (pain, caused by, fibromyalgia and diabetic peripheral neuropathy) -> pain (4162ms)
What is neuropathy? a person?s body 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (a person?s body, is caused by, Diabetic Neuropathy) -> a person?s body (4162ms)
What is neuropathy? old age 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (old age, are common known causes of, neuropathy) -> old age (3724ms)
What is neuropathy? pyridoxine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (pyridoxine, may cause, neuropathy) -> pyridoxine (1619ms)
What is neuropathy? Diabetic neuropathy 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Diabetic neuropathy, is the leading cause of, neuropathy) -> Diabetic neuropathy (3724ms)
What is neuropathy? Ultram 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Ultram, cause, neuropathy) -> Ultram (1945ms)
What is neuropathy? The diabetes 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The diabetes, has caused, neuropathy) -> The diabetes (4162ms)
What is neuropathy? factors 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (factors, can cause, neuropathies) -> factors (2176ms)
What is neuropathy? the nerve damage 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (the nerve damage, caused by, diabetic neuropathy) -> the nerve damage (3794ms)
What is neuropathy? 18v Ziprasidone batteries 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (18v Ziprasidone batteries, cause, neuropathy) -> 18v Ziprasidone batteries (2023ms)
What is neuropathy? toxic chemicals 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (toxic chemicals, can cause, neuropathy) -> toxic chemicals (3795ms)
What is neuropathy? toxic substances 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (toxic substances, is a very frequent cause of, neuropathy) -> toxic substances (1618ms)
What is neuropathy? high glucose 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (high glucose, causes, neuropathy) -> high glucose (4195ms)
What is neuropathy? the optic nerve -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the optic nerve, result in, optic neuropathy) -> the optic nerve (4204ms)
What is neuropathy? patients -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (patients, is less likely to result in, neuropathy) -> patients (4239ms)
What is neuropathy? large nerve fibers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (large nerve fibers, are thus normal in, small fiber neuropathy) -> large nerve fibers (4213ms)
What is neuropathy? Pat Irmer -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Pat Irmer, is participating in, a neuropathy study) -> Pat Irmer (4213ms)
What is neuropathy? Clinical Studies -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Clinical Studies, validate in, neuropathy symptoms) -> Clinical Studies (4231ms)
What is neuropathy? lubricants -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (lubricants, can result in, a neuropathy indistinguishable) -> lubricants (4239ms)
What is neuropathy? Neurontin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Neurontin, is in, painful neuropathies) -> Neurontin (4204ms)
What is neuropathy? macronutrients -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (macronutrients, is beneficial in, diabetic neuropathy) -> macronutrients (4248ms)
What is neuropathy? Alcohol abuse -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Alcohol abuse, can result in, neuropathy) -> Alcohol abuse (4231ms)
What is neuropathy? collaborative efforts -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (collaborative efforts, involve studies in, peripheral neuropathy) -> collaborative efforts (4248ms)
What is neuropathy? CIDP -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (CIDP, is uncommon in, the motor neuropathies) -> CIDP (4213ms)
What is neuropathy? Compensatory hyperhidrosis -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (Compensatory hyperhidrosis, is also seen in, diabetic neuropathy) -> Compensatory hyperhidrosis (4231ms)
What is neuropathy? cannabis -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (cannabis, was effective in, neuropathy patients) -> cannabis (4213ms)
What is neuropathy? High titers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (High titers, are common in, axonal sensory > motor neuropathies) -> High titers (4222ms)
What is neuropathy? Pregabalin and gabapentin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Pregabalin and gabapentin, are effective in, diabetic neuropathy) -> Pregabalin and gabapentin (4239ms)
What is neuropathy? A 1953 accident -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (A 1953 accident, elsewhere resulted in, peripheral neuropathies) -> A 1953 accident (4248ms)
What is neuropathy? Glucose control -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Glucose control, seems to play a role in, neuropathy) -> Glucose control (4231ms)
What is neuropathy? Several B vitamins -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Several B vitamins, are useful in treating, diabetic neuropathy) -> Several B vitamins (4248ms)
What is neuropathy? Sativex Seen -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Sativex Seen, referred to in, my Neuropathy post) -> Sativex Seen (4239ms)
What is neuropathy? Demyelinating features -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Demyelinating features, are common in, the POEMS neuropathy) -> Demyelinating features (4248ms)
What is neuropathy? large fibre loss -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (large fibre loss, was observed in, sensory ataxic neuropathy) -> large fibre loss (4239ms)
What is neuropathy? acupuncture -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (acupuncture, can indeed help in treating, peripheral neuropathy) -> acupuncture (4222ms)
What is neuropathy? ALA -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (ALA, reduces sensory symptoms in, diabetic neuropathy) -> ALA (4248ms)
What is neuropathy? sensory nerve fibers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (sensory nerve fibers, are impaired in, diabetic neuropathy) -> sensory nerve fibers (4248ms)
What is neuropathy? Moth-eaten fibers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Moth-eaten fibers, may occur in, myopathy or neuropathy) -> Moth-eaten fibers (4222ms)
What is neuropathy? gastroparesis -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (gastroparesis, is a prominant finding in, Diabetic Neuropathy) -> gastroparesis (4248ms)
What is neuropathy? Anti-GM1 antibodies -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Anti-GM1 antibodies, may be found in, acute motor neuropathies) -> Anti-GM1 antibodies (4213ms)
What is neuropathy? Gabapentin -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (Gabapentin, is also recommended in, painful diabetic neuropathy) -> Gabapentin (4248ms)
What is neuropathy? Dr. Van Gils -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Dr. Van Gils, also has a strong interest in, neuropathy) -> Dr. Van Gils (4204ms)
What is neuropathy? occurs -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (occurs, was more severe in, peripheral neuropathy) -> occurs (4213ms)
What is neuropathy? Chemotherapy -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Chemotherapy, often results in, ?peripheral neuropathy) -> Chemotherapy (4205ms)
What is neuropathy? Washington Title -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Washington Title, is best in, ulnar neuropathy) -> Washington Title (4213ms)
What is neuropathy? btx-a -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (btx-a, is helpful in, chronic focal painful neuropathies) -> btx-a (4231ms)
What is neuropathy? four factor -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (four factor, involved in, the development of diabetic neuropathy) -> four factor (4239ms)
What is neuropathy? Opiates -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Opiates, are only used in, diabetic neuropathy treatments) -> Opiates (4248ms)
What is neuropathy? the NeuropathyDR logo -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the NeuropathyDR logo, are specialists in, neuropathy) -> the NeuropathyDR logo (4213ms)
What is neuropathy? brain -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (brain, are also fundamentally involved in, neuropathy) -> brain (4213ms)
What is neuropathy? the disruptions -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the disruptions, found in, peripheral neuropathies) -> the disruptions (4205ms)
What is neuropathy? either side -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (either side, is a slide in, neuropathy) -> either side (4239ms)
What is neuropathy? a pathway -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (a pathway, thought to be involved in, diabetic neuropathy) -> a pathway (4222ms)
What is neuropathy? DHA -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (DHA, plays a protective role in, diabetic neuropathy) -> DHA (4239ms)
What is neuropathy? massage -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (massage, may be beneficial in, diabetic neuropathy) -> massage (4231ms)
What is neuropathy? ?Aspartame -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (?Aspartame, is a culprit in, small fiber neuropathy) -> ?Aspartame (4222ms)
What is neuropathy? a cobalamin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (a cobalamin, used in, peripheral neuropathy) -> a cobalamin (4248ms)
What is neuropathy? genetic lesions -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (genetic lesions, resulting in, inherited neuropathy) -> genetic lesions (4205ms)
What is neuropathy? ?The consistency -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (?The consistency, observed differences in, peripheral neuropathy) -> ?The consistency (4213ms)
What is neuropathy? Vitamin B12 deficiency -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Vitamin B12 deficiency, can result in, neuropathies) -> Vitamin B12 deficiency (4204ms)
What is neuropathy? the same medications -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the same medications, are generally used in, neuropathy) -> the same medications (4239ms)
What is neuropathy? Dr. Vinik -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Dr. Vinik, is a leading expert in, neuropathy) -> Dr. Vinik (4248ms)
What is neuropathy? Recent studies -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Recent studies, show improvement in, diabetic neuropathy) -> Recent studies (4239ms)
What is neuropathy? thalidomide -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (thalidomide, may result in, severe peripheral neuropathy) -> thalidomide (4239ms)
What is neuropathy? Schizophrenic diabetic man -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Schizophrenic diabetic man, came in with, peripheral neuropathy) -> Schizophrenic diabetic man (4231ms)
What is neuropathy? Effexor -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Effexor, is also used in treating, diabetic neuropathy) -> Effexor (4231ms)
What is neuropathy? Taxol -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Taxol, include reduction in, peripheral neuropathies and lack) -> Taxol (4222ms)
What is neuropathy? marked improvements -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (marked improvements, were noted in, both peripheral neuropathy) -> marked improvements (4248ms)
What is neuropathy? Pregabalin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Pregabalin, is registered in, diabetic neuropathy patients) -> Pregabalin (4231ms)
What is neuropathy? CMT pain -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (CMT pain, is used in, many painful neuropathies) -> CMT pain (4239ms)
What is neuropathy? a new member -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (a new member, is mutated in, giant axonal neuropathy) -> a new member (4231ms)
What is neuropathy? antidepressants -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (antidepressants, reduce pain in, diabetic neuropathy) -> antidepressants (4239ms)
What is neuropathy? Active oxygen -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Active oxygen, is involved in, many neuropathies and myopathies) -> Active oxygen (4231ms)
What is neuropathy? very uncontrolled diabetes -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (very uncontrolled diabetes, has resulted in, diabetic neuropathy) -> very uncontrolled diabetes (4248ms)
What is neuropathy? connexins -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (connexins, has been implicated in, peripheral neuropathy) -> connexins (4222ms)
What is neuropathy? blood flow -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (blood flow, are more harmful in, glaucomatous optic neuropathy) -> blood flow (4222ms)
What is neuropathy? peripheral neuropathy -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (peripheral neuropathy, occurs in, diabetic neuropathy) -> peripheral neuropathy (4248ms)
What is neuropathy? myo-inositol -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (myo-inositol, may be involved in, diabetic neuropathy) -> myo-inositol (4248ms)
What is neuropathy? premature death -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (premature death, found in, neuropathy) -> premature death (4222ms)
What is neuropathy? relief -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (neuropathy, can be done to get, relief) -> relief (4256ms)
What is neuropathy? a monthly basis -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (neuropathy, should be done on, a monthly basis) -> a monthly basis (4256ms)
What is neuropathy? 2004 -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (The neuropathy study, should be done in, 2004) -> 2004 (4256ms)
What is neuropathy? Intravenous Application -0.111111111111 What is neuropathy? -> $x: (diabetic neuropathy, do, $x) -> (Diabetic Neuropathy, were done via, Intravenous Application) -> Intravenous Application (4256ms)
What is neuropathy? Source -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (Ulnar Neuropathy, DO, Source) -> Source (4256ms)
What is neuropathy? celiac disease and cidp -0.111111111111 What is neuropathy? -> $x: ($x, describe, neuropathy) -> (celiac disease and cidp, described as, small fiber neuropathy) -> celiac disease and cidp (4256ms)
What is neuropathy? Doctors Diagnose Diabetic Neuropathy -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Doctors Diagnose Diabetic Neuropathy (4256ms)
What is neuropathy? a cochlear implant -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (auditory neuropathy, would do badly with, a cochlear implant) -> a cochlear implant (4256ms)
What is neuropathy? a physical challenge -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (The neuropathy, did n?t just produce, a physical challenge) -> a physical challenge (4256ms)
What is neuropathy? a paradox -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (Diabetic somatic neuropathies, do represent, a paradox) -> a paradox (4256ms)
What is neuropathy? foot infections -0.111111111112 What is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (Diabetic neuropathy, is a major risk factor for, foot infections) -> foot infections (4295ms)
What is neuropathy? evaluation -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, are indications for, evaluation) -> evaluation (4273ms)
What is neuropathy? 15 years -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (optic neuropathy, has been following patients for, 15 years) -> 15 years (4273ms)
What is neuropathy? an eye disease -0.111111111112 What is neuropathy? -> $x: ($x, define, neuropathy) -> (an eye disease, is defined as, a characteristic optic neuropathy) -> an eye disease (4295ms)
What is neuropathy? any disorder -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is a general term for, any disorder) -> any disorder (4280ms)
What is neuropathy? foot ulcers -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, are at increased risk for, foot ulcers) -> foot ulcers (4288ms)
What is neuropathy? Abrams -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (Abrams, is now doing, his peripheral neuropathy study) -> Abrams (4280ms)
What is neuropathy? AVAPRO -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (AVAPRO, did make, a neuropathy) -> AVAPRO (4295ms)
What is neuropathy? Cisplatin/Taxol combination -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (Cisplatin/Taxol combination, produces, more neuropathy) -> Cisplatin/Taxol combination (4273ms)
What is neuropathy? a few days post surgery -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (The neuropathy, was completely gone for, a few days post surgery) -> a few days post surgery (4256ms)
What is neuropathy? twenty or thirty other doctors -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (This NEUROPATHY, is for, twenty or thirty other doctors) -> twenty or thirty other doctors (4273ms)
What is neuropathy? a lot -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (a lot, as did, neuropathy) -> a lot (4295ms)
What is neuropathy? disorders -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is a general term for, disorders) -> disorders (4288ms)
What is neuropathy? severity -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (incident peripheral neuropathy and, were graded for, severity) -> severity (4272ms)
What is neuropathy? Isoniazid -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (Isoniazid, produced, 602 % peripheral neuropathy) -> Isoniazid (4256ms)
What is neuropathy? the cortex -0.111111111112 What is neuropathy? -> $x: ($x, define, neuropathy) -> (the cortex, might be defined as, an auditory neuropathy) -> the cortex (4288ms)
What is neuropathy? disease -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is the medical word for, disease) -> disease (4273ms)
What is neuropathy? Early postoperative period -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (Early postoperative period, is characterized by, neuropathies) -> Early postoperative period (4280ms)
What is neuropathy? the ataxia -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is often responsible for, the ataxia) -> the ataxia (4265ms)
What is neuropathy? glaucoma -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (glaucoma, is characterized by, optic neuropathy) -> glaucoma (4288ms)
What is neuropathy? primrose oil -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (primrose oil, do anything for, diabetic neuropathy) -> primrose oil (4280ms)
What is neuropathy? once the four treatments -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (once the four treatments, does, the neuropathy) -> once the four treatments (4273ms)
What is neuropathy? L-OHP -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral sensory neuropathy, was greatest for, L-OHP) -> L-OHP (4265ms)
What is neuropathy? Neuropathy -0.111111111112 What is neuropathy? -> $x: ($x, do, diabetic neuropathy) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Neuropathy (4280ms)
What is neuropathy? the most part -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral Neuropathy, Is For, the most part) -> the most part (4288ms)
What is neuropathy? muscle cramps -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is noted for, muscle cramps) -> muscle cramps (4295ms)
What is neuropathy? damage -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is the term for, damage) -> damage (4288ms)
What is neuropathy? neuropathic pains -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathies, may be causes for, neuropathic pains) -> neuropathic pains (4273ms)
What is neuropathy? a very long time -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, has been present for, a very long time) -> a very long time (4288ms)
What is neuropathy? information -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (This NEUROPATHY, is for, information) -> information (4288ms)
What is neuropathy? alcoholism -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (alcoholic neuropathy, is treatment for, alcoholism) -> alcoholism (4256ms)
What is neuropathy? each group -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (NEUROPATHY, was then determined for, each group) -> each group (4280ms)
What is neuropathy? years -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, has been extremely mild for, years) -> years (4280ms)
What is neuropathy? the maintenance -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (hereditary axonal neuropathy, are critical for, the maintenance) -> the maintenance (4295ms)
What is neuropathy? any type -0.111111111112 What is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (diabetic neuropathy, is generally used for, any type) -> any type (4265ms)
What is neuropathy? Lead toxicity -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (Lead toxicity, produces, a classic motor neuropathy) -> Lead toxicity (4265ms)
What is neuropathy? neuropathic pain -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is another term for, neuropathic pain) -> neuropathic pain (4265ms)
What is neuropathy? The nerve damage -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (The nerve damage, characterizes, diabetic peripheral neuropathy) -> The nerve damage (4280ms)
What is neuropathy? the neck -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (the neck, can produce, SYMPTOMS SENSORY NEUROPATHIES NEUROPATHY) -> the neck (4288ms)
What is neuropathy? amputation -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (?Neuropathy, is the leading cause for, amputation) -> amputation (4265ms)
What is neuropathy? The isoniazid -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (The isoniazid, produced, more peripheral neuropathy) -> The isoniazid (4288ms)
What is neuropathy? the common link -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, is a prime candidate for, the common link) -> the common link (4288ms)
What is neuropathy? Question -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (Question, Does, neuropathy) -> Question (4273ms)
What is neuropathy? each 2200 patient years -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, could be expected for, each 2200 patient years) -> each 2200 patient years (4288ms)
What is neuropathy? neurotoxicity -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (neurotoxicity, is characterized by, an acute neuropathy) -> neurotoxicity (4265ms)
What is neuropathy? physical damage -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is a general term for, physical damage) -> physical damage (4280ms)
What is neuropathy? the feet -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (the feet, is to do with, ?neuropathy?) -> the feet (4273ms)
What is neuropathy? presentation -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Motor Neuropathy Patients, has been accepted for, presentation) -> presentation (4273ms)
What is neuropathy? a few hours -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (my neuropathy, was diminished for, a few hours) -> a few hours (4280ms)
What is neuropathy? treatment -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathies, may be a dose-limiting factor for, treatment) -> treatment (4288ms)
What is neuropathy? cramps -0.111111111112 What is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (diabetic neuropathy, can also be mistaken for, cramps) -> cramps (4280ms)
What is neuropathy? NCS -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (NCS, cannot be done for, autonomic neuropathy) -> NCS (4295ms)
What is neuropathy? Condition -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (Condition, also referred to as, peripheral Neuropathy) -> Condition (4295ms)
What is neuropathy? neuropathy-target-esterase -0.222222222222 What 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)
What is neuropathy? Topics -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (Topics, Find, a Podiatrist , neuropathy and footwear) -> Topics (4303ms)
What is neuropathy? Doctors -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (Doctors, usually refer to, neuropathies) -> Doctors (4310ms)
What is neuropathy? average exposure -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (average exposure, were found to have, neuropathies) -> average exposure (4310ms)
What is neuropathy? the extremities -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (the extremities, referred to as, a peripheral neuropathy) -> the extremities (4295ms)
What is neuropathy? CIDN -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (CIDN, referred to as, hypertrophic neuropathy) -> CIDN (4295ms)
What is neuropathy? NARP syndrome -0.222222222222 What 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)
What is neuropathy? medications -0.222222222222 What is neuropathy? -> $x: ($x, create, neuropathy) -> (medications, create, Neuropathy Saturday) -> medications (4303ms)
What is neuropathy? a statistical association -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (a statistical association, was found between, neuropathy) -> a statistical association (4310ms)
What is neuropathy? The term sensorimotor -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (The term sensorimotor, refers to, neuropathies) -> The term sensorimotor (4310ms)
What is neuropathy? No association -0.222222222222 What is neuropathy? -> $x: ($x, found, diabetic neuropathy) -> (No association, was found between, diabetic neuropathy) -> No association (4303ms)
What is neuropathy? multifocal_motor_neuropathy -0.222222222222 What 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)
What is neuropathy? Giant axonal neuropathy -0.222222222222 What 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)
What is neuropathy? HMSN III -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (HMSN III, refers to, hypertrophic neuropathy) -> HMSN III (4303ms)
What is neuropathy? 486 patients -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (486 patients, referred for, suspected sensory neuropathy) -> 486 patients (4303ms)
What is neuropathy? The other , -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (The other ,, referred to as, autonomic neuropathy) -> The other , (4295ms)
What is neuropathy? nerve damage -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (nerve damage, is also referred to as, neuropathy) -> nerve damage (4303ms)
What is neuropathy? the hands and feet -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (the hands and feet, is referred to as, amyloid neuropathy) -> the hands and feet (4310ms)
What is neuropathy? cednik syndrome -0.222222222222 What 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)
What is neuropathy? feelings -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (feelings, is referred to as, peripheral neuropathy) -> feelings (4303ms)
What is neuropathy? The 5th patient -0.222222222222 What is neuropathy? -> $x: ($x, found, diabetic neuropathy) -> (The 5th patient, was found to suffer from, diabetic neuropathy) -> The 5th patient (4303ms)
What is neuropathy? Auditory Neuropathy -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (Auditory Neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Auditory%20neuropathy) -> Auditory Neuropathy (4303ms)
What is neuropathy? Fixodent zinc poisoning -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Fixodent zinc poisoning, can lead to, neuropathy) -> Fixodent zinc poisoning (4344ms)
What is neuropathy? exposure -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (Diabetic focal neuropathy, is usually brought about by, exposure) -> exposure (4358ms)
What is neuropathy? Severe zinc poisoning -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Severe zinc poisoning, can lead to, neuropathy) -> Severe zinc poisoning (4419ms)
What is neuropathy? ?The main task -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (?The main task, is to identify those with, peripheral neuropathy) -> ?The main task (4398ms)
What is neuropathy? procedures -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (procedures, can lead to, ulnar neuropathy) -> procedures (4368ms)
What is neuropathy? breast cancer -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (breast cancer, can cause, peripheral neuropathy) -> breast cancer (4398ms)
What is neuropathy? Certain chemotherapy drugs -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Certain chemotherapy drugs, can cause, peripheral neuropathy) -> Certain chemotherapy drugs (4390ms)
What is neuropathy? the condition -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the condition, may be due to, inflammatory neuropathy) -> the condition (4398ms)
What is neuropathy? diabetic food neuropathy -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic food neuropathy, is, diabetic neuropathy) -> diabetic food neuropathy (4331ms)
What is neuropathy? past radiation treatment -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (past radiation treatment, is, neuropathy) -> past radiation treatment (4363ms)
What is neuropathy? Vitamin B12 deficiencies -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Vitamin B12 deficiencies, can lead to, peripheral neuropathy) -> Vitamin B12 deficiencies (4317ms)
What is neuropathy? kidney failure -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (kidney failure, can cause, peripheral neuropathy) -> kidney failure (4310ms)
What is neuropathy? a copper deficiency -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (a copper deficiency, can lead to, neuropathy) -> a copper deficiency (4394ms)
What is neuropathy? the body?s cells -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the body?s cells, can treat, diabetic neuropathy) -> the body?s cells (4409ms)
What is neuropathy? Flagyl -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Flagyl, can cause, perephial neuropathy) -> Flagyl (4419ms)
What is neuropathy? deficiency -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (deficiency, is linked to, neuropathy and mental depression) -> deficiency (4317ms)
What is neuropathy? a known result -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (a known result, is indistinguishable from, diabetic neuropathy) -> a known result (4324ms)
What is neuropathy? the medicines -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the medicines, used can have, peripheral neuropathy) -> the medicines (4414ms)
What is neuropathy? a denizen -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (a denizen, is suffering greatly from, diabetic neuropathy) -> a denizen (4381ms)
What is neuropathy? Several factors -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Several factors, have been linked to, auditory neuropathy) -> Several factors (4372ms)
What is neuropathy? mission -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (mission, is to increase public awareness of, neuropathy) -> mission (4344ms)
What is neuropathy? B vitamins and magnesium -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (B vitamins and magnesium, are compromised with, neuropathy) -> B vitamins and magnesium (4414ms)
What is neuropathy? an 8 -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (Feet neuropathy, is about, an 8) -> an 8 (4338ms)
What is neuropathy? the lookout -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the lookout, is, diabetic neuropathy) -> the lookout (4382ms)
What is neuropathy? YASMIN -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (YASMIN, is used to treat, neuropathy) -> YASMIN (4394ms)
What is neuropathy? Contains n-hexane -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Contains n-hexane, can cause, peripheral neuropathy) -> Contains n-hexane (4386ms)
What is neuropathy? Myalgic hyperalgesia -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Myalgic hyperalgesia, may also be secondary to, neuropathy) -> Myalgic hyperalgesia (4405ms)
What is neuropathy? INH -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (INH, can cause, peripheral neuropathy) -> INH (4390ms)
What is neuropathy? The symptom -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (The symptom, is known as, neuropathy) -> The symptom (4421ms)
What is neuropathy? Myeloma patients -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Myeloma patients, can also experience, peripheral neuropathy) -> Myeloma patients (4331ms)
What is neuropathy? dentures -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (dentures, were afflicted with, neuropathy) -> dentures (4377ms)
What is neuropathy? 600 mg/day doses -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (600 mg/day doses, were mainly used for, diabetic neuropathy) -> 600 mg/day doses (4402ms)
What is neuropathy? Lifestyle changes -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Lifestyle changes, can help, peripheral neuropathy) -> Lifestyle changes (4412ms)
What is neuropathy? Neuropathy Severe zinc poisoning -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Neuropathy Severe zinc poisoning, can lead to, neuropathy) -> Neuropathy Severe zinc poisoning (4419ms)
What is neuropathy? Excessive zinc -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Excessive zinc, has been linked to, neuropathy) -> Excessive zinc (4409ms)
What is neuropathy? Blood sugar control -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Blood sugar control, is the only treatment for, neuropathy) -> Blood sugar control (4402ms)
What is neuropathy? Diabetics -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Diabetics, can develop, peripheral neuropathies) -> Diabetics (4412ms)
What is neuropathy? erectile dysfunction -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (erectile dysfunction, is due to, neuropathy) -> erectile dysfunction (4412ms)
What is neuropathy? excellent blood sugar control -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (excellent blood sugar control, can develop, diabetic neuropathy) -> excellent blood sugar control (4368ms)
What is neuropathy? 15 percent -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (Peripheral neuropathy, is found in about, 15 percent) -> 15 percent (4421ms)
What is neuropathy? Cymbalta -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Cymbalta, is used for, Diabetic Neuropathy) -> Cymbalta (4368ms)
What is neuropathy? The muscles -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The muscles, are affected by, diabetic neuropathy) -> The muscles (4398ms)
What is neuropathy? the body organs -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the body organs, can be impacted by, neuropathy) -> the body organs (4412ms)
What is neuropathy? Nerve damage -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Nerve damage, is also called, diabetic neuropathy) -> Nerve damage (4344ms)
What is neuropathy? diabetic foot pain -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic foot pain, is, diabetic neuropathy) -> diabetic foot pain (4350ms)
What is neuropathy? The ultimate aim -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (The ultimate aim, is to prevent, the neuropathy) -> The ultimate aim (4394ms)
What is neuropathy? the peripheral nerves -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the peripheral nerves, are affected due to, neuropathy) -> the peripheral nerves (4402ms)
What is neuropathy? DM20 -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (DM20, is necessary to prevent, neuropathy) -> DM20 (4417ms)
What is neuropathy? autoimmune disorders -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (autoimmune disorders, can cause, peripheral neuropathy) -> autoimmune disorders (4417ms)
What is neuropathy? Steven NEUROPATHY -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Steven NEUROPATHY, was told, NEUROPATHY) -> Steven NEUROPATHY (4377ms)
What is neuropathy? lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (lipoic acid, has been shown to decrease, diabetic neuropathy) -> lipoic acid (4381ms)
What is neuropathy? A common example -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (A common example, is, Diabetic Neuropathy) -> A common example (4405ms)
What is neuropathy? high blood glucose levels -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (high blood glucose levels, is, diabetic neuropathy) -> high blood glucose levels (4381ms)
What is neuropathy? time -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (time, is the key to treating, diabetic neuropathy) -> time (4405ms)
What is neuropathy? A Diabetic -0.222222222223 What is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (A Diabetic, can also acquire, diabetic neuropathy) -> A Diabetic (4398ms)
What is neuropathy? Free radicals -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Free radicals, are hypothesized to, play a role in neuropathy) -> Free radicals (4310ms)
What is neuropathy? Gold chloride -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Gold chloride, has been known to cause, Peripheral Neuropathy) -> Gold chloride (4377ms)
What is neuropathy? neurotrophic agents -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (neurotrophic agents, can be applied to, peripheral neuropathies) -> neurotrophic agents (4324ms)
What is neuropathy? vitamin B12 -0.222222222223 What is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (vitamin B12, may be helpful to, diabetic neuropathy patients) -> vitamin B12 (4394ms)
What is neuropathy? High doses -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (High doses, can cause, peripheral neuropathy) -> High doses (4368ms)
What is neuropathy? the patient -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the patient, is suspected of having, neuropathy) -> the patient (4338ms)
What is neuropathy? paroxetine -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (paroxetine, is effective for, diabetic neuropathy) -> paroxetine (4372ms)
What is neuropathy? the right steps -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the right steps, now can delay, neuropathy) -> the right steps (4358ms)
What is neuropathy? No medical treatments -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (No medical treatments, can cure, peripheral neuropathy) -> No medical treatments (4363ms)
What is neuropathy? B6 -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (B6, is important to control, INH related peripheral neuropathy) -> B6 (4331ms)
What is neuropathy? The reduced blood flow -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (The reduced blood flow, can intensify, neuropathy symptoms) -> The reduced blood flow (4331ms)
What is neuropathy? Primrose evening oil -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Primrose evening oil, is also great for, diabetic neuropathy) -> Primrose evening oil (4390ms)
What is neuropathy? orbital compartment syndrome -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (orbital compartment syndrome, can develop, optic neuropathy) -> orbital compartment syndrome (4350ms)
What is neuropathy? cyclohexane -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (cyclohexane, has been known to cause, a peripheral neuropathy) -> cyclohexane (4390ms)
What is neuropathy? Tricyclic antidepressants -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Tricyclic antidepressants, are known to help, some neuropathies) -> Tricyclic antidepressants (4344ms)
What is neuropathy? the most common distal axonopathy -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the most common distal axonopathy, is, diabetic neuropathy) -> the most common distal axonopathy (4386ms)
What is neuropathy? nerve endings -0.222222222223 What is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (nerve endings, can lead to, diabetic neuropathy) -> nerve endings (4422ms)
What is neuropathy? GLA -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (GLA, may be more effective for, diabetic neuropathy) -> GLA (4405ms)
What is neuropathy? Diabetic Peripheral Neuropathy -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Diabetic Peripheral Neuropathy, is, Neuropathy) -> Diabetic Peripheral Neuropathy (4414ms)
What is neuropathy? half -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (neuropathy, is about, half) -> half (4402ms)
What is neuropathy? Alpha-lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Alpha-lipoic acid, is effectively used to treat, neuropathy) -> Alpha-lipoic acid (4421ms)
What is neuropathy? The cause -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (The cause, was complication of, neuropathy) -> The cause (4405ms)
What is neuropathy? nutrients -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (nutrients, are specifically designed to, address neuropathy) -> nutrients (4377ms)
What is neuropathy? African Americans -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (African Americans, were much more likely to have, neuropathy) -> African Americans (4324ms)
What is neuropathy? 60 -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (60, are most likely to develop, peripheral neuropathy) -> 60 (4421ms)
What is neuropathy? depression -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (depression, is used to treat, chronic pain/neuropathy) -> depression (4317ms)
What is neuropathy? sensation -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (sensation, is limited with, neuropathy) -> sensation (4344ms)
What is neuropathy? Diabetes Mellitus -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Diabetes Mellitus, is, Diabetic Neuropathy) -> Diabetes Mellitus (4422ms)
What is neuropathy? alcohol -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (alcohol, can experience, peripheral neuropathy) -> alcohol (4390ms)
What is neuropathy? smoking and alcohol use -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (smoking and alcohol use, can also lead to, neuropathy) -> smoking and alcohol use (4402ms)
What is neuropathy? feeling -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (feeling, is called, diabetic neuropathy) -> feeling (4386ms)
What is neuropathy? sixth nerve impairment -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (sixth nerve impairment, is, diabetic neuropathy) -> sixth nerve impairment (4358ms)
What is neuropathy? wounds -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (wounds, is, diabetic neuropathy) -> wounds (4412ms)
What is neuropathy? the meeting -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the meeting, was devoted to, Auditory Neuropathy) -> the meeting (4363ms)
What is neuropathy? The heart -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (The heart, is also affected by, neuropathy) -> The heart (4331ms)
What is neuropathy? 19 Nov 2010 , 12:15 AM Diabetics -0.222222222223 What 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)
What is neuropathy? diabetic complication -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic complication, is, diabetic neuropathy) -> diabetic complication (4402ms)
What is neuropathy? Ward?s condition -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Ward?s condition, was diagnosed as, diabetic neuropathy) -> Ward?s condition (4402ms)
What is neuropathy? TRAMADOL -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (TRAMADOL, is used for, Diabetic Neuropathy) -> TRAMADOL (4405ms)
What is neuropathy? the causes -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the causes, could be from, Neuropathy) -> the causes (4386ms)
What is neuropathy? Improved regulation -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Improved regulation, is the best way to reduce, neuropathy) -> Improved regulation (4344ms)
What is neuropathy? Nutritional deficiencies -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Nutritional deficiencies, can cause, peripheral neuropathy) -> Nutritional deficiencies (4405ms)
What is neuropathy? controls -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (controls, cannot be used to rule out, small fiber neuropathy) -> controls (4402ms)
What is neuropathy? a physical exam -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (a physical exam, is used to diagnose, neuropathy) -> a physical exam (4358ms)
What is neuropathy? people with diabetes -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (people with diabetes, can develop, neuropathy) -> people with diabetes (4358ms)
What is neuropathy? severe nerve damage -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (severe nerve damage, was diagnosed with, neuropathy) -> severe nerve damage (4417ms)
What is neuropathy? the longest -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the longest, often are affected by, neuropathy) -> the longest (4417ms)
What is neuropathy? Ward -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Ward, was already suffering from, diabetic neuropathy) -> Ward (4377ms)
What is neuropathy? Velcade -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Velcade, can make, neuropathy) -> Velcade (4358ms)
What is neuropathy? cortical plasticity -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (cortical plasticity, may be related to, neuropathies) -> cortical plasticity (4331ms)
What is neuropathy? no fun -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (no fun, is certainly more temporary than, neuropathy) -> no fun (4419ms)
What is neuropathy? ulcers -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (ulcers, are a common complication of, diabetic neuropathy) -> ulcers (4317ms)
What is neuropathy? the foot -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the foot, is called, neuropathy) -> the foot (4412ms)
What is neuropathy? heel ulcers -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (heel ulcers, are directly related to, peripheral neuropathy) -> heel ulcers (4324ms)
What is neuropathy? IOP evaluation -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (IOP evaluation, is widely used to test for, optic neuropathy) -> IOP evaluation (4372ms)
What is neuropathy? topical pain creams -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (topical pain creams, are, diabetic neuropathy) -> topical pain creams (4394ms)
What is neuropathy? Blindness -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Blindness, as are, diabetic neuropathy) -> Blindness (4419ms)
What is neuropathy? 2011 -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (2011, is, Diabetic Neuropathy) -> 2011 (4368ms)
What is neuropathy? the more common syndromes -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the more common syndromes, are, diabetic neuropathy) -> the more common syndromes (4377ms)
What is neuropathy? The diagnosis -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (The diagnosis, was later altered to, autonomic neuropathy) -> The diagnosis (4394ms)
What is neuropathy? pictures -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (pictures, are classic examples of, diabetic neuropathy) -> pictures (4324ms)
What is neuropathy? the sublimed conceptions -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the sublimed conceptions, are all product of, neuropathy) -> the sublimed conceptions (4386ms)
What is neuropathy? motor function -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (motor function, are impaired from, neuropathy) -> motor function (4377ms)
What is neuropathy? Cancer -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Cancer, can cause, peripheral neuropathy) -> Cancer (4419ms)
What is neuropathy? Hereditary -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Hereditary, are Hereditary, Neuropathies) -> Hereditary (4414ms)
What is neuropathy? The nervous system -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The nervous system, is known as, diabetic neuropathy) -> The nervous system (4386ms)
What is neuropathy? Metronidazole -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Metronidazole, can cause, peripheral neuropathy) -> Metronidazole (4363ms)
What is neuropathy? DCA -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (DCA, may be limited by, neuropathy) -> DCA (4317ms)
What is neuropathy? alpha lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (alpha lipoic acid, is beneficial for, neuropathy) -> alpha lipoic acid (4368ms)
What is neuropathy? Too much B6 -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Too much B6, can cause, peripheral neuropathy) -> Too much B6 (4338ms)
What is neuropathy? 70 years -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (70 years, was diagnosed with, diabetic neuropathy) -> 70 years (4421ms)
What is neuropathy? More serious side effects -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (More serious side effects, can include, neuropathy) -> More serious side effects (4409ms)
What is neuropathy? B12 deficiency -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (B12 deficiency, can lead to varying degrees of, neuropathy) -> B12 deficiency (4390ms)
What is neuropathy? the toes and hands -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the toes and hands, can be signs of, diabetic neuropathy) -> the toes and hands (4409ms)
What is neuropathy? Duloxetine -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Duloxetine, is also used to treat, diabetic neuropathy) -> Duloxetine (4363ms)
What is neuropathy? One example -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (One example, is, diabetic neuropathy) -> One example (4419ms)
What is neuropathy? agents -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (agents, are used for, neuropathy) -> agents (4394ms)
What is neuropathy? deficiencies -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (deficiencies, have also been linked to, peripheral neuropathy) -> deficiencies (4405ms)
What is neuropathy? a larger factor -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (a larger factor, is, neuropathy) -> a larger factor (4350ms)
What is neuropathy? a daily and prolonged basis -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (a daily and prolonged basis, can cause, alcoholic neuropathy) -> a daily and prolonged basis (4338ms)
What is neuropathy? The flagship application -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The flagship application, will be, diabetic neuropathy) -> The flagship application (4402ms)
What is neuropathy? nerve cells -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (nerve cells, is the primary reason for, Diabetic neuropathy) -> nerve cells (4405ms)
What is neuropathy? 17p12 -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (17p12, are associated with, neuropathy) -> 17p12 (4417ms)
What is neuropathy? vincristine and cisplatin -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (vincristine and cisplatin, can cause, peripheral neuropathies) -> vincristine and cisplatin (4386ms)
What is neuropathy? the foot problems -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the foot problems, are primarily a consequence of, neuropathy) -> the foot problems (4390ms)
What is neuropathy? Vitamin B -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Vitamin B, is commonly used to treat, peripheral neuropathy) -> Vitamin B (4419ms)
What is neuropathy? 2009 Nucleus Medical Media -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (2009 Nucleus Medical Media, can cause, peripheral neuropathy) -> 2009 Nucleus Medical Media (4381ms)
What is neuropathy? the organs -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the organs, can be altered by, neuropathy) -> the organs (4390ms)
What is neuropathy? the pain -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the pain, could be due to, neuropathy) -> the pain (4358ms)
What is neuropathy? Old mitochondria -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Old mitochondria, might be responsible for, neuropathy) -> Old mitochondria (4398ms)
What is neuropathy? real , sometimes permanent nerve damage -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (neuropathy, is about, real , sometimes permanent nerve damage) -> real , sometimes permanent nerve damage (4414ms)
What is neuropathy? high blood sugar levels -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (high blood sugar levels, is known as, diabetic neuropathy) -> high blood sugar levels (4337ms)
What is neuropathy? Nerve Damage -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Nerve Damage, is also called, Neuropathy) -> Nerve Damage (4409ms)
What is neuropathy? Nerve damage Diabetes -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Nerve damage Diabetes, can lead to, neuropathy) -> Nerve damage Diabetes (4372ms)
What is neuropathy? such long-term complications -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (such long-term complications, can arise as, neuropathy) -> such long-term complications (4317ms)
What is neuropathy? 2.This formula -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (2.This formula, may also be used for, neuropathy) -> 2.This formula (4398ms)
What is neuropathy? lower back pain -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (lower back pain, is, diabetic neuropathy) -> lower back pain (4412ms)
What is neuropathy? hypomotility -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (hypomotility, is a consequence of, diabetic neuropathy) -> hypomotility (4398ms)
What is neuropathy? muscles -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (muscles, are impacted by, diabetic neuropathy) -> muscles (4409ms)
What is neuropathy? The antibiotics -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (The antibiotics, can have dreadful side effects like, neuropathy) -> The antibiotics (4417ms)
What is neuropathy? Discomfort -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Discomfort, is Brought on by, neuropathy) -> Discomfort (4372ms)
What is neuropathy? Fibromyalgia pain -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Fibromyalgia pain, is similar to, diabetic neuropathy) -> Fibromyalgia pain (4324ms)
What is neuropathy? A PT -0.222222222223 What is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (A PT, can help treat, diabetic neuropathy) -> A PT (4324ms)
What is neuropathy? blood rheology -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (blood rheology, may be relevant to, neuropathy .38,39) -> blood rheology (4409ms)
What is neuropathy? foot ulceration -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (foot ulceration, is usually related to, peripheral neuropathy) -> foot ulceration (4363ms)
What is neuropathy? gastrointestinal tract -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (gastrointestinal tract, is called, neuropathy) -> gastrointestinal tract (4405ms)
What is neuropathy? the person -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the person, is suffering from, neuropathy) -> the person (4386ms)
What is neuropathy? similar symptoms -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (similar symptoms, are, diabetic neuropathy) -> similar symptoms (4394ms)
What is neuropathy? problems -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (problems, is, neuropathy) -> problems (4344ms)
What is neuropathy? Patients -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Patients, are also likely to have, coexisting neuropathy) -> Patients (4331ms)
What is neuropathy? M.D. -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (M.D., is, Neuropathy) -> M.D. (4324ms)
What is neuropathy? The model variables -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (The model variables, were used to classify, neuropathy) -> The model variables (4363ms)
What is neuropathy? nerve compression -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (nerve compression, can help certain types of, neuropathy) -> nerve compression (4372ms)
What is neuropathy? certain genes -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (certain genes, were more likely to develop, diabetic neuropathy) -> certain genes (4409ms)
What is neuropathy? a nerve -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (a nerve, can lead to, neuropathy) -> a nerve (4409ms)
What is neuropathy? Lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (Lipoic acid, has been used to treat, diabetic neuropathy) -> Lipoic acid (4377ms)
What is neuropathy? the first symptom -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the first symptom, is, diabetic neuropathy) -> the first symptom (4317ms)
What is neuropathy? Lead exposure -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Lead exposure, can cause, peripheral neuropathy) -> Lead exposure (4409ms)
What is neuropathy? the hearing results -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the hearing results, may be due to, an auditory neuropathy) -> the hearing results (4381ms)
What is neuropathy? sarcoidosis -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (sarcoidosis, can cause, peripheral neuropathy) -> sarcoidosis (4368ms)
What is neuropathy? The weak hind legs -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The weak hind legs, is called, diabetic neuropathy) -> The weak hind legs (4310ms)
What is neuropathy? anterior optic type -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (anterior optic type, were called, neuropathy) -> anterior optic type (4417ms)
What is neuropathy? anti-nausea medications -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (anti-nausea medications, can increase, neuropathy) -> anti-nausea medications (4414ms)
What is neuropathy? diabetics -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (diabetics, are attributed to, neuropathy) -> diabetics (4417ms)
What is neuropathy? glutamine -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (glutamine, can minimize the severity of, neuropathy) -> glutamine (4412ms)
What is neuropathy? whole grains -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (whole grains, can also help with, neuropathy) -> whole grains (4344ms)
What is neuropathy? numbness or combinations -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (numbness or combinations, is called, diabetic neuropathy) -> numbness or combinations (4368ms)
What is neuropathy? C-peptide -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (C-peptide, can improve, neuropathy) -> C-peptide (4372ms)
What is neuropathy? diagnosis -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (diagnosis, developed, peripheral neuropathy) -> diagnosis (4429ms)
What is neuropathy? Drug -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Drug, induced, neuropathy) -> Drug (4424ms)
What is neuropathy? SCLC -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (SCLC, developed, neuropathies) -> SCLC (4430ms)
What is neuropathy? CIPN ? chemotherapy -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (CIPN ? chemotherapy, induced, peripheral neuropathy) -> CIPN ? chemotherapy (4429ms)
What is neuropathy? Chronic inorganic mercury -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chronic inorganic mercury, induced, peripheral neuropathy) -> Chronic inorganic mercury (4425ms)
What is neuropathy? opiate ULTRAM -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (opiate ULTRAM, could develop, neuropathy) -> opiate ULTRAM (4432ms)
What is neuropathy? heavy drinkers -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (heavy drinkers, develop, peripheral neuropathy) -> heavy drinkers (4425ms)
What is neuropathy? Arsenic -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Arsenic, induced, neuropathy) -> Arsenic (4425ms)
What is neuropathy? a diabetic patient -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (a diabetic patient, may develop, peripheral neuropathy) -> a diabetic patient (4432ms)
What is neuropathy? Hispanics -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (Hispanics, doubled the risk of developing, diabetic neuropathy) -> Hispanics (4432ms)
What is neuropathy? A few diabetic patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (A few diabetic patients, develop, diabetic neuropathy) -> A few diabetic patients (4427ms)
What is neuropathy? more than 12 months -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (more than 12 months, develop, peripheral neuropathy) -> more than 12 months (4431ms)
What is neuropathy? nausea -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (nausea, developed, neuropathy) -> nausea (4427ms)
What is neuropathy? Radiation -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Radiation, induced, optic neuropathy) -> Radiation (4427ms)
What is neuropathy? The drug -0.333333333333 What is neuropathy? -> $x: ($x, side, neuropathy) -> (The drug, has some bothersome side effects such as, neuropathy) -> The drug (4433ms)
What is neuropathy? 18 patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (18 patients, had developed, neuropathy symptoms) -> 18 patients (4427ms)
What is neuropathy? amputation Diabetics -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (amputation Diabetics, often develop, sensory neuropathy) -> amputation Diabetics (4429ms)
What is neuropathy? prolonged periods -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (prolonged periods, developed, severe peripheral neuropathies) -> prolonged periods (4433ms)
What is neuropathy? an 8th grade science teacher -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (an 8th grade science teacher, developed, diabetic neuropathy) -> an 8th grade science teacher (4433ms)
What is neuropathy? Mitchell -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Mitchell, develop, neuropathies) -> Mitchell (4427ms)
What is neuropathy? progressive nerve disease -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (progressive nerve disease, had developed, autonomic neuropathy) -> progressive nerve disease (4424ms)
What is neuropathy? endothelin-1 -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (endothelin-1, Induced, chronic optic neuropathy) -> endothelin-1 (4427ms)
What is neuropathy? Chemo-therapy -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chemo-therapy, induced, peripheral neuropathy) -> Chemo-therapy (4429ms)
What is neuropathy? a taxane -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (a taxane, develop, neuropathy) -> a taxane (4433ms)
What is neuropathy? diabetic patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (diabetic patients, develop, peripheral neuropathy) -> diabetic patients (4432ms)
What is neuropathy? 47 years -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (47 years, developed, a demyelinating neuropathy) -> 47 years (4430ms)
What is neuropathy? Bicycling -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Bicycling, induced, pudendal nerve pressure neuropathy) -> Bicycling (4430ms)
What is neuropathy? Three patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Three patients, developed, grade 2 neuropathy) -> Three patients (4425ms)
What is neuropathy? non-deployed ones -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (non-deployed ones, develop, poly-neuropathy) -> non-deployed ones (4424ms)
What is neuropathy? individuals -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (individuals, developed, sensory neuropathies) -> individuals (4429ms)
What is neuropathy? Lindane -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Lindane, induced, neuropathy) -> Lindane (4427ms)
What is neuropathy? long-standing diabetes -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (long-standing diabetes, may develop, diabetic neuropathy) -> long-standing diabetes (4430ms)
What is neuropathy? chemo -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (chemo, induced, neuropathy) -> chemo (4432ms)
What is neuropathy? Certain chemotherapies -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Certain chemotherapies, can induce, severe , painful neuropathy) -> Certain chemotherapies (4432ms)
What is neuropathy? About half of people with diabetes -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (About half of people with diabetes, develop, diabetic neuropathy) -> About half of people with diabetes (4427ms)
What is neuropathy? HIV -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (HIV, may increase the risk of developing, peripheral neuropathy) -> HIV (4430ms)
What is neuropathy? Chronic inorganic -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chronic inorganic, induced, peripheral neuropathy) -> Chronic inorganic (4433ms)
What is neuropathy? the course -0.333333333333 What is neuropathy? -> $x: ($x, comprise, neuropathy) -> (the course, comprise, a relapsing and asymmetrical neuropathy) -> the course (4430ms)
What is neuropathy? Alcohol -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Alcohol, induced, neuropathy) -> Alcohol (4429ms)
What is neuropathy? enough regular sleep -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (enough regular sleep, can develop, ischemic optic neuropathy) -> enough regular sleep (4433ms)
What is neuropathy? 78 -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (78, has developed, neuropathy) -> 78 (4432ms)
What is neuropathy? Acute Pyridoxine -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Acute Pyridoxine, induced, Sensory Neuropathy and Recovery) -> Acute Pyridoxine (4431ms)
What is neuropathy? Occasionally people -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Occasionally people, also develop this type of, neuropathy) -> Occasionally people (4430ms)
What is neuropathy? subjects -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (subjects, developed, peripheral neuropathy) -> subjects (4432ms)
What is neuropathy? more people -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (more people, are developing, peripheral neuropathy) -> more people (4430ms)
What is neuropathy? hepatitis C patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (hepatitis C patients, will develop, peripheral neuropathy) -> hepatitis C patients (4430ms)
What is neuropathy? different health and medical conditions -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (different health and medical conditions, develop, neuropathy) -> different health and medical conditions (4430ms)
What is neuropathy? the male patient -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (the male patient, developed, a partial neuropathy) -> the male patient (4425ms)
What is neuropathy? a patient -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (a patient, then developed, median neuropathy) -> a patient (4432ms)
What is neuropathy? health and medical ailments -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (health and medical ailments, develop, neuropathy) -> health and medical ailments (4424ms)
What is neuropathy? HIV patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (HIV patients, developed, peripheral neuropathy) -> HIV patients (4432ms)
What is neuropathy? Myers -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Myers, developed, neuropathy) -> Myers (4424ms)
What is neuropathy? environmental toxins -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (environmental toxins, frequently develop, neuropathy) -> environmental toxins (4424ms)
What is neuropathy? Jackson -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Jackson, developed, peripheral neuropathy) -> Jackson (4425ms)
What is neuropathy? lupus -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (lupus, develop, steroid-induced neuropathies) -> lupus (4432ms)
What is the age of our solar system? 500 billion weeks 0.555555555555 What 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)
What is the age of our solar system? 4.55 billion years 0.555555555555 What 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)
What is the age of our solar system? more than 4.5 billion years 0.555555555555 What 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)
What is the age of our solar system? a brand -0.333333333331 What 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)
What is the age of our solar system? Tileform UK -0.333333333331 What 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)
What is the age of our solar system? Pluto -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Pluto, was considered, the Solar System) -> Pluto (921ms)
What is the age of our solar system? The district -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (The district, is considering installing, solar systems) -> The district (921ms)
What is the age of our solar system? Solar technology -0.444444444443 What 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)
What is the age of our solar system? the Moon -0.444444444443 What 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)
What is the age of our solar system? the Earth -0.444444444443 What 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)
What is the age of our solar system? Mars -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Mars, are also considered, Inner Solar System Missions) -> Mars (921ms)
What is the age of our solar system? Japan -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Japan, is still considering, a giant solar energy system) -> Japan (921ms)
What is the age of our solar system? ?These space balls -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (?These space balls, look like, small meteorites) -> ?These space balls (1661ms)
What is the age of our solar system? Furnace and smelter slag -0.6666666666650001 What 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)
What is the age of our solar system? terrestrial rocks -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (terrestrial rocks, look like, lunar meteorites) -> terrestrial rocks (1661ms)
What is the age of our solar system? the ship -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (the ship, looked like, a meteorite) -> the ship (1661ms)
What is the age of our solar system? Gotenks -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (Gotenks, looks like, a huge meteorite crater) -> Gotenks (1661ms)
What is the age of our solar system? 13-year-olds -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (13-year-olds, looked like, a meteorite streak) -> 13-year-olds (1661ms)
What is the age of our solar system? the piece -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (the piece, looks a little bit like, a meteorite) -> the piece (1661ms)
What is the age of our solar system? Paul ? April 10 , 2012 @ 1:49 pm Pluto -0.7777777777770001 What 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)
What is the age of our solar system? The largest asteroids -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The largest asteroids, were considered, planets) -> The largest asteroids (2091ms)
What is the age of our solar system? the subject -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the subject, should be considered, a planet) -> the subject (2091ms)
What is the age of our solar system? large enough -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (large enough, was once also considered, a ?planet ?) -> large enough (2083ms)
What is the age of our solar system? the continuing debate -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the continuing debate, should be considered, a planet) -> the continuing debate (2090ms)
What is the age of our solar system? the moon -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the moon, are often considered, planets) -> the moon (2086ms)
What is the age of our solar system? Jupiter and Chiron -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Jupiter and Chiron, also are considered, masculine planets) -> Jupiter and Chiron (1661ms)
What is the age of our solar system? the city -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the city, is considered to be, the planet) -> the city (2088ms)
What is the age of our solar system? universes Pluto -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (universes Pluto, is still considered, a planet) -> universes Pluto (2088ms)
What is the age of our solar system? the sun -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the sun, is considered, a planet) -> the sun (2088ms)
What is the age of our solar system? Mars and Saturn -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Mars and Saturn, were considered, malevolent planets) -> Mars and Saturn (2090ms)
What is the age of our solar system? a protosolar disc -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (a protosolar disc, are considered to be, planets) -> a protosolar disc (2093ms)
What is the age of our solar system? Venus and Jupiter -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Venus and Jupiter, are considered, auspicious planets) -> Venus and Jupiter (2080ms)
What is the age of our solar system? The Arctic -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The Arctic, is considered to be, the planet) -> The Arctic (2083ms)
What is the age of our solar system? Neptune -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Neptune, is considered, the planet) -> Neptune (2083ms)
What is the age of our solar system? larger then mercury -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (larger then mercury, is considered as, a planet) -> larger then mercury (2080ms)
What is the age of our solar system? even these largest asteroids -0.7777777777770001 What 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)
What is the age of our solar system? Uranus -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Uranus, is considered, the planet) -> Uranus (2090ms)
What is the age of our solar system? Pluto , Ceres and Eris -0.7777777777770001 What 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)
What is the age of our solar system? the main-belt asteroids -0.7777777777770001 What 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)
What is the age of our solar system? The two luminaries -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The two luminaries, are considered, the personal planets) -> The two luminaries (2080ms)
What is the age of our solar system? the Sun -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the Sun, are too small to be considered, planets) -> the Sun (2083ms)
What is the age of our solar system? Brown dwarfs -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Brown dwarfs, are too massive to be considered, planets) -> Brown dwarfs (2091ms)
What is the age of our solar system? Cloud Computing -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Cloud Computing, be considered consequential on, a planet) -> Cloud Computing (2088ms)
What is the age of our solar system? the tropical forests -0.7777777777770001 What 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)
What is the age of our solar system? Ray Ozzie -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ray Ozzie, is considered one of, the planet) -> Ray Ozzie (2080ms)
What is the age of our solar system? the asteroid Ceres -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the asteroid Ceres, was considered, a planet) -> the asteroid Ceres (2083ms)
What is the age of our solar system? Xena -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Xena, might be considered, a planet) -> Xena (2088ms)
What is the age of our solar system? Venus -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Venus, is considered to be, the planet) -> Venus (2093ms)
What is the age of our solar system? The sun and moon -0.7777777777770001 What 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)
What is the age of our solar system? Rahu Ketu -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Rahu Ketu, are considered, shadow planets) -> Rahu Ketu (2086ms)
What is the age of our solar system? a debate -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (a debate, should be considered, a planet) -> a debate (2080ms)
What is the age of our solar system? The TPO tile -0.7777777777770001 What 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)
What is the age of our solar system? Saturn -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Saturn, was considered, the planet) -> Saturn (2086ms)
What is the age of our solar system? the solar system -0.7777777777770001 What 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)
What is the age of our solar system? Cristal Mountain National Park -0.7777777777770001 What 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)
What is the age of our solar system? Ceres , Pluto and Eris -0.7777777777770001 What 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)
What is the age of our solar system? Ireland -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ireland, is considered to have, this Planet?s) -> Ireland (2086ms)
What is the age of our solar system? Ceres -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres, is considered, a dwarf planet) -> Ceres (2088ms)
What is the age of our solar system? the ideal compensation -0.7777777777770001 What 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)
What is the age of our solar system? Ceres and Vesta -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres and Vesta, were considered, planets) -> Ceres and Vesta (2083ms)
What is the age of our solar system? the Sun and Moon -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the Sun and Moon, are considered, planets) -> the Sun and Moon (2088ms)
What is the age of our solar system? Nike -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Nike, is considered, the planet leading supplier) -> Nike (2091ms)
What is the age of our solar system? Jupiter -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Jupiter, is considered, a transpersonal , societal planet) -> Jupiter (2091ms)
What is the age of our solar system? Mars and Ketu -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Mars and Ketu, are considered, malefic planets) -> Mars and Ketu (1661ms)
What is the age of our solar system? three -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (three, are considered, dwarf planets) -> three (2090ms)
What is the age of our solar system? mercury -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (mercury, is considered, an inauspicious planet) -> mercury (2088ms)
What is the age of our solar system? a few days -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (a few days, was considered, a planet) -> a few days (2080ms)
What is the age of our solar system? Sun-like stars -0.7777777777770001 What 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)
What is the age of our solar system? Earth -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Earth, is considered, a young planet) -> Earth (2080ms)
What is the age of our solar system? Eris -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Eris, is considered, a dwarf planet) -> Eris (2086ms)
What is the age of our solar system? the 18th and 19th centuries Chiron -0.7777777777770001 What 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)
What is the age of our solar system? the King -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the King, was considered to be, the planet) -> the King (2080ms)
What is the age of our solar system? Moon -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Moon, is considered, the quickest relocating planet) -> Moon (2093ms)
What is the age of our solar system? The Congo Basin Forest -0.7777777777770001 What 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)
What is the age of our solar system? the atom -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (the atom, looked like, a solar system) -> the atom (2094ms)
What is the age of our solar system? the device -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (the device, looks like, a solar system) -> the device (2093ms)
What is the age of our solar system? atoms -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (atoms, look a lot like, our solar system) -> atoms (2093ms)
What is the age of our solar system? The map -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (The map, looks like, a solar system) -> The map (2093ms)
What is the age of our solar system? The atom -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (The atom, looks like, a miniature solar system) -> The atom (2093ms)
What is the age of our solar system? Orion -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (Orion, will look nothing like, our own solar system) -> Orion (2093ms)
What is the age of our solar system? an atom -0.888888888886 What 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)
What is the age of our solar system? existence -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (existence, look like in, the Solar System) -> existence (2093ms)
What is the age of our solar system? 50 % -0.888888888888 What is the age of our solar system? -> $x: ($x, die from, planet) -> (50 %, die from, glaciation 545 Planets) -> 50 % (2094ms)
What is the age of our solar system? the discs -1.22222222222 What 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)
What is the age of our solar system? the wake -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the wake, looked like, a planet-size jellyfish) -> the wake (2099ms)
What is the age of our solar system? the symbol -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the symbol, looked like, a planet) -> the symbol (2094ms)
What is the age of our solar system? a little green alien -1.22222222222 What 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)
What is the age of our solar system? Enceladus -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Enceladus, looks like, a planet) -> Enceladus (2096ms)
What is the age of our solar system? The pictures -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The pictures, look like, another planet) -> The pictures (2098ms)
What is the age of our solar system? each planet -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (each planet, looks like, the planet) -> each planet (2094ms)
What is the age of our solar system? deviantART Nebula and gas/dust -1.22222222222 What 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)
What is the age of our solar system? the night sky -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the night sky, look like from, a planet) -> the night sky (2097ms)
What is the age of our solar system? the center -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the center, looked like, a planet) -> the center (2096ms)
What is the age of our solar system? the picture -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the picture, looked like, a frozen alien planet) -> the picture (2098ms)
What is the age of our solar system? the Jupiter -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the Jupiter, looks exactly like, the Planet) -> the Jupiter (2094ms)
What is the age of our solar system? the light -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the light, looked like, a planet) -> the light (2098ms)
What is the age of our solar system? the fella -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the fella, looks like, a planet-side 50) -> the fella (2098ms)
What is the age of our solar system? Wales -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Wales, look enough like, alien planets) -> Wales (2099ms)
What is the age of our solar system? images -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (images, looks like, a planet) -> images (2099ms)
What is the age of our solar system? amazing good job -1.22222222222 What 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)
What is the age of our solar system? times Earth -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (times Earth, looks like, a completely alien planet) -> times Earth (2097ms)
What is the age of our solar system? United States -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (United States, Looks like, another planet) -> United States (2096ms)
What is the age of our solar system? the model of each planet -1.22222222222 What 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)
What is the age of our solar system? a dull nebula -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a dull nebula, looks like, a fading planet) -> a dull nebula (2096ms)
What is the age of our solar system? a mural -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a mural, looked like, a very florid alien planet) -> a mural (2096ms)
What is the age of our solar system? landscapes -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (landscapes, look like, our planet) -> landscapes (2096ms)
What is the age of our solar system? God -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (God, looks like on, planet earth) -> God (2096ms)
What is the age of our solar system? the bigger coloured circles -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the bigger coloured circles, look like, planets) -> the bigger coloured circles (2097ms)
What is the age of our solar system? bright shades -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (bright shades, looks a bit like, the planet) -> bright shades (2098ms)
What is the age of our solar system? A framework -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (A framework, seems to look like, a planet) -> A framework (2099ms)
What is the age of our solar system? the UFO -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the UFO, looks like, a planet) -> the UFO (2097ms)
What is the age of our solar system? astronomers -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (astronomers, looks like, a planet) -> astronomers (2096ms)
What is the age of our solar system? plants -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (plants, may look like on, different planets) -> plants (2099ms)
What is the age of our solar system? the crater -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the crater, looks like, another planet) -> the crater (2099ms)
What is the age of our solar system? Pandora -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Pandora, looks like, a supergiant planet) -> Pandora (2098ms)
What is the age of our solar system? the landscape -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the landscape, looked like, another planet) -> the landscape (2099ms)
What is the age of our solar system? Loading comments -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Loading comments, looks like, a whole different planet) -> Loading comments (2097ms)
What is the age of our solar system? a stock image -1.22222222222 What 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)
What is the age of our solar system? 20 May 2011 -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (20 May 2011, Just looks like, another planet) -> 20 May 2011 (2099ms)
What is the age of our solar system? a dark ring -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a dark ring, looked like, the planet) -> a dark ring (2098ms)
What is the age of our solar system? semi-stereographic projection -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (semi-stereographic projection, looks like, a small planet) -> semi-stereographic projection (2098ms)
What is the age of our solar system? The city -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The city, looks like, the Ice Planet Hoth) -> The city (2099ms)
What is the age of our solar system? The rocks and cliffs -1.22222222222 What 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)
What is the age of our solar system? 12 semi-precious gemstones -1.22222222222 What 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)
What is the age of our solar system? the tundra -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the tundra, looked like, the planet) -> the tundra (2099ms)
What is the age of our solar system? a red circle -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a red circle, looks like, a red planet) -> a red circle (2099ms)
What is the age of our solar system? a place -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a place, looked like, another planet) -> a place (2098ms)
What is the age of our solar system? comments -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (comments, looks like, home planet chunter) -> comments (2099ms)
What is the age of our solar system? The semiprecious gemstones -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The semiprecious gemstones, look like, the planets) -> The semiprecious gemstones (2099ms)
What is the age of our solar system? the pomelo -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the pomelo, looks like, a planet) -> the pomelo (2096ms)
What is the age of our solar system? little more -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (little more, looked like, another planet) -> little more (2098ms)
What is the age of our solar system? the middle -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the middle, looked like, a star or planet) -> the middle (2099ms)
What is the age of our solar system? an idea -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (an idea, has looked like on, the planet) -> an idea (2094ms)
What is the age of our solar system? orange jasper rounds -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (orange jasper rounds, looks like, the planet Jupiter) -> orange jasper rounds (2098ms)
What is the age of our solar system? at least a place -1.22222222222 What 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)
What is the age of our solar system? the periods -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the periods, looked like, little ringed planets) -> the periods (2099ms)
What is the age of our solar system? the unique valleys -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the unique valleys, look like, another planet) -> the unique valleys (2099ms)
What is the age of our solar system? the land -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the land, looks like, another planet) -> the land (2099ms)
What is the age of our solar system? Helen Bonham Carter -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Helen Bonham Carter, look like in, Planet) -> Helen Bonham Carter (2097ms)
What is the age of our solar system? Cydonia -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Cydonia, looks like, a Planet) -> Cydonia (2096ms)
What is the age of our solar system? Steven Tyler -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Steven Tyler, looks like, he is from another planet) -> Steven Tyler (2098ms)
What is the age of our solar system? deviantART Details Submitted -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART Details Submitted, Looks like, a planet) -> deviantART Details Submitted (2096ms)
What is the age of our solar system? one boy -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (one boy, look like on, another planet) -> one boy (2099ms)
What is the age of our solar system? sky -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (sky, looked like, white planets) -> sky (2099ms)
What is the age of our solar system? the coconut -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the coconut, looked like, a planet) -> the coconut (2097ms)
What is the age of our solar system? the horizon -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the horizon, look like, a planet) -> the horizon (2099ms)
What is the age of our solar system? The place -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The place, looks like, a different planet) -> The place (2099ms)
What is the age of our solar system? a lovely picture -1.22222222222 What 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)
What is the age of our solar system? the eyes -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the eyes, look like, Planets) -> the eyes (2096ms)
What is the age of our solar system? the word -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the word, looks like, another planet) -> the word (2097ms)
What is the age of our solar system? the mouse -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the mouse, looks like, a cratered planet) -> the mouse (2096ms)
What is the age of our solar system? the goal -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the goal, might look like on, another planet) -> the goal (2098ms)
What is the age of our solar system? deviantART -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART, kinda looks like, planets) -> deviantART (2097ms)
What is the age of our solar system? Eleven more gemstone beads -1.22222222222 What 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)
What is the age of our solar system? john -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (john, looks like, LittleBigPlanet) -> john (2097ms)
What is the age of our solar system? the symptoms and life situations -1.22222222222 What 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)
When was CNN's first broadcast? The interview -1.333333333329 When was CNN's first broadcast? -> $x: ($x, first broadcast, cnn) -> (The interview, was first broadcast on, CNN) -> The interview (511ms)
When was CNN's first broadcast? Selma -1.333333333329 When was CNN's first broadcast? -> $x: ($x, first broadcast, cnn) -> (Selma, was first broadcast globally on, CNN) -> Selma (511ms)
What movies did Judi Dench play in? Rodgers and Hart?s 1.0000056338554941E-12 What 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)
What movies did Judi Dench play in? Look Back in Anger 1.0000056338554941E-12 What movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, Films directed, Look Back in Anger) -> Look Back in Anger (948ms)
What movies did Judi Dench play in? The Boys 1.0000056338554941E-12 What movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (1990 Judi Dench, directs, The Boys) -> The Boys (948ms)
What movies did Judi Dench play in? Cary Fukunaga 1.0000056338554941E-12 What movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, is directed by, Cary Fukunaga) -> Cary Fukunaga (948ms)
What movies did Judi Dench play in? 2010-05-09 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Original air date, 2010-05-09) -> 2010-05-09 (1079ms)
What movies did Judi Dench play in? 2003-11-15 -0.11111111111 What 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)
What movies did Judi Dench play in? only eight minutes -0.11111111111 What 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)
What movies did Judi Dench play in? 2005 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench : scenes from my life, Publication date, 2005) -> 2005 (949ms)
What movies did Judi Dench play in? 1934-12-09 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Date of birth, 1934-12-09) -> 1934-12-09 (948ms)
What movies did Judi Dench play in? 2012-10-26 -0.11111111111 What 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)
What movies did Judi Dench play in? 1998-11-26 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Original air date, 1998-11-26) -> 1998-11-26 (1079ms)
What movies did Judi Dench play in? 1998 -0.11111111111 What 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)
What movies did Judi Dench play in? 2009-12-18 -0.11111111111 What 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)
What movies did Judi Dench play in? 2002-03-09 -0.11111111111 What 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)
What movies did Judi Dench play in? 2012-02-10 -0.11111111111 What 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)
What movies did Judi Dench play in? 1995-10-29 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Dame Judi Dench, Original air date, 1995-10-29) -> 1995-10-29 (1079ms)
What movies did Judi Dench play in? 2013-03-01 -0.11111111111 What 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)
What movies did Judi Dench play in? 1978-10-18 -0.11111111111 What 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)
What movies did Judi Dench play in? 2009-12-16 -0.11111111111 What 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)
What movies did Judi Dench play in? the movie -0.222222222221 What movies did Judi Dench play in? -> $x: (judi dench, play in, $x) -> (( Judi Dench, played her so tenderly in, the movie) -> the movie (1091ms)
What is the oldest sports trophy? the next best -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the next best, will play for, third place plate trophy) -> the next best (2116ms)
What is the oldest sports trophy? Cote d'Ivoire -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Cote d'Ivoire, will be playing for, the trophies and awards) -> Cote d'Ivoire (2116ms)
What is the oldest sports trophy? The victor -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The victor, plays for, the trophy) -> The victor (2115ms)
What is the oldest sports trophy? the young musician -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the young musician, started to play for, trophies) -> the young musician (2115ms)
What is the oldest sports trophy? Slow Club 0 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Slow Club 0, plays, Trophy Room) -> Slow Club 0 (2117ms)
What is the oldest sports trophy? The remaining teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The remaining teams, play off for, the Amateur League Trophy) -> The remaining teams (2111ms)
What is the oldest sports trophy? the two teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two teams, played for, the KA Auty trophy) -> the two teams (2117ms)
What is the oldest sports trophy? Newport -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Newport, play in, the FA Trophy final) -> Newport (2113ms)
What is the oldest sports trophy? Goblin Spelunkers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Goblin Spelunkers, opted to play, Trophy Hunter) -> Goblin Spelunkers (2111ms)
What is the oldest sports trophy? Sand Grain Studios -0.555555555564 What 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)
What is the oldest sports trophy? Ganguly -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Ganguly, has played, two Ranji Trophy finals) -> Ganguly (2111ms)
What is the oldest sports trophy? The teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The teams, are playing for, the trophy) -> The teams (2117ms)
What is the oldest sports trophy? Juniors -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Juniors, will play for, trophies) -> Juniors (2113ms)
What is the oldest sports trophy? the Steelers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Steelers, will play for, the NFL trophy) -> the Steelers (2110ms)
What is the oldest sports trophy? 3 players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (3 players, had played, Ranji Trophy cricket) -> 3 players (2110ms)
What is the oldest sports trophy? Pujara -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Pujara, played, four Ranji Trophy) -> Pujara (2115ms)
What is the oldest sports trophy? Badgers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Badgers, play, two trophy games) -> Badgers (2115ms)
What is the oldest sports trophy? the regular season -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the regular season, will play for, the final trophy) -> the regular season (2116ms)
What is the oldest sports trophy? The two teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The two teams, play for, the Wilford Moore Trophy) -> The two teams (2117ms)
What is the oldest sports trophy? The children -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The children, will play for, trophies) -> The children (2113ms)
What is the oldest sports trophy? ? Fort Peck -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (? Fort Peck, has developed into, a trophy walleye fishery) -> ? Fort Peck (2115ms)
What is the oldest sports trophy? Muhammad Rizwan -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Muhammad Rizwan, played well in, Qaid e Azam trophy) -> Muhammad Rizwan (2117ms)
What is the oldest sports trophy? the best Jose -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the best Jose, has played since, his Hart Trophy) -> the best Jose (2114ms)
What is the oldest sports trophy? Israel -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Israel, began developing, the Trophy) -> Israel (2114ms)
What is the oldest sports trophy? 1946 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (1946, was played for, the Barclay Trophy) -> 1946 (2114ms)
What is the oldest sports trophy? An LXR affiliate -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (An LXR affiliate, developed, the trophy building) -> An LXR affiliate (2110ms)
What is the oldest sports trophy? the Sox and Cubs -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Sox and Cubs, are playing for, a trophy) -> the Sox and Cubs (1803ms)
What is the oldest sports trophy? Terrelle Pryor -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Terrelle Pryor, played like, a Heisman Trophy candidate) -> Terrelle Pryor (2117ms)
What is the oldest sports trophy? four games -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (four games, play for, a trophy) -> four games (2116ms)
What is the oldest sports trophy? VfL Gummersbach -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (VfL Gummersbach, will play for, the CL trophy) -> VfL Gummersbach (2110ms)
What is the oldest sports trophy? Every player -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Every player, plays for, trophies) -> Every player (2114ms)
What is the oldest sports trophy? the team -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the team, played in, the Berlusconi Trophy) -> the team (2110ms)
What is the oldest sports trophy? the boss -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the boss, play, their much-delayed FA Trophy clash) -> the boss (1836ms)
What is the oldest sports trophy? a cricketer -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a cricketer, played, Ranji Trophy) -> a cricketer (1803ms)
What is the oldest sports trophy? Godfrey Poku -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Godfrey Poku, played in, the Trophy) -> Godfrey Poku (2069ms)
What is the oldest sports trophy? Joe Maddon -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Joe Maddon, play chess for, the trophy) -> Joe Maddon (2115ms)
What is the oldest sports trophy? Murray -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Murray, might play his way into, a Heisman Trophy) -> Murray (2113ms)
What is the oldest sports trophy? Milford Haven Golf Club -0.555555555564 What 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)
What is the oldest sports trophy? Activision -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Activision, Game Versions Developed, Cabela's GrandSlam Hunting: 2004 Trophies) -> Activision (2110ms)
What is the oldest sports trophy? Maple Leaf Gardens -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Maple Leaf Gardens, played host to, both trophy presentations) -> Maple Leaf Gardens (2110ms)
What is the oldest sports trophy? Communist officials -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Communist officials, developed their own case of, ?trophy mania) -> Communist officials (2114ms)
What is the oldest sports trophy? Players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Players, will be playing with, trophies) -> Players (2111ms)
What is the oldest sports trophy? a pro-style offense -0.555555555564 What 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)
What is the oldest sports trophy? Not everyone -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Not everyone, to play for, the big trophy) -> Not everyone (2069ms)
What is the oldest sports trophy? QB Russell Wilson -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (QB Russell Wilson, can make a play for, the Heisman) -> QB Russell Wilson (2111ms)
What is the oldest sports trophy? Lennie Moore -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Lennie Moore, Game Versions Developed, Rocky Mountain Trophy Hunter) -> Lennie Moore (2069ms)
What is the oldest sports trophy? Singapore -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Singapore, played in, the first ACC Trophy) -> Singapore (2111ms)
What is the oldest sports trophy? Sunstorm Interactive -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Sunstorm Interactive, Games Developed, Rocky Mountain Trophy Hunter) -> Sunstorm Interactive (2117ms)
What is the oldest sports trophy? more details -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (more details, played further roles beyond, trophies) -> more details (2110ms)
What is the oldest sports trophy? the teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the teams, play tonsil hockey with, the trophy) -> the teams (2117ms)
What is the oldest sports trophy? Kyle Orton -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Kyle Orton, made a strong play for, the Heisman) -> Kyle Orton (1836ms)
What is the oldest sports trophy? Polyphony Digital -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Polyphony Digital, Game Versions Developed, Tourist Trophy) -> Polyphony Digital (2115ms)
What is the oldest sports trophy? Bugbear Entertainment -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Bugbear Entertainment, Game Versions Developed, Rally Trophy) -> Bugbear Entertainment (2116ms)
What is the oldest sports trophy? Keith -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Keith, played like, a Norris Trophy winner) -> Keith (2113ms)
What is the oldest sports trophy? Neko Entertainment -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Neko Entertainment, Game Versions Developed, Mouse Trophy) -> Neko Entertainment (2114ms)
What is the oldest sports trophy? more than 250 golfers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (more than 250 golfers, play for, the Eden Trophy) -> more than 250 golfers (2116ms)
What is the oldest sports trophy? 20 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (20, played outstandingly at, the Samsung Champions Trophy) -> 20 (2117ms)
What is the oldest sports trophy? McCoy -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (McCoy, play well?, Heisman voters) -> McCoy (2110ms)
What is the oldest sports trophy? the Earth -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Earth, play, a major trophy) -> the Earth (2113ms)
What is the oldest sports trophy? Everybody -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Everybody, plays football to, win medals and trophies) -> Everybody (2114ms)
What is the oldest sports trophy? Milan , Inter and Juve -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Milan , Inter and Juve, are playing, the TIM Trophy) -> Milan , Inter and Juve (2116ms)
What is the oldest sports trophy? January Zagrab -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (January Zagrab, plays host to, the Snow queen trophy) -> January Zagrab (2116ms)
What is the oldest sports trophy? Simon -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Simon, played for, a trophy) -> Simon (1803ms)
What is the oldest sports trophy? the field -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the field, will be playing for, the ?Dave Sievwright Trophy?) -> the field (1836ms)
What is the oldest sports trophy? TJ -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (TJ, was playing on, Heisman level) -> TJ (2113ms)
What is the oldest sports trophy? a high school team -0.555555555564 What 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)
What is the oldest sports trophy? Wilkinson Blades -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Wilkinson Blades, also play at, Trophy?s 3pm) -> Wilkinson Blades (2115ms)
What is the oldest sports trophy? the two -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two, have played each other for, the trophy) -> the two (2110ms)
What is the oldest sports trophy? Henson -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Henson, plays, Heisman Trophy winner Jim Brown) -> Henson (2113ms)
What is the oldest sports trophy? The top four players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The top four players, played for, a tournament trophy) -> The top four players (2117ms)
What is the oldest sports trophy? The Idol Toss -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The Idol Toss, plays a bit like, the Trophy Lottery) -> The Idol Toss (2117ms)
What is the oldest sports trophy? the advice -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the advice, play this game with, the more challenging trophies) -> the advice (2069ms)
What is the oldest sports trophy? The actress -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The actress, plays, a trophy wife) -> The actress (2110ms)
What is the oldest sports trophy? bowlers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (bowlers, play for, trophies) -> bowlers (2114ms)
What is the oldest sports trophy? cricketers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (cricketers, first played, Ranji Trophy) -> cricketers (1837ms)
What is the oldest sports trophy? the two top teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two top teams, play off for, the trophy) -> the two top teams (2116ms)
What is the oldest sports trophy? teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (teams, play each other for, the Championship trophy) -> teams (2114ms)
What is the oldest sports trophy? the Council -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Council, played for, this prestigious trophy) -> the Council (2110ms)
What is the oldest sports trophy? 250 golfers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (250 golfers, play for, the Eden trophy) -> 250 golfers (2111ms)
What is the oldest sports trophy? 1.5 Determine the teams -0.555555555564 What 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)
What is the oldest sports trophy? the Rafael -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (the Rafael, developed, Trophy APS.) -> the Rafael (2069ms)
What is the oldest sports trophy? Krisalis Software -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Krisalis Software, Game Versions Developed, World Trophy Soccer) -> Krisalis Software (2111ms)
What is the oldest sports trophy? Chippenham -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Chippenham, are now playing in, the Trophy) -> Chippenham (1803ms)
What is the oldest sports trophy? 2 players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (2 players, to play, Trophy) -> 2 players (2111ms)
What is the oldest sports trophy? Magic Wand Productions -0.555555555564 What 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)
What is the oldest sports trophy? Appaloosa Interactive -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Appaloosa Interactive, Game Versions Developed, Rick Davis's World Trophy Soccer) -> Appaloosa Interactive (2116ms)
What is the oldest sports trophy? the last salsa -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the last salsa, was played to win, the much coveted trophy) -> the last salsa (1837ms)
What is the oldest sports trophy? a break -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a break, played in, the Deodhar Trophy) -> a break (1803ms)
What is the oldest sports trophy? XV -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (XV, played for, four trophies) -> XV (2110ms)
What is the oldest sports trophy? a few high-profile athletes -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a few high-profile athletes, play for, our trophies) -> a few high-profile athletes (2069ms)
What is the oldest sports trophy? Sydney and Essendon -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Sydney and Essendon, will play for, the Marn Grook trophy) -> Sydney and Essendon (2117ms)
What is the oldest sports trophy? division 1 teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (division 1 teams, would play for, a trophy) -> division 1 teams (1802ms)
What is the oldest sports trophy? 2008 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (2008, will be play for, the Lombardi Trophy) -> 2008 (2113ms)
What is the oldest sports trophy? the two NFL conferences -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two NFL conferences, play for, the Vince Lombardi Trophy) -> the two NFL conferences (2115ms)
What is the oldest sports trophy? Gray -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Gray, played, his trophy wife) -> Gray (2116ms)
What is the oldest sports trophy? a club -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a club, should be playing for, trophies) -> a club (2114ms)
What is the oldest sports trophy? a game -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a game, played for, a trophy) -> a game (2116ms)
What is the oldest sports trophy? Kylotonn -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Kylotonn, Game Versions Developed, Hunter's Trophy) -> Kylotonn (2115ms)
What is the oldest sports trophy? McEntire -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (McEntire, will play host at, the annual trophy show) -> McEntire (1803ms)
What is the oldest sports trophy? BASC -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (BASC, played a limited role in, trophy measurement) -> BASC (2115ms)
What is the oldest sports trophy? Coolidge -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Coolidge, plays, a gold-digging trophy wife) -> Coolidge (2111ms)
What is the oldest sports trophy? Lake Fork -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Lake Fork, has developed into, the Premier Trophy Bass Lake) -> Lake Fork (2110ms)
What is the oldest sports trophy? lures -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (lures, have been developed for, Hunting Trophy Deer) -> lures (2117ms)
What is the oldest sports trophy? MachineWorks Northwest -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (MachineWorks Northwest, Game Versions Developed, 3D Hunting Trophy Whitetail Championship 2009) -> MachineWorks Northwest (2110ms)
What is the oldest sports trophy? Mr. Wirth -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Mr. Wirth, developed, numerous trophy properties) -> Mr. Wirth (2114ms)
What is the oldest sports trophy? FUN Labs -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (FUN Labs, Game Versions Developed, Cabela's Trophy Bucks) -> FUN Labs (2115ms)
What is the oldest sports trophy? Railways -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Railways, have played, their Ranji Trophy) -> Railways (1803ms)
What is the oldest sports trophy? the Big 10 feature -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Big 10 feature, are played for, trophies) -> the Big 10 feature (2113ms)
What is the oldest sports trophy? The golfers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The golfers, can play for, trophies) -> The golfers (2116ms)
What is the oldest sports trophy? eight teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (eight teams, will play for, the trophy) -> eight teams (2116ms)
What is the oldest sports trophy? Bergkamp?s input -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Bergkamp?s input, played a strong part in winning, trophies) -> Bergkamp?s input (2114ms)
What is the oldest sports trophy? football and Bangladesh -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (football and Bangladesh, were only playing, ICC Trophy) -> football and Bangladesh (2113ms)
What is the oldest sports trophy? Robert Griffin -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Robert Griffin, is still playing for, the Heisman) -> Robert Griffin (2116ms)
What is the oldest sports trophy? Teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Teams, play for, trophies) -> Teams (2113ms)
Who are professional female boxers? Tropical Storm Risk -0.11111111112399996 Who are professional female boxers? -> $x: ($x, outlook, hurricane) -> (Tropical Storm Risk, raised its outlook for, hurricane activity) -> Tropical Storm Risk (666ms)
Who are professional female boxers? Rasmussen -0.11111111112600003 Who are professional female boxers? -> $x: ($x, outlook, boxer) -> (Rasmussen, had a pessimistic outlook for, Boxer) -> Rasmussen (666ms)
Who are professional female boxers? the Duluth -0.7777777777720001 Who are professional female boxers? -> $x: ($x, boxer, professional) -> (the Duluth, boxer, his first professional loss) -> the Duluth (666ms)
Who are professional female boxers? Lightweight -0.7777777777720001 Who are professional female boxers? -> $x: ($x, boxer, singer) -> (Lightweight, Boxers rated at this weight, Al Singer) -> Lightweight (666ms)
Who are professional female boxers? Iran Barkley -1.111111111105 Who are professional female boxers? -> $x: (professional, boxer, $x) -> (American Professional, boxer, Iran Barkley) -> Iran Barkley (974ms)
What are geckos? standards 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (standards, support in, Gecko) -> standards (2949ms)
What are geckos? Scientists 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Scientists, are also interested in, the gecko) -> Scientists (1805ms)
What are geckos? scientists 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (scientists, was n?t just interested in, geckos? feet) -> scientists (1609ms)
What are geckos? 2238 Harold 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (2238 Harold, arrives in, Gecko) -> 2238 Harold (3915ms)
What are geckos? CSS ] Content 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (CSS ] Content, differs in, Netscape Gecko browsers) -> CSS ] Content (2911ms)
What are geckos? the sine-scroller 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the sine-scroller, is so slow in, Gecko) -> the sine-scroller (1967ms)
What are geckos? DOMContentLoaded event 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (DOMContentLoaded event, is in, Gecko) -> DOMContentLoaded event (1609ms)
What are geckos? the audience 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the audience, is settling in to watch, Gordon Gecko) -> the audience (4040ms)
What are geckos? the build strategy 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the build strategy, has changed in, gecko 1.9) -> the build strategy (1609ms)
What are geckos? Harold 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Harold, arrives in, Gecko) -> Harold (3916ms)
What are geckos? SVG images 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (SVG images, is extremely restricted in, Gecko) -> SVG images (3045ms)
What are geckos? runny feces 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (runny feces, is very common in, crested geckos) -> runny feces (2911ms)
What are geckos? Wind and Ground 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Wind and Ground, are characters in, Gecko?s landscape) -> Wind and Ground (1609ms)
What are geckos? LAYER 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (LAYER, can be replaced in, Mozilla Gecko browsers) -> LAYER (3916ms)
What are geckos? The secret 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The secret, lies in, the gecko) -> The secret (3916ms)
What are geckos? amber 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (amber, found in, many modern geckos) -> amber (3815ms)
What are geckos? Researchers 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Researchers, have long been interested in, geckos) -> Researchers (1968ms)
What are geckos? Wikiwyg 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Wikiwyg, only works in, Gecko browsers) -> Wikiwyg (1968ms)
What are geckos? serveral problems 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (serveral problems, found in, Gecko rendering engine rv) -> serveral problems (4039ms)
What are geckos? Speculative fiction 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Speculative fiction, Books In This Genre, Geckos) -> Speculative fiction (1608ms)
What are geckos? the doctype name 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the doctype name, is an interned string in, Gecko) -> the doctype name (1967ms)
What are geckos? Works 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Works, presented in, the Gecko) -> Works (4100ms)
What are geckos? bugs 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (bugs, were fixed in, Gecko 1.8) -> bugs (3816ms)
What are geckos? Luke 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Luke, got lost in, Gecko Cavern) -> Luke (4040ms)
What are geckos? Layne and Heather 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Layne and Heather, brought in, their gargoyle geckos) -> Layne and Heather (1968ms)
What are geckos? nanosized setae 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (nanosized setae, found in, gecko?s feet) -> nanosized setae (1806ms)
What are geckos? image indicators 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (image indicators, are slightly sketchy in, Mozilla Gecko) -> image indicators (2949ms)
What are geckos? Computer hardware 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Computer hardware, Organizations in this industry, Gecko Gear) -> Computer hardware (3045ms)
What are geckos? MathML 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (MathML, works fine in, Gecko) -> MathML (4100ms)
What are geckos? the existing android 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the existing android, added in, the Gecko specific drivers) -> the existing android (2949ms)
What are geckos? the part 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the part, installed back in, Gecko) -> the part (3045ms)
What are geckos? blocks 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (blocks, does work in, Gecko) -> blocks (3045ms)
What are geckos? features 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (features, were introduced in, Gecko 1.7) -> features (4039ms)
What are geckos? Fiction 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Fiction, Books In This Genre, Meet The Gecko) -> Fiction (2949ms)
What are geckos? I?ve 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (I?ve, also spotted this problem in, old Gecko) -> I?ve (4040ms)
What are geckos? the rendering code 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the rendering code, is injected in to, the Gecko application) -> the rendering code (3045ms)
What are geckos? numerous hairlike setae 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (numerous hairlike setae, found in, many modern geckos) -> numerous hairlike setae (3815ms)
What are geckos? The personal bar 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The personal bar, is only found in, Gecko browsers) -> The personal bar (1806ms)
What are geckos? an dom exception 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (an dom exception, would be thrown in, Gecko) -> an dom exception (2911ms)
What are geckos? Midrange 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Midrange, Accommodation in this range, Green Gecko) -> Midrange (3916ms)
What are geckos? an SVG image 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (an SVG image, scale properly in, Gecko browsers) -> an SVG image (1968ms)
What are geckos? JavaScript 1.8.2 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (JavaScript 1.8.2, is now in, Gecko) -> JavaScript 1.8.2 (3045ms)
What are geckos? The widest CSS3-implementations 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The widest CSS3-implementations, are in, Mozilla Gecko browsers) -> The widest CSS3-implementations (1806ms)
What are geckos? Adrian 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Adrian, is taken in by, the Gecko family) -> Adrian (4101ms)
What are geckos? For Dummies 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (For Dummies, Works in this series, Leopard Geckos For Dummies) -> For Dummies (4100ms)
What are geckos? the Chosen One 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the Chosen One, arrives in, Gecko) -> the Chosen One (2949ms)
What are geckos? the DOM 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the DOM, implemented in, Gecko-based browsers) -> the DOM (3816ms)
What are geckos? the top two runners-up 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the top two runners-up, will be showcased in, GuideGecko) -> the top two runners-up (1806ms)
What are geckos? more bugs 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (more bugs, got fixed?in shared, Gecko components) -> more bugs (1805ms)
What are geckos? Lim 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Lim, takes second place in, Guide Gecko contest 2010) -> Lim (3916ms)
What are geckos? an element 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (an element, could fail in, Gecko) -> an element (2949ms)
What are geckos? Bugs 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Bugs, found only in, Gecko based browsers) -> Bugs (2911ms)
What are geckos? The Breakfast 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The Breakfast, were sitting in with, Mondo Gecko) -> The Breakfast (4100ms)
What are geckos? backspace 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (backspace, was used in, Gecko) -> backspace (2911ms)
What are geckos? OPTGROUP 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (OPTGROUP, is supported only in, Mozilla Gecko browsers) -> OPTGROUP (3815ms)
What are geckos? a ContextMenu instance 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (a ContextMenu instance, is made visible In, Gecko) -> a ContextMenu instance (3915ms)
What are geckos? the actual bug 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the actual bug, is in, Gecko) -> the actual bug (1805ms)
What are geckos? the Pokemon 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the Pokemon, put in, the GEICO Gecko) -> the Pokemon (4040ms)
What are geckos? the thermoregulartory behavior 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the thermoregulartory behavior, observed in, field-active geckos) -> the thermoregulartory behavior (4040ms)
What are geckos? The incident 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The incident, occurred in between, Gecko Road) -> The incident (2911ms)
What are geckos? The forum topic code 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The forum topic code, works in, Gecko) -> The forum topic code (3045ms)
What are geckos? SVG support 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (SVG support, is still nascent in, Gecko) -> SVG support (1608ms)
What are geckos? The hotels and accommodations 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The hotels and accommodations, cited in, GeckoGo) -> The hotels and accommodations (3815ms)
What are geckos? Gex 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Gex, Games In Series, Gex: Enter the Gecko) -> Gex (2911ms)
What are geckos? Lenny 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Lenny, is a Ghoul living in, Gecko city) -> Lenny (4039ms)
What are geckos? Children's literature 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Children's literature, Books In This Genre, Meet The Gecko) -> Children's literature (3916ms)
What are geckos? Gowan 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Gowan, are partners in, five Gecko?s Grill & Pub restaurants) -> Gowan (1968ms)
What are geckos? the mouse 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the mouse, co-ordinates in, Gecko) -> the mouse (3816ms)
What are geckos? correct comments 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (correct comments, is crucial in, Gecko) -> correct comments (1968ms)
What are geckos? the yellow pass key 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the yellow pass key, opens the doors in, the Gecko Power Plant) -> the yellow pass key (2949ms)
What are geckos? a component 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (a component, can be used in, Gecko) -> a component (4101ms)
What are geckos? The caret 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The caret, sometimes gets stuck in, Gecko) -> The caret (4100ms)
What are geckos? the leucistic 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the leucistic, are all included in, leopard gecko variations) -> the leucistic (2911ms)
What are geckos? The PNG Drop Shadow method 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The PNG Drop Shadow method, works in, Gecko browsers) -> The PNG Drop Shadow method (1608ms)
What are geckos? 10 % 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (10 %, are paid in, Golden Gecko Bonus Bucks) -> 10 % (1608ms)
What are geckos? Responsible Tourism 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Responsible Tourism, is a key philosophy in, all Gecko) -> Responsible Tourism (3045ms)
What are geckos? Adobe Rent 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko Trail Adventures, does work very closely with, Adobe Rent) -> Adobe Rent (4141ms)
What are geckos? Geico 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, do for, Geico) -> Geico (4187ms)
What are geckos? place 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Groovy Gecko, did, place) -> place (4187ms)
What are geckos? the last few months 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (WebKit and Gecko, have both done this in, the last few months) -> the last few months (4141ms)
What are geckos? the inline-block display property 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t handle, the inline-block display property) -> the inline-block display property (4167ms)
What are geckos? Gex 3 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Deep Cover Gecko, do, Gex 3) -> Gex 3 (4167ms)
What are geckos? UV light 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need, UV light) -> UV light (4141ms)
What are geckos? teeth 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do have, teeth) -> teeth (4141ms)
What are geckos? 10 gallon 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, also do reasonably well contained by, 10 gallon) -> 10 gallon (4167ms)
What are geckos? already 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does, already) -> already (4177ms)
What are geckos? a lot 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does, a lot) -> a lot (4177ms)
What are geckos? a solitary pet 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The Pictus Gecko, also does well as, a solitary pet) -> a solitary pet (4177ms)
What are geckos? n?t support counters 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, did, n?t support counters) -> n?t support counters (4141ms)
What are geckos? XML 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Netscape Gecko, do support, XML) -> XML (4177ms)
What are geckos? a day-night light cycle 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Crested Gecko, does need, a day-night light cycle) -> a day-night light cycle (4177ms)
What are geckos? The Happy Face 091 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Geck-o, Do, The Happy Face 091) -> The Happy Face 091 (4187ms)
What are geckos? a gecko climb 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko glue, does, a gecko climb) -> a gecko climb (4177ms)
What are geckos? the temperature 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The gecko can?t, do much to control, the temperature) -> the temperature (4187ms)
What are geckos? an app store 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Boot 2 Gecko, does have, an app store) -> an app store (4167ms)
What are geckos? fine 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the gecko, doing, fine) -> fine (4167ms)
What are geckos? a great job 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko Adventures, did, a great job) -> a great job (4177ms)
What are geckos? a variety 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Flying Geckos, do well with, a variety) -> a variety (4167ms)
What are geckos? helping firefighters save lives 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (a gecko, to do with, helping firefighters save lives) -> helping firefighters save lives (4177ms)
What are geckos? Liz-ard Minnelli 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (A cheeky gecko, does an impression of, Liz-ard Minnelli) -> Liz-ard Minnelli (4177ms)
What are geckos? the ADD show 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Topo and Gecko, do, the ADD show) -> the ADD show (4167ms)
What are geckos? a greater risk 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (a leopard gecko, does is taking, a greater risk) -> a greater risk (4177ms)
What are geckos? Turvy 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (A funny little cute gecko 5, Does, Turvy) -> Turvy (4166ms)
What are geckos? Texas 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, doing the two-step in, Texas) -> Texas (4141ms)
What are geckos? awesome pets 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Geckos, do make, awesome pets) -> awesome pets (4177ms)
What are geckos? the robot 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the gecko, do, the robot) -> the robot (4177ms)
What are geckos? Mary Richardson 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The gecko piece, was done by, Mary Richardson) -> Mary Richardson (4177ms)
What are geckos? avoid calcium deficiency 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need UV light to, avoid calcium deficiency) -> avoid calcium deficiency (4167ms)
What are geckos? firefighters save lives 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (a gecko, to do with helping, firefighters save lives) -> firefighters save lives (4177ms)
What are geckos? remote administration and management 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Blue Gecko, does, remote administration and management) -> remote administration and management (4177ms)
What are geckos? children 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Crested Gecko, do well around, children) -> children (4141ms)
What are geckos? multiple 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (> Gecko, does support, multiple) -> multiple (4141ms)
What are geckos? bark 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (geckos, really do, bark) -> bark (4187ms)
What are geckos? water 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (gecko adhesion, does n?t work well in, water) -> water (4167ms)
What are geckos? much sophistication and support 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t hold as, much sophistication and support) -> much sophistication and support (4167ms)
What are geckos? eyelids 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do have, eyelids) -> eyelids (4177ms)
What are geckos? the two-step 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, doing, the two-step) -> the two-step (4167ms)
What are geckos? wonders 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The new Gecko rendering engine, is doing, wonders) -> wonders (4141ms)
What are geckos? more than 8? reveals 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t work with, more than 8? reveals) -> more than 8? reveals (4141ms)
What are geckos? traditional 3-D games 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, does, traditional 3-D games) -> traditional 3-D games (4167ms)
What are geckos? an impression 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (A cheeky gecko, does, an impression) -> an impression (4187ms)
What are geckos? the hyphens 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t treat, the hyphens) -> the hyphens (4167ms)
What are geckos? boys 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Chet Gecko books, do really well (especially with, boys) -> boys (4167ms)
What are geckos? prime time 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t seem quite ready for, prime time) -> prime time (4187ms)
What are geckos? calcium deficiency 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need UV light to avoid, calcium deficiency) -> calcium deficiency (4167ms)
What are geckos? awesome 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the geckos, are doing, awesome) -> awesome (4141ms)
What are geckos? Apple 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Apple, does n?t need, Gecko?s multi-platform support) -> Apple (4244ms)
What are geckos? excellence 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (excellence, produces, high quality leopard geckos) -> excellence (4197ms)
What are geckos? NVDA 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (NVDA, far does have support for, Gecko) -> NVDA (4187ms)
What are geckos? mplayerplug-in 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (gecko-mediaplayer, is a replacement for, mplayerplug-in) -> mplayerplug-in (4244ms)
What are geckos? printing and print preview 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, was for, printing and print preview) -> printing and print preview (4235ms)
What are geckos? a 7-year kid 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (a gecko, be a suitable pet for, a 7-year kid) -> a 7-year kid (4225ms)
What are geckos? a Tremper Enigma 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (a Tremper Enigma, produced by, A&M Geckos) -> a Tremper Enigma (4235ms)
What are geckos? NS5 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (NS5, does indeed represent, Gecko/Moz) -> NS5 (4206ms)
What are geckos? pickles 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (pickles, have to do with, Gecko Hospitality) -> pickles (4197ms)
What are geckos? beginners 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is good for, beginners) -> beginners (4235ms)
What are geckos? the day 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (GeckoSystems, is well prepared for, the day) -> the day (4225ms)
What are geckos? the thousand other kids 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (your Gecko, is also used for, the thousand other kids) -> the thousand other kids (4216ms)
What are geckos? security reasons 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, must be excluded for, security reasons) -> security reasons (4216ms)
What are geckos? Windows 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Tool, is for, Windows) -> Windows (4252ms)
What are geckos? Shiva Chandra 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Shiva Chandra, Tracks produced, Gecko) -> Shiva Chandra (4206ms)
What are geckos? the story 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the story, did the idea for, the gecko private eye) -> the story (4197ms)
What are geckos? general development 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the gecko rendering engine, is useful for, general development) -> general development (4216ms)
What are geckos? thread work 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Dex, is also excellent for, thread work) -> thread work (4244ms)
What are geckos? the Miocene 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the Miocene, did, the geckos) -> the Miocene (4225ms)
What are geckos? basic and 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (giant geckos, is a tough encounter for, basic and) -> basic and (4206ms)
What are geckos? Carbon allotropes 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Carbon allotropes, are used to produce, gecko tape) -> Carbon allotropes (4225ms)
What are geckos? Mobile devices 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, might be more appropriate for, Mobile devices) -> Mobile devices (4197ms)
What are geckos? the next time 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the next time, do a search for, ?SAS Geckos?) -> the next time (4244ms)
What are geckos? the first time 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Maps, is publishing this information for, the first time) -> the first time (4225ms)
What are geckos? a while 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (The geckos, had been out for, a while) -> a while (4253ms)
What are geckos? smartphones 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is built for, smartphones) -> smartphones (4235ms)
What are geckos? the viewport 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Mozilla Gecko browsers borders, can be set for, the viewport) -> the viewport (4225ms)
What are geckos? each guest 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Villa, are tailored for, each guest) -> each guest (4216ms)
What are geckos? the browser 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is optimized for, the browser) -> the browser (4187ms)
What are geckos? Firefox 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Firefox, does this with, its gecko engine) -> Firefox (4225ms)
What are geckos? an experienced , high energy 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, is looking for, an experienced , high energy) -> an experienced , high energy (4206ms)
What are geckos? TRY IT TOOOOOO 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (TRY IT TOOOOOO, does, Gecko) -> TRY IT TOOOOOO (4225ms)
What are geckos? speed 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (this gecko, is built for, speed) -> speed (4235ms)
What are geckos? The basement 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (The basement, does contain, some golden geckos) -> The basement (4225ms)
What are geckos? a toe hold 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (a toe hold, does, the Duvaucel?s gecko) -> a toe hold (4235ms)
What are geckos? Infinitely Virtual 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Lisa Gecko, is a staff writer for, Infinitely Virtual) -> Infinitely Virtual (4244ms)
What are geckos? just 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (just, as has been done for, Gecko 1.8.0) -> just (4253ms)
What are geckos? The hard work 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (The hard work, here is actually done by, Gecko) -> The hard work (4244ms)
What are geckos? new building materials 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Synthetic Gecko, could also be used for, new building materials) -> new building materials (4253ms)
What are geckos? multicolumn layout 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko 1.8, is support for, multicolumn layout) -> multicolumn layout (4216ms)
What are geckos? the grid 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the grid, are now doing well in, the Gecko grid) -> the grid (4225ms)
What are geckos? stays 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Green Gecko, may be booked for, stays) -> stays (4226ms)
What are geckos? the alternative medicine trade 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (geckos, are collected for, the alternative medicine trade) -> the alternative medicine trade (4187ms)
What are geckos? the Champions launcher 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (gecko, are required for, the Champions launcher) -> the Champions launcher (4206ms)
What are geckos? designer excellence 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Our geckos, are specially bred for, designer excellence) -> designer excellence (4216ms)
What are geckos? a Tremper Albino Enigma 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (a Tremper Albino Enigma, produced by, A&M Geckos) -> a Tremper Albino Enigma (4244ms)
What are geckos? Thomas P. Heckmann 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Thomas P. Heckmann, Tracks produced, Amphetamine (Gecko remix)) -> Thomas P. Heckmann (4225ms)
What are geckos? MAC , Linux and Windows 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Tool, will be for, MAC , Linux and Windows) -> MAC , Linux and Windows (4206ms)
What are geckos? the web 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is a very powerful tool for making, the web) -> the web (4244ms)
What are geckos? the electronics 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (the electronics, are produced by, Gecko) -> the electronics (4216ms)
What are geckos? adventure 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko?s, is the way to go for, adventure) -> adventure (4197ms)
What are geckos? a healthy lifestyle 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Tokay gecko, is a very good herb for, a healthy lifestyle) -> a healthy lifestyle (4197ms)
What are geckos? the same price 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko devices, will be sold for, the same price) -> the same price (4225ms)
What are geckos? me? ? Nobody 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (me? ? Nobody, does, geckos and cavemen) -> me? ? Nobody (4235ms)
What are geckos? the best reviews 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the best reviews, has ever been done for, Gecko Trail Adventures) -> the best reviews (4206ms)
What are geckos? brown Treesnakes 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (House geckos, are frequent prey for, brown Treesnakes) -> brown Treesnakes (4253ms)
What are geckos? mobile devices 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko?s performance, was deemed good enough for, mobile devices) -> mobile devices (4244ms)
What are geckos? the garage 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the garage, DO about, a bathroom gecko) -> the garage (4225ms)
What are geckos? a new style 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Fur, is our inaccurate definition for, a new style) -> a new style (4225ms)
What are geckos? the images 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the images, does, Gecko) -> the images (4206ms)
What are geckos? release 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is scheduled for, release) -> release (4253ms)
What are geckos? dinner 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, were out for, dinner) -> dinner (4216ms)
What are geckos? evolution 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (evolution, produced, a gecko) -> evolution (4216ms)
What are geckos? Beta testing 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Systems, is preparing for, Beta testing) -> Beta testing (4216ms)
What are geckos? Mozilla 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Mozilla, did with, Gecko) -> Mozilla (4244ms)
What are geckos? web developers 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko date stamp, is meaningful for, web developers) -> web developers (4206ms)
What are geckos? 162 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (The Geckos, were now 5 for, 162) -> 162 (4187ms)
What are geckos? physical science classrooms 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, is designed for, physical science classrooms) -> physical science classrooms (4206ms)
What are geckos? Espiritu Santo 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Espiritu Santo, has produced a new species of, gecko) -> Espiritu Santo (4244ms)
What are geckos? PC CD-ROM 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, will also be available for, PC CD-ROM) -> PC CD-ROM (4253ms)
What are geckos? adoption 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Geckos, are available for, adoption) -> adoption (4244ms)
What are geckos? publishing 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, was picked up for, publishing) -> publishing (4235ms)
What are geckos? just a shot 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (just a shot, i did of, a house gecko) -> just a shot (4187ms)
What are geckos? new options 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Trail Adventures, is always looking for, new options) -> new options (4216ms)
What are geckos? the decades 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Few geckos, have been observed for, the decades) -> the decades (4235ms)
What are geckos? 19 years 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Software, has been in business for, 19 years) -> 19 years (4216ms)
What are geckos? beat @ 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (beat @, did, the Gecko job) -> beat @ (4235ms)
What are geckos? multithreading , many components 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is n?t built for, multithreading , many components) -> multithreading , many components (4197ms)
What are geckos? Daniel 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Daniel, has been able to do with, a customized gecko) -> Daniel (4244ms)
What are geckos? an MSAA tree 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (an MSAA tree, produced from, a Mozilla Gecko window) -> an MSAA tree (4216ms)
What are geckos? over one hundred years 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Crested geckos, to be extinct for, over one hundred years) -> over one hundred years (4216ms)
What are geckos? Franchise Partners 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, is currently looking for, Franchise Partners) -> Franchise Partners (4206ms)
What are geckos? Question 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Question, does, the Gecko/Lizard) -> Question (4235ms)
What are geckos? coughs 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is also used for, coughs) -> coughs (4187ms)
What are geckos? The question 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (The question, does, the gecko use) -> The question (4244ms)
What are geckos? Jan D'Silva 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Jan D'Silva, is doing wonderful stuff with, Go Go Gecko) -> Jan D'Silva (4187ms)
What are geckos? parents 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (GECKO Productions, is looking for, parents) -> parents (4197ms)
What are geckos? a feed 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (?The gecko, could have been looking for, a feed) -> a feed (4206ms)
What are geckos? stepper motors 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (The Gecko Powered controllers, are either for, stepper motors) -> stepper motors (4244ms)
What are geckos? hours 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (pictus geckos, can be held for, hours) -> hours (4197ms)
What are geckos? Gecko glue 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Gecko glue, does, a gecko climb) -> Gecko glue (4235ms)
What are geckos? a number 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is also been picked for, a number) -> a number (4206ms)
What are geckos? interaction 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (GeckoChat?, is responsible for, interaction) -> interaction (4235ms)
What are geckos? new homes 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (our leopard gecko babies, are ready for, new homes) -> new homes (4216ms)
What are geckos? safari 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (safari, did n?t want to use, the gecko engine) -> safari (4216ms)
What are geckos? blood 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, would be out for, blood) -> blood (4253ms)
What are geckos? the research campus 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is a first for, the research campus) -> the research campus (4197ms)
What are geckos? Julia Marshall 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Julia Marshall, is doing with, Gecko Press) -> Julia Marshall (4206ms)
What are geckos? NS4.x LAYERS 0.777777777787 What are geckos? -> $x: ($x, define, gecko) -> (NS4.x LAYERS, is defined for, MSIE/Gecko) -> NS4.x LAYERS (4197ms)
What are geckos? protection 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, is suitable for, protection) -> protection (4235ms)
What are geckos? The firm 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (The firm, produced, the Gecko ads) -> The firm (4244ms)
What are geckos? Google Chrome 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Google Chrome, produced, Gecko 2010-02-03T13 :50:19 phasefx) -> Google Chrome (4235ms)
What are geckos? a relaxing holiday 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Villa, is the perfect hideaway for, a relaxing holiday) -> a relaxing holiday (4187ms)
What are geckos? northland green gecko 0.666666666677 What 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)
What are geckos? marlborough green gecko 0.666666666677 What 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)
What are geckos? morning 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (morning, have found, a gecko) -> morning (4270ms)
What are geckos? The Martin Agency 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (The Martin Agency, created, the Geico Insurance gecko) -> The Martin Agency (4270ms)
What are geckos? the grounds 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the grounds, found, more geckos) -> the grounds (4261ms)
What are geckos? the peer-reviewed references 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the peer-reviewed references, found via, Gecko) -> the peer-reviewed references (4278ms)
What are geckos? the U.S. 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the U.S., found, geckos) -> the U.S. (4270ms)
What are geckos? Seychelles giant day gecko 0.666666666677 What 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)
What are geckos? tiny little hairs 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (tiny little hairs, found on, geckos) -> tiny little hairs (4261ms)
What are geckos? Yellow-throated day gecko 0.666666666677 What 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)
What are geckos? Ghouls 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Ghouls, can be found in, the town Gecko) -> Ghouls (4278ms)
What are geckos? Aldabra Island day gecko 0.666666666677 What 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)
What are geckos? atlas day gecko 0.666666666677 What 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)
What are geckos? Ocelot Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Ocelot Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ocelot%20Gecko) -> Ocelot Gecko (4261ms)
What are geckos? the fine hairs 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the fine hairs, found on, each gecko foot) -> the fine hairs (4270ms)
What are geckos? European Leaf-toed Gecko 0.666666666677 What 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)
What are geckos? Fossils 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Fossils, have been found containing, geckos) -> Fossils (4279ms)
What are geckos? Yaval region 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Yaval region, has found species of, giant tree gecko) -> Yaval region (4278ms)
What are geckos? Stephen's Island Gecko 0.666666666677 What 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)
What are geckos? Rough gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Rough gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rough%20gecko) -> Rough gecko (4287ms)
What are geckos? author 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (author, created, Gordon Gecko?s wardrobe) -> author (4279ms)
What are geckos? God 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (God, created, the gecko) -> God (4270ms)
What are geckos? Kuroiwa's Ground Gecko 0.666666666677 What 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)
What are geckos? researchers 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (researchers, have created a new family of, geckos) -> researchers (4261ms)
What are geckos? JOHN HOCKENBERRY 0.666666666677 What are geckos? -> $x: ($x, happen to, gecko) -> (JOHN HOCKENBERRY, happened to, your little leaf-tailed gecko pal) -> JOHN HOCKENBERRY (4261ms)
What are geckos? the ad shop 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (the ad shop, has created, the Geico gecko) -> the ad shop (4278ms)
What are geckos? Barking Gecko Theatre Company 0.666666666677 What 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)
What are geckos? You?d 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (You?d, rather find, two geckos fighting) -> You?d (4253ms)
What are geckos? African Fat-Tailed Gecko 0.666666666677 What 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)
What are geckos? eggs 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (eggs, found, a dead gecko) -> eggs (4253ms)
What are geckos? Banded Toed Gecko 0.666666666677 What 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)
What are geckos? Stupid Videos and pictures 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Stupid Videos and pictures, can be found at, Gecko Tales) -> Stupid Videos and pictures (4279ms)
What are geckos? GEICO 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (GEICO, Find, the Gecko Sweepstakes Search) -> GEICO (4270ms)
What are geckos? Tokay gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Tokay gecko, found, a flying gecko) -> Tokay gecko (4278ms)
What are geckos? the answer 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the answer, can be found at, Gecko?s) -> the answer (4270ms)
What are geckos? The World Wildlife Fund 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (The World Wildlife Fund, found, a previously unknown gecko) -> The World Wildlife Fund (4261ms)
What are geckos? the Linux plugin 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (the Linux plugin, is basically created to work with, Gecko...) -> the Linux plugin (4270ms)
What are geckos? Giant Bronze Gecko 0.666666666677 What 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)
What are geckos? Simon Fraser University 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (Simon Fraser University, created, this gecko-inspired tank) -> Simon Fraser University (4270ms)
What are geckos? Blue-tailed Day Gecko 0.666666666677 What 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)
What are geckos? golden gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (golden gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Golden%20Gecko) -> golden gecko (4287ms)
What are geckos? South Africa 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (South Africa, created by, Cape Geckos Username) -> South Africa (4278ms)
What are geckos? Gecko 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (Gecko, was created by, Gecko Design) -> Gecko (4270ms)
What are geckos? ?Momma 0.666666666677 What are geckos? -> $x: ($x, happen to, gecko) -> (?Momma, happens to, Geckos) -> ?Momma (4278ms)
What are geckos? Fisher 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Fisher, found two of, the bumblebee geckos) -> Fisher (4253ms)
What are geckos? Auckland green gecko 0.666666666677 What 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)
What are geckos? the same EVA 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the same EVA, found on, the rubberised Gecko) -> the same EVA (4287ms)
What are geckos? East Canary Gecko 0.666666666677 What 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)
What are geckos? the cave 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the cave, found, a gecko high) -> the cave (4270ms)
What are geckos? robert merten's day gecko 0.666666666677 What 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)
What are geckos? gold striped gecko 0.666666666677 What 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)
What are geckos? coloring 0.666666666677 What are geckos? -> $x: (gecko, have use of, $x) -> (* ObsidianGecko, has a beautiful use of, coloring) -> coloring (4270ms)
What are geckos? Telcos 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Telcos, can package, the Geckos) -> Telcos (4310ms)
What are geckos? the 'other creatures 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the 'other creatures, are, geckos) -> the 'other creatures (4376ms)
What are geckos? The display problem 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The display problem, is due to, a Mozilla/Gecko) -> The display problem (4402ms)
What are geckos? WebKit 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (WebKit, is further along than, Gecko) -> WebKit (4349ms)
What are geckos? length 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The house gecko, is about three to five inches in, length) -> length (4349ms)
What are geckos? the car 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the car, is, Gecko) -> the car (4361ms)
What are geckos? a few people 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a few people, appeared to be, gecko feet) -> a few people (4310ms)
What are geckos? The Gecko engine 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The Gecko engine, has been updated to, Gecko rv) -> The Gecko engine (4371ms)
What are geckos? one snail shell 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (one snail shell, appeared to be, gecko egg remnants) -> one snail shell (4394ms)
What are geckos? Aliya Sternstein 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (GeckoSystems, are excited about, Aliya Sternstein) -> Aliya Sternstein (4294ms)
What are geckos? The MIT2 chip 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The MIT2 chip, can only be used with, Gecko) -> The MIT2 chip (4385ms)
What are geckos? Hide boxes 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Hide boxes, are vital to, your gecko) -> Hide boxes (4366ms)
What are geckos? the tails 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the tails, are a little long to be, a gecko) -> the tails (4385ms)
What are geckos? The plan 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The plan, was to make like, this Gecko) -> The plan (4376ms)
What are geckos? Lysol 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Lysol, can kill, a fragile gecko.) -> Lysol (4371ms)
What are geckos? the site 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the site, is looking in, another Gecko-based browser e.g) -> the site (4333ms)
What are geckos? the rendering engine 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the rendering engine, is, Gecko) -> the rendering engine (4326ms)
What are geckos? The idea 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The idea, is to run, Gecko) -> The idea (4381ms)
What are geckos? The rather wriggly chest hair wig 0.6666666666759999 What are geckos? -> $x: ($x, consist of, gecko) -> (The rather wriggly chest hair wig, consisted of, 2 geckos) -> The rather wriggly chest hair wig (4349ms)
What are geckos? attendants 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (attendants, can see, gecko night vision) -> attendants (4390ms)
What are geckos? version 8.0.3.3 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (version 8.0.3.3, is based to, Gecko version) -> version 8.0.3.3 (4381ms)
What are geckos? sniffers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (sniffers, should be looking for, Gecko) -> sniffers (4371ms)
What are geckos? designers 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (designers, can directly access, the Gecko MCU?s LCD) -> designers (4294ms)
What are geckos? 8 inches 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Crested Geckos, only get to be about, 8 inches) -> 8 inches (4349ms)
What are geckos? CSS3 and HTML5 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (CSS3 and HTML5, will be added to, Gecko) -> CSS3 and HTML5 (4376ms)
What are geckos? Supported browsers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Supported browsers, are, Gecko) -> Supported browsers (4302ms)
What are geckos? Jan 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Jan, am hoping, gecko) -> Jan (4361ms)
What are geckos? mining 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (mining, are home to, the Golden Gecko) -> mining (4340ms)
What are geckos? Gecko browsers 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Gecko browsers, are supposed to include, the ' Gecko ') -> Gecko browsers (4333ms)
What are geckos? the DOM Element object 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the DOM Element object, was introduced in, Gecko 1.9.1) -> the DOM Element object (4385ms)
What are geckos? the swarmers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the swarmers, are eaten by, geckos) -> the swarmers (4381ms)
What are geckos? a new HTML 5 File API 0.6666666666759999 What 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)
What are geckos? Moderate Charts 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Moderate Charts, are all courtesy of, Gecko) -> Moderate Charts (4385ms)
What are geckos? a vendor 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a vendor, appeared to be freshly, dead geckos) -> a vendor (4356ms)
What are geckos? Nvu 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Nvu, is based on, Gecko) -> Nvu (4366ms)
What are geckos? Firefox 2.0 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Firefox 2.0, will be basing on, Gecko) -> Firefox 2.0 (4385ms)
What are geckos? the Kiwi House visitors 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (the Kiwi House visitors, can see, bush geckoes) -> the Kiwi House visitors (4390ms)
What are geckos? The standard browser 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The standard browser, is based on, Gecko) -> The standard browser (4371ms)
What are geckos? Konqueror 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Konqueror, is similar to, the Gecko rendering engine) -> Konqueror (4340ms)
What are geckos? a 20-gallon plastic tank 0.6666666666759999 What 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)
What are geckos? navigator.productSub 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (navigator.productSub, is specific to, Gecko browsers) -> navigator.productSub (4333ms)
What are geckos? twenty gallons 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (twenty gallons, is better for up to, three geckos) -> twenty gallons (4390ms)
What are geckos? Leopard geckos 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Leopard geckos, are connected to, various geckos) -> Leopard geckos (4406ms)
What are geckos? The most popular one 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The most popular one, is, Gecko) -> The most popular one (4406ms)
What are geckos? CSS gradient syntax 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (CSS gradient syntax, is different in, Webkit and Gecko) -> CSS gradient syntax (4398ms)
What are geckos? Opera 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Opera, seems to be a bit more popular than, Gecko-based browsers) -> Opera (4394ms)
What are geckos? Neptune 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Neptune, would be better suited to, Gecko) -> Neptune (4318ms)
What are geckos? deleted mail 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (deleted mail, is either sent to, the gecko-trash folder) -> deleted mail (4356ms)
What are geckos? Worms 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Worms, are fed to, a Tokay Gecko) -> Worms (4326ms)
What are geckos? Human beings 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Human beings, can play, the piano and geckos) -> Human beings (4294ms)
What are geckos? thinking Safari 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (thinking Safari, was actually, Gecko) -> thinking Safari (4340ms)
What are geckos? AOL 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (AOL, is going to use, the Gecko rendering engine) -> AOL (4385ms)
What are geckos? Multipart upload 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (Multipart upload, is only supported in, Gecko and WebKit) -> Multipart upload (4371ms)
What are geckos? The best option 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The best option, was to befriend, my gecko) -> The best option (4349ms)
What are geckos? Itaewon 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Itaewon, is, Gecko) -> Itaewon (4366ms)
What are geckos? sand 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (sand, can be harmful for, leopard gecko) -> sand (4385ms)
What are geckos? lizards 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (lizards, can range from, the tiny Geckos of a couple inches) -> lizards (4326ms)
What are geckos? males 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (males, will need to be separated from, all other geckos) -> males (4381ms)
What are geckos? the decision 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the decision, was made to develop, a Gecko Career Website) -> the decision (4361ms)
What are geckos? 6 inches 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The gecko, was about, 6 inches) -> 6 inches (4398ms)
What are geckos? the crowd 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the crowd, be like, gecko) -> the crowd (4326ms)
What are geckos? KompoZer 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (KompoZer, is based on, Gecko) -> KompoZer (4406ms)
What are geckos? claws 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (claws, appeared to be, a giant gecko) -> claws (4361ms)
What are geckos? real eyelids 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (real eyelids, is extremely uncommon to, most gecko species) -> real eyelids (4326ms)
What are geckos? Even my 3yr old 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Even my 3yr old, is n?t drawn to, the gecko) -> Even my 3yr old (4394ms)
What are geckos? The completely open-source OS 0.6666666666759999 What 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)
What are geckos? tables 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (tables, is now working on, Gecko) -> tables (4402ms)
What are geckos? the live plants 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the live plants, are important to, a Day Gecko) -> the live plants (4366ms)
What are geckos? Epiphany 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Epiphany, is switching to Webkit from, Gecko) -> Epiphany (4385ms)
What are geckos? the Java side 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the Java side, can be seen in, GeckoSurfaceView .java) -> the Java side (4402ms)
What are geckos? Finally the above implementation 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Finally the above implementation, is for, Gecko) -> Finally the above implementation (4402ms)
What are geckos? flies 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (flies, were concentrated precariously close to, the gecko) -> flies (4318ms)
What are geckos? The nights 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The nights, can be stressful due to, the geckos) -> The nights (4398ms)
What are geckos? a water bowl 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a water bowl, is enough to keep, your gecko hydrated) -> a water bowl (4356ms)
What are geckos? the moment 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the moment, is, Gecko) -> the moment (4356ms)
What are geckos? The rendering engine 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The rendering engine, is called, Gecko) -> The rendering engine (4333ms)
What are geckos? each code engine release 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (each code engine release, was named, Gecko) -> each code engine release (4349ms)
What are geckos? rats 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (rats, are nearly as addicting as, geckos) -> rats (4376ms)
What are geckos? A good case 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (A good case, can be made for, gecko setae) -> A good case (4356ms)
What are geckos? the Lunar Eclipse 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (the Lunar Eclipse, can be played with, the GeckoOS app) -> the Lunar Eclipse (4394ms)
What are geckos? the electronics industries 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the electronics industries, are built by, Gecko) -> the electronics industries (4376ms)
What are geckos? view 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (view, matters is, Gecko) -> view (4287ms)
What are geckos? Improvements 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Improvements, have been made to, the Gecko layout engine) -> Improvements (4376ms)
What are geckos? the new browser 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the new browser, will be based on, Gecko) -> the new browser (4356ms)
What are geckos? Ginseng 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Ginseng, is used with, Gecko) -> Ginseng (4376ms)
What are geckos? Current code 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Current code, is tied to, Gecko 1.x) -> Current code (4381ms)
What are geckos? Overflow :auto 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Overflow :auto, is still applied to for, Gecko/MacOS) -> Overflow :auto (4381ms)
What are geckos? Amit Lahav 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Amit Lahav, are, Gecko) -> Amit Lahav (4398ms)
What are geckos? Visitors 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Visitors, can experience, gecko night vision) -> Visitors (4361ms)
What are geckos? NPAPI support 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (NPAPI support, is already in, the Gecko web rendering engine) -> NPAPI support (4390ms)
What are geckos? 10 Newtons 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (gecko foot, is about, 10 Newtons) -> 10 Newtons (4287ms)
What are geckos? KHTML 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (KHTML, pretended to be, Gecko) -> KHTML (4310ms)
What are geckos? the browsers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the browsers, are based on, Gecko) -> the browsers (4376ms)
What are geckos? The error 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The error, has been fixed in, Gecko 1.9) -> The error (4294ms)
What are geckos? Flock 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Flock, is based on, Gecko) -> Flock (4366ms)
What are geckos? SpiderMonkey 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (SpiderMonkey, is, Gecko) -> SpiderMonkey (4349ms)
What are geckos? greed 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (September 14 , 2010 Gordon Gecko, was right about, greed) -> greed (4294ms)
What are geckos? 20 gallons 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (20 gallons, is sufficient to house, one or two geckos) -> 20 gallons (4310ms)
What are geckos? insects 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (insects, were eaten by, geckoes) -> insects (4385ms)
What are geckos? Chinese tiger gecko diet 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Chinese tiger gecko diet, is similar to, the leopard gecko) -> Chinese tiger gecko diet (4318ms)
What are geckos? Osteodystrophy 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Osteodystrophy, can also stop the growth of, a gecko) -> Osteodystrophy (4349ms)
What are geckos? 12 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (12, can learn about, geckos) -> 12 (4294ms)
What are geckos? enough the insects 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (enough the insects, were consumed by, geckoes) -> enough the insects (4390ms)
What are geckos? the snake 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the snake, was trying to eat, the gecko) -> the snake (4318ms)
What are geckos? heavy duty 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko, is about being, heavy duty) -> heavy duty (4361ms)
What are geckos? developers 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (developers, will be able to simply tell, Gecko) -> developers (4406ms)
What are geckos? a patching method 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (a patching method, can be used with, the Gecko OS code handler) -> a patching method (4302ms)
What are geckos? The change 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The change, has been checked in on, the Gecko trunk) -> The change (4326ms)
What are geckos? Chromium 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Chromium, was also, Gecko) -> Chromium (4371ms)
What are geckos? the week 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the week, was, Gecko) -> the week (4406ms)
What are geckos? Webkit 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Webkit, so is, Gecko) -> Webkit (4394ms)
What are geckos? black lights 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (black lights, are fine to use with, leopard geckos) -> black lights (4366ms)
What are geckos? overseas 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (overseas, were, geckos) -> overseas (4361ms)
What are geckos? GREED 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (GREED, IS GOOD in, his best Gecko impression) -> GREED (4287ms)
What are geckos? a GNOME Web browser 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (a GNOME Web browser, is based on, Gecko) -> a GNOME Web browser (4310ms)
What are geckos? 20kms southeast 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko Villa, is located about, 20kms southeast) -> 20kms southeast (4302ms)
What are geckos? CSS position 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (CSS position, is too unstable to apply for, Mozilla Gecko) -> CSS position (4333ms)
What are geckos? the best option 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the best option, is, Gecko) -> the best option (4310ms)
What are geckos? Atlanta 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Atlanta, is very excited to welcome, the GEICO Gecko exhibit) -> Atlanta (4402ms)
What are geckos? Web authors 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Web authors, need there to be, ?one gecko?) -> Web authors (4394ms)
What are geckos? chains 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (chains, are put together to make, geckos) -> chains (4361ms)
What are geckos? heat 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (heat, is much more important to, your gecko) -> heat (4406ms)
What are geckos? the Mozilla redering engine 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the Mozilla redering engine, IS, Gecko) -> the Mozilla redering engine (4398ms)
What are geckos? The exception 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The exception, is, Gecko) -> The exception (4366ms)
What are geckos? Artist 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Artist, is, Gecko) -> Artist (4287ms)
What are geckos? Netscape 8.1 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Netscape 8.1, could be set to use, either Gecko or Trident) -> Netscape 8.1 (4385ms)
What are geckos? site 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (site, is, Gecko) -> site (4381ms)
What are geckos? The U.S. public 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (The U.S. public, can readily identify, the GEICO gecko) -> The U.S. public (4342ms)
What are geckos? the Maximum ie 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko, is talking about is, the Maximum ie) -> the Maximum ie (4406ms)
What are geckos? gemal .dk 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (gemal .dk, is now available to, all Gecko based browsers) -> gemal .dk (4402ms)
What are geckos? The Gecko Extreme 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The Gecko Extreme, is designed to work WITH, your original Gecko) -> The Gecko Extreme (4381ms)
What are geckos? the size 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (a leopard gecko, is about, the size) -> the size (4381ms)
What are geckos? client-side storage 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (client-side storage, is in, WebKit and Gecko?) -> client-side storage (4371ms)
What are geckos? the wall 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the wall, are strong enough to hold up, the gecko) -> the wall (4394ms)
What are geckos? W3C 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (W3C, is Boot to, Gecko) -> W3C (4340ms)
What are geckos? The experiment 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The experiment, was repeated in, the geckos? natural habitat) -> The experiment (4333ms)
What are geckos? The first two stages 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The first two stages, are based on, geckos) -> The first two stages (4398ms)
What are geckos? Babies 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Babies, can be started on, house geckos) -> Babies (4340ms)
What are geckos? 2001 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko-like dry adhesives, have been around since about, 2001) -> 2001 (4390ms)
What are geckos? Heat mat 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Heat mat, is another hazard to, your crested geckos) -> Heat mat (4349ms)
What are geckos? anole 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (anole, is preferred to, gecko) -> anole (4366ms)
What are geckos? Subiaco Arts Centre 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Subiaco Arts Centre, is home to, Barking Gecko Theatre Company) -> Subiaco Arts Centre (4376ms)
What are geckos? XPCOM Components 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (XPCOM Components, is about, Gecko) -> XPCOM Components (4356ms)
What are geckos? Entries 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Entries, can be sent to, Project Gecko) -> Entries (4390ms)
What are geckos? three to five inches 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The house gecko, is about, three to five inches) -> three to five inches (4398ms)
What are geckos? Ian Oeschger 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Ian Oeschger, is about, Gecko) -> Ian Oeschger (4394ms)
What are geckos? First 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (First, is to set, these Gecko settings) -> First (4356ms)
What are geckos? the house 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The gecko babies, are running about, the house) -> the house (4333ms)
What are geckos? Safari 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Safari, has historically been superior to, Gecko) -> Safari (4287ms)
What are geckos? leopard geckos 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (leopard geckos, are descendants of, geckos) -> leopard geckos (4302ms)
What are geckos? MPAPI 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (MPAPI, is currently internal to, Gecko) -> MPAPI (4333ms)
What are geckos? visitors 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (visitors, can experience, gecko night vision) -> visitors (4371ms)
What are geckos? The photo gallery 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The photo gallery, is a list of, geckos) -> The photo gallery (4287ms)
What are geckos? Russian scientists 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Russian scientists, are training, geckos) -> Russian scientists (4402ms)
What are geckos? a page 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a page, is loaded in to, the GeckoBrowser) -> a page (4398ms)
What are geckos? a shame 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a shame, is to lose, both Mark and Gecko) -> a shame (4385ms)
What are geckos? Strength Builder 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Strength Builder, is very similar to, Gecko Rockclimber) -> Strength Builder (4381ms)
What are geckos? a few months 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a few months, be closer to, main stream Gecko) -> a few months (4390ms)
What are geckos? The vines 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The vines, are drenched in, peridot and geckoes dart) -> The vines (4340ms)
What are geckos? the better choice 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the better choice, was, Gecko) -> the better choice (4371ms)
What are geckos? JSCSSP 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (JSCSSP, are also adapted from, Gecko) -> JSCSSP (4366ms)
What are geckos? the native UI 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the native UI, is to move, Gecko and XUL) -> the native UI (4333ms)
What are geckos? Firefox Nightly 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Firefox Nightly, is very similar to, the Gecko version) -> Firefox Nightly (4385ms)
What are geckos? ChatZilla 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (ChatZilla, are using, Gecko) -> ChatZilla (4310ms)
What are geckos? a beta1 freeze 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a beta1 freeze, is probably to get, a Gecko version) -> a beta1 freeze (4318ms)
What are geckos? Deutsche Telekom 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Deutsche Telekom, has been contributing code to, Boot2Gecko) -> Deutsche Telekom (4310ms)
What are geckos? the DDT-poisoned bugs 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the DDT-poisoned bugs, were eaten by, geckoes) -> the DDT-poisoned bugs (4402ms)
What are geckos? the canvas element 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the canvas element, has recently been implemented in, Gecko 1.8) -> the canvas element (4340ms)
What are geckos? The second approach 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The second approach, is to serve, Gecko) -> The second approach (4366ms)
What are geckos? One box 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (One box, is to help, geckos) -> One box (4390ms)
What are geckos? the bracket 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the bracket, is attached to, the Fat Gecko Mount) -> the bracket (4356ms)
What are geckos? A soft cloth 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (A soft cloth, may be used to catch, the delicate skinned geckos) -> A soft cloth (4333ms)
What are geckos? a new female Tokay gecko 0.6666666666759999 What 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)
What are geckos? SeaMonkey 1.0.7 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (SeaMonkey 1.0.7, is still, Gecko) -> SeaMonkey 1.0.7 (4318ms)
What are geckos? landscaping 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (landscaping, is to offer, the gecko) -> landscaping (4381ms)
What are geckos? Children 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Children, over can sign up for, Geckos) -> Children (4302ms)
What are geckos? nobody 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (nobody, is going to make, a gecko) -> nobody (4294ms)
What are geckos? the morning 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the morning, was from, geckos) -> the morning (4366ms)
What are geckos? the latter 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (the latter, develops, Bookt2Gecko) -> the latter (4409ms)
What are geckos? the United States 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (the United States, have developed, the modern leopard gecko) -> the United States (4409ms)
What are geckos? xpcom component 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (xpcom component, so develop with only, the gecko sdk) -> xpcom component (4406ms)
What are geckos? Crystal Dynamics 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Crystal Dynamics, Games Developed, Gex: Enter the Gecko) -> Crystal Dynamics (4412ms)
What are geckos? Mozilla Phones in 2012 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Mozilla Phones in 2012, is developing, a version of Gecko) -> Mozilla Phones in 2012 (4409ms)
What are geckos? Realtime Associates 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Realtime Associates, Games Developed, Gex: Enter the Gecko) -> Realtime Associates (4409ms)
What are geckos? Morgan 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Morgan, developed, GECKO) -> Morgan (4409ms)
What are geckos? a lower temperature 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (a lower temperature, develops into, female leopard geckos) -> a lower temperature (4409ms)
What are geckos? software 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (software, developed by, Gecko Software) -> software (4409ms)
What are geckos? UC Berkeley 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (UC Berkeley, are developing an uber-adhesive based on, a gecko) -> UC Berkeley (4406ms)
What are geckos? Gratuitous Games 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Gratuitous Games, Games Developed, Gex 3: Deep Cover Gecko) -> Gratuitous Games (4406ms)
What are geckos? David A. Palmer Productions 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (David A. Palmer Productions, Game Versions Developed, Gex: Enter the Gecko) -> David A. Palmer Productions (4409ms)
What are geckos? four months 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (four months, later developed, Gecko Hospitality) -> four months (4409ms)
What are geckos? Thunderbird 0.5555555555659999 What are geckos? -> $x: ($x, be use of, gecko) -> (Thunderbird, is using a new version of, the Gecko layout engine) -> Thunderbird (4412ms)
What are geckos? The Mozilla project 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (The Mozilla project, developed, the Gecko engine) -> The Mozilla project (4409ms)
What are geckos? Dr. Aaron Bauer 0.555555555565 What are geckos? -> $x: ($x, discover, gecko) -> (Dr. Aaron Bauer, discovered a species of, gecko) -> Dr. Aaron Bauer (4415ms)
What are geckos? the family 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are now considered to be in, the family) -> the family (4424ms)
What are geckos? size 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, range in, size) -> size (4426ms)
What are geckos? patients 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is contraindicated in, patients) -> patients (4422ms)
What are geckos? tropical rainforests 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, live in, tropical rainforests) -> tropical rainforests (4426ms)
What are geckos? Authorities Concept Scheme 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4426ms)
What are geckos? the teacher 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (the teacher, get rid of, the Gecko) -> the teacher (4420ms)
What are geckos? Surfair Resort 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s, located in, Surfair Resort) -> Surfair Resort (4424ms)
What are geckos? every home 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in, every home) -> every home (4430ms)
What are geckos? Hawaii 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, are everywhere in, Hawaii) -> Hawaii (4430ms)
What are geckos? primary , undisturbed forests 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, is found only in, primary , undisturbed forests) -> primary , undisturbed forests (4426ms)
What are geckos? a milder climate 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are typically found in, a milder climate) -> a milder climate (4424ms)
What are geckos? the dorsal area 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, have a light colored pattern in, the dorsal area) -> the dorsal area (4431ms)
What are geckos? the inside 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, got skin in, the inside) -> the inside (4430ms)
What are geckos? zero gravity 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, behave in, zero gravity) -> zero gravity (4422ms)
What are geckos? development 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, had already been in, development) -> development (4427ms)
What are geckos? June 2011 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, was unveiled in, June 2011) -> June 2011 (4426ms)
What are geckos? a nearby area 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, found in, a nearby area) -> a nearby area (4426ms)
What are geckos? popular imagery 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are ubiquitous both in, popular imagery) -> popular imagery (4431ms)
What are geckos? the quotation marks 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, puts in, the quotation marks) -> the quotation marks (4422ms)
What are geckos? Melbourne 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s Adventures, has its head office in, Melbourne) -> Melbourne (4420ms)
What are geckos? no idea 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (no idea, get, geckos tommorrow) -> no idea (4427ms)
What are geckos? thousands 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s feet, are covered in, thousands) -> thousands (4430ms)
What are geckos? front 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are still way out in, front) -> front (4430ms)
What are geckos? fact 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, are in, fact) -> fact (4424ms)
What are geckos? nature 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, is slightly warm in, nature) -> nature (4430ms)
What are geckos? ?Yep 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (?Yep, got, Geckos) -> ?Yep (4422ms)
What are geckos? Papua New Guinea 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, has been discovered in, Papua New Guinea) -> Papua New Guinea (4430ms)
What are geckos? a creamy tan colour 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, looks great in, a creamy tan colour) -> a creamy tan colour (4427ms)
What are geckos? standards-based rendering 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is the leader in, standards-based rendering) -> standards-based rendering (4424ms)
What are geckos? 60,000sqm 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is set in over, 60,000sqm) -> 60,000sqm (4430ms)
What are geckos? a long aquarium 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, should be housed in, a long aquarium) -> a long aquarium (4430ms)
What are geckos? warm climates 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in, warm climates) -> warm climates (4424ms)
What are geckos? home 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (home, Got, my two new Crested Geckos) -> home (4420ms)
What are geckos? a booth 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, sat in, a booth) -> a booth (4420ms)
What are geckos? the default font 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, are rendered in, the default font) -> the default font (4426ms)
What are geckos? CSS definitions 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (CSS definitions, got lost by, Gecko) -> CSS definitions (4420ms)
What are geckos? 100 million years ago 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, were definitely in Asia, 100 million years ago) -> 100 million years ago (4430ms)
What are geckos? Brazil 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, will be rolled out in, Brazil) -> Brazil (4420ms)
What are geckos? pairs---one male 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are always sold in, pairs---one male) -> pairs---one male (4424ms)
What are geckos? Jess 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Jess, get, a gecko) -> Jess (4429ms)
What are geckos? hey yall 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (hey yall, just got, 2 crested geckos) -> hey yall (4427ms)
What are geckos? a print Btw 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (a print Btw, get, many gecko 's) -> a print Btw (4427ms)
What are geckos? every situation 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, behave the same way in, every situation) -> every situation (4431ms)
What are geckos? little hairs 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (The Gecko Gecko feet, are covered in, little hairs) -> little hairs (4420ms)
What are geckos? oh & 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (oh &, got, another gecko) -> oh & (4430ms)
What are geckos? Step 5 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Step 5, Get, a gecko) -> Step 5 (4417ms)
What are geckos? Camino 1.0.x 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, used in, Camino 1.0.x) -> Camino 1.0.x (4426ms)
What are geckos? the development cycle 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is somewhat late in, the development cycle) -> the development cycle (4430ms)
What are geckos? the fight 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, could aid in, the fight) -> the fight (4431ms)
What are geckos? men 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is very commonly used in, men) -> men (4427ms)
What are geckos? pet shops 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are a popular choice in, pet shops) -> pet shops (4430ms)
What are geckos? we?ll 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (we?ll, get, Gecko goodness) -> we?ll (4427ms)
What are geckos? 60,000sqm of private grounds 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is set in over, 60,000sqm of private grounds) -> 60,000sqm of private grounds (4427ms)
What are geckos? terms 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, has made a very significant progress in, terms) -> terms (4424ms)
What are geckos? the USC business incubator 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, will start out in, the USC business incubator) -> the USC business incubator (4426ms)
What are geckos? Topical Terms Concept Scheme 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4431ms)
What are geckos? southeastern Asia 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are most numerous in, southeastern Asia) -> southeastern Asia (4431ms)
What are geckos? pairs 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, lay eggs in, pairs) -> pairs (4431ms)
What are geckos? the market 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, was in, the market) -> the market (4430ms)
What are geckos? map development 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, also is working in, map development) -> map development (4422ms)
What are geckos? the 2005 version 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, can be used in, the 2005 version) -> the 2005 version (4424ms)
What are geckos? the air 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, still lingers in, the air) -> the air (4426ms)
What are geckos? Tussock 8 ply 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are show in, Tussock 8 ply) -> Tussock 8 ply (4420ms)
What are geckos? New App | WebProNews 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (New App | WebProNews, Get, Your Gecko) -> New App | WebProNews (4431ms)
What are geckos? a children?s literacy resource Who?s 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (a children?s literacy resource Who?s, got, the ?Gecko) -> a children?s literacy resource Who?s (4424ms)
What are geckos? abundance 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are in, abundance) -> abundance (4424ms)
What are geckos? a released mobile device 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, already runs in, a released mobile device) -> a released mobile device (4417ms)
What are geckos? the string 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is also mentioned in, the string) -> the string (4430ms)
What are geckos? a ' Firefox OS' 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, could result in, a ' Firefox OS') -> a ' Firefox OS' (4422ms)
What are geckos? Jukjeon 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (No Gecko?s, opened a new restaurant in, Jukjeon) -> Jukjeon (4426ms)
What are geckos? the ocean 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, swam in, the ocean) -> the ocean (4424ms)
What are geckos? Asia 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, were definitely in, Asia) -> Asia (4426ms)
What are geckos? NZ 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are the largest in, NZ) -> NZ (4426ms)
What are geckos? Mozilla?s Firefox 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is used in, Mozilla?s Firefox) -> Mozilla?s Firefox (4422ms)
What are geckos? Firefox 3.6 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, used in, Firefox 3.6) -> Firefox 3.6 (4422ms)
What are geckos? a cave 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, has adapted to living in, a cave) -> a cave (4420ms)
What are geckos? a separate thread 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is running in, a separate thread) -> a separate thread (4422ms)
What are geckos? Gotta 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Gotta, Get, a Gecko) -> Gotta (4427ms)
What are geckos? the southern mountains 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, had been discovered in, the southern mountains) -> the southern mountains (4422ms)
What are geckos? UTF-8. 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, usually stores URLs internally in, UTF-8.) -> UTF-8. (4422ms)
What are geckos? quirks mode 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is OK in, quirks mode) -> quirks mode (4427ms)
What are geckos? FL... 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are inevitanle in, FL...) -> FL... (4430ms)
What are geckos? the wild 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, "lived in, the wild) -> the wild (4420ms)
What are geckos? deviantART 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (deviantART, Got, some crested geckos) -> deviantART (4427ms)
What are geckos? I?ll 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (I?ll, have to get, my little gecko) -> I?ll (4422ms)
What are geckos? Tigermond 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Tigermond, needs some help to get, his geckos) -> Tigermond (4422ms)
What are geckos? Cambodia?s Cardamoms 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, found only in, Cambodia?s Cardamoms) -> Cambodia?s Cardamoms (4431ms)
What are geckos? different varieties 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, come in, different varieties) -> different varieties (4426ms)
What are geckos? Submitted 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Submitted, Finally got another picture of, my gecko Mallory up) -> Submitted (4426ms)
What are geckos? every part 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in almost, every part) -> every part (4427ms)
What are geckos? Okinawa?the 0.444444444454 What are geckos? -> $x: ($x, involve, gecko) -> (Okinawa?the, first involves, a gecko) -> Okinawa?the (4431ms)
What are geckos? the steppers 0.33333333334299997 What are geckos? -> $x: ($x, be use as, gecko) -> (the steppers, would be the same as using, gecko) -> the steppers (4431ms)
What are geckos? no loot 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (no loot, may contain, a fire gecko) -> no loot (4432ms)
What are geckos? Louisiana 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (Louisiana, Contains, Gecko) -> Louisiana (4432ms)
What are geckos? The atrium 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (The atrium, contains, more fire geckos) -> The atrium (4432ms)
What are geckos? Albuquerque 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (Albuquerque, Contains, Gecko's Bar and Tapas) -> Albuquerque (4431ms)
What are geckos? United States of America 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (United States of America, Contains, Gecko) -> United States of America (4432ms)
What are geckos? The latter 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (The latter, currently contains, Gecko 1.9 alpha) -> The latter (4431ms)
What are geckos? St. Martin Parish 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (St. Martin Parish, Contains, Gecko) -> St. Martin Parish (4431ms)
What are geckos? the tea 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (the tea, contained, dried gecko lizard parts) -> the tea (4432ms)
What are geckos? Simplicity Studio 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (Simplicity Studio, also contains, EFM32 Gecko code examples) -> Simplicity Studio (4432ms)
What are geckos? tropical lizards 0.222222222219 What are geckos? -> $x: ($x, in, leopard gecko) -> (tropical lizards, would die in, a leopard gecko environment) -> tropical lizards (4432ms)
What are geckos? A testcase 0.11111111112299998 What are geckos? -> $x: ($x, demonstrate, gecko) -> (A testcase, demonstrates, Gecko?s correct behaviour) -> A testcase (4432ms)
What are geckos? The conference 0.11111111112299998 What are geckos? -> $x: ($x, demonstrate, gecko) -> (The conference, will demonstrate, GeckoSystems) -> The conference (4432ms)
What are geckos? I?m gonna 0.11111111112100003 What are geckos? -> $x: ($x, race be, gecko) -> (I?m gonna, be racing, the Gecko) -> I?m gonna (4432ms)
Whom did he marry? care -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (care, marries, whom) -> care (534ms)
Whom did he marry? six children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (six children, married, all of whom) -> six children (534ms)
Whom did he marry? a damn -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (a damn, marries, whom) -> a damn (534ms)
Whom did he marry? Davidman -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Davidman, married William Gresham by, whom) -> Davidman (534ms)
Whom did he marry? five daughters -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (five daughters, married, all of whom) -> five daughters (535ms)
Whom did he marry? Wickham -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Wickham, should marry, a girl whom it was impossible) -> Wickham (534ms)
Whom did he marry? Jerry -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Jerry, [is] the married man with, whom) -> Jerry (535ms)
Whom did he marry? twelve children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (twelve children, married, all of whom) -> twelve children (535ms)
Whom did he marry? 16 known children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (16 known children, married, most of whom) -> 16 known children (535ms)
Whom did he marry? Lindsay -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Lindsay, [is] a married woman with, whom) -> Lindsay (535ms)
Whom did he marry? a rip -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (a rip, marries, whom) -> a rip (534ms)
Whom did he marry? a young lady -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (a young lady, to marry, the man whom her father has selected) -> a young lady (535ms)
Whom did he marry? Sweden -0.0 Whom did he marry? -> $x: ($x, marry, stockholm) -> (Sweden, married in, Stockholm) -> Sweden (534ms)
Whom did he marry? two brothers -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (two brothers, was married, one of whom) -> two brothers (535ms)
Whom did he marry? A seducer -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (A seducer, must marry, an unengaged virgin whom he seduces) -> A seducer (535ms)
Whom did he marry? thirteen children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (thirteen children, married, most of whom) -> thirteen children (535ms)
Whom did he marry? James Mayfield -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (James Mayfield, [is] a married man with, whom) -> James Mayfield (534ms)
Whom did he marry? ten children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (ten children, married, all of whom) -> ten children (535ms)
Whom did he marry? an adulteress -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (an adulteress, to marry, a man with whom she committed adultery) -> an adulteress (535ms)
Whom did he marry? fair opportunities -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (fair opportunities, may marry, WHOM SHE LIKES.) -> fair opportunities (535ms)
Whom did he marry? business -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (business, marries, whom) -> business (535ms)
Whom did he marry? four children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (four children, married, all of whom) -> four children (535ms)
Whom did he marry? eight children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (eight children, married, all of whom) -> eight children (535ms)
Where was Rachel Carson home? Wells -1.0 Where was Rachel Carson home? -> $x: ($x, be home, rachel carson) -> (Wells, is home to, the Rachel Carson National Wildlife Refuge) -> Wells (1036ms)
Where was Rachel Carson home? Self-anchored suspension bridge -1.111111111109 Where 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)
Where was Rachel Carson home? the years -1.3333333333330002 Where was Rachel Carson home? -> $x: ($x, be the home of, carson) -> (the years, was the home of, Johnny Carson) -> the years (1147ms)
Where was Rachel Carson home? the starting point -1.3333333333330002 Where 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)
Where was Rachel Carson home? a captivating herd -1.5555555555499998 Where was Rachel Carson home? -> $x: (rachel carson, be home, $x) -> (the Rachel Carson Reserve, is home to, a captivating herd) -> a captivating herd (1917ms)
Where was Rachel Carson home? scores -1.5555555555499998 Where was Rachel Carson home? -> $x: (rachel carson, be home, $x) -> (The Rachel Carson Reserve, is home to, scores) -> scores (1917ms)
Where was Rachel Carson home? Organization -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Organization) -> Organization (3484ms)
Where was Rachel Carson home? Influence Node -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Influence Node) -> Influence Node (3464ms)
Where was Rachel Carson home? Canonical Version -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Canonical Version) -> Canonical Version (3476ms)
Where was Rachel Carson home? Building -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Notable types, Building) -> Building (3476ms)
Where was Rachel Carson home? word -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Louise Carson, Type, word) -> word (3481ms)
Where was Rachel Carson home? Body Of Water -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Type, Body Of Water) -> Body Of Water (3476ms)
Where was Rachel Carson home? NRIS Listing -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson House, Type, NRIS Listing) -> NRIS Listing (2152ms)
Where was Rachel Carson home? Project focus -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Project focus) -> Project focus (3476ms)
Where was Rachel Carson home? Award Winner -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Award Winner) -> Award Winner (3168ms)
Where was Rachel Carson home? Trail -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Trail, Notable types, Trail) -> Trail (3168ms)
Where was Rachel Carson home? Cataloged instance -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Cataloged instance) -> Cataloged instance (3480ms)
Where was Rachel Carson home? River -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Notable types, River) -> River (3464ms)
Where was Rachel Carson home? Structure -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Bridge, Type, Structure) -> Structure (3481ms)
Where was Rachel Carson home? KWTopic -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, KWTopic) -> KWTopic (3484ms)
Where was Rachel Carson home? Museum -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Museum) -> Museum (3464ms)
Where was Rachel Carson home? Book -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Book) -> Book (3476ms)
Where was Rachel Carson home? NNDB Person -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, NNDB Person) -> NNDB Person (1944ms)
Where was Rachel Carson home? Deceased Person -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Deceased Person) -> Deceased Person (3484ms)
Where was Rachel Carson home? Musical Recording -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Musical Recording) -> Musical Recording (3484ms)
Where was Rachel Carson home? Book Edition -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson: a biography, Type, Book Edition) -> Book Edition (3481ms)
Where was Rachel Carson home? Person -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Person) -> Person (2015ms)
Where was Rachel Carson home? Name source -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Name source) -> Name source (3476ms)
Where was Rachel Carson home? Bridge -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Bridge, Type, Bridge) -> Bridge (3476ms)
Where was Rachel Carson home? Elevation Range -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Trail, Type, Elevation Range) -> Elevation Range (1917ms)
Where was Rachel Carson home? TV Episode -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson's Silent Spring, Notable types, TV Episode) -> TV Episode (3464ms)
Where was Rachel Carson home? Award Nominee -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Award Nominee) -> Award Nominee (3484ms)
Where was Rachel Carson home? Organization committee -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Awards Council, Type, Organization committee) -> Organization committee (3484ms)
Where was Rachel Carson home? Namesake -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Namesake) -> Namesake (3481ms)
Where was Rachel Carson home? Image -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (RachelCarsonHomestead, Type, Image) -> Image (3484ms)
Where was Rachel Carson home? Geographical Feature -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Type, Geographical Feature) -> Geographical Feature (3464ms)
Where was Rachel Carson home? Award -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Award) -> Award (3481ms)
Where was Rachel Carson home? Content -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel carson house md, Type, Content) -> Content (3488ms)
Where was Rachel Carson home? Listed Site -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Listed Site) -> Listed Site (3484ms)
Where was Rachel Carson home? Hall of fame inductee -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Hall of fame inductee) -> Hall of fame inductee (3480ms)
Where was Rachel Carson home? Release track -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Release track) -> Release track (3168ms)
Where was Rachel Carson home? Location -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson House, Type, Location) -> Location (3480ms)
Where was Rachel Carson home? Employer -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Employer) -> Employer (3464ms)
Where was Rachel Carson home? Written Work -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Written Work) -> Written Work (3484ms)
Where was Rachel Carson home? Award category -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Award category) -> Award category (2152ms)
Where was Rachel Carson home? Tourist attraction -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Tourist attraction) -> Tourist attraction (3484ms)
Where was Rachel Carson home? Educational Institution -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Educational Institution) -> Educational Institution (3484ms)
Where was Rachel Carson home? School -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, School) -> School (3485ms)
Where was Rachel Carson home? Building Occupant -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Building Occupant) -> Building Occupant (3484ms)
Where was Rachel Carson home? Author -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Author) -> Author (3476ms)
Where was Rachel Carson home? The base -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (The base, is also home to, the Charles C. Carson Center) -> The base (3488ms)
Where was Rachel Carson home? Colorado Springs -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Colorado Springs, is home to, Fort Carson Army base) -> Colorado Springs (3488ms)
Where was Rachel Carson home? Burlington -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Burlington, is home to, the Kit Carson County Carousel) -> Burlington (3488ms)
Where was Rachel Carson home? Hugo -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Hugo, is the winter home to, the Carson & Barnes Circus) -> Hugo (3488ms)
Where was Rachel Carson home? Colorado -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Colorado, is home to, Ft . Carson) -> Colorado (3488ms)
Where was Rachel Carson home? the Regiment -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (the Regiment, are now returning home to, Ft Carson) -> the Regiment (3488ms)
Where was Rachel Carson home? David Carson Design -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (David Carson Design, is still home to, Carson) -> David Carson Design (3488ms)
Where was Rachel Carson home? Middagh Street -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Middagh Street, was home to, Carson McCullers) -> Middagh Street (3488ms)
Where was Rachel Carson home? NC -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (NC, was home to, the Carson family) -> NC (3488ms)
Where was Rachel Carson home? Taos -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Taos, was home to, Kit Carson) -> Taos (3488ms)
Where was Rachel Carson home? The Carson River Watershed -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (The Carson River Watershed, is home to, the Carson River) -> The Carson River Watershed (3488ms)
Where was Rachel Carson home? Common stock -1.7777777777750001 Where was Rachel Carson home? -> $x: ($x, type, carson) -> (Common stock, Issues of this type, CARSON CUMBERBATCH & CO PLC Common Stock) -> Common stock (3492ms)
Where was Rachel Carson home? Floribunda -1.7777777777750001 Where was Rachel Carson home? -> $x: ($x, type, carson) -> (Floribunda, Roses of this type, Rosa 'Violet Carson') -> Floribunda (3492ms)
Where was Rachel Carson home? the regiment -1.888888888883 Where was Rachel Carson home? -> $x: (carson, be the home of, $x) -> (Camp Carson, was the new home of, the regiment) -> the regiment (3495ms)
Where was Rachel Carson home? a writer -2.111111111103 Where was Rachel Carson home? -> $x: (carson, be example of, $x) -> (Carson McCullers, is the quintessential example of, a writer) -> a writer (3495ms)
Where was Rachel Carson home? a victorian home -2.111111111103 Where was Rachel Carson home? -> $x: (carson, be example of, $x) -> (The carson mansion, is an example of, a victorian home) -> a victorian home (3495ms)
Where was Rachel Carson home? meat -2.222222222214 Where was Rachel Carson home? -> $x: (carson, be type of, $x) -> (Bowl of the wife of Kit Carson, is a type of, meat) -> meat (3495ms)
Where was Rachel Carson home? company -2.222222222214 Where was Rachel Carson home? -> $x: (carson, be type of, $x) -> (Matt Carson Profusion Customs, is the type of, company) -> company (3495ms)
Where was Rachel Carson home? buildings -2.222222222215 Where was Rachel Carson home? -> $x: (carson, be house in, $x) -> (The old Carson-Tahoe Hospital, was housed in, buildings) -> buildings (3495ms)
Where was Rachel Carson home? a large assortment -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, is home to, a large assortment) -> a large assortment (3495ms)
Where was Rachel Carson home? nine divisions -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (its history Fort Carson, has been home to, nine divisions) -> nine divisions (3495ms)
Where was Rachel Carson home? 9,000 Axis prisoners -2.2222222222159997 Where 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)
Where was Rachel Carson home? Carson -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (David Carson Design, is still home to, Carson) -> Carson (3499ms)
Where was Rachel Carson home? the Home Depot Center -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, is also home to, the Home Depot Center) -> the Home Depot Center (3499ms)
Where was Rachel Carson home? the first Nevada settlement -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson Valley, is home of, the first Nevada settlement) -> the first Nevada settlement (3499ms)
Where was Rachel Carson home? furlough -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (John Carson, is home on, furlough) -> furlough (3499ms)
Where was Rachel Carson home? 15 officers -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson City, is home to, 15 officers) -> 15 officers (3499ms)
Where was Rachel Carson home? prom -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Jake and Carson, were heading home from, prom) -> prom (3495ms)
Where was Rachel Carson home? the brand -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, would be a perfect home for, the brand) -> the brand (3499ms)
Where was Rachel Carson home? Wheeler Peak -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson National Forest, is home to, Wheeler Peak) -> Wheeler Peak (3499ms)
Where was Rachel Carson home? Stickman -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, used to be home to, Stickman) -> Stickman (3499ms)
Where was Rachel Carson home? the Carson River -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (The Carson River Watershed, is home to, the Carson River) -> the Carson River (3499ms)
Where was Rachel Carson home? the rare Lahontan trout -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (the Carson River, is home to, the rare Lahontan trout) -> the rare Lahontan trout (3499ms)
Where was Rachel Carson home? the families -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Fort Carson, is home to, the families) -> the families (3495ms)
Where was Rachel Carson home? the largest collection -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson City, is home to, the largest collection) -> the largest collection (3495ms)
Where was Rachel Carson home? Statistical region -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Statistical region) -> Statistical region (3515ms)
Where was Rachel Carson home? Business Operation -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson's, Type, Business Operation) -> Business Operation (3513ms)
Where was Rachel Carson home? Noble person -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Noble person) -> Noble person (3515ms)
Where was Rachel Carson home? Transit Stop -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Transit Stop) -> Transit Stop (3511ms)
Where was Rachel Carson home? Musical Album -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson?, Notable types, Musical Album) -> Musical Album (3515ms)
Where was Rachel Carson home? Top Architectural City -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Top Architectural City) -> Top Architectural City (3509ms)
Where was Rachel Carson home? TV Actor -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Mindy Carson, Type, TV Actor) -> TV Actor (3513ms)
Where was Rachel Carson home? topic -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, topic) -> topic (3513ms)
Where was Rachel Carson home? City/Town/Village -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, City/Town/Village) -> City/Town/Village (3511ms)
Where was Rachel Carson home? Politician -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Politician) -> Politician (3513ms)
Where was Rachel Carson home? Governmental Jurisdiction -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Governmental Jurisdiction) -> Governmental Jurisdiction (3511ms)
Where was Rachel Carson home? Dated location -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, Dated location) -> Dated location (3515ms)
Where was Rachel Carson home? KWSentence -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson^?, Type, KWSentence) -> KWSentence (3509ms)
Where was Rachel Carson home? Film actor -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Towa Carson, Type, Film actor) -> Film actor (3511ms)
Where was Rachel Carson home? Chivalric Order Member -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Chivalric Order Member) -> Chivalric Order Member (3515ms)
Where was Rachel Carson home? Capital of administrative division -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Capital of administrative division) -> Capital of administrative division (3513ms)
Where was Rachel Carson home? HUD County Place -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, HUD County Place) -> HUD County Place (3513ms)
Where was Rachel Carson home? Fi