From 7fa57418c48820b3e62fbe1043bac8c6bce4728f Mon Sep 17 00:00:00 2001 From: sangnie Date: Wed, 28 Nov 2018 20:05:24 +0530 Subject: [PATCH] OpenIE 5.0.1 and Srlie --- README.md | 11 +- build.sbt | 46 +- compile.sh | 4 + project/Release.scala | 28 +- project/build.properties | 3 +- project/plugins.sbt | 10 +- sbt/bin/java9-rt-export.jar | Bin 0 -> 4658 bytes sbt/bin/sbt | 177 + sbt/bin/sbt-launch-lib.bash | 325 ++ sbt/bin/sbt-launch.jar | Bin 0 -> 1273820 bytes sbt/bin/sbt.bat | 212 ++ sbt/conf/sbtconfig.txt | 14 + sbt/conf/sbtopts | 49 + .../scala/edu/knowitall/openie/OpenIE.scala | 31 +- srlie/.gitignore | 5 + srlie/.travis.yml | 6 + srlie/LICENSE | 86 + srlie/README.md | 31 + srlie/build.sbt | 72 + srlie/data/annotations-eval.txt | 3076 +++++++++++++++++ srlie/data/annotations-training.txt | 1235 +++++++ srlie/data/gold-correctness.txt | 669 ++++ srlie/data/gold-default.txt | 1806 ++++++++++ srlie/index.html | 6 + srlie/project/Release.scala | 31 + srlie/project/build.properties | 1 + srlie/project/plugins.sbt | 5 + .../confidence/correctness-classifier.txt | 25 + .../srlie/confidence/default-classifier.txt | 25 + srlie/src/main/resources/logback.xml | 14 + .../edu/knowitall/srlie/SrlExtraction.scala | 529 +++ .../srlie/SrlExtractionInstance.scala | 14 + .../edu/knowitall/srlie/SrlExtractor.scala | 192 + .../srlie/confidence/AnalyzeFeatures.scala | 57 + .../srlie/confidence/CreateCurve.scala | 32 + .../confidence/SrlConfidenceFunction.scala | 25 + .../srlie/confidence/SrlFeatureSet.scala | 250 ++ .../srlie/confidence/TrainSrlConfidence.scala | 161 + .../srlie/nested/SrlNestedExtraction.scala | 75 + .../srlie/SrlExtractionSpecTest.scala | 361 ++ .../srlie/SrlNestedExtractionSpec.scala | 63 + .../SrlConfidenceFunctionTest.scala | 28 + srlie/version.sbt | 1 + 43 files changed, 9742 insertions(+), 49 deletions(-) create mode 100644 compile.sh create mode 100644 sbt/bin/java9-rt-export.jar create mode 100755 sbt/bin/sbt create mode 100644 sbt/bin/sbt-launch-lib.bash create mode 100644 sbt/bin/sbt-launch.jar create mode 100644 sbt/bin/sbt.bat create mode 100644 sbt/conf/sbtconfig.txt create mode 100644 sbt/conf/sbtopts create mode 100644 srlie/.gitignore create mode 100644 srlie/.travis.yml create mode 100644 srlie/LICENSE create mode 100644 srlie/README.md create mode 100644 srlie/build.sbt create mode 100644 srlie/data/annotations-eval.txt create mode 100644 srlie/data/annotations-training.txt create mode 100644 srlie/data/gold-correctness.txt create mode 100644 srlie/data/gold-default.txt create mode 100644 srlie/index.html create mode 100644 srlie/project/Release.scala create mode 100644 srlie/project/build.properties create mode 100644 srlie/project/plugins.sbt create mode 100644 srlie/src/main/resources/edu/knowitall/srlie/confidence/correctness-classifier.txt create mode 100644 srlie/src/main/resources/edu/knowitall/srlie/confidence/default-classifier.txt create mode 100644 srlie/src/main/resources/logback.xml create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/SrlExtraction.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/SrlExtractionInstance.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/SrlExtractor.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/confidence/AnalyzeFeatures.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/confidence/CreateCurve.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunction.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlFeatureSet.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/confidence/TrainSrlConfidence.scala create mode 100644 srlie/src/main/scala/edu/knowitall/srlie/nested/SrlNestedExtraction.scala create mode 100644 srlie/src/test/scala/edu/knowitall/srlie/SrlExtractionSpecTest.scala create mode 100644 srlie/src/test/scala/edu/knowitall/srlie/SrlNestedExtractionSpec.scala create mode 100644 srlie/src/test/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunctionTest.scala create mode 100644 srlie/version.sbt diff --git a/README.md b/README.md index 4f3bf53..d6a48d2 100644 --- a/README.md +++ b/README.md @@ -113,11 +113,12 @@ Also, download the standalone jar for CALMIE from [here](https://github.com/dair CALMIE uses Berkeley Language Model. Download the Language Model file from [here](https://drive.google.com/file/d/0B-5EkZMOlIt2cFdjYUJZdGxSREU/view?usp=sharing) and place it inside a data folder(create the `data` folder parallel to the `src` folder) -`openie` uses java-7-openjdk & the [sbt build system](http://www.scala-sbt.org/), so downloading -dependencies and compiling is simple. Just run: +`openie` uses java-8-openjdk & the [sbt build system](http://www.scala-sbt.org/), so downloading +dependencies and compiling is simple: + +1. Add sbt/bin to your path. +2. Run compile.sh - sbt compile - Open IE uses scala 2.10.2. In case of a version mismatch problem, try using Scala 2.10.2. ## Using pre-compiled OpenIE standalone jar @@ -137,7 +138,7 @@ OpenIE's large memory requirements largely accounts to the fact that it currentl ### Running with sbt - sbt 'run-main edu.knowitall.openie.OpenIECli' + sbt 'runMain edu.knowitall.openie.OpenIECli' ### Running from a stand-alone jar. diff --git a/build.sbt b/build.sbt index 33394ed..f528bd9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,14 +1,13 @@ -import AssemblyKeys._ import NativePackagerKeys._ +import com.typesafe.sbt.SbtNativePackager.Universal -assemblySettings - -mergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) => { +assemblyMergeStrategy in assembly := { case PathList(ps @ _*) if ps.last endsWith ".class" => MergeStrategy.first case PathList(ps @ _*) if ps.last endsWith ".properties" => MergeStrategy.first case PathList(ps @ _*) if ps.last endsWith ".xml" => MergeStrategy.first - case x => old(x) - } + case x => + val oldStrategy = (assemblyMergeStrategy in assembly).value + oldStrategy(x) } ReleaseSettings.defaults @@ -18,14 +17,15 @@ name := "openie" organization := "edu.washington.cs.knowitall.openie" crossScalaVersions := Seq("2.10.2") - -scalaVersion <<= crossScalaVersions { (vs: Seq[String]) => vs.head } +//scalaVersion := crossScalaVersions { (vs: Seq[String]) => vs.head.value } +scalaVersion := "2.10.2" resolvers += "Sonatype SNAPSHOTS" at "https://oss.sonatype.org/content/repositories/snapshots/" +resolvers += Resolver.bintrayIvyRepo("com.eed3si9n", "sbt-plugins") libraryDependencies ++= Seq( // extractor components - "edu.washington.cs.knowitall.srlie" %% "srlie" % "1.0.3", + "edu.washington.cs.knowitall.srlie" %% "srlie" % "1.0.4-SNAPSHOT", "edu.washington.cs.knowitall.chunkedextractor" %% "chunkedextractor" % "2.2.1", // for splitting sentences "edu.washington.cs.knowitall.nlptools" %% "nlptools-sentence-opennlp" % "2.4.5", @@ -39,6 +39,12 @@ libraryDependencies ++= Seq( "ch.qos.logback" % "logback-classic" % "1.0.13", "org.scalatest" % "scalatest_2.10" % "2.0.RC1" % "test") +//dependencyOverrides ++= Set( // Seq for SBT 1.0.x +// "com.google.guava" %% "guava" % "20.0", +// "org.eclipse.sisu" %% "org.eclipse.sisu.plexus" % "0.3.2", +// "org.codehaus.plexus" %% "plexus-utils" % "3.0.22" +//) + mainClass in assembly := Some("edu.knowitall.openie.OpenIECli") scalacOptions ++= Seq("-unchecked", "-deprecation") @@ -53,6 +59,8 @@ fork in run := true fork in Test := true +outputStrategy := Some(StdoutOutput) + connectInput in run := true // forward stdin/out to fork licenses := Seq("Open IE Software License Agreement" -> url("https://raw.github.com/knowitall/openie/master/LICENSE")) @@ -61,10 +69,18 @@ homepage := Some(url("https://github.com/knowitall/openie")) publishMavenStyle := true -publishTo <<= version { (v: String) => +//publishTo <<= version { (v: String) => +// val nexus = "https://oss.sonatype.org/" +// if (v.trim.endsWith("SNAPSHOT")) +// Some("snapshots" at nexus + "content/repositories/snapshots") +// else +// Some("releases" at nexus + "service/local/staging/deploy/maven2") +//} + +publishTo := { val nexus = "https://oss.sonatype.org/" - if (v.trim.endsWith("SNAPSHOT")) - Some("snapshots" at nexus + "content/repositories/snapshots") + if (isSnapshot.value) + Some("snapshots" at nexus + "content/repositories/snapshots") else Some("releases" at nexus + "service/local/staging/deploy/maven2") } @@ -85,10 +101,10 @@ pomExtra := ( ) -packagerSettings - -packageArchetype.java_application +//packagerSettings +//packageArchetype.java_application +enablePlugins(JavaAppPackaging) mappings in Universal ++= Seq( file("README.md") -> "README.md", file("LICENSE") -> "LICENSE" diff --git a/compile.sh b/compile.sh new file mode 100644 index 0000000..1e8774f --- /dev/null +++ b/compile.sh @@ -0,0 +1,4 @@ +cd srlie +sbt publishLocal +cd .. +sbt compile diff --git a/project/Release.scala b/project/Release.scala index 110adbc..759a458 100644 --- a/project/Release.scala +++ b/project/Release.scala @@ -2,25 +2,23 @@ import sbt._ import Keys._ import sbtrelease._ -import ReleasePlugin._ -import ReleaseKeys._ import ReleaseStateTransformations._ import Utilities._ - -import com.typesafe.sbt.SbtPgp.PgpKeys._ +import sbtrelease.ReleasePlugin.autoImport._ +import com.typesafe.sbt.pgp.PgpKeys._ object ReleaseSettings { - val defaults = releaseSettings ++ Seq( - releaseProcess := Seq[ReleaseStep]( - checkSnapshotDependencies, - inquireVersions, - runTest, - setReleaseVersion, - commitReleaseVersion, - tagRelease, - publishArtifacts.copy(action = publishSignedAction), - setNextVersion, - commitNextVersion + val defaults = Seq( + releaseProcess := Seq[ReleaseStep]( + checkSnapshotDependencies, + inquireVersions, + runTest, + setReleaseVersion, + commitReleaseVersion, + tagRelease, + publishArtifacts.copy(action = publishSignedAction), + setNextVersion, + commitNextVersion )) lazy val publishSignedAction = { st: State => diff --git a/project/build.properties b/project/build.properties index 0974fce..91f5a0d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1,2 @@ -sbt.version=0.13.0 +#sbt.version=0.13.0 +sbt.version=1.2.1 diff --git a/project/plugins.sbt b/project/plugins.sbt index c3e32ed..33eb20d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,9 +1,9 @@ -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.11.2") +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5") -addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4") +addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2") -addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.6.2") +addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.6") -addSbtPlugin("com.github.gseitz" % "sbt-release" % "0.8") +addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.9") -addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.1") +addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1") diff --git a/sbt/bin/java9-rt-export.jar b/sbt/bin/java9-rt-export.jar new file mode 100644 index 0000000000000000000000000000000000000000..cbabfb076ec041acffacfec32a96923cc4b21f29 GIT binary patch literal 4658 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 Q#NQv)3jn|%)%n~10sqa|VgLXD literal 0 HcmV?d00001 diff --git a/sbt/bin/sbt b/sbt/bin/sbt new file mode 100755 index 0000000..cca77be --- /dev/null +++ b/sbt/bin/sbt @@ -0,0 +1,177 @@ +#!/usr/bin/env bash + + +### ------------------------------- ### +### Helper methods for BASH scripts ### +### ------------------------------- ### + +realpath () { +( + TARGET_FILE="$1" + FIX_CYGPATH="$2" + + cd "$(dirname "$TARGET_FILE")" + TARGET_FILE=$(basename "$TARGET_FILE") + + COUNT=0 + while [ -L "$TARGET_FILE" -a $COUNT -lt 100 ] + do + TARGET_FILE=$(readlink "$TARGET_FILE") + cd "$(dirname "$TARGET_FILE")" + TARGET_FILE=$(basename "$TARGET_FILE") + COUNT=$(($COUNT + 1)) + done + + # make sure we grab the actual windows path, instead of cygwin's path. + if [[ "x$FIX_CYGPATH" != "x" ]]; then + echo "$(cygwinpath "$(pwd -P)/$TARGET_FILE")" + else + echo "$(pwd -P)/$TARGET_FILE" + fi +) +} + + +# Uses uname to detect if we're in the odd cygwin environment. +is_cygwin() { + local os=$(uname -s) + case "$os" in + CYGWIN*) return 0 ;; + MINGW*) return 0 ;; + MSYS*) return 0 ;; + *) return 1 ;; + esac +} + +# TODO - Use nicer bash-isms here. +CYGWIN_FLAG=$(if is_cygwin; then echo true; else echo false; fi) + + +# This can fix cygwin style /cygdrive paths so we get the +# windows style paths. +cygwinpath() { + local file="$1" + if [[ "$CYGWIN_FLAG" == "true" ]]; then + echo $(cygpath -w $file) + else + echo $file + fi +} + +. "$(dirname "$(realpath "$0")")/sbt-launch-lib.bash" + + +declare -r noshare_opts="-Dsbt.global.base=project/.sbtboot -Dsbt.boot.directory=project/.boot -Dsbt.ivy.home=project/.ivy" +declare -r sbt_opts_file=".sbtopts" +declare -r etc_sbt_opts_file="/etc/sbt/sbtopts" +declare -r dist_sbt_opts_file="${sbt_home}/conf/sbtopts" +declare -r win_sbt_opts_file="${sbt_home}/conf/sbtconfig.txt" + +usage() { + cat < path to global settings/plugins directory (default: ~/.sbt) + -sbt-boot path to shared boot directory (default: ~/.sbt/boot in 0.11 series) + -ivy path to local Ivy repository (default: ~/.ivy2) + -mem set memory options (default: $sbt_default_mem, which is $(get_mem_opts)) + -no-share use all local caches; no sharing + -no-global uses global caches, but does not use global ~/.sbt directory. + -jvm-debug Turn on JVM debugging, open at the given port. + -batch Disable interactive mode + + # sbt version (default: from project/build.properties if present, else latest release) + -sbt-version use the specified version of sbt + -sbt-jar use the specified jar as the sbt launcher + -sbt-rc use an RC version of sbt + -sbt-snapshot use a snapshot version of sbt + + # java version (default: java from PATH, currently $(java -version 2>&1 | grep version)) + -java-home alternate JAVA_HOME + + # jvm options and output control + JAVA_OPTS environment variable, if unset uses "$java_opts" + .jvmopts if this file exists in the current directory, its contents + are appended to JAVA_OPTS + SBT_OPTS environment variable, if unset uses "$default_sbt_opts" + .sbtopts if this file exists in the current directory, its contents + are prepended to the runner args + /etc/sbt/sbtopts if this file exists, it is prepended to the runner args + -Dkey=val pass -Dkey=val directly to the java runtime + -J-X pass option -X directly to the java runtime + (-J is stripped) + -S-X add -X to sbt's scalacOptions (-S is stripped) + +In the case of duplicated or conflicting options, the order above +shows precedence: JAVA_OPTS lowest, command line options highest. +EOM +} + + + +process_my_args () { + while [[ $# -gt 0 ]]; do + case "$1" in + -no-colors) addJava "-Dsbt.log.noformat=true" && shift ;; + -no-share) addJava "$noshare_opts" && shift ;; + -no-global) addJava "-Dsbt.global.base=$(pwd)/project/.sbtboot" && shift ;; + -sbt-boot) require_arg path "$1" "$2" && addJava "-Dsbt.boot.directory=$2" && shift 2 ;; + -sbt-dir) require_arg path "$1" "$2" && addJava "-Dsbt.global.base=$2" && shift 2 ;; + -debug-inc) addJava "-Dxsbt.inc.debug=true" && shift ;; + -batch) exec + link=$(expr "$ls" : '.*-> \(.*\)$') + if expr "$link" : '/.*' > /dev/null; then + SCRIPT="$link" + else + SCRIPT=$(dirname "$SCRIPT")/"$link" + fi +done +declare -r sbt_bin_dir="$(dirname "$SCRIPT")" +declare -r sbt_home="$(dirname "$sbt_bin_dir")" + +echoerr () { + echo 1>&2 "$@" +} +vlog () { + [[ $verbose || $debug ]] && echoerr "$@" +} +dlog () { + [[ $debug ]] && echoerr "$@" +} + +jar_file () { + echo "$(cygwinpath "${sbt_home}/bin/sbt-launch.jar")" +} + +acquire_sbt_jar () { + sbt_jar="$(jar_file)" + + if [[ ! -f "$sbt_jar" ]]; then + echoerr "Could not find launcher jar: $sbt_jar" + exit 2 + fi +} + +rt_export_file () { + echo "${sbt_bin_dir}/java9-rt-export.jar" +} + +execRunner () { + # print the arguments one to a line, quoting any containing spaces + [[ $verbose || $debug ]] && echo "# Executing command line:" && { + for arg; do + if printf "%s\n" "$arg" | grep -q ' '; then + printf "\"%s\"\n" "$arg" + else + printf "%s\n" "$arg" + fi + done + echo "" + } + + # THis used to be exec, but we loose the ability to re-hook stty then + # for cygwin... Maybe we should flag the feature here... + "$@" +} + +addJava () { + dlog "[addJava] arg = '$1'" + java_args=( "${java_args[@]}" "$1" ) +} +addSbt () { + dlog "[addSbt] arg = '$1'" + sbt_commands=( "${sbt_commands[@]}" "$1" ) +} +addResidual () { + dlog "[residual] arg = '$1'" + residual_args=( "${residual_args[@]}" "$1" ) +} +addDebugger () { + addJava "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=$1" +} + +get_mem_opts () { + # if we detect any of these settings in ${JAVA_OPTS} or ${JAVA_TOOL_OPTIONS} we need to NOT output our settings. + # The reason is the Xms/Xmx, if they don't line up, cause errors. + if [[ "${JAVA_OPTS}" == *-Xmx* ]] || [[ "${JAVA_OPTS}" == *-Xms* ]] || [[ "${JAVA_OPTS}" == *-XX:MaxPermSize* ]] || [[ "${JAVA_OPTS}" == *-XX:MaxMetaspaceSize* ]] || [[ "${JAVA_OPTS}" == *-XX:ReservedCodeCacheSize* ]]; then + echo "" + elif [[ "${JAVA_TOOL_OPTIONS}" == *-Xmx* ]] || [[ "${JAVA_TOOL_OPTIONS}" == *-Xms* ]] || [[ "${JAVA_TOOL_OPTIONS}" == *-XX:MaxPermSize* ]] || [[ "${JAVA_TOOL_OPTIONS}" == *-XX:MaxMetaspaceSize* ]] || [[ "${JAVA_TOOL_OPTIONS}" == *-XX:ReservedCodeCacheSize* ]]; then + echo "" + elif [[ "${SBT_OPTS}" == *-Xmx* ]] || [[ "${SBT_OPTS}" == *-Xms* ]] || [[ "${SBT_OPTS}" == *-XX:MaxPermSize* ]] || [[ "${SBT_OPTS}" == *-XX:MaxMetaspaceSize* ]] || [[ "${SBT_OPTS}" == *-XX:ReservedCodeCacheSize* ]]; then + echo "" + else + # a ham-fisted attempt to move some memory settings in concert + # so they need not be messed around with individually. + local mem=${1:-$sbt_default_mem} + local codecache=$(( $mem / 8 )) + (( $codecache > 128 )) || codecache=128 + (( $codecache < 512 )) || codecache=512 + local class_metadata_size=$(( $codecache * 2 )) + if [[ -z $java_version ]]; then + java_version=$(jdk_version) + fi + local class_metadata_opt=$((( $java_version < 8 )) && echo "MaxPermSize" || echo "MaxMetaspaceSize") + + local arg_xms=$([[ "${java_args[@]}" == *-Xms* ]] && echo "" || echo "-Xms${mem}m") + local arg_xmx=$([[ "${java_args[@]}" == *-Xmx* ]] && echo "" || echo "-Xmx${mem}m") + local arg_rccs=$([[ "${java_args[@]}" == *-XX:ReservedCodeCacheSize* ]] && echo "" || echo "-XX:ReservedCodeCacheSize=${codecache}m") + local arg_meta=$([[ "${java_args[@]}" == *-XX:${class_metadata_opt}* && ! (( $java_version < 8 )) ]] && echo "" || echo "-XX:${class_metadata_opt}=${class_metadata_size}m") + + echo "${arg_xms} ${arg_xmx} ${arg_rccs} ${arg_meta}" + fi +} + +get_gc_opts () { + local older_than_9=$(( $java_version < 9 )) + + if [[ "$older_than_9" == "1" ]]; then + # don't need to worry about gc + echo "" + elif [[ "${JAVA_OPTS}" =~ Use.*GC ]] || [[ "${JAVA_TOOL_OPTIONS}" =~ Use.*GC ]] || [[ "${SBT_OPTS}" =~ Use.*GC ]] ; then + # GC arg has been passed in - don't change + echo "" + else + # Java 9+ so revert to old + echo "-XX:+UseParallelGC" + fi +} + +require_arg () { + local type="$1" + local opt="$2" + local arg="$3" + if [[ -z "$arg" ]] || [[ "${arg:0:1}" == "-" ]]; then + echo "$opt requires <$type> argument" + exit 1 + fi +} + +is_function_defined() { + declare -f "$1" > /dev/null +} + +# parses JDK version from the -version output line. +# 8 for 1.8.0_nn, 9 for 9-ea etc, and "no_java" for undetected +jdk_version() { + local result + local lines=$("$java_cmd" -Xms32M -Xmx32M -version 2>&1 | tr '\r' '\n') + local IFS=$'\n' + for line in $lines; do + if [[ (-z $result) && ($line = *"version \""*) ]] + then + local ver=$(echo $line | sed -e 's/.*version "\(.*\)"\(.*\)/\1/; 1q') + # on macOS sed doesn't support '?' + if [[ $ver = "1."* ]] + then + result=$(echo $ver | sed -e 's/1\.\([0-9]*\)\(.*\)/\1/; 1q') + else + result=$(echo $ver | sed -e 's/\([0-9]*\)\(.*\)/\1/; 1q') + fi + fi + done + if [[ -z $result ]] + then + result=no_java + fi + echo "$result" +} + +process_args () { + while [[ $# -gt 0 ]]; do + case "$1" in + -h|-help) usage; exit 1 ;; + -v|-verbose) verbose=1 && shift ;; + -d|-debug) debug=1 && addSbt "-debug" && shift ;; + + -ivy) require_arg path "$1" "$2" && addJava "-Dsbt.ivy.home=$2" && shift 2 ;; + -mem) require_arg integer "$1" "$2" && sbt_mem="$2" && shift 2 ;; + -jvm-debug) require_arg port "$1" "$2" && addDebugger $2 && shift 2 ;; + -batch) exec /dev/null 2>&1 && { + mkdir -p "$HOME/.sbt/preloaded" + rsync -a --ignore-existing "$sbt_home/lib/local-preloaded/" "$HOME/.sbt/preloaded" + } + } + } +} + +# Detect that we have java installed. +checkJava() { + local required_version="$1" + # Now check to see if it's a good enough version + local good_enough="$(expr $java_version ">=" $required_version)" + if [[ "$java_version" == "" ]]; then + echo + echo "No Java Development Kit (JDK) installation was detected." + echo Please go to http://www.oracle.com/technetwork/java/javase/downloads/ and download. + echo + exit 1 + elif [[ "$good_enough" != "1" ]]; then + echo + echo "The Java Development Kit (JDK) installation you have is not up to date." + echo $script_name requires at least version $required_version+, you have + echo version $java_version + echo + echo Please go to http://www.oracle.com/technetwork/java/javase/downloads/ and download + echo a valid JDK and install before running $script_name. + echo + exit 1 + fi +} + +copyRt() { + local at_least_9="$(expr $java_version ">=" 9)" + if [[ "$at_least_9" == "1" ]]; then + rtexport=$(rt_export_file) + # The grep for java9-rt-ext- matches the filename prefix printed in Export.java + java9_ext=$("$java_cmd" ${JAVA_OPTS} ${SBT_OPTS:-$default_sbt_opts} ${java_args[@]} \ + -jar "$rtexport" --rt-ext-dir | grep java9-rt-ext-) + java9_rt=$(echo "$java9_ext/rt.jar") + vlog "[copyRt] java9_rt = '$java9_rt'" + if [[ ! -f "$java9_rt" ]]; then + echo Copying runtime jar. + mkdir -p "$java9_ext" + execRunner "$java_cmd" \ + ${JAVA_OPTS} \ + ${SBT_OPTS:-$default_sbt_opts} \ + ${java_args[@]} \ + -jar "$rtexport" \ + "${java9_rt}" + fi + addJava "-Dscala.ext.dirs=${java9_ext}" + fi +} + +run() { + syncPreloaded + + # no jar? download it. + [[ -f "$sbt_jar" ]] || acquire_sbt_jar "$sbt_version" || { + # still no jar? uh-oh. + echo "Download failed. Obtain the sbt-launch.jar manually and place it at $sbt_jar" + exit 1 + } + + # process the combined args, then reset "$@" to the residuals + process_args "$@" + set -- "${residual_args[@]}" + argumentCount=$# + + # TODO - java check should be configurable... + checkJava "6" + + # Java 9 support + copyRt + + #If we're in cygwin, we should use the windows config, and terminal hacks + if [[ "$CYGWIN_FLAG" == "true" ]]; then + stty -icanon min 1 -echo > /dev/null 2>&1 + addJava "-Djline.terminal=jline.UnixTerminal" + addJava "-Dsbt.cygwin=true" + fi + + # run sbt + execRunner "$java_cmd" \ + $(get_mem_opts $sbt_mem) \ + $(get_gc_opts) \ + ${JAVA_OPTS} \ + ${SBT_OPTS:-$default_sbt_opts} \ + ${java_args[@]} \ + -jar "$sbt_jar" \ + "${sbt_commands[@]}" \ + "${residual_args[@]}" + + exit_code=$? + + # Clean up the terminal from cygwin hacks. + if [[ "$CYGWIN_FLAG" == "true" ]]; then + stty icanon echo > /dev/null 2>&1 + fi + exit $exit_code +} diff --git a/sbt/bin/sbt-launch.jar b/sbt/bin/sbt-launch.jar new file mode 100644 index 0000000000000000000000000000000000000000..b1ff5a6e419e3420c48ebe7e2690306116bf3e6c GIT binary patch literal 1273820 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 @i9d$)=NAGa&cW=>~k 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

    & zrU{~^^T)%ht};ddW()^%8HpO*+HF~=zt3a}iY1EZuv-FuMUD*!_2z>kgU15^Wo|vk z)x9smzJUC0Z`Ht+6!$zaiF#fo;zEv;=Y2DIm+J%@(RY;{OZFOr8jWWElQkpzm`cjc zHnZDXK&FwHjMw{1DRUy^n_ChZVjSMnQ2Sb9yuaz_n(+CHu<6LswAaT=rp})9gv%{o z7FT9(z1ovnYW)*+@Mx0s>W(a{Ue2D(m|jx(u07PK-G&$t&%M_kx_s{)(*m}yJ~Ve0|LHI^P>Irj9G z&RWfVC-r#5m?leZ2Mt#hw_&J@T8$&bLjz6Sb3W>!Cpc}zoJoHxw8*PsV+>bA;!D{b zyHu2DF`1;5QNuF28hG<3y78ncKUCtLk{y&w9eyo3x17VFyE(<~wi)LEm^WkOE^fi4@rb#g3E+Ld5msNY{M9!Cf57z9QU`~hS;d&VX}sY92ncI zvMx`V&O<^W$A#Fn(#&2o@jU9Pn-_77it5jVVA>rg?e>-i;~;;`2H6M-MWGKfYE61H zXG}OQTG-_nGK(SQEZ3mXiDdcM#r=^{MZq-~K6)bES*3GDowD*-*F!4&`2D?J;<#Fc zGlwei!^F&5f$q{_o73_t+>P_fs;j7U`BT9p#-{gDbdVFNltf`0#o22O6=(T{q~k^; z&<4!|S;B4j)74e#Mx~v&pbWun$ipLlw8hQk5kItHS1D0G#l7_}p^SM?p8X65%mCE2%j?D1aY8G7L7b^x+-|EvNRl()rZe+gRQHEc~4{m5D;TO;nipazMY(simKwlS)WVbE*oS)sIad`g88bX~gIk-A>{U}NB+Q;h_&QIU0%!Qi4{S(L4Q z*(auHVz_AJykBMIPUx;YW9JwLs-;e7E^QaT&0D4t(c8Q>JEixMVDn>66uF?Abfx#k;pTSjDP+_32heVjs>T1uN97c*! zj(nJbaKi~!R*{v^c7@Sn${-m>P_k_WDThf=w5=6f zQrV)mm|D4}Qn`OJ=E{minZ`UrrMV1s8f3h8oNb5sl-wsB5K`S385u%nG0kiHd`6+Z z509<3b1`LC4$F+gZ2M5S3U4uKz&!7~@jh_ARFr z%OGo6jkuoC@iq}Tk>8(tS}nM9Ez}0nVcuvQ*Gyx(q9MP+K|SA@##{%dO_c)c#g)NP zAd!tkJBMOogU7$G_ZPo*U?U>8vux`d@{KEwsoQe#R3zV!TrAJ5;LS=kQ_x3BfF!wA zk|v>$NAo1PIZ;PDC2x%tAxl(JbY`eUoL;80YWHY zPB^a^owts@{YjEJxeV>ekSxLIF&pk)ac2&Wf2U@hs=^h>ZK1)iqx99*#_n3;9M~Ex zQsAyr&P`0jg`LpA!aM@-jJrO~`mG4!XD(>`xgF?^Mq|OnsnP(AY086JXf*^Nj1O?d%=j`>Ay_d*)H6LQ9mF z@h4s~9&1OR_uKMW9pVy7;vLC+si?XYFc!z`U;0e7up7gP3F0+!0tqn5J*9_oIyUR( zWTN@uV3BLZoSw7LhJE)F;~5vo7@KH#}kgDD>%oTA3XSQjd2{ zUjJ_nZaI2R5H(l~2^3Ot%848G_(?{+lvY-4y$$*mVD8H4@W>fhQHC1AIt&CGpQSib z&RGa@P+YZ<7(_vY9(QYd;08fOAK(SKLZCV0P=!KtLjC2j0jtV%lGKT@9!uy^Z$zMX zcO;o8=-Az)zi7+m2v`&5W=7X6p|3Vzs6c?KC({IE7thO?ep8gmlxwe1ktB;a*SLFmC%gZXAPIJv=jha+s2|o<%-eJ=6KP^!~d< ziA!v_!8!7)Edyrq!4Co}a+zUZ<~Pm>ajh0OGAT7-{xv6N>+lTY(V|%Mdl8&kD9ogm zZcVD}IpcMTD$>5AHhD8GL~g1Fw6aG56kEa*wng_tN>bW$!s*x@Y>t}3bix#>P&Oeg zR!c5A5gb+!OI9K^XG)RMokA~go&J~WH5z(YK4z&k)f)Spuy|^b;BMqx_pI(M<%xy_?uQaa+*vzDxiIviKiIJ}-1 zbD*k<&%E@}c>`_VC%;FNCQAiV#r6o+RWx7~LD+WH<5!JNcn-u8*n;6>7tW35^SaGb zH)b3=78be2`wCXaohut4I-vd4JHngKNHCvg&ss|4A2S-^WTb}Zi!bScH$4=Yd4Wi_ z%HqPzszpK!C2dtgj4AX=>Y?dOl?L+o1xxz$#**T{Q`#A`mkv$w`r?PoW!|M!ZE#-C zquoiGuH3Ax_2PXcMt3tQ8`qr0!TC^U{h&eAjfrAs5Xr~(g-4~aT}q=JPc35x-%e`@ z_PIWqZP0V;@OLFq6{Gu?rMePV8D!+eR)SQG^|Vck{LxphaVq)SmAiJydSBcEGQB=# zbk?;OT7WCe0VTM&g(FmE$!MEZN5U$MFOn&YEa2twm?9ME?QO<<%aEKEsZ%=R**48B z(B;dLHI)v-Lt2KGr)J1i80uhDgr~CjCw6=(s$th!RAN~*^%0hGsUcB(By$*JcP4CV zJQjyJE%oEx=AgL~)6izcrf3Dz6_@#mBg!tpdJ^~CyXar|D!lIZZ702zv)nAAT*F>B zjRxBBP2MWYYujFX-;AmQbl0D4ZKCsI-zeO$AuthbtIybib~fH7GW*hZ!<%vB1sa&5 zaOC+n-ynjVhm&){&qbb{EjW1nX@L1>!EEFk24GQAqId3g0Cba98mc=0bPz7pM*$}I z<@N9}f+X=R6*vMV!QnF4#s!0MOjI0A%x^(pgT)w5v{3ge9Mo;c^2`HjY_{>p<%I-i zknu)`@F4op%EdKKGQqB+lB+SHs*nFbe*UYbAA)S$yJ^l;kDl@4YLu6KgSZKc2mdo`?sJEnV94>8B^_0 zNY`vtb*Z4U?-e$RRn_Tbf>&qsWR;r}ol2R!?sjW9cloC?TZ+D3;f#iJ4916zfn!QvuRAXd6Go;JZbiKpEC#GCN|%qCH2fF*OFfa7-Lt^;dj#1$s)0w&WOPV^mtUtN>=g_ehAA0@skj zX9~S7C6`j#WL{Nsw4o3P0od94g6@_+LpHPZbl9TGs^NlyX(WonSf_{ZtT2*KQi^!* za5NciHrF+=WK!A45<(I-b@A+p_voA@o&q&5LbBxeNs`(e7v^_SsfpNN&@G8|ffiJ- zO{yxduyY0u>!gNjl{(Z*IgP3;oxI}ef^3g_TnJGl9spORA&#txXyBX9_sF+G9_=*m z=Eg=O-VPdb?8eePIF212RD`N78C50=gt`!XHDGiHp~H_5$Lh!BsXl4=G?I0t+4}EA znmv(H1BmYHmoQxE+7|0KFDT~9CL%d~t&Xbi?cT|`7}$u^=k6sX z(&1wYqNo|hyVRz^fpJ5reQ>H=MYwOBO8GkGUV+7V?o;bot=*izRYd?udo>b>5k&(# z&~F@Mw`1r3xU=(g-Ve%gtR|Bm3ki}!O*$$`Fqq|11388VEzwLFA{UPfuqGl}8U*)3 zX6xbozJC+wmGGDUCYSA(pd)}C6>wKU)F zpKaBgN2_;o%yxbEYy0U8Ir^jcyJ&>t&)-44mRo`S8XD?9JO=0>O}IMcjT}X09Xu-_ zZ8K&fpt50vAfVrf^scZ+f;|eTd?1LPa2m}~9h*IoBy$P!rULsn>V=jzOX~AXUzy_l z`2Bm(eTB{hGd}2wKbht_p4BM@ei6I&Vj6?P5rt{Ch+2q1eC*|72W*`~jMAd~^%o+& zR@SNyv)_cZj)ud=YHIug?_+>#Tt#+fRwowialk7OTXq?0KqOWBXTfyoNH^QgaySg~ zNhKd8Ox)kSopo<-06Rj_KiW7g(8+qP|IrES}GR$7&l?{)XY%*6ETj+r0loO@54h-A_;A5A|s3FaW$Q~hboI>1x$LvVvad*^^`XIW7_d#g8!f$-HFo@L_TKYv91-q+EemfnFsF*3~UbOYt59L_~E>LOX$i?_L? z2X_-`uQ*f{B8#1LX{zt!T7_(-s6WqXqlQRs;j}N+TJ+NQv~!plvi;kDw#{%WS$lnN ziNB@0GJJhhhXa2ZP|CM{V4oMQ+ti(dU zn$g@z1bky1+=mZG#t<>(D86fVj3bwu-82;Jw7s&QQ*1h(Q)d=|z6V%Bk@slNaK!0M z4CI&+r;icour3mSPq!txKZpzA%3_V3Fm|_&sA?)TXjEuR)p#xPa!8)pd(wE#y3U}^ zJ?8Ho55=wU{weQcC~c}MrFIwSh(Rwb80qoo1Xu9ojs z7nIw3dmF+ah}w_9->%zd-LSManeM@Z52?jmjOX&!KC8QF~(*f$K8Z$!V+Fn%LGKc{mGlVqj_PVRz9Y zn793!$mY@!UfVFDw6rv}6@fmuRDq`QzHEf+!Q7aG*&J{&`A1H*hHXNi#L)-FF&*IG zfP`V0b3rdJnjKhHk4~MasMOMa4HfQQ8L8tYM!bDKy-1pN%)iw1d2n`U8_MGi*2FU3 zO-g=+ZmJ8rFfJcnC&V5Lbqz%x8$Zs$SUzF2h{Rq&NR!=FTw*eB`aM2$TZh!NK+Iqn-`;5P zy=XY#&`tyJ+CpGD0pC zW+FsPH%1!|;%s5sVRD3TfU4CqN+Gl=trg%skfa(B}FY&21PNH-YwUxg)t|JUAtg6V?u~tYfe$yw^cG&%h{74gIGZ zOfUD6ol%tvrFQ}9=++Lkj8FpgWEWeacEmq*oLdvKa+{KBz|J+2`qA!D4>&4m6y`+f zrEf3be-()Pak8B6*ff50_N0`e7KzZ3oKrQI4aGXq^YX3l(GzgxRa;vIJ;qX(Ws+a6 z+R{C)qqEH7=BM+=Fgs*&-1W{ zc*&oMw^%a2UfM0izRYu=AB^T};vc?Vs*6V*JB&8tLnWsdx=ZVAk5t!Oz`CVvjf@rOP*3?SQ%< z#U|c&H^h0EiG?bmsq_bv7`70PegB6$^m8Abdm8$6ur}hJ3%XYp5_^kSH8561yh-G$ z-`vR;IIJt;=B4&(AK6D1j{%1CaHURYt2_2bVCSxiZJeAL*Y5c*q&DlaDCtXEr3AB! zRAfjAqvH0B&kpMWEjM4KHV%hQbatw2$0L67xF`l4hEJ z0gUBM-S*0gIW}QH+vD{r%a+IgOI=H4f}lTG14694`L_1{y~>cTsYV$*gX-^I&-iDY z5~~06Z0b&k5Mi})Q1W1hD+reVYu>#|K1OYC^Uu5vC*T_w#P|J&Qa`$5w9$+-ufe3h ztXsH4HGURBaO?dJ;<@CFx*^u72i7Tj4Y?(&B|sf1xEQP$oS!ZR7wiDe8nQ?GRId!I z(Z8V$FuMk^Eh34vb!fh4l~KKw8wN)H(n4Fqf?L(1nEHaKSN8P?**gr{dpp&)mE+lQ z%>lDvZ@?Ss`@kQj2pfXDzTI$d<#60k9AURl%UKFOe8kC1EB+9)mty;0re9Kp>?-v*PrO|Eo71?Fk&E z$pumGOz^!2iS@CZJ(*p|#VdF-vxwmS9jkwm(%PMj)B*jO;2m1YoE0wMP>cw%qWz0BD&7j(G)F92IB9xOxcp zv0#2eZw@Spxa1<5pFuD}D?6wo49T?i)51RUg4I*X#2x^^eo}uj;>9AeGWr)CGq9LeCj15R%yhQ*+R{hmP-m)rE!-!Z+K$ zVIbfK41Zg?tMOs+!nOl*bL(>p=Lg?&FvG&(=YMnyLYw=$jQttF2rnW4pgrJ&osc^v zXq;s3BVtF0zT0i+g5ID}d{%WHeI~onlBsHz&+9K!IackHh!PHjfaLozZ$uv$t}1sz zlUkU2&YHjcz-AA2bL7|f@Z>r;M@LCoR@@%Afb5hQd{;gOiPAF;5+`I>?nS=E(>y@0 zFGN!aQhTsho!AQLY_a3>ihpsjUAN#Jzk*WRj1`-CNexJ|U$$>_@MjpMk$#zGP z(#hiHOu0Hq9==2D9nz)UQ~*{vLAiS0L>-04W)TNwuW+4Q3xKRffv9%Cq*66$d8a<= zsL&)&{k;oBOJSGtJNonhoMCl0W-ZdaV3tw9jyF&o-l8>k!^02yD@@d>+G2}iC4e3kN}9oNs-;w#PO!q|rH zo|$dhcT||B(A0Fb0R{!dI!5@}{qfpm9!pX4mic#7o8x=M8!;(2v# z99NGGCRRP|h}G^QW!6TQZ);huc%$RT_a$$m<4$cGwsueM88at}&)H$FFj{vi?zK5e z**)Fnk{Mjv5Hz`kaTO-B`)87bm9d7yV@mY3E&7(QPE+H-Bk)DW#KOKSI#uYhm2Uq? zrr3BYzj20G3H_N`dYm(eg8Co12FDrHpG#uuYA`+*w^i-nFesNhzMA`Ua`&00+w~=e z0{GG$Xdd&9x+Z=kv?^PPo#&5yDRqltzBTCp&|ZPc@hWe~E@05Qf~J($jjg zjS?JdPK2fn)2d((Fc;objgn5Kn4PHk2k-Qwzi2xxQGV&t6)vURZ-)0HNjMY|I}V3U zVlJkO29&gdpbM(AKIZqqv8(!@9~GsN^Vp9+BtIg*(jb0Ew;xEaV6Mqy$H>(3m?NASvzHs&A2R^drg&mn6XuDwry2^Lc44 z`&M23J=;cG{tq;iw8UQf_Z_D(LxD;Zx?s7PWwrwy>Kuz54nPlRnfaPJkPCxi zid6I=je}&06!c=v-wq1b&@Y8;*!+kq{bu{zFX|s*QVt{&s2uf)gRyJov=ft$H90dhgx-Gn!Pr5kBauCC{n?joEk zsQGQ0lP?yY?~h--((TE!d8NXEhRyY`u*9jg##+l=64^jYri=cmC{A@|nbB{;?TJy2 z0GM2Bvu775q(Pw2^?WEW92of0k9|5mHFt7oqPm0=XLq9V7V=_&yNYI++cr0`%PQ%f z8+7N>cs3vBdNgn6{)xd`(0Y29H7q*-&;7%My{#C>a}0Mhl`miNxZnEBAFYAmL+~lk zlj{e43Ps75L_`{hwger6n|KXQaMJcK7hHR^@&RFGY?^XE3<~& zM%TPC_@75T&Xal&d3XAwm;uz2jh2!H-At9EDGw}DVa3l%ECHd#04d+dFV%Uz>4d?# z`FcyNBok?XqD~0{E?j2SgCkW4O^VAx!Ua_Vlg;k0G`K|-#kHqf!k6EHNMABBc<#ue zQ)KJC^-rbY4(d$XisI1)BaT<0Vu}1bf|RXW3L2M`g)8M@7e`f1Jcda5PkqbPaUvx} zvt2QG=VNE0S zVbrJz8v5hRshv|UPXZ@ee?mxBck1T@i1w&VzDqCJ)Kw{_E;RHFnde{`m+;!E#hYfS zWmw7hiSyV@{IQq5FHuNxE_TLw7V6v%4L*jANe#j%R-;5h2`ogU)b*7to=$7UpcN1ZeGEIekhpBVQ2&xCN6hEVXLLz7*c2wNKia>1`7g_4mT7 z$g;%}N;_Bm*3S|g@XE^@7VnZ)rlT_(>Jm?+K;wy|OHgJXhT+h*l9dAC&9oJx?sdIL z5f8d23XYC9%t7uX*v17L#!Y@s*!y`8oOO!+yj+%*zXisYKt5SQ%(KHaX1@+_OgGxv zklJBXzf2a(4*bv=Su^Hpg^$zs+jOs<>hGx(b2nD?qti5YIR}M~_p$@4m|@~HnqRjK z5@Vw~B}x$><`*T7o;c)eFK8CrS$&pxmjB9E%)Xfe2=JIElg50IUL@%}px~?td@5|4 zSz8X;Mk}MO_8PS7{KpPg=hD@y6E3!wulRf}DjhX%PpTQ?C}k@U0CJ#z4Sn&mYWN{a z3M|)4RTdETP41yE!;LTk{x(1jk47`9*#<~^;8UN7Ytk|NdURxA9fR2u@_^zcW(cM@ z0^9~{2AGW>-IDX~qzD8d9ID+mcVW+@T4{!Kr98&3)C;}f(%Tt`{Sjvu-wraHid_?a zMRD!uO0P~3FgEmn;Zd*!tc==RihIy}lNLixrmrr+JRrQpw#T;PHrCAk&_5M-W#T0~ z+Y{X!i5&TOcWw4f9DaVtzQ)ZLKIiRlDDtX^=`y=U+J^9r3y_X1%V!i=nwbFnK-N%^ z$&j8Sd{3_G?lr?CduEjW7E7rT9q*(N;Wa4h9+LUGapxmJ;mpa4V z`q#H-Sld~QNmS}^x`aV`K2;~DdXF>l#22r8hI~k*vmC?i zg%|o=HT3YCyeSR-$9=}4zo`M&n(TclP8Rf9KvCtZ7y6l0y?&NCU_wiIHYYv9)dE`U z?e|G>!DDd&-o%c)n3q-slTKf)EK@UDb_qE5O&I-^GGH8td}GJmERJP0Fso125xj8} zYm(e-wmPd1_c7W{;rp;%!hd;Va_9D7{5{mVZOJ45_D>gCC$e|#IL048Ry_X|3qs}p zl?CyCcabG!`VYHxDSK2k%)i?cq+2Ykr0IwTKgfiG5P=he*=Wb9HmEwNMyg7xcBwR1Zd4obNey4lS-9I4fPj{zXs_Hy z1y+jYU9_7O5Q~^x6Mua}9LX;t03|0*CKvtL1 zMCsS;LK0>=meC|M%nuSnwj`s4Hw3m6CyFXAWW=wP(WEyF4ob!bWtUzhHmnR`-JYw% zv9qeH7YPh>V{2Qj=^OCE=ANxGB*13F6_g%$cXY+PV8iXx#*Q&HXbeH9lNw->;);aB zrXR;lt(O@yF6eI z*>C8m%Gz%bnun|A5u4PdePtQPH$!l(BTi-xwv7)xQ!soA&G?iZM9VQ84(8)+=J$1a zT5Mp!;6q{Qyej#!(9Ug0oSSxKIX}&wJEDiu=F{NpnJHn`uPlAk%nZZE^D4Ahkikwt zk-KOixjYs3Ge@nFsmZcV2hd!`l(r|IS=(^nC_BucRtBLoMmJ?PaFiZ&&|J=MJ5<{a z$yIpU!OpNvns@KDq3-QUO1vll3~t5QeN*_Sw>PF?BH!)a*WUUIl^OJK_6TQ=tX)cJ zs@lS8Z;_$a2$BeD^GN79I%rX0=apK6i0r}*v96itX^R7EEsJe`QniXY56d#pOFtxN zj!R=o%`EGZ0Fo~)Sd47QLPUb1F1TR*lgrx-Mr%1}>$k1!&|DL@Efb0iMH~HW{RX5b z5G`drTxF}6Od1Mtbop8;g%qC21&+pYjz_ag&*wbw=Z%^6IE#~$lVQcWBP+(o=fT1= z+SQioUw#yKGAQW7H2gs6u~f~=H=_|T5sb@!v%r2Q{IKv~L9Ik;@#nUl9p*=#+_Y$Y^_27CMiDug3|JZ81>H!mZ(lJe&N8+ydCV1$9Is z-Ji3!f5MYJ>wo(5>%kr-u|@K9I7*U`_Z+{1t3zp7IrIHTVKH&SMs&J%$el1qR~H23 zt%t{!dpXXLwrz--0B~fSyAcKqLL=UmnRaF-(sab(_5g0o%xxTK;*9|}Ts*zGG9J8h zp-~!yjpV~Oa9TtjgE`q8YSJPr*c7tB7(aZmtX{_udL(f+eDFDJ4NC5Ge=Wt~`z>|l zgW3}0bW;$N;ClpLqTH7CDqW8ZwJDOc$Bq5=GfFdFu-*|N8Fvu=1POLZj=J(=vnc1e zlegqs=3r+c;r)H+^Rs~|z2qI~5W;*0-UwVE2-+9({#D6(cVu=jR^)`j;69OaLSYYE zAe!Oz+jV(nA6+0+|Hb2DoMG3^7YX5&?4ysNFjU`A$T!*I!-+jw-+1W*W?AR}$Tu5r zPd`6<-&Ujy;y%7oQ3e?L6HN$V+(H_}a|jyRduV6%LGm0Gb?O793j(Pu@G`Aw4fZ(l zZ^1GBpit98%Qds-^pEIQAHLEzT^_|>vID+yU@sxix7oQmh*hDex1H+`<;(x1*6|=d zv@C-C`0)w%uZjxQf2*iixO&jLJDFT*YbUO=qx$Ok2A_A4vP^g;_BhYS!OAtLlu+@Y zNG|X~YyT=~Ih15h_1hs?0}r%gPAgiYN9YW!c50%)UabW{G~1`Ilk8G;p=ok z*w1^d(t^pETjKVqpT$w@RqK2H>;;*Rut*|{Oh6U0n2=`}#P`Cn=hQqLkjI11LO?Sc zoC8ncHiPI*2J9f-#ELc^y>%ZT)w#Z@)jDfP6(CH!{qGl!iE2%xQ-rSDsuQ=c7DCh9TWeM}H% z+)?dhZl8#X58t=ex^F}oa80R_H4}rvHnP)-eUeeF03GBto3qk|ZwcO4^#atfxx&mx8 zg}$PtWqLM4VNOsp$!X6m@B=tR&NXWfG@2a#&4v?8u4e9J?&0}eLFK{Y+YP>hopGoV$Zypp}Oe*KaPtFKYOv2Fc%`Pt^nk>Izg-+J!beS47z~a9ApX2n#88 zx*X!VUMva&l#Ub8-y%&^G)VQlNSbl}dvL3Y#VJLnb$cZ~(zS8}qQd^CILJK|6R0uG zyFDI+A~pJPh8%^#)-Jcx@9WjjC_~0pVTtO80iMy0xG% z`+|)q;s6mAr(iLc?jUh}b?xtd^CaIUSapj*6{yb@A!t=tTpOBA0F1m*19)~;|@Cci!irfYz6bfyoX@SIje0i(dWjh_p2w6YuaEs^| zEuC(w#4m|=S#Tfn|A5si#Pm`F{hIZ4buFHzI2;w)79s*X=U~7v0&A&MMN*oGe*JqaF}!|lesJ1Fjp1!AH{OxKrc!JO|^ z2j@{XrAXP&vSVv{fRD>LW-AlTc|aO>tUoPmny6qPYKcXIwv%xit{DTpS2}ig;sB~P zl5J@A@ye-l1?X(Z2uGr%b@a|653S}k#C|h52 z%n2D*3<-4vSw{w9GrDSoR3{A)Qv&?@7Gr?Hc}MEC9PcohH{zg>9W?bE>wV&wtk7e2 zfiFenHGbqJ9?3Y-+*Q45T(n7UBc!|}hx=`3*&}Wv>ffjsDKm5HHeulGT>n+;0I&1c ze^t(-UDS|};j7f4^^hc9&DKlvZ<*Gr4Ti6#ao;|4{iN<~R+=lh<2cLci&@dmF_(Po z=#$o=uG;?t*CAUq!t<>8iH$<5=|7c|lh#9D2W$VG}{Md3{jLM&+4; zMdFcmBzj&i`T4X?&%`Yuq4ls1xA8jOrJ3V*CN+<$BMzHl%GIe1w7!Lit$YtZY4vqL zitcJfWJ>CE#(sNeGGvAC~nXUxlE0;i(GQU*;6Ra@}dRUNdX=DW}{hsF&kd3`_+r`M4FaumSv3v`}6qS*53dWb}g08*`T z8>Sw@<57m#Z1|>L??dx(f3Ps!6Ep`roBEv1qS8m*xb}w;TtHfbQ;ZMjPnQ!+%8S7= zE)2c3xtdSIW#q=8J*N9>clYOnLtKc2)r%^hQs>$w-udp;@{MPHj>@a$a2$yn1uecN zm(1hU+-EmW(WRuE`wDU61xwXg%?dh957+E+ReK^{3wh9{`%r?fR~?qFmzZ{bAgi5D zOc$T9T<^;!R{jy$j^yiV`B<#`d?~MZVyxVmty;6Ky|qSb=xh zuO3LFfP&i=8@q}9d7BpP!LLCOa?~jDo{SfPD5l}E@L`B(ZnsWU|39-VZf4VyS?$?d zZhm^*K#WmXV8+ljG;R3?I(?#`%o$)!kmhLiTD@zOq=R5t5yZd5fy@dZ3#0_KQDLL0 zJ?E%)vmz!=m6?M0lRY0QG5u@yBf{i`RUBaOsBI6rA}mNro5H!aNp!K=mdBvupMaqnne1%2r_5z9o5(986Dqh+OguuD2~jI5Qfx>Y zvzG`+XmFz6aSo3^#ws*#&+&$G9HvHBFLz7nWO>hm+Zv~HKvm%}&!JqY!@-er;Zd2!<^;xP#|d_Qnt74p`)8BSja@fK=Ki5c zpg4{c&zj@*`ino6A?$Y^p~dY z%sjJK%JN2I(|`%u+halIb{vfJxU%c7%dnPEa5-urB*eJ@vY_S_NZOnHmT#6{F~9~Q zpKmb)k}00VzE9ptWn|AAeX7P$0*H5gs&!l!j4-?op?hO zjl`~e4!&P|zbkSzg+fiWx)1~Xk_Yt(g!(-k=noiCx#~GN_os5VD0(q5wpX~PvTvSr z*PFp_MAP3?0BAm6X^z*SQKIVT5Z>`Gn4jQxwFO%zt?!lqWz4ObS&@D!h;Z(R7;4oc zN;RRtm%Nun-&|}IHMjhTi7m0MCqphrIMknHGv9+T@Gqc$Bp4t`wsjx)#}CABX!@Tk zKK$3#AVNk?&W?u0&i`kI{jXXNTN+~;s1lf8Y_O=TaFD}jaz>&o!0Y=pf#RSTuz7}x z%-C`f=^6Phr}&*-iUmKXdeVkyGp>%hal70Z@AVLkCs|StyK$W+1>%hzBVH@KG{Lb8 z?ouW+bRXYa-dZ$1FLrjmAPw+(s0ReGaKSV8xI#{_^bFkN_sBw0v8GwN`fsTRtYB+d zy83R(2ee@^Ft?4}bN4_(5U}_GZG-mddn_R{6G;8WN0jkJstL?e<77%?<#9#I36@gm z23}m}bs}IQoupo>=Bw0Fl@VO4l?C7%s*6Us5$&gOCch(I!^%iIWfJJoVCIOWN~J4Y zr5ied?`PHh#oTp7kQF46lS#?P7O-WD$gmdep()tfIID;vDcE516$UJvtuTj$;AZyY zLYz+LZs9%Ix*|!i>G!GN2#9L-jB#ggp<=9FkcEXDzLOBlX`qr@;g+bTv^{-(V}8?t z7#g3FGrFV2u!J~g)G!ub2@(1xH8Xk7VjnLNfbfuu=#Xl15?q>FbFNrNe9GHfEJ>J) za$-?4Qth1a6aqL8{F(Y(8oX_GFDp)}Ws`|8W0GyFlqkRvTuE?#7Bxztqo@_{5_~uWK=V07k+*pk0;7Ytpbkp{;M_6Tns%OY=ACSAR!Tx^!Oy%rMd&%9RA;0t93 z&iH=L?MNqy>t!AR(5nN8!=tnJKYx5_YvC0bdb<0gB2?mgw|_Fj2%zb1VOmEP1$}nh z98uLuWtfTwT36@9^R;ob&Ws9FBi+pD*{?JQ#cnIGq_$v|>|HC?bv5re*i@{PzuqUX zf{9Xg#VPcfP#)ls!GBy7L}g7vFS5TC$twrdn#jWpDL#(~H7`e@+kXUg{ii;K{OhzS z6G0jSyp1I%-D6-CKac30^u|wD~*wpIJx73C!En~65?2_wqBq@g1e85A* zf?zDMXHd$VGy`h^_*KeW#jMu6Jzix`F#;GxSOq0gpX)3k-T zbw~JXeaVGpr!%NkO|(pk=lOENA{OqH4BPB|Q`++SaAsLJ+g7hB*vcGh#FENU%lyQn z&BME+7}lSFs&5-6TZ71e8r+m&Um-F5g_*LhfQ%9(R-F*7XOW-JXdmeVe+28YdUu@M z84+oTZq?x@fQ6EKYn|Ll5vvGqz2Olc0*XP&o!luAO+Z}_>qrq{kyevLK1u7AA!yER z4Vm)Qd>PNh=T@(VYDXh?xTP8E{PiAilw#$~hfHxt(6fru^!nMoLm_<&t^fL8Nt3x! z!h~~()GyT?!t>okVxdz-6_K@ztWhSs#t|Gqc6>=7io^#UmY%Dz-tTM33y_6-FFEcf zt96##QP6fo)e$@oZ)hHB92B8i_(n(zYed$@m<`sRnwcb>os_-6r^vV%GyR1rhEC^^ zf$eEeewD8pHw5I`S)pdu$Xg)FGwUNh0#e>rgv18Ye(^UKCO8YcxsAhQ-4p+CW{n~A z#^SLvGNcVf^C4?hM5C!uE2vkrQF>sHkf^`rUY4PBhS92O6Y^Z*jEFWN=8iZu6z^trmU>iQ`uCp&DdI3if#@6YAtL;%g2en^BEEks zJSqTZXA4`ie>Vt8R+dx1VM6pNNlLm^f<~2YcMue+u2c0qP^S8&8jhM&CeUjgGGu-b zeYvLgYK8j-@>W|R)EX>hku_5^lH;G1rw}*Vn+CjVR=M9pzzFWak@jST4 zK<(!n%!fPK0~FlY;~1Hnigv@dq#WT6i76Eeu6i&HtCzUdbpX0q1OC!ce3e*>THyTVQ2r|{}L+D{F*AaL+jxwoAe1GDf`o4=$D zHpOCRxajn9xiz1+1>C#P8l@=ywE0b}qqD^yCqm^+-I8E!;AT@}(zTbfURWwg{@oN% z?1_8PW-@ZbyocP{!}80sO^G;QO7xEo#5;12f((r>y>rh!0U0{7T+#GDw8$?u3T>*q z%B)3VTJ%UB;E}yk>${DE{+9JE*s?NS8Q=X>NsnG-OMaNLvU!GT%x~ZsM?I7%xeSKM z^0i}07)CUek3Z=KL0kQu*8njc+3BWg)Vwra)hMFrq&p@H{w{sG7e87cRE9#roQ{(m z*+%30l{Ne7_h+21|44x1X*HS8v07B5lKG=-=xeVU>`J+kEyLG==^-k`nu*`>2LWaM(~W)F{bd~v z-2hC_I*GQm4B8=UUao}DqMgJ=!fS!Nl;~a_MT~FB&ol?B621g&bl(5#6kO>5l5wGf z7b>8l!rN%*RoJx8l(`Ra1$F3?9r}Y~0dJ;Une#2ziQK_05iJgRh}0wi*-05IQIkQl z({LntQ0`CF5}`8AbG!VitwAAd=n1erM3DtZErtlD*KILIr~}OPz}?E+7Us2AYiqYT z?vpX*R{s!X2kgimW&gqt&pDC6L+U7cZ9#{>t3Py8=F3E>Caoh%VoEu(u`+vF0;nze zOKAI)Zms2+q0==L$D(Cqs9{Q?;!!Ik=TgBImRBqK{#e5QrQfagL)f|p#19xZA!L{fs@KSOuUmut zRJ>llGIhqoeaBOoB34L==+28~tBgf=TRg)B->D5{B1bQpYMVc?80v&wU+5bF=z9-;6>>SM) z4DAh#%>fMGLk9+XYZo&MTPKEp_u=|ZA{%BpfUUEIvjxD3{`&(U#m;V@6LEOwS;gIJ z-a^BY3bZ45V@ax=eo4HQSlM6uu~-ULGj*^$JL!o3Gx~nU_ml=S*6cWaCkmy*^vK*DmnzUZcZ~VE=`Gi@a!?AOhs#bbycn>ONrcOYO&r-#kJO5 z$F;#`ogZbq4Hstgngq8&U=7dX+d?Wi_lcQ$S;Uff+okM>wCK-xUFMY3^h2?EQMWBP zw$THbRM9JH`4f)?Xcez7%!8$5II~MlwIc#Ix6%cRL7Y~SVgxrIKQ{r$3(M{Js!vOyToi=mIBiU)vuy(7l*d`xe|ik0)(NJ91?Qx5RjO5 zB~ExXKbv|?{emydeFl8RGjHx(2Yf?jX7(&m=vHWbO=IuQwVT5C(R{p&_RfdI|Ke5m zY%vPel_kBXS#E%GC8rcicFUdft@53bn@GoxcFUG^?n4V!!N~+ zC83j~sx`_FhxA<7n564(ZU6Ond>lyNwbRqAXDPP1e%>L^9nr7h6PsUblu!R9++M*? z{-d}Fqf(^=Q^krdLOtEzu_X81`Z@3NVI$^3{S`I>X>4~FD2aO}#M;T(0Ha<7J&!W` zn&$`z%jBb3Jv#vQlI+Yl&Yvp>0t{>R6Cc$i?q2j6npv_N(?rpWmD{Be z=kI!-P7>ICJZ7>?eg7;yOC9Mp-W2^)XES(3E3G9Lj2RLk<9E2a5V&DvlTw^enq+oU z4aO*8l}U;#(So&4{Loe?4- z$h8i{=r1pqI3Twg5R+cKiyv6_wFD-;q36^ZUVdr)XHqlQ(><#py>r=CbToFBAKx2BN_8GUvG=oezmW4Q#M~A^x!( zStXxhF@gU0asDrD0r~$s%aJI+)X>G+`5X6%0_^{>rE6>KA!p|NZ#%lh2^+Qxf`}ns zHa?O88zn@7AbhzA9lw?wfsi4glmsQIRH4t|G-A5hw7FW2L_~L>Noh&x-GAUiGhGy+ zatY}WPJCVdeKU1+WfSoAeTUyg#KY6(ZgII(WeT)XhNW^+J}#zR>{Vo$6&>isqs7t` zpXe>oxstXp4$og(yU5uP+4ytS+vsUQ3w*;Qaxg!wyr-=jUt}`v`XrCF?M9CBcch(L zNPQ(IOt44+E9oSE0xKoAvjNUC)gyY_$pYi1GVU0jE@QGnuF?v$N zAx$iyY_{Yi2#MgelviF9lks$$OzF4fz0Fq^57j^+;}b1ULpH)D@&F9Y9~K4BaI`gt zeq$?p^UotDO!&X)-06knh2W2SWjwgEi;Qok`STIr!Q?jLG4entta7Mq` zo`J3uhgPU7Q?+Fo?_8|+w(vt;sf9)@Nw^(r%1&ju;f8Hu9njs1U{+;Dc=xM$mYJ$v zky$ph2^s_%`cxets`oGt3cqE{gV)HNZKx}f=X``UN(!X0njyE+zL{sIAi^4FxuQ$V zZ*dQiH!J>RdMzNn>soa8cE@J3?keN-WlEr<5<&>pVpBrXUGX9QW^B}(Bwok;h7=I zB7x|ru9k!rFi;lAqu^4K3r(aZU{OL`&poAcQLM!3zkPcJZhqhVKKZ-B_ssur#BtqC z&pees3S+aI7lo9 z%3809BEwp*io%wmSrUGfQMNP)Ew^Z4R7|dJQJ{xX$yP6p0+*qw9Ye@ZJG3L?(1;*& z7s|g#crd{HQIDGYVA!sjdLT~4e=U-&sRG;QJR1t`JsH}}c`ZWncUWT9 zP3n$9xl21Dv&cObl^||EP&w;~h!iLz?%ohj{tYq3s2dgM7Kw^~Z-D$G9U+y3W~iFK zX;&0XeXq9YWdpiuI1km2Zb+iIts2OCjQSWv}UL z6P6#<&^t{X*iG`j2sr+LfRsZjs+$ZG@ldxiulcUP9RqleKM}}`WT#p2TNdiffgy-M z?-jUj7z5@D62ILp#ft>USF{A&2Wl+l3&HD?nD=_`%+Z33@&~XR=1Z|RcWfwZ7kRGU zNH+Me!!ly88JtqEl88>g3}!)wOa$0V0+H}b1X0FqZOAHNF8lsO$Z8M+b^+EirV&gC zoC6mIG94z1D9tpM5l#FM`=(jgRautR)fJ~DKF5Fq%N#+^@vIU}f=xDe z7e{6c*&A1vfe~kF^w7Z7PZ}H3M2ntVjPBDg0I4Kk&Y(1Xe-%82Y~j<81t1=yxwm@P zXHS~m(ho9bPA|`geXXj%w|u8bo+8^M!DaFIAO+2w8WZ~b?0m_DGS^17rFn{(vx*5N zkqEN4B)=)0|ZazhVe!L+`rSZCW`RhRW>S}&&!Za)U<}LxN+U=OEs_JqTs*oxe zqm0Hz1GdE`Vs4SNXutihCNYY{lJ5lVAPOV{XZi~h&u{NaKHNEU8bD9f=_ z>7grMgx;mRiSe4y&&n4E@^Z`?I;=4+cQ`l*8S7VMW8m%TdQsX=-QMmF!CB5!%U*$E$GHY5@cBvtNcp>bzY;l#SYLASWap;s}OLoMG zB0YNQ?|66R4pk&6@&=L<9@ebQG-Q&IZOkV{pM&fX2I#AN}XAYItrtX3VqffZ)%0MlOT7ZJktYB z;T;F8%1VGtR=TK1`dlY|!Y;FQmM&T`fm45KhbdLxWKVCrG#0<|$DHM~WcL~)ad~Xw zOvx-Y3c<|G!=L76<#g_oG*g~iIJ3XfLR^$hoXUi8L*EoI z5d=D%Z~lrXX(l!;l`1L8mU}AP(rc(@CCDGmmO}KpEtk+pA%C-S&5Kr-6{wV)}oR$kEqxl5{`1H;@%)R}phQleX9-G)8$6U_1(Uiz=T!4Et!q~GfdertX zK5ke_n#4+l63>F4Z_UQ^%*HSdRc^ePWjfLpWM%qVlyJ`dZWPZ>72U4uTrnW0iD3sZ zruE8-7@qm9uy%tB8i7y7Q6ejY)$BxQ-dRy0S6R~x+|X|G<1#~0dq0p^Ug=zFZ(}Al zBDDPdQx9oTjmBWf=&w{^+NfZKQ6_iI5aa|b?_XqtiH`_)WZ$VNdoz2%Z1*O&(Uw0< zQJ|NKxtYfDb`ylq< zhAL&qlh!w?$5D^D>Y(GH)mKD%Ig{xKG=p5CvJj;b8EL7QicP&n@@uYer{blLjvdXG zM(QRG;Y{4wCrmtKi;WW3io@263mF_G**N=S`S@gIPY8;f8XQ^pZJjt(3Bs`e=#t0f z%=li9+?wBDD|Sdf_639>Bk8ZuKK}`9R!2w2vYbeg+`oSl_XL@f2}T*~7QK(OY~FwZ;aPl@;;A!*rthTw-q6-F23Qe1z>R5qd?*edQr;l zff<@aq>fk|hNlv3zz$6!F~)4ZzT*pb0_8f$+FMD}H7$cg7bPAD4kkK~Ex>xEdtPxk zr^vG^S4samV7D*Jai~71+qDA~vf%}fdxu-aRkpe5K3|TpRDmDzNG?*e9tmf5V;^+8 zb7MTQg@)UsZ7XDQhI2~B!Wzik?!1?GN;&Gx2+l&te}+4xR;D`ou5%#hw9p;dF`;_s zLF}rjJ75f1t89)P*=2ajn;v{qX}$@A$KOT5A0qM=7q~z`uNNO=D*P@b@w7sGTVWUA z7kPw7{v;Oe^}u?AH@*F%a@c7l`nVbX=S(YEGzV_g7;Yi=b18) zb(8P)iHh4_5f6`WFCfS#>@S9Lhy&5#H9??owDPipX^(#7FzmcF8vf4VkVnv`CVB9s zhS#>(uaj^8S8$8)G9BuZq#%#zQ7z)m+2S;>0fNnM#X)ZT>PrEXH*AQsz-84(-7ED_ zA`njqm($UWT%ySeh2*-nRN?m80jt}agCsro7_DswqMiKZjzts5_M7MT`u<+flu#7= zE}?awm+gnbYw_!(CQkul^%b-`(6)hdG?8NHHuFIqbb_o$rTwP@4ju8!{`iZlA>R=@ z=1v>N4zuxuT@q}MQ0xaC+n(29$4wG{o)CTRDEFNZ(-E}ze%aWrNEbN&==*Krgcx$y zK{n09JWYpv!Bkc#7i`t9(oMRDA-}(B@*cUWDekD>yN6bw8skFY7b-my8T8+R~IBPV!z6p##L(z7M4)$H#d5i^-ImyQS9ULotXAr%JV;9 zEgsuQ2GY(Rsmn(^XpUsHBcKl-RvSX-ZcI_$CAyh@y9spqTZXd9em#lLv<)f@POELMVxz&s;rx)I{0!{Pk$I{aR;=# z>>Q(*58y+|7FWj50&e@rySmuT)d`%J!W}_E;Io85Ytg`J%kU5%R3_Ay1C5uh)&{g~ zamya)FtxfjSomke{;H5y7Ew{ju=RgyneTa<`;ZDL;SyFV(4pz)s)vUdBBq7|oDUgR zqf6O$s7Kl=490Y%uO^}vW%tLd8{(~Jq8O!qdT&ti-P@O z!Sa3QJR9XJe_HI`kTtL>N*2NZQS=butkHUgk-9(+KmjI$}wTHjHmLb6V^VZ z>7mu-S=sumo>@q5{{-KlG*1-pKIf4M?AAR_(j9#pvkDvF&Fb&(*DXHZu&SH@L)~#z z_F=F49jXm-22BEMZ^vjJDCmDyf~r!J<7QSEnH*mfPen}7IB70XQ$MhEL{q#tuSsv# z-L0@ruXJ3?wD@r86%lP+E4J#*y1B(Xz#dp6^D-_c-|whAem`;lqceiV>8oo62LK>M z@UI%RivN?&$WI~rzj|{7T`a8sp^g1~lK*F8SH#-H=BJ7KZ>4TbqK(|5Jj&>|oAU)5 zbhM2>Q8;{f5udV$83`HGV!ZQjW9W!F=~dkeQk~7M)+ldk0kjy#5%eAgUy6e>w!Y|$ z_^fQN+3&BJ!EVmpZ|_eyePlP~EoBF(;mpWQP-FWF08mZKQYB_35FrI2P$#To2aQ1$ z8q4;COcxp^Wh?CCp5-Q(*?XNLRH?mAIgAN%M|I9~JF0=!z81EtHculHjfc zCXs>k{;>Iy;84gXZc-eCFX%iMp`@u*&+VxLmw76WwHwzR&jLj#10QsOwR)~`$4TfB zE_zN%drwT%d^}vLsMBI@)75>o z$pImXYcSAzFs5rX)P)h;Dg*aKGgCQ?@n55Id^w>-M}0jAo!s!_k$Jmd-MsMQ(Ruvf z+T21ZVwS;?j=Z6oe3t!Gv24fSOODs5%Z1&h+7Hlw;ID|3_!8hpC@B1wjTC|ZA^!ed ziv9nFTZ)p_KkSxYvRa*2jme6A(7WB1^kW4gd6v>J`GgiJbD=}zO@Dalq*^<(x(U)x zgZNH^;J;87($?-=ng6adB{+=21G(ObkrE)tY8j841I+D zD0h@>fZ2iNT41w=ZuxS-NJp*8@aG$M$!i;_(=Or8?p9V=UIb=kZEm#)4mSH-SLV|5 zY**Z)mNii+>$tZZOuuipxwn=gJ}q~RxRed1(aa;d%14=2p}wVp;Sjy{HBavn3K{m# zg9ddisax>+Dd^d@Vu+rX(&mQdwBBl3ZWcN|wF@$vd4LWI?^s|mf#FW0=x9Dq_VXz6`p2}wzxm!pz3F@4}iow(FAqOSO@sK+c z3r7Z)9=8`}=^^LZaj^v%UlKR+F6Xwe2cykldlJ!bq>6Cv%b!dTNYX&5t^KZVxe68N zmJF&A+wruw&y}VAp76p-;<}#az^u;l&1Feu>zox0X{7|LBoO7_z#zbmN)26Ml=!C9 zE<9(+;aEO66q7u{g-P-KMLB)>>r3+ICABfLLWT|DbZde^9b+UB8C-(V;i%*e;fY}< zM(v_Sc~{g_S`e5ch=CnJQ=4#)6HrEusIS=JvoKxWuh=}%uV068!gRRt6J>$fCFv@-5RbjWXEJ%C8COokWdhci0IKNU1i#siDp)U@q-#6 zod@^n6OM+s>;JJABzZIBRv;6oi_f!g^6qq>xb>W!9e%w0{fq5yAU%eW=pZuE9*xap zE7?x7R~Z}_%m}$^81JwKFNP}YARG{^%a3zAD8P@Sc-kr^0K-c)v!5LKz)@rfK(1^q zUV$-WkrK^BB|2BO&$R%Ad5eCzJ)_e2uu}yHedWv{~$|+8If2Uc%gaLzKda>Ae59J&fddCHL=klNT~v(zpvb({|i+D(%&f zi_%aq@V22_SH?!2XtrS8qgpE-reL8$n#;ayLb}`)kL7M1Mp`jx$5r-f2s=luZt35} zT5LKJ$uqRC8HVj{Hna88x+P@XW|HwO9$7z10F2T1Lm`v&2Q{D49h=$0pF=yt@OD2_ zguiGo>>@(2Ua~qbdMpSq^Gp%*hL%DLJD9(^rgt!$kwA<7Iwl(OSNH~>0#mGOe=%>Y zCTNom+t2V5V_9P|K4qiS6#I7|Fhp3}!cqlXoX#At&h>;%%=0*$={twZ<-*p=eI z>stieTJ_&#L-3RTh!tj%cHf8QN=1aM3s%K)+Bt8M^x-3v;{tkWx+Ccjm3U(RMKEKISG9KQt}o0AD)E&j!FFc8|D&48M_~$#V4z{0UJqEdQ$8R9ABh3=2Wl_l*C+_ z?nh_Y@3S$on@00mt-g}vB}701x&!|qXZ}M0_hSKH7gBrUwhdP~p>fwJrLE%0ThUHh*jhBcM}EOPyA7n6}Q~;QR8o z!l&u*&{fV|f9dy$@Lj=2MzoEIyy-f)c=ih#63fV_kjIHL!cs+wJ7Rx9uH%cqLl$IzOtyVPbDcsgm6Y{sM7~6=0_0s((orr?X*xli7MevM_Bq+rUgrV@LQ+vdq59zA) z{+OU@j3v8VdGUZUV28#Vy+iLZ(Q82mYG}81F2+CNNa)tnSfA3i`fgP=4%g#oC`rM(rcw`dVGZ=S6TJ8|E1gW{x z>5_-NZ;@0wj9*MUx=fQ3EXw5-33HIMbuKkLi*VD0gi-tP?KWaxD#NJY2-n6SDcjjI zy6c4X`rL_K$}EjaY{O;?cv9gbmH$`(Z7`n{&_g%xe)djyi^7-hklKalehNNzCw#B= zXm`+}H)iyru0I48MKor3s4!{gs5}5##-8gQZSRe3wm&|4%1;nF#3F^j7=eH-!jBf= z{HxR?LdenJ1}>DzI0TtH{KH$^1Boe%$nhA1i8~^j=$L|qy=*aAA)zN#9nQvEs7l@SAUmqgt%u1vGT-jWT#$)%d|M$4;~oN0=|1ZoS*1w zH-(%->!p9v*Yk^lvUNjc=bS|aLOr!LQz)HwpGK>&#g3>ym2vpKyC0PSd zi{%-&Gm3f$H}HgWrk~uBlA<6E@O$@Z2ZTYpmRkD_{vU~E5u%mm;U~#dL;NfD_J4Y3 zG5XnW%L{WGH3JtZt#2+MPf)uov0B(!zX~nw1t)>OH0^An@d?*Yg z+=!mQVHf9AsZvgOKj`OCyLoqPC6K?hhk5G5-TkxKvUpqNjpqOBocd|yw;ItpF$l>SL+**8;@XIWT zT9VH-HnoR!AWtGse1)A#BIYExquQYYTYSV)z|z;(E_~Z-v%KXWMNJbo3@k0Oco-+4 zlA|CVJgIl}XySVsUZy))N}lQNv?_}DCrbq!AunUci%A=mU^lUh+q|3bVo5y&0R|u6 z$x|KFV^!k`bI%xYD4FuQKnaOSb_YSh&lZ)?SBnSuQLlwr3{%4d(}mP#t3*LjVHh`f zUbxUrKMN8CJgS^~;WcGVJiFU(Im08a!6$?JsHZ3iaVlfB2Gc?y%w!!dw$+SCi{z^b zBKBH?P__u~W@lEeW+`WG(G?;>V(VI;{!2hin9;Kxs+>A|6tmM0IG+G6pT6mBsmGP> z-=lm*O8P|uSbP1ySF6KIS1apDCd#0%Og7ARS+U%M;I8Lvm0TD8r+7C>_RaX;?$GQeoIl#a3=uM8#HN*h%GD zK2Q`XrQ(o5MW-gxL{%#vqJ~OaX|56?hx(gpL%Bf=6;Q>Q$~`Xd4^&Upt``&>1rSO= zBtm38#Xu#*Pu4;ypb%6Mt|hvR98(G|4PTGs5JPlAVN^qWKw;EFB#l(h4_6dPrYzJ( zM2%E050@0lt_l~4ELR*d6v-|N|M^}S{($NbKt!h;tc8e9X_!HjN^KZIq)KI&LR5*` zpowVZXu#YxynCg+2Kqf7LcQAyvu$jj2ta3ApWOcnL)SRSG-Xu34L7-`!d=}5`7?el zdo({(fHtVbRefAZbs!Hie}W*bpNqSCKftni(*U-%K?v4wr7!PNe$ws&!+N0UQa&!~ zat^?+O^CS5AS`MR-*qjpuWukfz2BOfrT@Zp4Xke60Q_SZF0GIMYS*Baha;_@2Mm49 zfIN3lpDqac%AWIMTGntKL)w5LB_OGv1*{2!Mql0%oZe}9AU`D_E?_1f_sb>>?gc%_ z4YO-h-yeVoxW8|rZ-gMM-x!P;W6GdDyB`XS8nfC^ep|D`4+-gcX0C-8f$xI*UCL4 z^!Y#+wl_8hi_ia^)f=Ic#T!Bh%NLlxd~fhY0oIGLdXMoqKdzts&Ib!`6c~#yAdS&{ z`Ih?y61F$$A7g$ZeDnI7%B@~-Y?p66zCI8q?~tumZp+#=2J;wSIIrh!L9G{V(_VaG z{X(v=dd7B1!Foq%v3jP8diTbAO>UuV7jNCx^7npTO%L+#)4_fZDSt($nZKat-m8K6 zjlx^J!25c|sCCWk=6$?^)qSG(erB!vB=t*x*%@dLw%r-R?)1}J76Pza6e2uZ3`DS7 z8Is{G3~8+O>$j1aBBCk;wV4;fb!V27uL}bQiFWBCYuyfJnh%7NwKCaax0>%GSuYOB zDn_h@q*)f`a3J8mILN#-C?I#vhv_?X=zvI}ElIQk8Yqqj%5-+WcclQ@)pt8OP1<&| zy3Xr6E79!3w<3F50^!EJ0;gCB1^~!BhXt~*a2l1W%=T1V2+RZLp?W3Jy; z9enxAnH|@VVy8cKB^IzvTORLQBS+LgH|~mwJC2*DmTL4C8kcvKA-8aBeq0UiN)*4Y z-)gw{38ZEa@5Q9DMcbc+6!Tsp4=2ikl+ahUKcu4Z2qx1jm;;a^M;3839uC6ShL zllJ;tvslG5haK{HLlcxzoJqVa10K~=cvFvIH?6iWG5XmsBLfplsMI=Xoe(pu`kH~@ z>@>7<&FPiX|RO-QQ2zEHyInZ=G5UUHdXI+`PGaWqD0LfDUDi-jI? z7wjM(r((O=cveVLT8l-gl=V^L$zb`i9GXCfr3h$DsTycR#ugbw;xmZ-Eys=%1pAbo zO2|cugeY(_xSO%}D?5-xbNws^kxFs>G)BPzqne$s>FStw(RLiz@$zIYA>oEm(qjZq z;P3C*8<`=)%`psV?({I@YLGHSUM#4~#YOf%hJ|D6XmP&8hILj;RbXY`4V$v~jc$Sq z_3TK?VWA>L!thq(;dpQ&pDcA%iGPvenz1AfnZM!Rvkkz5i2e#PBJojmXnK;>a#c}b z3*}I1t+ru{$ow5cvz_l&HkchJ5CD6S#EOee8cBcHNY9qxnmL!J$oC3DuQB~1PrKBP zH;LvZ_XwS#m7t$!WT7?<)s=n_^`kPN4E$Zqx(okiM2+B>nnAz9N|+}rpvyjTSh9T8h*l?2Hvexb z(i&`jw@26!53`Am7Vz+={Gq6Nd*}XO`@8ULk9y`z-qUOvp{=wPHM=^Sa!cK&4g;G% zziqTC+g5CB34qZ`_OdRju(8K$AtVn{e_t(Yjqh{DY^vH-Y6US^z0jgJ8jQi zt=Mfx>f0q+7}wUlW_~ zrnS%5-M?8OCK1F^P6~DrXhSHJerT5bhWEDp>-Zr=Qwe4h(xNgAD2MO7`%B+)tuJ`c z*g_RmVVqRD=+ROrF9vbJlSFias+fMzOYuU(zf^p~ms2>Jn*jBo$<@L0xXcL2v- z{2~(ko4Rrd>k?+FZFy^GAfsWFYhI4Kiw7{E8pV|91DJMC@Wuz1%tlH!3KZCH?FP6% zN359kAqTX8e$7J99h&Y#_%4{&$M>U!p7}LfEj#!Z_Mk#^3tI6rs^5G*2!Fdk{>E@Y z*1SZ22p66whYc!p6Iol17T(wr9$Q#AgCnNYHHf2^Kqo5hU_XO}XUfD0uhEj7SyTSZ zRh3mLa%7g`o}D32rwWg`VFk2fIk$VbXm%&^DdPz}YS<8t zp5M(b2r6|;pjrtfk`V=%;T~+hia4dgb~Q8-wtK+O?-;)t_pxZjgytj8L6piACezuL z&AT8faOWr}`R$`~A(X@ALI@T>_?0IlZXv$1M`p(&TC7pU2b_cntAs(^HZz7jB&Og< zg8FbsB|-C$l$pepH5LFd$!LAq#<_3}`&MMiW#|yC9)&f8q{8-!3*43T(cOB8LU4*-bhwLx-RwuLx$Y9M9 zoHdEN#WPzODH0{FKjX%$E%nS-_KtAO17deWvTkK=d3f3wvM*E#uw^C|sWFy5TCz#@3@& zOH|mNt^F1Yh9%Z&&v0bzsP%nIWT>(-?Sv|7axr$3UiuwfD<)WuY`&zD z7fG4osWi35PSZXu8bPJbn3hsEm6JMOY>FPMg266kL?-q8K$30}EOA3x+}eQOcz;ZE zQIk70_ZidpPmPWe8af3X(tHV|OS-lUgr-H+!Y^~z(!2@K95Z?j??=&opBqZ6ZDYmj ze*x%u&6jE0TpBRVusW?_Ur?mMiC6^|sBfeII&_ftlh(1)Lu%hgR&L$0B$A7Ra?3>^ zMKzvjpK2P3GmTjgdt&i_<#&CE-y@X#=^=4TI$S)Ab8$C1{)*s`zQvk<9{F4%Xx|Vg zwkXV?ik9s1{bd)!%vONeTM#L1+;DkGY0-soQNotUwWxG3bbfVU$cho^>dUz&5sFQ3+5gjr7zNk@*?nh25?uMqjTp4Brws~oayHsE7 zmGszlPFwql>+85sT=Z^q89!9Vk9Mkgx{>M2dUPUH^SM-5>X3V^6CfY1DXzvtgWH!P zIR?$?EEEBzu|C@UX)3A1c^{*6>T4Iwq_*g5%2s)iGetqlWB0pJi8e<{S7e^fhA@r3 zSS;wlh)x4Evq4xoIEE|U@41dyBITC2G^^`3>F{fDKknMU!j0<{^+E&%See*%8mw4_e3M+UVGjgMczUpUZA@F!X*q*!j2Q)yu_BQa3 z$*Mds@A$^Cw@n~Y{j#?f^#jiZ2)+PLdzgv$VfBHzthYGUfhPv+9}t4KMqOE^Xh9hM zNcEJ(kcxvQ5Vvg7VS?VMZCQc|;g7)jMxuE6=*iqi;)k;Z^4if}QxyUmtCF)NB_>Cx zqq|RG2Ke-a{O_K-TBzi|s_fN0cYVSL^dwc*faCZnc8>3~6eBH!ad$-$k4X1#P10d| z103B!Q~Pd6S2+n}2QIZYIstu-x19v$;D6CAQeOm!;Y&AKrUBOlLirVv{vD)yJ>Dht zDbZ1fhz#HnufAXK@-N^sBF)(fh*4K?ON zAEL~3OeCQm5}UV^7bTZ5uDEfYqPz*Hg6l^k>dsSH1@A@MbrWQf$MK<86E z&j0q@Q?kukJa7Knj}M9ygbkm>&1nNKq;2U+*6$9_^Rlb3Cbj(>?JpF6Vb9_`NHS_| zRHps2h0B84jsjP@w=1w5z91RJf%X-nkDFwnlK~V=AFN{t38fyWMm~sb&7ZR#_{tvg zH~^k?E#?(r7;-KI^p=k%aCV=h9XP5)Gh3eeBnbeH~dL}Zy16n4snsZP~ zVL&UdfM2fujhmL#QMPZ~rYjH`rwy-yh zlx+a#kzR3K&G0xMKMj=q!E$ngP!5aYbURrr_AXliX6JNz+ZD4emoPn!XX6KR>u}1J zgva3k(ajwYZD9spD2M$p#Yn*@`NMazLL>DM6+uFp2t`zjdZPAMD5(se?vCRDC(zGx zZ%zTih~B#goX?3NPjTwu5Ad@TFmgngVuL$>vI1HL6x##|vpv_;K$AY)OyF!0^z}%G zJ^oD4r~{ujw$z>k%^;9fns6C-CIQ5+d54v8T$P1Y2o}U9_Pt*w{G#x6`ZxKRW zl1PV)^q|RMB5lIdU91Ket06FLYVURhVTYu4sJ6(sUA8;WEkfHtsUd~O@Pl?GZ*;ea zlUv0*JI|gN+I^iz4M+Ktbad)|7bsJOa5)@*6?p<;KXx(ibADj(WbGM1E62cWW`Jz) zL@N%JE~(LAAa3w{04OEm-~#@OMe|zFa;$umI^&FHC@0lDfE><_h;ENzPta7#xtY#d zS$i&XlAz6XNU%`ZeYx^Ccku@(@#UAx{u4Q`}T$+A9aDUaYT$jdjBqvT(J$PSY_ymh!E9BGG;T=^izk_>3b4oUv>#J7ATl2*_+TYwztWkKxoQYEID{N-2@VSA9lYcKlMod0|ec zQ<}ZEgxJEM4+p8j*vk~wvMK5e>>bJVGJIF}x%g6a+v@TmxO=(3eZvfVy21Ef80-Mb-;h+cAeAY*$53zghcLH)1kK)&R`el0KFE*Ciroiva zJvGFwPqz(vL^7b*1zuSpv>|e%`_YJUj#F>%TaQpzB^}{d@mWB>i%@c#zcM)UT{@k7 z?wvVl@|Q-nac~_PpGqb(Oix*8HOLdjJ1G3aa!5G&Qh1w$h(0D=Tvn9`C}NC$yeWpp z9AXF=B2Eqd-Jf%#mi_3NXUfA}U>IrjO@V~*|l4AFp9ph|E<*RC_rXBvYF3vE~ z3P@-&jkB>)n+^{hk}z6QD($9ds~jt$=v_~ zEcIzOps7Z>)azDK<=O7TT;3|cngu~>#A)u*RE zlfGG1+CiOKVj!nmEBR+f|;SskuVn<0?9_Gb!;I zL?<{TkWN%f3gy>lqhTAeAM|kO!t%G}aOr_ksxZO2%|r27pp6ra14sN*^Ng{*_Q#}} zK1Losc0o+0n3^*tBYc>`j7-TCj$%UY$c*TL!%LQ+SPQ-`aabZwiHoDhL@%I!l{ zY}0(bS*G!PM00Un?BX{6`^#Vjb^iDD&(9KnWyA>O(UX`F?Oee}2g> zY)N2RpL>I2-yE;&?7eONt!==y{tGZR>{HLR+uMObDfl{X<+(?NkevZ1nzs7T)L$iS ze}#61>{wKO_Ww-?-?O-F2!Hx9linAzH_|0isq}M7_%J2~xR4-YqcM)hH};*ew8_Gq zN~1dPV&aq%OR<88)+Y!KU=N+n2-`KTqOGu!p98}pFsKH{Nr z!HxS+;gj#?Z47|2ERl9q4cIeYuVpghqRJj^V40rmtCvt-P*7*|O$hF+jwc6d=Vz4D zkgslTBXM{)N(X%QaxAomH;)@vYKzK}ao>MK?OZ{@|!RUbsJDzvWU=S!dyMOW``ii~wEFYShj3 zv6^u`P*%nLL!IBVqqXw*5mHlrTxI{gxAK3}1|(o?EUYXnYGLhc;wWKj@8YcF>}X*kVcqs>?LahVOy$*6_q77L`s1sUMt2P;3Vt-q;}U82nA zsHYB6A5mU2|5Up;QmMqGrMOXGQx394q3@HpvbGKtLb)^ zo#}SZ-?(q@CfI!Rn+`+=qmdX5_S*Kl)Zh!GR1z8~^#px!^%Q#{K}A7HK}|tXK~=$8 zAinJVTcofiCKBgKd-MW5QP3It`W8Sq`pJ02L{xu#R4+l0j)`etN<|@xE z%gl)Bsn}@tmSWG&$7U1t(A*2M5)*N>U5I8eP-XCqQPq|#O^S+=G$H0xi{dnJ>l0K! z!+amU0g+^WPT+Y8J;(G($0$o6k*Wkpk;U~c5jY(w*xQztBOSzR=+tN4USRmzZRp&U zmS9^r;pdb3L2`7DJK%XHGH!L)7CuCInoH9fHjEOgE!Gbp%CaVk!*DJS0D$+> zWOgHe6@u!xIE*arun#m_lZQFkxi^-@-tRm*o2^yl$U&6NODk$dnb%z+!_Dq3r2M@! z+K4VvbBpweWrnfNf_vCHNb-Ht#7TOai?cip@d>#AJ9UZl&yJaUDw#+xwHjtMtHWbA zYVGRqJ8M_EGlXp{J**rl1rL!s5?b1GTcTm+Yqz4XR;y6~V}3R$doyvSFfIr??Lf`? znbGc!LC=gd^hpvd}8cp0Ut!npu>lbXwjbQ9Hg4Ye)Rv zoVZjaOq4DNtEFbwX^s9mRc&Pb?I#{tJP!&6s0L^NO!u2OfImnp-Vis7qbq_~0G~Sl zFX7VeYWY*E2UPiyCZG#_+M&Ee=r9<4?$)qEFS?eSLQ$kHPY?9$_JCJ>R0C{my%RLJ zp;o-n*1nVNz>S1;VS|5BgYW8ddbtbg9NI;icPvn>Uu1yhI60a<&1G#0PUU8Yd|$*D z6w!Hv4UxQ-!mmy_0ty24;z^mBO#||s#k-nLW&iG$V#!J;;BBOvsy5QS?U@_+%bpj%Wl~`Uk#Ip#IQVWK{=i!0#cXXnw(UW0p|Mx=1#dTfo4b0u zo}lBi9?^n~GI5`I{b%hr5K-^yIrXIMBp-2eIIbHsXAMOHE_{Mv=P*%~r#ri0p>iQp z`+<6>$e>H~@?^Skma9dPUM(>5&zP4y!ma`55d?jq^Mj)HnK49Dg&dP~2Ej1~u`$H` zWc34d#M7mBfLViLmytSd`2hy5^C|=$ur=tAZAC6WyfURgQi^H|1@@fqNT%X|I7it_`mA6V)~D}`=7&Dc(d9g zvdEf)y(B2p2o{vKl%r zI!~|L=Rw1WtVt<@Vb}cBVMOFXm=A|XDk_}c=*64#UOTs9-X}uab{bzcj`P|O$Ft;z zC3!wtW2TaA-qYzIULZJ|P#5iq?&`kITial+Qr1*Uki2H%$l6GQdGJ9U7qj3qOb^z)LJbYEc-S1&IU|K>D!?FLFg8#dRTTw+d5-<@TgCLU>=WQt zm`@oQj4a&N4}SAUn1&U&WqWV-W3=1g^@ zLBOkB$;sY51R*Eq5DTtGc~|A8zCgw45=FHedq#up8g%jQlkpzH^&S9wx&r{`5SzkU zlY>GlCuXO9u_kjlM*jz00Cbq%z5JmIs{hh=#r{7up#K-I@V@~{Cw5v=h!G(~&T><$ z3Kh`@{13+EO3E(0VAKHUGb5&vWM=RO%DW|e1Z%^qj*@UE@v4tl(!3G;|NTh$T zq+pn3Ua3qUh>UyG{wgiA+by7pSe~ggB%h10-W1XoNJ&?km%u+B@GD4cY=b zCuZyoh)s(i+^4j!TYJ=tV5hkwFe)5gaDMAKOfdimu@?~z(z*Iil%D9$TFgR*vW_#< zdil@))5YJo-$k|i6C#G6K>qifOZtBp#Q(;;Mj~WqYbs-4Z~y;J!jEl`1!hDL9z}2r z0Q>R}1#AOwP>1pQ-Z2Pek2xxp@^&bR;K-!@*F##e#=1SYA%$jMqWS$POov~u26hHt zsrQZVos@kToSbXtJ{DFsS5bjl3V&!fIY-N3hR?N)(iSYJ>9SnFUxDv1-K92G0cR+jzWfPkm{N{vWCE{3k%D|1yLc|A!&` zFLw6-+&A!VNL^M|utFC2;jx|)mmaM$H5=t36nrEW7lwMoB1QuONbyG8JZsccr)+da6f;JuCoJlu9fGj_Fq9=(-;D( z@iMsM;b`AcXg?|pC$diR+3sb=b*lfon6z_l!L(0^+^spZbRJryz%Mr*Q!)r$xOGqK zUAXH(DPVa%TS};q7R&$bdK_>1ePJnUOy7-|bCP#jsen)LJU-!f* z<<@ciK9xe_^;;?t-Wj7l7P?Ws!eiSz+f`m5Xn)(BP!+y_t0HZm17>6h@+dcFZ}Kj< zQ50nNHh!5psbE$*JuvWeY_(mEu@l8LLZh19V8GEaU(%OSO8XU9veL@>hc!>a)o>41 z{?X@JPjB@MT-*5-fv4Zn(S5M8HA|6GxV6OjRZdf;%ch5e? zd|z_RxCPHFxgI#P4n^T%lKERAX5z5>c;!iUnpea`d(2PniA)5}_59{BxVwarctkw}+qh$3eC6X65t9E8X>S!A z*OqLHT9U;jX117_nVFd_W@eTxDls!#%xEz)Gc&U+X1?m)ecrqM;+)+#?)#{yinXFX z=E_`SX6DQsV@~?~XUO!UgGI8^j8*y>dT-~9NC15(*=G}4G?N@P=muVxo~c>3$3beU zt=Yq1u>2SFE?FIBMMgztMkB+8zB`aThZ)e`m>^sr?d`S-2!t5ykvJtQv1rDihUJK; zPPZ|VGKX%Tvt=oVdLQltQ-oUSxNHq+6Fq2hmE}ITZD!6bj$Ga0O;QNdsA}mXrmZUc zRq`TRLB;91L_Ln7MyYf1iCF2lLbHxY&qmDJ>dJv@F^OHU+|KO!cEy+#2MGmr=Gu_F z4trQEKUXLM#9m zYiX5M-7NHJ_50RwE5HXqNSq14-Y!5#dd6Ck6~@Xh%*B60Lg{kv!++&1UfP^6s$XGR z!F#LZ_bFZ%3==NUR7(pci&O+D!-@%^TXI2pRspNcjtgX3_p&fH4)>2%NfDv^?L2j6 zgk<-s^kM`G6#Aye=C2XnRrr4Xy3d;V2J)1vgArQA4QZCbx3Ss9@Ubc1SM8mVL5y!y zDjt$VBE@oG!Rb`j3?M!}h)pKWMvwg?(lFgj!>5#DrA;*ks`5tao1^$Y)q1~Z{8 z=#>c9x~i_~g=%}g@5j>+coV3iojp+1b>AIcw&dweAh1F`kQ=>%+jD1Tn0 z%%Gc-@9aURYbtbPURvn%)FhcK8qLN_rn)E_10$`o6gryN?lu^bGN3 zGx0dqwoq-YjWT}hjT~X+QuUN3IXaSZ2mdJ1Eb2l3*@V;^Ek{E^KyDs!&s5GUKP$Oi z5(>r;`nHvrx-&}M-RW_!whYrSo4yD|zl@}@)j0dLv-ShZiM?Re{0ap9`>pm{3H8{V zT6JdEL7KlE)Kw-SKgVe!9@v7=?%QXW3mw5FT+xlN-|7?5rR@uK| zwu^qK_24AzBK}5g_HEFSnz|Sl36vy1FfTmud8v(rI(^**;oF8*g_?HNidOY}Zbc0h ztwO8h=R^{uigrDI#X@WF{6b!G1zNQ8L3^VaJlo#K%M0;Mhh0bNlj%YF#fxc2-yq-9 zHsO~P>aisIjzCxv9g1x%{;T~y{HkF=Hk~Wul5aKNzB8J&I~ChKhZ96Am^_4>N!S14!fZt=en!#jC<^` z+WNLkAgY+$BfBrKUj4cWuwFyEPXX^^TXujA@}FH@0|LehWB;I~?v{Z_1e9W`aO=}1 zaSU1IOY=_XD{TLSa8K*r{Oo1_?8fKQzhn%Mhx!#H$Oo1x2ofL!AqtSfiZE1|*kXZT zh1YZv-!VRUN~z(@2G9YTq(-2Vqs7vobk_WQ(^Fa!ZgR}Em~CI=cE!sDqL>0S6s(U3c7 zrODKgK5@V}V8YBEB%lJYg87J5#|*^~!W1&>&g%Pp;PeU|%dYFx_?5}iqz#Oi$rqfT zc2}K|W;fG4Cqi#G)Roy5VfTDzVG-*A4#I8M69UKhmCWs-mhNGP4C|uT$@mqWZTQh< zU_ClJu?A%_?g~VQWY^8UBm%)OGXh~783K-pFJheOycZp-bF}G#@yb_+a2Mnpzwfun zE8i}@0pg&O$)6q*Cf7Xe0el|i0fHSaEH95+ah^*fTRc+`@oKe!ytOyzfNZ8mtblB0 zj)5(XNrw#b5Ae#^E5)ocM$;G4Eb`qd`+|t*Joy3glt)SQ4=V`yt37$hzh^LV5>(hP;r8db!V;60>n(?2D05!#Y&9A;hCtU zgBjbI2-TDr_jP&s;HE)wP>IorRkAFl`JTun_~g3GPi@h$6FW2`h=B{N)pk`hjeP}S z9Tn~cv?35cUSKenud|Grwjthw|JF{X-U9jRdpV0qRnVLccX#ist z`|C&WftH=Oda+_+ahX$IC0yMzDE9Q?o>(VcUu6hj4DotULaPr=VYMDAhgDrTR}^4| zFoCGli$wd!GW*mL&|vmbrbs{na(FzVy-`pNnzx|3?l;u%8MfKE``-}E4CO)oNCc86 zQ|d(MWXWXU8HYDkZyZjMVrqpgxgVTU9{>&Xo2T@Euv5#^kn?$?8lfZ&zOBCafR(6MLHygJ^S z?aTo=dx@6DZyj{2y28Y;+O@oFkIanzzVF-f`#N7xsoa2+KzLGLA|I7s$}J{m-iLga zD*SNnBAJ$0V%#lCVl;Nld(hqt|Cnv^3_`=5sXii~+eKuq5nFO#W(^Z^d;yY=CpgBT zHf7A9W9VbjdoNe3bDCz<}R-5L5)=SIdp4EnJrt3w48AUg}iYlKEQcteD zT2+EHjs?p)+x_RyuhfijXcr%?d|>H8PAJ#obj~tHp;Fi8b_9}Uovf2m+8nyej8AvB zh)_9ejy`vfb0agNGxj}4fC2eM&cUz6lC;CpSptAb4|D$p$K+{$@QRTJM%fxn7J3^tfnyEwWJlVm5B!mNzoNX)P`b9K*BK zx=RQ-uaY&~C*tm%ShO~iJ8AZLwz0QA*Di2}^A&4NzQ@3p&%XV=uz|?Yg#}vjGKl?3 zgJh+Qa(O`tBvHI8K(t~_VW`F9@uf1H2vJ!?RWDpiF~(eUQcl%|H6$EA;*j_d z#_->Ff9l?O)+;1LD5R&W=hF_SM7+;&!nWU-($An1MNDE2F@WT77{$op3EQ7lnrl?R z)_o;bF;@IhU-O2n31x53I9KV4=>*+I~lMA>8e;06nt| zssEKIWqrkUvefpjAE-98P;L`mKa)fjH)N_;Cu=9xi|4$ERORX*a~EIAMvDs%L=v+q z?_`(iwks9v7D=kNoG!4KAw4;z&t#!yj}#XUR4kFJef|~?-AY8u0q1cn%|Mr@R|PSr z#;X-t$Ke$6rc<03LAtP*`wgyJEkUW%HF=T1N=~PRL}DTK-~`jN3IJ(D*g&4mRpx)D zMLceGdjc9;jIDomwzfKLAaT~1!P6pk$`GMbCYH;RUDaQdDl~o>p2F*Nh%=X}*!4VT z6&q67P0?=jXBag!YMd)>rlutDs~`yty&vOzi+vgPrRdo3GD>7!v?@%qn($8ty#jg% z2juiyC7AkQjtW3URWUouf)b~MA;x3ApN;5l!nbZE@!p!G3x8khl595P`lEwHYu%7IGO$C^%7>x z!++}`Fe?o7qV+5Z;=?oNlWmqDTc(w8oT;~uuC5Jb%pTB>(TG^A-hT9pL7;WQPH`FY zh?CAq+!ifd$0iCEWb5s})ut!uN7%9wUsU6`5d_HztfsC^1>sq4Cfh(c0d?VsGhC=l1g`6>utD6^GPy;p;qzFI2_S`4I#j?T^J$8Doc2^*qo`w$ z4fA0oZ5OB3T36mGBRv%}BHp@jSp)?6-6aZ;277!v=9PGs)2V~mwOhh!QzFW!W2Yi_ z6&px%&mCE5-<+R=Eapa7hx>^AmSTq#!<_ZGzaUoi80>bsopXPnSa8RD93+? z-D4)A{C+`d623;xZgDWSfQBUh?h^v=OBaa8BbW|ch`OR3 zXyoOOg@9@kejlVNQuD={GQq7*B_>LFa$F;u-!1y5ek3JeU;Xd&gCHo7Om~W8u1BHm ziY`R@wbtP_%XlD65*;4LKpG>{h}h9qx4~LOxKWW%ogH>v3gN!8#~zKd)IyIOaf38$ zjk7S}(f9o z9k(O@W>55N?KbsUy0%v$@5RA5x>*%`{9-!oc}Z}aay=?LsUbCJ)@qMK=?K-B9{9Tp z0{uBj?Y_rbUKQaLGzXUM1Sr9#2P>-pB#gIXyIMZtZoy!4FKyB9T;(dOm8y}8=sia* zszDZf20EYr>ZaBE%r+7JOg{8rPnMsI&^3+NoCZP2tGZyU?K`YWqxItlzwBOC8`9$q zp4s7?4O=|UDnD}YOo8!2@m>ZvHV4MP_sL7r?iv1M z1BS3RwY(Tf64}RJhjV{2%lMd7DZ;L^lSGA9f^+Y_<}vt7AV;;Wht{>H{Cn~3ZI88l z$r||h{4>))PC-JG7AhsY7Oqz7)@yH=J7A$27>wAmUC07^o#;L5FJ+sGK4k2dp`s%9 z``7Oa%7x=}Yh&Dw^NHQb09#1y!ad3;4)4UYz*U@J?uZ3mhexI#7k5oJ(cKiJA5-hb z{<6c-z3N;BET?KBx-;htRv&1EZ&8D^1iffs&HztTrYEF0+Cc+#+=ertTv`|xo~K!~ ztuJ9})zXf=Gy<*xp;k$d?l-6K*C`?2BVa&*==x=Vl;{GUrakV#Lk~}{PhN^%Q3I16 zkc8!tR(Hx(gYw(tLs#^$Q&3WnsEMf5c8=FDS-O&j8VftTx}J7mrjMPAR=TD&hC8z; zv}8eFpwcEi?GaGib6Y1`u5?Jv3PWTa9I`u}FX;4}_eusaZt&ze&_T*?xs&56vKQXx znOqWY=H^6hlp3{74*qM@4s@uPWG-VUSSZeZsF*`8V^DG&4hl--u~>lGsgzMYe2wfP zl_9%#4P?tQu~ZJ0G;CAB;EZK->k$P@Tu1xVk>Z~$4xJ`VN-oey-Amn1DR@O(zQtv? zjQussAxfn%8BPssbP8b>2JuM=6r_cF1#3*C$yCnHa~=sw!ulnI)hZZ6*+v70 zX5Q7hCED|=%Z;qfqBqP9#gW1}6gJ^XP{%y;*4ym0v?_7vmBjp~b&JmTZ?Va}Mw%K5 zYF*Sq29h~SW^AJ{2TD+QLG`T$g-Y&U7Y4TF+!X1{rD=sR{y1U8*BK^3zzd(xFQO|T zo|&<7L8|X6L$g+zv08`uBCcTsPf|BXJ(x#(so>i30nMoLkgqQA^CHv+ZoA~ahW)7- zG>AJ-U~Ib@xQwzVaqaVy%czVn8A$iqN|xcR#1Zn^vN6%Y^|$TEY#qnNsft#m+_jKV zG#`FQi7O%{!4XP5gw3p;-s)K2qhoI#b=vBvK^ZtPGWtE>9ID5a+Bf}1`h5{P{H~^U ztVS-Skoyvp>-S@b;R@{I>s8Ze)7ffy0^UM&_?xrQ$i2_~TLRe;23rRx_c7TT2$K$| z(UwvQAXyRHnX_pdh6AC}pVgkV*dDH~_i*dRo^}mvvAf-#*Bi(7r;j}fZjkmChCL1s zd}FVZJ)}3NTP}D95WE_)s7v?AziOB25u(zsy$SzZ6k#nGqo?sGtCPTJDpb7(%pK1g z(k=+n0pU-t*H-HzB5ohpB@|vhe;39t?dtC6uaLONQd`vw5K&On+lN9ZxF`)h4mpt> zAnqznnD{97UAsNJmx1WQ)Q&c6zH`XX_dzGu%I=k1NS?Cr!I5w5h>oxD;pk5a zR<_ya7-z#OS}oiLXrpo2IMs|az?9kGR1diFwODIAM4b_3m~94|Ej{dlzRWg-pfHYt z6#vNsPo_B27Uh?{{Vf&+Hkj9XfojekR;DwgOXHgO8$hNDlb4XF)sk-+b z1dgXjpnDR@lSz*%nRmZ1wQ>1CB_pzP29zM5|Lm4MW=}}*p4n>K`PDWgtw`N7gQ9a$pvn1$7s9tcsJJW$&`Gm7&r4&p z`GWiUA(=utj-tX4cB{&HT9)rjueJ&I&heE8ZZJp4u3^xib#(={K0)~Vfy1ogkEet0 z8rzEHVHL1+HYutW-}4uC^?Tn`e|v6GC@pTlai5}Dq3vTuYyLbX&Wq3<@(M2{f}B?+ z&6mIec84OZgeVs0IITvu>SMWfNwuM#TskgAsCNaad~sT4hYpM`ncL=V^ndt04ux}m zat;bzC80K=JciBEiE$$NP~}6=kbh#5*OBLs+nH~5AM}@GG8OAt)EerSFS?(H)&KJ$ z?0?oI|9i<~lK;B>zn50)HQ~Hf)Du58Q`v7e#@f6Y41^${0;A)MO?w2)mAO#OC4PNH zE)IkNQ^O*oAGRWAKK529cByEcQ!T5Xx0If57;V9^dV|s;lQp_ZFSTmbdgwiAS*>g- z)2<+BtpKOI%6RzBH2f(`s`dEx{?P7p!TFHkG|BnUHtaUR=Kw13`$&nQd@IGDp5igr ze-QPx$UmFvG1Wht`jH;|qhjmhp9~&o)A=D~s7Q(;MG?s+ZA9TgwZ-xMM4B{7{m7a$ ziTx(E8f4*~nk+-Pis+*zNJ;%Ln&k1cXevEI|Rc>xzj zk6(Kgf$}Zey=Lph1A0tt$=kj_VgP}ed*JpgAeza0B9c>rxh-Iu9@EzB8zn1`VgOAq zH`YeK0E#cJs}Y@}?bt5qO{_y+Quc{GLa#X1`$D8BN0)ub_8Y*hwFa}1VXgm?5E#w) zir2fz3}|-1!gr2mY-DQ7+-3uI8aBmme+LF*;+sC=uw&ap_8zXA_d#Ovja?!EU)G?$ zoppoa8oPG|1ijWFW*a_6KuTWrVd_^t zXhrV#Ebpn?9%w)M)Ui5-FKK}nOgt4kfR4f)R&-Bv547DrvY&b-LJUinaa4auR5&iJ zR5`A|R4E=IRh#T}&}_X$(e@w3RaNw5&=MbOsZ3*0xA&K+UPaLOB8qc?-IELmdS;JN zRF)1xXt0=|GO#=BrBK_Ns^#6C3_O#U{#2C%cB(b#{3`uiuX1Ronw?gdTEmdJnd~b= z*w#Jlm~y2%TCc%WY&W)e0PRZv7Rk3Y(5RLTl@>XH(%E>HCG-lkYIYV^%qCHNS7D>W z$QrO3d!nR2ux@6vp0#$7Ki&K@Mo&WRy=cmiY7#?Aob@=^FvB0L4BonO?0FIwdcaDu zbcA3Z%v0U92*wI$wp}aOlcbGXBSP;bxrRf=G{m3}4q%y2dC_O#&wgf2D-TEE8*2H` z&FT{^7LhY=cWZFvWwy?`KzKxM=d$B8iFYkdH8my_sWJPQqSqJ1wR`H(;f==G_Hk9^ zoar3e4c*;ir%S`(McN!pb+5W5@DzI#9K|!0;&4g*mW0z@sw)Ii#;-nX7WeKFw(l{jCu=M_@F5kjpJq>w zC;@ey$4(0xT8igv79r}5qmv>C(&GF`qir8>>M%TLo(DoUdTSrr1Z&~8aj?Ie%pw{SmQNgi4DPr z^Hj=lRf#uEK(r`pu3;bI-s(8B<_$X6T^dhfKOrk$d9qr5^&LP4Q~qP!M|QN}9y2FA z)C9z>@v2VJj6BiB>=R&G3g$OpHQXB9EP^e84glREJy3_myzay~>Nk_2~?{ zqh}YOC|E44?J8H@8Kh6mS1m@FP|0fqlLQd1-ZffSskaDCcG$7nSoo>4q>Ji}U5ogB zxg3WE%CU$?H}EftQ+tgW>8GMnDsK#-1=OW>y*h=0Z_XC3j5llei&_>|%Gns|oe9vy z=J_Ubcsb9KxzT&g*Giqu)>ddb?!W6K5hs6NRSI1bm;va;=_?d!Ys=N$mq@)7qLAHX zss7SSUY+z|uXl&2$nTWA&9L|#>yl; zMYV^Y>!O+4QYS;UApWd!C9TK-`zWn2{tY9>!dBb*r#tWMoDW6(JcLHC$Mctdcd??a ziqXOo^UBI#nFc;h<4kL=rpz|gLh@sk+pHE2EW0sdHh6$3LhOv^!1ek)m~$W(M*PUm z40j}pftJhhK^(4U7Mo)WYA=Kzc0j^BylL<31%#t=j#_=;Y>lwaXG2}#57k(3@SX#W z!cOhj~AjuQ}?gmRg|1uFLrOXKFuh&gr zztTt>jpnUzz#2nM?v^=b(uk$3REvtx4CP@#&-i9?tIe8)D|3{9UMUl$YZ(&ro09nK zNNS{zEbe=5Y^_=gX%ZQ%F+RW(t2sAnzNqn2r4MQp@yoZ~flk15eB=*YCNZ4vOam^D znT%YQRz`pw_JPmy9cd#tl2=fE|E`azRn_WVu{?SPP+kV0$25{PU(~+emP0uQ#Cyeo zs1Q9P$SO3qg5N0vj-5ZE(qBj2%jVL6py8Y85hFo^L!gEr)*T`fdbAOp({y~`vQWPS^haRW+pN5F zRX6j(%zhnZwgjg(G84wZfY!{{TrDH^engJ-6|vG1ye(PfMH@kpIvBsL{jyr zuCe%8ATFcmKKHM!b%;?|vT$BGPnD@$f||ixBp1{Gm9o)4wEG>7KbAxDim#KOM$+Fb z@pXeo`==hm_t3J5-FJ$c_>Y`eywH?*u^qBv@CT%Qi`ti|f73difkCZkqh{|UOG?-b z(Z3`d@GQtgcv$n7$24I8`;vNE#6k0WjLbb@KsvdAqKZ{pAJN28+wEr@X|JW(2f_eZ z*W5GaEI>}4#4=)JlN?XT_&s{# zx!U%dMmWN+%;ME6LFZlDkvT7lUl)but;xB2#O^Q;+ZJol1UpdQy9ckty@i_WJ1=+Q z4YAJA2ziLKE-j|R#6`*Zh+VgT8}jp!+YVMYferQrAHP9O6ZAMZpn6=fu2FUbk@x+^ zM441H*u{LOJcu?zr-~3M*%3iv_)uhwp_KM>fN>wJdtyfIF&hTthN#yZvDQZ8r*cKj zQ>53bVOjw!Mm3b+cn-(Xs1Nj{L$zFB;I-$=>@&6vRam2f>@lj?le7J_Q)r5|F%O-y z8sHm(ic-E?q!{k6b9aaAK$8}p8G&WZP`~}19>V#Du44v^eaa_tudqb z3YM@%ORx}m;Ca-EXyf+Xz;~)NCxO>-9G}(BAaAgUhUnG4WRL)fB0<%!ISYI|bo%WQ zf;Yl==ze@Lxn&8@iW0b26ElVx=cx>DdJWq&8RPD|L~N)g2__vL{-iJ^3`I6nigOAh zF&nxtmaL1{V=N}2)UYyV;K3?`EN%kbBvt2?bz6E+2)dZv<_)JFid9#_(-l{2hMvrc zuiVRgWW1kBbfxwcQoZ(QODHTrJy zieGfegttiD6TlzB6lNbaoM&HVhWJb0vIwm4gdL8--+@yHg@swBEY&hwj5Q13iH7$; zQWhCzBbY%dn>t|zlP*L<87`8UMf1WPGSS$_;}yOa@2^t_CYU`pcHH?;EwaC>E}G0F zX&=9wq3aa1&d>sAV6KiIpEn)4-dvY?svCmRTw?@koj5g!ko+EU7RS9uFPc1dn@Y;` z4W5)#wXhPQo4ZLAEOVWqq_0DFRsu-+E>a+~{mJdIwj6f3JMNY1p`R*efw4Tv61k&@ zWAg@AMKbHU*h{SOCq?RT9FC>S>5>jAQEO6^hg_C{`#cyL8_&h%76I>Xg?usZP=B;f zFCH+k>{{9pyIYl$)9^r+UHjqC z6Zvaif<5$SQ4@P@YWp;WEs1tCT2%(0wzH7*x9|cD$spHs^OUA@b)}mIv=3Vg$H;yv2EqFjp()WZ29#?2 z`-TruioPc_sgj&KQl+aVOcyp`468+5y)%vxLVjNteSMp@A+KpFi4(dSF%LKPg0hU4 zXM!1SP*BD{b%V=U;VB4<@gNzOfm2m#)@r2|A@aP@V87F4-neNpZK4=c6GlQxP&{M_ z=Yz8B)1vu>0Q9sJNI!aSRk9XHHy=c=L0UIN30kWU35VZZQtRQ9v!N@p&5PhvqoY=< z8Y1z1i1R_QLygKBMt5(Y2c0Aa^C!=_WUyu{37baq$^_Sq9MG_4zIW*<%mM}nR?x4L zKvs}Fjf=|G9u*P|vooC9Pv@KgNpkCSvG5x;PAcq@!WhS* z(^!oTp}4}ZJsiLoZMr(OWWs6jGRuvcIGCO#*)ta=2h2n50_|&#zHVQ@J-lAa|Dy$M z=#B^2^{HuMNc4BrKLd?QQs@8t}1xTWxRyV z1%=OqpoIXSnV`hQ>n_-ZR=Z;i6B2JlY|}y%#U@kymMEEu(pvL7Sr1PWZWBHq-ku=U z!KBbP$mk?{q^KmQMo`2^kitAsKk0iy$YTYWLMg`>zDn;q0d-2Iw|(ev*5>w;PN9^m z66mpVRp${4?GZ4E=4+5jHPx{Tq7oODbCk-Mjj?;?P^(rKGMG2mC^RiKqUfB`%NEmU zp51C~+*=sD9Ftp79rq3-)G=qmSY2JcVMOXoJfceRpb04E9h*I8_wF&>J%p660K0R@ zg=L&~+N!^G4N?KilHHQ6c_rsnQ|7D?7JYex)ldAnbu$D({8swOwz$8-gOB##sAmVi z4j1OdkHs~LrNzSA!6Ev53ouB_{}2}N!w#Qo2$^g0&ff7QYkvdwF)#IhnX$UeBJwlP zOWX28JJBvcI!(FB>E;^>Rl4>%89@BXCzA5bFgirWR2&$1P2wcHw*1ej5%t0%Z|Bd( zGNr$5EEE6F_Ea)4GjX?9FmV2y{j>d-X-WRN_-}>|QquiweMRM+6*Z*{(pAwvg?#jD zBACXW#sss3nkE<6Nt3;`X^0JTs3GB5IZmlgvg#6SF%ZQn}bT=cKD23o@BuS08B> zzH+xbfQ*hI;UrQHUyq4qe$lNj>ryBO%+5xe#O8@CaV2>)(wC5x>J}Mm$j43?^M^Ls zD1iO_+%jF{SRd+#G$t{M?CY_?>jX514Qoqo9TNhU*g~#)TuyCe-I|P-ZYmGPdJN(N z!R(qD79xf~&E0s!q<&)_%hf(gVyH}A8NtE#EFm@J-Jkg?Ae|SS8HHB6Nd5?y7#Y8k5wI+)yyJ=zhb~Aq7I}!V}!( zTkA8yPIa>8QGhr$&v~*#IKVWvQ|wqH)nzC`^V~3LhjWB0LEE`?TzIMC0`mj(eh1NL zGp$12o-g;6&yG{x0Vo4a6DxV~E26b{2j8+O+Czw1zZ0sOgF`&@C#9oRMM{m-iP+Jp^T!aP&eDjts5e~->|_a}&TA?b^-SWis%oRdPCSOC z4wJg>Ort=&bc;6UDW3gKw1Z$1Hv5Wv*6QcC*Mo>pW3& zb+4iP*a2!5t~$ax+P+}pNc4iKE#u~D#f`klI2-x2y-&EpOsEG6coA_%2+MdI4pLrl z(>uq9?`)xxeHOie)Xu9#RC&e5DCG#v?A|R>#c(E{Jw76}a5ND9?OhB^0!^-K!Owh2 zL&8NgDt+XyZzy;IrFS{r`Z*8s)zVFJjDdUq1jY16R41)Z;}!lbD2o1P1B$vE7&-sD zLzDdT+P_0$th98m0%Fjljg^troLa@jqEJ49bzem;Y)RSk&#+&utL~xdvm}M=N+0n! zg0vJzN|)lH@hn7qU7}K4H`wS*5`vTdgz2J0G?IX$ zAtQxB5}>n8PFD;~QWPdk|1)Rj4saZAbjdCYR=FZs&i58)Bsr@7J^bSjO7=!fluA0F z#O6VTL1uw#O$Abia+|wVC)KQ{3K$RQbvX`c|22>LPH4CCHTv~Fe-+1eE8S2W*rzY- zaATP4btR&u1F>d{LdumzzhZOD1-Q{;^YXJHXqw5ntB<1OK?7;dwtHJRsW6?=nr`3g z*ndvy=9L?XQC|d_K_)q`h#_1?^5Zw7-WhgRzeWoKJ~^SK6%2iDNqc@$EGZl^%D4oo zq&oY*FFRtq?T_%zH0EOt6vHd_2*mP84I!ou;yPZfnewO?w;66h|7n6fD^ThXeg;WR zHy=;_ELN-J%yOdS$LVu5M~F`y{Zqi6!l_@!>(knHe`{@l|3hobJO0gE8@DM1s)#ty znRjqfs#%zbcAGrqpX6`r2rU8tot1!Yh>+Gmw#O6GSH$@7+bC*~$=7e~xYF&aFn_cNq^B(f+#w%?#@Ct_UJZlrn=(CL^-h$$-CFW&% znKGP!zfQpYgihrctkGU{oT%<2r$jq_#_`0Ll8W5-!jOD4D;KW!g<=W6GtnrXv*Gkq zUI8WBxNKT}+*%kmubix;H8JQ^q&#X$OG@*2766KrpZ9R^2Fbi@!F!kg+%T$`20xHF zZV*RVfO*#u0W2OiDX*1fS_NEVZCeve_6h>N;t+9QCX)@17+FIKQb`)3F(NG8f9)my zdJ-%gnAI7(rC~up*hhZ5j)K*#ME$N!th7kJC7!^iekkIJUpi_TqP@4a2 z(0_YNx$o>2`5+)5h#}-$A=q3Y;Kd*m;j+v7YDL~M`r4e|w&HTf+MKP%Da0V~H~ZrD zBIbyAV`zxM)a`vO6dg;oP35SF1HK3a|4>r1bc7}b^POi{H54R@DazJV zE76NlPRmMFFGo;R$VXsJj*RsS^@|1himCbY87oDQ214!Ia9I>c0>9-BIog{yHRPT~4YVa0+fB#(nI8fnkVenHJe9Gcm!F~^DJLx7&e~diB$5nf| zo|Hg0A*d}!C>XI`C_|l|Acp6dn3x26$_PXycTndLS!!Qy3NEY+$`0s_iKH#MLOD9k`0S<>%x{$osofL z)x**?FoIi9yFzi{w&lAHGt13Yp;{HoXkmShs!Mtyu%Uc4!iu(D_56w~jvAg15mWlM zcAeet4@lHmLM7X{)G(*9Bf-aqQ-XHs4{l3Sy$`U`TJw$H`2*QClx;8puC{X)W z<6_fI1|!7JHx1vtMF<{-etxgQQ49SJm}7vIU0p(i!cJOW+7odsA3=Tzz4_q;rO;_( z?T7>ZzyT5@C0E5{ouEX{3Q=GqTE)^_UVe_px$_Y83&)iG-8_G>1!_M}`?Dw@FwKs#&@R6cB z9D1Nz00aWDuf&)=ntcpXFPt)l09X$BFz6$RoIn=7+y{m>Zk>Bd8O3g-AbGe#H%x{1 zTyJnbd#6uonABO`VUy@Lr2!NE^ktK5r{M?rry0#)XV@a1)@2bxzSLeUgpPpCm)qe9 zyN;q(&Ik!mV{c^aeQ4vSo{r#fntM{3U8YgqgW}AS#3jLKx^ux|N z2$Pg-hul@Ks11anmNTD~yZh0A7TqeO-hHP^A5M!e^HcEGu1b0^;5Lh){*?N$TZZ^C85&xE(uwR2+@hEgDBl6*|^N(>vj$d7_@Gx9<-(!tV4-3^0fnx7>miPyGDPAx0F4~_0;PHz|1Ni<~e5@ zb{WF%PZ|Tq|S3|SX%e=|4-FOF3RrA;E6)mf65=Y5`-Lr`PI@7dG4GG&ebL()W!F?oyCBnHp@8CK!y+>;)}duZWbwf4xWMl*X2 zo@JVlbfJQ!sqEN(lUiqT^{Qnkg@k~LeLzdv{I+gpTtCp_4wY}OPr1)M7vNGv9udow zB25W9%;d7dh9^BQ7c?4PZ&SI!`edII|L|%On5&UO;0j-_`$pt)9@!RlYV-*$*ZvHDqh}-yj7+ObUos{pq)yYaK2uruACSU3i%{6AYc5y@8U_<`rq=3@Nbn6?*wRo*O9)zQv+&edSEnJ} zMEXR2db2BBjKuOEr6gj#2)BmFugb!A`(ta|4_Ulkju#Kv*&SardWghh^ZE=N*LIr5 z6}PKd^6kHOi^5sRm~U|u1sLdv3khO_XF3Mah}m~{ndmUtqb;J1VQF-g`=zI_C=As3 zai@HeGf8s;tom0fIS`Y`y$3DDa!$F+3beSLX^@~^g6h@+)YZ0Ja2Gcl??psPrdEzJ z%K$-wXWT!A`He6&oqX6^CS$bh_>%#PrMd>=GkMfJcUI%Ft50sZs|}Wj?W);OHY$r&s}j=QhjXgmL*N-R3-HRc z`r)Q%!&h48*{u-^9e9(reg1<(mKbfo0{aBD0<=F6n)Rwq7Mk_sYS^5#5UNVy_KW1m zm)QeGv2nMlQ33|nK!EOV=W#qiFX>5^%s>h|-S24ZC#16|H|2ROIs_GOf=IJZx4lFwc=WoV2}d3 zNEATnqgM@9HPkiL%NnIx5RpB9;!~xqC;dXscVfI5&v^0${FSp2v7wcZ4vj3u#D)tB z>4-v=N>LRO0a*P=N!qGYx?pAiN*(sS3KNSLPa#(5jc^smT!l6XFn3u-=53RA+&QUv z?txKsbTZLMNE-lFn=8Z!hKz}A zH7>BlrvOum_a6knn~(JSx9sOo5=X_lXiT5opdcL5!ECF9ZSX$*4dUL)0g%8+7FUkO2pHh(22%x* z|8J@R239|Y36YvWrwt~8ewYby2e@!Wok43fzI*o2uOD;P{BlRQG);#u8+wnRr z&rIp*IL~f!lVijRms)@zZ9_jp8QQ&jdVG@VEIYMVPt5X?GH{;onlQ}+n7*Po2|R;p zH&9>ax>9XFx{%7XX^>eRQU9H_x%%;Bm<3Y?-lS!!5tL z7cRBY^^fmVCClkE7oJ&k+3c4TLdV5A8INefgx_WUEy@hEHQQ`dJsxA!E^%vIl0*Q@ zWmi059u{7lc$4ACHzK=xn+dq?{B{vc)LvVbW??C$tF`?*^wbr`3d^caXD3S``1>@2 z6Z2h6)AuCOL!7-CSIn8b&xGauW8PRI%25<+L5!ZJ-pF}s1P-_ct>3TY>%-6;vc{@S zjb&_}g5?8JUGkGXhvfz2Ik{S32DVO{Y$Lw-st+<^5Fw|7IBJ`y0x4GjcD5<3x#Qi+ z6TC-+9c36yrcIDz=`Et>?9nTNU(#Fn5-}d<$JgPkExDmxctp4#g67;QRCd7!!Y21f zMg9`)q8w9jE^l2tMX-D5_Q(Ae!u_x`xdEu(caXkshY_d&i*aRNdDjXsjQNuh@hjhh3RLhP}0`a?q9H@BrE;N+T&wUe_A=ORTX zPuZ(hgMS(mUU@k|q8=c9-mi5n_vc|1^`(vRHqG&uCsmZCFX`}zb(use9x&GOk2Fw6 zSM<7i(?ZgRNXtfu?VWmb3wO}xQ;8*Uk3K^xbB(3MbQuw7?96%Wj}Kc=5}ri}jYe_I z9D#C8*dOy@d0*^8$17~&T1WK#=?5!g6F+jxnQw6}ekjf|v$r}98r0-m?l;rocR~C% zm!2QT<`vWBXFlrP5RnPfQnPZT%K0VazVPwJH>k~lMMutSkj86w+z}fJeGH=s7=GiPA%&>%t>%Ofk zBRp=M9#laSGs7aD;k*46Nopw$SzRp6tV3dp)7SxDOME?5;zZGv`>lZcJL{dYFO9T; zib4IdeS9?R1=;)DS!-6>4>!%p&RQxHbuQ|r?T%hbLan0_D31yyNsjj9Lehh^mgI2{ zX(Uj(KpGlC)GU`!1EMpyNu4?6{rq8%!ml|WPos^|(v-MNLj@6y;?f+erJWLGBKxFe zi|>D|@IZ3Fgj)USwh?u^ECRbuuf+ZrY3~@EX&1DM#uMAN`NXzu+Y{TF@QH2PnAo;G zvF%AF=Ip#5PMuTr?f2}eU3J%8>vykStNZHJeO+Xi-dmEV4>2-R_J4Uh`ERq!8M~Uhxc*mQ`2QMTUDsnn4Eb}}y;@6SeTgj@-HN1}8%vkG z8$_DA2_{r&gF#+Ox-BQBX>@BObxLM}doQmK@3+^UIK>e@;_N$VZh*G5d{kC4Q1pSB zm-lVjm$kF8YUi)-GhG0VFKak&uolN0z;UwA4m=O{d8)56uoFsvv(Cb3ON_9r8GFTK zKn(P!jgw52G+Hp1O<@QN8s+xVel+HZd@}pYKqw&6Q#9&34%Ccx`X~k*T$}Bls9uvJ z_#&o2klmi?5r zx0Q2TYiOpdrv{EhrK}?A)_NNgK0)JbPgk`npBxyc3Lj{PXIcmuO@RehbMKAqdN7~`XPyOd560t*Lr-emG~AyfyT2$ z*xYdg5sl<#yf;A1@7$Kdi%FN>c@(8viLN{MMh|LGdh8+dnPWdEz`LCR+Bi`!JQz+qh*E_H~ z#XZ8$jtm;Z`_zvDCK$WA?#OB@X(wti!lm#jMq_6wELaRV)#-eNraU#0LbGv<#ULg z>2L?sdZ@f#1;7|=N!?@-hLK4&xvPD4sD&SwWKyk`nIjpafo?}p>62iF6JSX4atg!P zAB5m9IRgjKXOvS^+Z1)Z4F|^0#DRJrc>f%1I4cQt?u$GnoPDLoR z@BfbiF!F)Cw~<~xw3(N?$GaaZZ`jF2>#QM&T3u>iWl&;}Ib>$g8>|MpT4FfaLDVFT z7;~-&dJ+wfLNUr*XAnmpDN-JJo7dGtSIhM>kP?$CamsqA!g{ z#{685mRN@k0a4R%MaP(8RzD~pa7G?5S-KX4jaPbVVO$8F9ZEXKj%0} zBF$m?WG*=l9p6pOJ#dixrJnl=G8PGKfFhu8E9B%Rj;-Gm*_eixu35T{UJNS(-Y zjM(E}A}*3~M&X>*iVf8maJ+Xyb!&p4w!Cyq`Nza46k>0;p z<6g||7}fm=bpiIjr*$5vh>yD#InKL&&agZ;`?5s(F@6^@psl^&)RU;+|5ct1xs>)| zT*Ra7mUBwYN6oo(n5X^MYj}I9K%o^|$D^>p1beL$6Tq)o-;W=e+_Z1biXp0~9Cl7! zm8#}TDFYg~wMZRRvc6JUADUd5s!~u3Kp}^>o3LVWeWm^IOf3+l>f|ga|2`gX^T`A} z>P6_U+ZHQ_%=kGNva(~byHP?O(>py>_X_trEUpiBeT>mU+vqTZG4f++Iw1$!+_E5! zKmQ|ErU6|1fYk_{W33YFV5}Q$ggPq=^WqWBhLfBUhEwhhfm4w>s-e{r$ui=R|I%WF zewd^vG*I)OJ$9+D{^S3ZqTKvzio)^#j|NoTO#Y`GZdRMLU;L*-ip%Z1Ev^_Tzkm<6 zNg-*8p~OTvBqTDPltP@eT*`KC2&Y69mA7Fu;g#lHl+!lIsQ=rIavuSe_?(!C_&`JL ziNFkZ&r0sg;C|zq^q+L&;R+3^ zQqG*6LZ+;;0o88@DAT={(Fg1gL(jTE{xZxEyR@e^4^q7~L6>e~bbC&#VS+!p_Wau2 zsD3!(eLq`JlReCrddssvJW}@LOelD-jpwdzlx+7Zr<{eyKtoFk8U@Uo!89 zl{f7oZ`d8&sZH2}xbBDGDst9<``d3kzhe^VV%oguMHtjiA`NIZmz{?u`4#WcgU=`m z)v{3h>AcB)!HBjnEDh5Erp8WRGG;p$OtsqHA+huFY z9L=W73g5|7_`0}G1bD)_CRZ0ke>-Fd`XC<74=hgFkUIQLl^^pTWPxgD$V#GLE;{nB zp!NUYDiXCawzmHt9aUq?1x+3OuU(S+qU&3VzfeM)QgVy5Xg;(QoRzh3u)I>F)h&2S z7KMK1C2&i=Br=xonfrD3WX!M+j%kLv*K? zG)Ff}2hih)$9@=xAR`s^&?kz(0}F^TCD7c%<|#4P9hv100-@N9ej>-Q=c9Cn ztgZw=BXZ<}e~6HWtdb2CiQp^Uun}UJsP)s}W9>^r9$;%Y;!0xh#i2kl?b1Lp?S}`Y z-Gl^bI?DBP<7>nZN<*p+4EDu?;n6@cB1&8RzQXG)pD7>j`hJ{9Ma6WU$=l@Zz1fVw zI(jx!a+YXwm_(!5s=m_DJ~saafpOudVw!^2B=x4JZXwJpu86Gz5llj>{q z9(HQR1R@OB;?w1W!=v`rylv4~)2n~cB$@%+RgZ*j+~Os8oQkp}nMOf*DqRKBQO=uw zS|V3-Ap7I6FO6log0n=cc++9VAI_SNraJzz4pE?WnOxI^F^ZASVA^81 zPHRb?_Mwus#&WSmxLX75izgH!U*3|QQ+48mVk|Qa-=5U4PR4?RU#7L;xSjpb)q@7F zDMKYE+CL)!7%ejIj30bkREzQ85wZRW$`w3+w5mK9k(r7&J(Kype-5fB+K8*@C?O<% zueCkodP6^H;^ZMalc>d|B*?yFlo2jyQ)>X|#*_Sm_E)T)h}o6k1gvgpo|Jel1zU|A z9}d=pq(pYl2wPJYPesi+VQ$%3iG@w`Ic}pf6+f8k&flGN)qz@{3s9JD58cyu58bj6 zx@e%`1FZQDL5H#Df|H%Pi{>)l+bN>II&SE+w_?qxw;Sz6^RScp${cMK$)V0sLqDNG zvRzjm#ZvfNlukI0gYZO?hr_pW&;+ew3q)NLI3>#Cn>o(Y_ldg+C60Nh)fk?kxd{SY zFVozck6D)*;Eoud$`b>}Xpe*?u|V84hzV!?m8EU?-|#W^rXdFw2+QMJM}(ne_U+}I z@)G>RWzo$?T)LB zVOr-{5^nc7D6u)OA-j8?->%wpNmNU*4}O<-`tU)PnnK^W&-{t^5n2Y|`r3 z-F}U{q1~Or1QGwx6|yn`eLzcC=eCXB5nGYB%^U<0r55}?yns))*yYQ!g6!#%yYDlR z$MA|ygPt+|t{*o*DQpaO+1ox3R4( zVd$AGNTpQl;2?|n*NnMyP7A|H(OUEuxDp zzsUUu;Quf4%Ky5@|KFAJ|13B*Yi_uptK(W6LVg?_5R7$zyG2_uQ`C?x-`*QQfxdT;4_&2#;6i7Chl90qgc@Q35 z1h`Ih`Wa1S#z%9Yjq^AD#u5fehKq8K1O`dgQ*6MHoR4D98fI21J>Ibkp6-SYii2ft zM2Ht$7rQMqPzxDj6?q61Dzz{;FqfEitqC;?r!66Ho7g{)5y~E}5VqH1cbT|yeq6`{ zd9sc@{7B9gvW2BCCon4*+SHU=q)j?7mJ1vP@-0ExF#t3;a1j0-(+3+{&5>#W_IiK- z)<28{vUfB*NYF^DpJ={pmvFOoS8=su*Z*Cj9~}N2qclj;Nvhv;wPx30wPM%lQq?hN z{FA^B>>O_?#Qd65gN6p4;@R*iTth|gIzST>d9uj=DjqppT?DKWozr(M}+p)e7DwkrZ>S%uyAo6i+6P# zevhUQlO!c=x@eCW2BF3|0(-sRF`~UR1D?sBPc(C8A>#0~=2DvwyY4L`hfcHJxQxTC`k_3v`fyEs%!M||Rz zpa{{vFk|vrbjnnTb#C0@ONyJPs&KnceFyD z&mXOTs#l&GIgO%*dRv1{ypy#V&CDO}Vjezic?2Xc?xrae4hqExi;k_()LWNG6FeQA zPY)jV+nW?ZmraQsAm%>RoGp!XiZ$ok^<`B*46C11{v_HDF8R1*C~s|7#FR=is-0SC zX{@4v?m@oV*wuHVML}9ePoxg$i__E}&=c z+0mDLn+w&0G-lA}Kp~2=?C+i@+FohGF{Msas~*sJl`Iq* zlaLc$q157!id3mn?KFf2?JYSK9yHbzQlUST9fJEbsfn-t3~7`&84%h0Kp!C?a~Th& z8hFqnu}O~<&dDDLkPs>@DU-0Pwq^~f2iR)#l{OVU?HuYZh-c%38~MK*iZWBHzJGV# zTmndlH2bC4-J3JAX4?^FJeqTDEu(B57wI1&#MJhzV${3pC|aK(@}^9lmTtHuzf5~* zaK=SMuKu!gqR-jT155ooh7}{zqqKMgdHf?9uKIbJI-iuEs<=QFrdtO{L7ud77)RZ6 zRO(M|!BZ=N1q#}lo+?u#=Ybz5g3_$6m~#HyQG3JK)IU|ScxP5Yek!J; z!8P-hN7swFKDKst@=Tn#0H~j0tu|;siBI%+>mMt6IU?tY()rCrPSbb*0MTKOge*6I zDG|;FHjps4Posy&9d=`62D_5ie=a2@0RF(PgYFnlhYqtHrozS66UN~z$PaowXke%g zmqAU^)#Qa*!(XPn2!MGNSD3bfM*Vh5NSJTqNikC3l_)}SmTYwdk#xx)v#ybdZ;K}F z36?cLijcVuX3Wy(XkE;WZ)J_ZkU5k|qsJL&E=Ele#1>(wVEh3AwqKE`T2}AelA76t zX}E4l*`f|t{~{qp6i4i00@ocGP&OU`LqFo=eUjZr>n*PrZ0UseDW2emIOs_T(*=UZ zv~X}l0lO@XKiDh1Z*C^76Z%YGvUu1-Z5$f%{ZkiqNwJ7`Oyw|)6a^Itqj&$Ek3}8^AI{%`z8;z1jVoA=wYUVhU07&w5+L(gziVvXadDI#7 z?@hpu&^)8w1r-UqMG3oPk-jD5t9Bmmp?ReJ}y4nX9U#@m6<7g=`BY{aqa@3 z?|Q0B9ky9qN3e>0-$!rgcHOT7G(X2)68%TZ?d*tf7V%g85)b9yqVT^Ue`j+?2WM9% zIR{IX|5z!yxqhjneN9aLXAI8KLhx1nh4FVME$%5(ARmGj0#-~wH6I-o9X>p{#i*od z6;=!R#O6*X$Xewt(c~6fFr6#MaIqr45I~@ibH|FV{BF|L9%DB%&CMyuak7%#F>Mzv z<1ynSy-`dBIqZ&D-Bp=Ji4)Jh$zaJ;6r7&d88K2fgs?M z?w~Gu)_gBXynw!R!X%Tvbh1zilhsU_J}RRjogxZVdn#$zS38>=u9qHj%%p%`A@z$^ zCYv;BxPdz9i(4jnvTz{ucJ*=qLT{=r=8GeSh=p(JhI-JHQEn&{J`KRPKR`~XFhBvH z#)51IXz5^v#A4Pv3_{v5Yg-7d@Ei*z^$pu2#EQJN!?M`N1=`@)n>;fP*1)&2UYb4U z!ZkV)3_ief0yZb=a`p_cWE?RDf5CIIZVou&4eG;tu=?ih31C?qKmmF6(}M{Zr-m7^ zWNriC?i}0U{4Xs$+OJU|T^fcnJlD9W>NTIZFR ztN%*D*p6IhXaCh~j`7fa^8P6oq0a7>^3eRNO1se6++1GVT;5CF+|Mwgu^U+HQ`CV1 zGi=%~wYpJ>2V5@1+dh_B!kaVIVK(!Oh@k*BhHMksMxKE>*pMS5ok1mpv2b%A>JK6C zSA2R3fU(A@4v1g>;c$=dM7LkAd3qg7+CH`_PT{xab}i?`{52rKjA^?fN`N_iwuK&T zmmfQ=sU^Pg2SdYQX}x(r9@CztHcmWvFBKAuOx4U;uDp#874}U2k~Gt~OkVw43^qzw zDawUgX$+MP`MOGVv$Z_l{l1Zpq?0OnC6;EhN3!Gq%ZIN8?OE8kv$c~DXJ%o4ix#<# z9%c+=R&yyRG$i;i-IM{r@Fa0n6&N{N2@whF=T)gTdqRLhcFEtc#+mQnXHoIH_x=zF z{Fr3DxLp!{4T_hIZw;-X`wabc!X|si$Va&C+vnAD1IZclm&+x^iBJ+zboU(m_;Z8u z1k$?N@nAjcL(R#=Jp*n>U@uE%a6f1k8$0tEP-EOi3rQPj@FT4Pd6MLUdOjgpyR&~+ zo#%Kr$KbiKw&C2{XI+X>y(!+Po9E?SUQ{vAna&4brws)c1e~?L+rA$TR%oB9YfF`` zE&BP%kGEL4G`3sJgRH4?FwRc=h=z7HfYjYrj!|?2NOu%zx!|ua4CstMB%mwExzRSI zr=ATYi~O00?zu09Yj{q8sfmPU;+ zuop4J@sml?bZ3#5?11Vv=tC5it0iTINpfxbq6;>cfx2W1E%EuLaNi6S+`0VDKi}LE zaR!skr0#`UrI!KHIsA9Wsr2kAsd1kCh49w}H-QSK(y(6P4avRYKEu9Rbr<|24om2!;)fkaAK7HwA9uSIwUWN$?DImgVJ$S*v!F- zcGrs25U94CWRhR#w756WX3Nb9bqMO?v5~domnbrC;ujpCvQ3cH*pcu{I8;xl*^dhs zH8e9wtYxKnbuCIQzZ9yC8GJhi`lZB`QlUfhVJrt8_puT2|h6 z&SIi^^l7FInH1k)vLwSv`9jGVO)JW|-C60~&ERyC%GP>s%DRPu>SQQ9)$>AKj6bVA zHHh_Zr(xaM4@L$@sf+=-W(#gJL_%Zh;&-bxaN$I1Aqyfk%m% z0->uNnAVM7FoRcSySZ)#(=L`18{BC4FAA*lKqpGA;NxV*K|X;nzG^wA6V$-uAHhMQ z2Pmn|--0(AgR+@?vYQ4%axt=B05mnS=IQn7lqElXvbSW~E2Z_ShrUdwRCDlRuSNDNc4~y6ija!YH=tTnbA}G{SX&s4Thz0;%^1i z3)C|s>e!G_DiG}!w7C=)P*Mh%i`|Ec8Pp0|l-D|AE0^6}r8?`hy+N>~;toX4to6tV zhK3hNY!eKIDHe3w z{Q~f8i4G(-PTIz=hhrYc+tvgKT30QN!@AL1*Rb~8eQ>Vpn1&VJoHwlvBRa1x>Lv-x z9>F$Ed(ofPfA-nGXLY?o@aZ4YW_()A|Ha2qHH$8q+@n4or!FW+cY=tWRd&XX{mHB` z60t8!pP>8zcZMGwF$~4x7@tQQ(s&_87L0vVXBl+Lma63-QCn5 zG^I*B5UA2grgl!f>wPqJr_xRO#{}<)1Y;Pa(RH8gZjM~L-#ws&bLrgmI-G@P?AGpRE0DU=W*i!4B{d1RdU0`&}sY4Eiuw&1J8}+&Y)%R zjS(HBYB$mFLX8;9=CGEQ76ZHHu!l-Xb=SYFzx{Ry$AJ?5KT=+{vobgxw!7N5CmIcj z_#i-zCIAR$y-DnPwR^A#n%~=G236Urm+E8&f8o~7JJtX%*z|rHHv{q5Hp}-Y5p38t ztBq@bW#2tBfn_$HK%g$$X5}6S!UyiMwboDLU?30}gUeyPT5T*ec!hgC$6Rh41tdWj z#BKTRSqel!D8e0Kvt6vyA8cgXtS}A(TH3V94mwzS#sYViZ}bpm7jJwKnC9wq2ZM1R zt)An7NH)*mz_{A-GWfs%bzT7jy47g~Xzw1euyHMC@EN7(A)nklC0M_lSS6|{uv zI3=`2>gLgv(dsEql>h_vu1bKgI;@&`VWpf(iimnfC9Qa+N;NG-rAj63qFRZZx`I;5 zS*1!XEvuS&Y2}nk%338rQvJAcBBF9%HN{JzJjf%b4!6g3K<7CPZTZ%f;5`i_cgQFK zt#bY#1mOk=tZfwrZ;zkKcA!L|+*l9cJq!emW3U&;x9=Yb9G2(wekzFc63lIn0qYw@ zs^>iys--uQB3xWm53)X{D zfEvX48uv`-Cx=SH$?h|P3eJGHU?HX@&|V$SOagM!1McM?HYbQOUYaOtn$T7fJx#R>Le! zgll1GCX{T;2PJ?9vgBJAL5wnUrS@w<4Z~09Blq9(5DxIe+nYP$1#jTIhxGHqU;nyI zdj^MUWqu|JCSpA`LteRse2>0|S65|9q zrc$8bVhZGQKrOwQBWkd?EB}NEl&ohFg{P2a>V7bE0CPXdX9ct*n0%m;HM8FDILHAK z2V&Zh{ufB-L2}s)K~y-l*9%iP1D>Lvm}KLb`_ZTubMOiy(Wuy{glweSj>Y3d zuwuit^ukiL%o|fUyTO6pWa#XPZv=F83=&g2yKyhFHTuXvXnrd@ zVwoVUu?LK0zV_{5J%&ACOTI84nRaUWz3SwdHhz***TY?-l_QtVo1>ik&BRQ?A%jLvc0h2?I zjxYpv1zcU>shr%vw`bA$kY8vqn9TA#e#~S{z1EgC<2j*5J42EgfiIlIV}DP0wWvru zkAa%O%;N5vPZwOqOj*?uGH|GEWgz7cd1YK2F%3OZSy+~jgNuMAJLPS1<(7Is5B+zIrk$LUsHu~WVF$0Ax@}E`s!-;g1 z+tGmp|IL&@Y6l)ZaP1?9tFS7L^q(P)=+fq&8iH#@^mE(F8bqzys7mB-?#r}vY>W0Yo7q?@@OG#-Y7^d}s*01C zP)E^3n@1WGh2l{o=(U$bs!*tzYkYT8qttRyG=6-aX_5~0L-Sph<*RU1s)$lq4rnfRawJ`7*a>Jssj%%s zZ{dBDI0nqn29~yjm;behWKN?z_|A~SV*#bP6UmW&ftnig@wbv?)$StBeS@Aci=ScK zh>N`{FM1rP2ze0^TJ|st2%aKSg>AG-Pf?}0Mcsv>{TaldM2n<&H;w`4(E`z}hHmB| z;I|I5gb6$!L}+sM?;k;+N}FNOl8SbLG__`1Mqw+Q2BNU?Hex@-oAVa+gE_bi<@W$6 z{BTXZtQp<@fNtBWiAQF(Q?$AlMwA5F!EE6_G^7N^*LT#E%!J$S_LXRK^K4>PaJH=# z1uF&q+!5YNl5T=iM;VD=;=k@HaGdHS6RY1XSyB4N@L=!YP>}23BCBLj=UQxS%S216 zjkW}{(*-ia*MUvoxR$VJP}`eQ#oIg~L5+EqKa=2CoZ6dWw}5RM#er7Hf^U6`Mo|`V zCJMt?N!D)1Vp=080na!>PLw*hXwlG3epkF#%>iaiZ(76~4OEM(Z!lh{#&L6r&iLf< zZb0^{_v}`7Q82A=mlzX2Ge|0SpAbv_tcx)>809 zswWTW)N|R>PA9@zXO$o~2XaE(l>lrUGve^yycmdDIH`S%>nw5gX=F;E!~R>Ak9tZM*W^P=P&1iJ|A zgc3$oaC2i$V4+=&tyPh6hPHB|gR_m(v24yjuLDby8gluA9m(ew8E>!L`f|jZ+XDIx zc(So9*8Bo}q}V&b=86{O*no3(sZ1`*u1w@J`}CWpr=(C(MGPb_fnY2PAm8K%vmH@85Z ztp4T`Nr4}!l=#N4oVCB98)GXW#nX9C^LWbB_|EgVktq=iU$AcuC9Rapo%q(%s6<{k z|5B9n2AB9Fp#V=8KOT0>kbCopqklI_K~+o9;+YmwU}wdcx~Lz)lC4gl{u!`KR#g3d z0u&D_0Z@Hg78i%4GfiYjl$>GEt$`nZR0ywcb*3#HAnp+!u&S?1!TIIRC}x9e%##g+ z7w}gZ^yRMy$~)xr2w3y(eKVF@Kljrj$gNXQI~X@OknZmGB$3?`X;t`}630{D`nt-~ zA4aZ8%Zrdb0UspWYPX*^tDU=>lHNx8c1UW!ylwU8mLYll9{0K4+weXmw8>XYJ(yw# z8DHrW@=E?3pyUy*>RrtI4%*7yS?A=myx7-(Y*<#j_9BDVr4~D1mj_}z7eSQ$ax2M?)`?kv~mzO8u5m&5;w6u)+ zF~it4P_~fYi1(Gz&1>;HW$W{yj#~fWmMai_=8EOgv$^I;niajXnR*F2WE_tEl;(U- zHRIt|P(9WngvnqK&{VD;y;kP0W%TS}z2&J$p^|eHh>1<|W<<^7a@}O|RR}AnBShZ| z^)UwYhlc3NttJ_9(UXShgPGT%`#J)qQwL#RJrJrxd`U%8O;If<}$lyC7}$ z2(-Q#_ItYuu`>q5v_W$e5PiQ9S&jDStMJ6i4%Dy1$P2T3hJD8P#zt+xoQ!Ivb}W>% zA8cWc0+C!&r_T-PPJKaAz9a-EAf2fX77IZmAzU=@3UL^yAIhq}TAL_9dxZew3AThD z8-Jl@W%15D2e`dIaSfO)pane%6kX^mT!P)#RGQYy8yte*q895fR+annmo&vV^9?!l z%n@Y6PU_YoYB11X3~h&t?_lyOFms)eD~~TzDef}Rg}*Wj{~!oAu5YMw&kn+AKH7OU zb%&6vCUyK<=dR42O%NAVb8Lv<3c?RXL!DG%zYZj~%;)vhj{`?5B-_Rj{bm6MM8(Ge zi2Y0{qf)4YjVy=f#d1FmdMkfT{;Es&@gW(lct^? zC+1GcSryi@+Nl$JN|t!OQ4GrR(^@t=9j}LZ-FY1!D$Am^JeOS0gE9QRJ^8k)8J#6g zoHyg6tg~%|mODuKPDd4+y;kd+HtJ6EzmE(7fY&*;p zSBlcKZ0(PhDPkdc%dfzP0YH);pb;r*@CmWcOWPyI1mMdVrDOZ3KWugZepC3~MJ(7$ z@6;JSG!2xy`(}*W4}Bv!WKsvX5`Lm8~YVhYT<(P_gW3evqn zX~WnF-MDpGExQcuOwrvVJW^=W^a6RL3)}TSV(=95!Xuo*0ew35+|9S+ykD&i2(w-3 z8*Jfs9CN4R8!!ja45Sj4sUlwBHh*SSvnr4#>oaas3C$d2Rt&AvkspLu6}lLef>44k zuNzla;xcQ8)kS3vN%Z9*BcZ6GhJpdex(h3{g&&d|5pv1%6qkz$Z$~cMD#WLJGZ{~y z7l{{!4n-UjwKe{T_6_LFps$m*xRLCfO6O%Cbu#U^UoVh!?^;((wV7I&zo@Gl za`}qJBgzrdx2jz1c{a|s#e|a|(fw$u5}TmZPClzs9hdt0 zp*^Q%mHlwVK4rT-Za@k3u(OW^0-XW|m-JuZJY1^!*2jUReYF(U1ntSB;;WM9)6n7J z>!kLs@RZ1x*v5$^cn)X#O4^d3?$w+@5~NrY-Fz{v^EHcEagys$>P9%v9SE_%aH%Vnf700NNaa5hW}hLdb-$N;oCTDNc?g6L)TIb zsvST+A{}glFB_A^Rqn*y8NPXeAuOP@Btt5az?0Ze{r155c6jZahBR)8?qNw>GnA8& z^Yvxq5S;Iqg}FsvJEclm10H82nD|1Hm~$k@oiFtj9l``ZpI@hMrrxaoyzh7J-EfPX zs-o|ckGiN8munfjw!?@#@385kcM=btns&$^3xh(;pB>$s67_3l7qIn1@J`S1K$bJh zN7857!FeLHMpA28VE=SdIV1}y#a8{p+3KpH0UdD5{Wmrcc21j0I`?v(nW8{>V;8UVw2DYe%ca>KlE)WhEs_Fx4hCr7H&+^J{cRdF}5DoEq?x&9}drnyDFP>T5R};TaD&&jl z`|r^Bsv$dx*eBd$XL%dc;AbvlImjWNO!*h@oo+H$d`KMhU!W* zjQ#lZI*=fNkZQc!N9g*B{P%Z9_uf20y@op<&Tkt8uOENzPA0QDFRExdKBBjGwtd@r zI(xbU9f;lRW4(TY z>8-j*`y&dOD$dVeWBi(3%i?r+{~;&%;-MXXI26)7?jqrgX4a2O(T^L)zbg2pT&a4@ zHDb*2_M0w&P9K`&E?r-juKxUO@@S*Hr8|-1Kz^0eA%$mn zLlH;dur=^E8R?ZkW`5&Og%$|xFWHwr!}(Dt*oelmN0nL%Ko4F001}28kVMtZ}-i zCGq>%_*89l4H&cnVctkPEK>SGHppzHND|1mjt22tk}aC%anB(b*?!!=@E4vTdXzOk zV;3l_{2p`q!C%wUM^^-Ji?B=xAQP4k3&(bMviUou6I@YzppFKy->Jy{7C^tVm_A8+ zT*i?1KIhvBmwE97ui*InRHuW^zuQd4i=?{sys10^GWCZyTi@qO&}7K@BJ{zuRqx znkc_|@12h)!wHi@hcZ&?TLDQxr_;`Td^h+JK<$vb19TU&?YM!6&u18W z&`C__m!V?CJv+7avD#N!I;eWh=u1+mDIq1;i1DM1;2}s&_F^AQG;x2SV64V%r66lr zq)0teVHbHRQf4n{K;7q#42B4-I9LF#gbZ;sW2hqX9Hq{#Ew>g%v0!n)NolAFkTZu; z#rx~VgUdNjp_3?Wxw-ODKf{EIRs*_jD0l9jaU5=uXY`!?MMXuwrB9J%*iCRxjnk!@ zn6kRyDYSQtPDDc%U~s=eZM~L^~GVs{IP3@NcqcYB-Hn`>Aku_1bh#_sa#W z4R=iJ)rxSds1b|l2k{$<-&=ds)K*ZWh%*Eq>68xnFAW`l&w|S@at3s-@J6#8m;S_a z17wPqvxw+I@M3amXI@N=!%2LK z86VN-gG%NeUpm*x{ycSA9bewgqBKD5N^Tvij7D0ZbBt3s$ST3%(oSlPTN}|@{pJ1F z@m>vBxm~Qs27RgNEL;2feo08Y(qp;xlc_7IO`XqU^M#v7!gmBW>!a4q=t@(5F-X z-;x(bF!r)@I1ELh-$)9n=`09o3rS1mZh3qIRoE>@+p5cxO&k4 zrl1IY`%`denBkOAaxtiV(mx`Hch3O+zTsQnZfX>0`*v*TJQ>GZjm@9!Zvb2@@Yu)~0 zN`qCy6-9FET^45thGh&_@wvGZlenffe4EoNiI~37NAG|#ny+`ev7Ha|N~ZkQs%fK- ze};nHxgBeb+9_aAwb{tS{U-XfB&Fx%X1>IMN5e@0Blhrtq?fSk z666C5N`Fuu>ERqyF3|yd{4O<$_X6rOvO!llv>?h&DTJ;@cc`e97puyIK=JgO*O8|% z+VJ?p2O*1+>$MD4Obb@VGcQPt~S|*xH zrYBIy)ER@^yLxvOM$g4U^hO}u6Ct1Y7h9pCu!fjqkJ3V@bCOhK`@HYv@EHK|2bv@5 zwJJ17vmhs0Ws!VCu{ZQCk=!ViL5?-b_*F*Db%KT>{`LHKhFApK^!&jM?I_`!^wh!d zdoECpV$F6vPTljVdvBY7RkAhC5{um~+>k@?RXR+8Ch^w&k?nym5>T>cr3^OQVct90 z|HaxjhF7|7TUJs@#kOtRNyWBp+h)bKZQHh!6;*88s#MU~d!KWk?)&uF=iGk!&syKN ze!lORb4`wczPhoTXijd1SRHRJhyO$R=ibsGa#5PK;W&l;x7<$a4(8))qbs3iJl5OR zs3Dj(crsTY!p$lj8D4T8_fY1H{oJ4wNJottsFkflZ>Y0v1o&5Y0H(IXVvl09!k*m) zWtU?KfSbzp!#q>YX$G6Q=v=!1O-3vYI&WS>Y9&sT!IY>m7Sc$RF}27Niy;S@m$~;uAvIR=Xd;2q8yeT zmOUN^s9l}hHEm3`v0(x-aS=cCMCByL1cjU`X zlopFJZ$i)%oESdY>eOjG17#&fV?qAVhcKUDo{abkp*6;OpUiR4zmnC~78cgb@m_*B ze?@#2%3j^eCAV!exxJgEvWo0smvSCyDPP7et^8;s-cmHage7I@P4`XfQKK8(zHm&Y zjC<5rW5{TTW^E6{I_V6u#8J9Px``QLzD#H9c9hhr@)2@k=c)3sY{O<@d(nzz320Uo z)KqM?8oI8odqxL%*75!)<;FJ{?EJ40lJ=$iH)x_1?2Eb*D-F92d^)!1oR|Nd3rZ8kJ z4GVn*u?^pW6u1;(GL@byp&sEHCPNj27J@QR7-vNJzB)#FmUb*7Wsilr$hnTFSEid0 z%Z7)hfmcdzNw$J6sS;&KE~#f-DydhjhVF*Xg+KFcY&AlAhRfxXD&M5fMyknwPD$z@ z@f8jlv6H&U99^885_IWkj#D+OfDPTMDeX-r(RxC7g>uoEmOmYexsS9LSu$v~7R4=7 zW>Bf`xQLCky0xXwDla?2H1RAQK5B2YOVQH6BANuqu-~9WV@4D7daXHz;!938AVdui z$;*qaDfA6|>!c@Uu-;z~6Y&IU0^}cqn`4jqk z1x})PB+o?24#Ub6gCJ_1?e6EHbum{P#35X!#TyfNVp~n7|G@#BUbEq|7?Hlh18Duf?BxS3u9>hGP3A9%b*Eie(y=@3m z7;fbT6fcWy%cfVAK36wAJ;ge9a*XBvKp?anjB7c)uYNp&h@Hv0x5jOAncc`hy`8KqS(Fh3!JFU9LOHaUa z`E65KqCS=9>X*Y!fp=``Sd}!)SJtuMnm|`6xEVPot6wCxw(@_}j|uZwGca9_d7g;gNGJ z>+$C`v2OBqM<6fRY8!)$MfH3GXFxbs*uGxS+M*7xZ)AfMCI#w`{MRi zBfo|f3|pQ0e-kYUL?Ls{K|6X!9<87CkOt??8|OeCE|isgjFg3E?QDK{V?$Tz^UGKL zG~k!i`}l4t?V;EWaK(t9i`Wg;w@~72;_&Dy2b-ykI$Tf#@5xoB8^eh5@WD&DJx43d z3F$aWjCAq~LtT{2GDlLZo4PU+hKh3ez-{*#eE3?J3^&uA$=eWv8}EFzlf_K5JkasG z^_kMwZ~EZfyHoc3S5DmKz{63|SM)e}$xp(#Ec^(69<5O5u(R=7?y4K8G1KTyHDzf^$;RWp?K#eW`i`JJw*zjv&z0wJ@PA-D5(@DBfZOak8dK z&l_u-5rkIEHW&8JUYKCr*&ARy(&J%kzBeRPl<&12LiLdyQ{vS_f>I8&q~_MdX(aKs zGK9bIao-~f#fTT44C5_@^5>Ej7Lk{v_8#5)LmDNvCwhSXa4(d1Z))$K^hRGH{?5Jp zkLqWJj*d;LpY=0V{3I)gHmop#T zlBYCl7%!{L~hoe!L!m`x^A!BxAO>POT?hIOW&^&|o;w$x;f?EV}uRDY6AlmyiKwX|Ta~Trm`A zsHg$g;|mL(E7L*i1+YHz_*_HZt2BXv7BGAU#I-n@xdUPr_r|h%7C&x>n6czc*$Q-$_VS9L5Q_AN9APKXzpO$|g=)!w zg1+<0lSp+9DhX3FtVqY^o7%HSq&5d7VM}5eiNJErtVmpa`Ea83qJHd_B^-vkJP?_^ zz(va20X!JPQH>A<-20RS@WyQ_G4y-dQuyX$;#`pk5x)ge9?CkT272e&ARQgUMng@?SxpCmzhu6!J01)Is=}%kG(@7xXjZ&o6FJ6d3kl|( z3_@7E7rpz{@wL9!rI&~8#3Ja)>kZlz35aUhk%IDAfi*S~%!0{iYi1l1B%?rD(sw>j z&9IAKlM;p2W?fUFVI!c>%Tr^Z|@22Mf5$taw_1v9wV_OryY)jd)5UHyxawik4|zMDeh8y2Jge z_t;V9`w>|M87rXRmw;0^1mYEf}dfG}dSOk^9Y9awXw@K8m}s(?FMTw9*@ z+S9K7pd>_dqRroT)wpW&W?{{`lUEjKfaJ@0S(l~R<8Er&qfggjZYKIv1O}By z$l98|x;&!EH^!7w*r3lr!NwC*EPXUfsc?0f2ZjjA*f#Dt) zZd5{!2A1BN08Wd(`Wnkp3O8rdqj zruThToo+Hz�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 $n z1YEkZfOEIB?1n<>kV-2=TK%D31DA6zO|FG8tu6wH5*Sq9gI;_>p*e|_GLxPn57*@@#To{ zahdc6z_!10Iknk6Adi{^!2P{q!fFS=11~SaTLT0sz~Qwoe>+cKVi6i>6Xn{P#*+^k zyPFR*^X217Z)SIT?iLo$R9IccAO9Sk3=aSNd>EtZ<(QCR)ZJ1T1>7zWjD<~jY>(48+5L{Oiya=E znd+$khuMDa`N_<#jB3F))P=+~5@~%qD!y!N&r|47o!WEur?sp6w;PJLOM2a6PX1A$ zKfY~tmBUefCRndLd!js#ps3sh)Bb9mWr{V^*{No{5#r9@r~y+3Z^^-zzt0IF0tBh zu;2z9J4j^|0Uk)ann_YD5oz8Gpi;HaT9Hnga8P;+_SvQ+I%lT*2cz4f(TTtbk8iNH zwc&yTbe@cq8Le)P%*CTQ`xdyh3FWef)q^%~}G({0T8cFZb>o{DZf?9s} zbr3ri)xiWEKvrxTx3jC;S+*hjP+e>)t3O~yQ%F9>Ph8PyoPa1^Kqiq6UdgmcI##t{ z8UMJ}-5PR8pm>*#qn1d?xMtaws#B6GCLN7qC{7{@^oiB6AG0`l7=BA-Jj(~CkR1r7 zWlAluLuKfbE=xHZF;qKV%t5DLk`h405tg;h6xwc?>&LoVk$;)iy8fk^3{#y~L|{Dk zgqaqO+T~>(Lu~2ZR_7q)q_E4NvxJ`#DrbX(q2m4$tr|nijh}r^BA|+U3i;4Srw_ERdekU65YZ>F( z(s&*sabfvAx-2BVVN<{-GVu}q&Z2qv=z046`1}-eDeng*-Z5dupi?=W4j)7Q4^HpV zYiIi;W|CMdwFU}|ExomXOm|}VOtd$#uQoo4LZE)&zO*DA<=tY!UEwm_NF-w_+}@S^ z*n+XBVY^s!dA;Acjg7%jLQTfYeN70d`NVxhP|h7rbnJ{?(NDetri4OT;63Y_eMCnw zh1O``Md2^S@>!tCD6W}D&9C8GxaA~_rGGl>rmqWU$G;B{R>?*T&v+^r-xINAGLKGa zKtOiOv(6hez`C)kMUeLlaMUsVlz<&uQuTMUJ1J}OI)(~fKN-wxs5wOUQ`@`xHoh7OwV?lzv-C!?q{g&Acu`|H1J52N%ptjEiitHPzs6q1X9G zef1i8@@(Wt4?Vd+A~Sx5bO%M$8*U&}UAvfN7@5LM$jDtL#cgO?Ux?cl87>A@lW-Uo z&Ley0tVo?{YI_!4|8Z5^OilCA4F+E%9T6NqJIj%loqT(TK|;0t(m-67{b`$sEZf^w zpr=?AcjKVgx|4icX_TA2fQ4koEtmr1Ias_Ty;{Nk>P6ICh1_6|G}3X%aj!K5`;!;C zY{+>TL-)LhpPOl0TvnP?(vp~52?3Q3IlB+3$SIq8Qd8a|L7zFNu+RmoOdpLmTJ*A> z=Y9wPwv;|$ny#l8&w-^Y6Hlu4GZQYb-wf3c@5TNdm041_eLL-xd`0@Hq@khKW`EG> za!~IGY8{FP;t!tfYXF|g{?8NfjT)Kt4TsF}WT`%PDHu0T_8pA*fkVRhun7|IFBV6C z7_=4~48WU~+|1Bp%vN1v8>Dv?EY<)RKE&oa7(g~5;}+frs_ri6jM;D-BvS7#!Lpci z9h|H04w*dRIygwwneIVpwGm5|wht!Z7u=5A(T3ui5}QfqS8&vf7;`G zqE_y+7PCjRr3aprvnylxzhBV4x~OPSdFx!Oa_WmnR1~!T-2vGFi4M5Ff&ds{06;V| zs&WppF~P2{xZ#x`FyCsXQ~AmOj162*nOQ~z_8k}sY zt}1gg=j_5d8VULIIGWIWZSjk2YUWpAO}Yv?JlWimwbYPf{wx_92lOZ~_pyfK5Dn;CF zY7l`~VjH@)N6lCUyip`C6(y5GyXqRQ?+on>MIU_do6zVpg%+`Q*oG+=8)08uZ>b`i zX{R}ezMYWXq1adt=IT(F4UhAqzl{f;0AhWr+l?W(=eOa4h>|b?STe)su&x6iwmrl1 zQ=9AjZa>R~?ykWlQBX)XYHcJhm7W;e?gGDse!*IA0&9eRFPk(=4 zYRj)UCr4n+YK7soG4q8dm#4x$n%#s;Q^wY~hSgER{w&(ec>y#x5B9}ym!R?P!Ko>y zB?B}>e@hN+yIz^PMu1A;>LMn`W8I52AN>P*x1(Y`l;in{Vo^1XUG}rY!;K>=GOUTUkfIAw`v{#_J+WI#?r%mm#6szMF2E{+oLcEF)V(|<~k zV-b;C=LrMLQa=C)KgTmp4U2 zsMS`$<6u3r;LM;^s1^YMj8QaFWt#m1{2q#$q~W7}4;MzgZk z=G0933w?lXhih#JH&@lrPxl`ZcjOqZ(7HOqNLr$sE#%^E8SThw*xv+5M}w+XumPRnA1L0#ydiQMdk1t^Ft1c}fpf3yuVi_k--k;3 zd)sh%f0+)Xda-&BWA0e`e!<^)?Q?zo!a0_sAI&q#?i)b;!Ztm^tB3uK*27`A4WuQq-o9R3qY$||ls4jx6Np3oi(horSG?|_F*``duF zAqlrYdrp*`ttnwrl~uAMDMt0i$SB38THPZsh0?Ab3Nu?~+C5K35tB=C##Ct;KdV-E zH!WKt(rj(wAwGD zobr!k%h`3d_^k*aUDIl))0o`X7w%7(c_;#VeJbHCepM8XR++>CycXwgv1j9l+hIi2 zbWp<0Beb0Ssoy_XO=CW^9DC}sor3)>)kKruBZU#<@&5UPq$qakWbI1?f@;mO>>|&Q z6Vvke5%FrvP$PRwXI@ulT;xgz+MiocZTtq4(!%$|v!&*Frw4ub{quGP_0TQE7OpQo z=~ouhArEvas1|g=kKF>B=#u}C%a<1XyQo9K`FByn4Tpx4 zSV<2Ma z-}+`HZ}A5F)P?nMhT)zm!SI2eWH^1GVUnRmQ4r(m>{5~uvFX|XD~(y&%Gk1*(|{0Z zOzp@xO4zs>xfW}%rTCBm4Xt3^5H8yaBe7OO88ny~?H+IKR7KLjK4&^|%m!#xq>5Lb zqLAQ}zh33kPbz2`RKrCqJWa!;*Ws<%ZebQFyl;TD(iRNlBmuM2Tmw~c4Gds4QEBX+ z8K+-fR39&zSgvfIo~KXoXfNi@RImY|O7&N1$MN@p2X=Gi`asUUqWYn{Y(TpHDlK~0 zxxybs%kdAu)*j~29<{NDne*>*FvL5?YIfl2p2h_L9oGkN$91$P#T*2!qw0!(kWYg; zAhtnSB&<0Lc5UMs^{RwSji-|alExTXd6RXBX7a+K!U06nPg#iuL|KJ3cI7G^J@ghOV9>k~vk=o14XL_-1MFUw?Go$&CTIfS>neS6{)`2oJ-6b-9sQH}J z3Av6($Ae-fs;f^4+>7Rt87T{plQLOOhOq5z%7r&BhTGk20j_mT_?#VL*sK#K2^KEr z4G>xDHT7mC>6Q4KVGDl{x{!>OEAjCZ|Mi2e;+3Kq7f_6cO$2(UtH%GswTI&=RR8Eo zFf*>?{zy96$WzTdlJx zjJTrwGiEWu{kucB0fNNH4Q(me7zAWkLyFzcHdIMT7&8lh5;EyP^Y1Zb$t_Ae^=>w! zn4h_s6uF3QKrLese2i(*rAMx$6TlQA!Ln_0HdP7wt==GY@~k5o%W6x51|lO{hmK2& zzjxl6WC5JmV%m_uP7#hG+VG*PC7A(F0JgdKpk-jGan{2+Euh6&c1q3orek!Pr)nBA zJ`n)ri~H{_%BywkbGzk?*Prg!KpaR8UGRZ7((=QIJyBg?)@y`4A0HG`mPvJZo&L}( zg*B(%$m~g3Q{Fw(I??t}?g7gcMt7`Fe~&k@-jLiMt2f79cmw~vS?t%}zN~(!VQ*gC zgM5Et2(#=E`S!Dh-#&31VEELwC+9G<-oOrReGA+Z^ay>91jj$&Z3l7dZhmPy{Ho>p z^@970PXx%4I(}VphLZUgjz0$HLXL^}97WZHORBiqM*7iEUF8l3uDqO? z)SgQ}rf4j6%iv!0mFn3xaEb(MR2L&NW6_^P6B^;2=5$xqv?0kMTjMMeW?Z78?A=)s zHhPAL>t*BC#5@ttJ1x(wO`x(VGcK3~i;)NkYEuyncC)M!cR-@(bha>q7CbAqB*dq` zW|@9E5rReH8{Ue@uto*-wQ8G^=7ENpg4&m@)!iw~`k-(|@+{UNDbUKzwhuj9MPEeN zqO)omZSO}*f>rKpE2Hl9Y*S&5acxQ1;lo>b^NIxTpknkIxeLx^1(HrzX&;i-U7hT^RDlHYh9NUJX`2r=zX93j_+{oS z2zUGxs80Goxh*Q4I;HIEpvftIu~>XA{F31#Zhg5f_~^)-b7t>C6~sCBIO_mw`J0$2 z%bjRAi!=aTDz#M+R`NS81g#gnsEtf%aU!H>Nq3Hbz`sQa`y2e~^H=8f(Wh+Gg=BJ8 zZ^GiUY9 z>X?ud(;iH!#=WW{k$&=!Y0=>AMLKE8Nmeadr{ij?1`xUO0iev->9T3~DuIcHzH^m2 zZE=X14$#JVMxuFaAv?^ISiz90ImLEL<>X*{~aN3SC0-gWdQ$;Y-Er|9-217 z?k+fJlm>eZRuOuBBawyI&BOSmr z%*+uDyq{xV+{|w^BMMR$@d-CYD=S#V&lR>tVNqKcx7T$*$h_Rwg~qUwYDeXBLA$P? zn`xI7Z1kETT|T9`@l)wX!Ua{0?elU{y+T<#*his(9OejY@ol7b`*3jSBKNn!x;R~ z$+v8%YvGq_Y=UtbprD62`+{|Y9Sx)q}0){eBf#xauGa!zxU>Q_q)M8+(@iYyM zkE@a<&#JOG*tOnTrBt$K{yEC#Ndbo3?e)v%4z_gbqfQC*ockdg5HJQ|=!Lo=$HLR* zMQ($R>T49cDaV*Wtsw|tApEdC;K3{GIjP>UtaJVh7p&!upleP>Y+v!Zg?9@gJ z%ATrLL?1ovJU^gw*!-7Riv(eqloXKZp;f}^g1oGzb zM(e7~lw;sI-R-LDU1b%7>m^wu)1-{W*s*ND2-X(3)np-vI`ui%YG1K(&K#$c>y#?Y za|U}FaniNVAPu*mwr;N}Cm>?@vV=16K+QPs7{_A;1(IC@&dp6j*nh!-<6O6?4T{}tVIkD+bg7sheOq)z<>WESBksQ!sPi>9{^ z`wzkvMQ^a@kjflM?Wj+?SKhzvEpi3KS6AjcllW~W>SB|miTDp}hm6V0G#*SoR{WaJ(rV@fFiyI3_@-lw$+*CJD=$tasV6fu(vAEA$-~;v1r_ z{X`O5kkk+{c;VMMV&h1^^8KDT-Wn>HlFq_%FR~Nc_xy>?0v_ z@;{4@RfqFIWuC#)JD{ck*hp)!(EUkiA+nblN^DALpzKPpC7ADlyvdJj&<028qnu82 zr`cYPeSP};fY0{x!+lV=NH0iTX^!Qa^@|h7Ofk`tC)b5C3U;kI<_sy@$-L7L3~RjG zru3P$USKg~$mVG=3IKc(wWUnIJtL|usE6Cy!)j{cprWHE+Nom9PM68NETONP>j zy)~vuiz*_Fj1!GvfkynE(n?`{*4aCsBEKtD%qtN9NY+M&HOW5@2mjWtm5VozGuxxa z37zd*zAaB#jyi`eyUb6ihD{M4ts;Vp3_#he3wS*4Ut~#At>7X{Q)t<8Lfyn0=b3J} z2mhPGy@_POa)dREr|2ha3%825lb^XL8q-4^AZUu4w7JoK{ogDhr~3R?j6ar;&!1gh z3gidN1_=rI%M>I;`X>hev;Che`S8C;sEJwsD=0ZCHfq=+sJ`H=)}7Wc#mkYJF*G#< z{H%+bXqwb?H8hI(-N}Jl%vequaNO?h6ip{lbBcD{FF5pKwbK*A)s zN!(m78D=**UZ=A+w|<|WF#bsH4&I1kJ?y+|_aU)#F5V?Um*eO5&XBksxL~*Dy(|BD z#JHwLHc2H9%Uyl!B`i2x2@3n!g@n*m>h9-wfGtm(D@v0nI7Mv+1^LQ zKjx?8#S)`eqVt5x%qKT4*U%Jgrtd$f{#5G&S{D$ZP&oBEEXkK=D5u*Z1YU zSE|s9Fg5(i|Kt-N8(PQ(`;gZU)7{y=(d$B;o5*x&A*b{GNVVbSoHws}UbS;*WUZ9j za4Y&+p-6C>Fo6$egxTW?&633E?#jkz%F(CNXdyil`AIBeQk1MQ=7OB9ebhf*gc((WH=Xy$q9Ynmq27F=tt4y#BVe*(k&o-!7=| zdV0Vs#Q2)AexVk<0G1K&LYFgr5w52}& zTdOcT3qJ2o^P$vNPF~g;7V&M`_DuPy>GH%7!97y!XNOv@=h4Y(S-|FA)dp3`*`chDip`%FXp+=G7*%v z2J_MPQ_&A=(GLPtMRd1DQ=dWQn(gkSKhR;CM+K+1hnNjHRpi17go^OyyC8~ky^_|2 zu*%h}dVk*~@d5p3?9LwrY>fYqA7CN>{~ap+J4>WTMN4UkAN7kBRnaIpihS3Tu@}j%rtv-#+`mL1OI(Z9*zh^@;oq9;=9xale9z_fOz(Lmo#&8JdarIQweD>Dl|V z(W}?{;}xo(+%$2V*g<5(2F*=5x~jdZF#j+&5(@1_g&O)1kH!0|lqx%3Z4 z2-=CC8eZL|tOn>C&3jDKSE-*nm(N32GOee;$T4plda%V>s`Orksx=!k$bnY@uE#(k z2a#YMmO5cy&KzH6SgsOEfJTh<7&V$H>*@)f8N>EQmEEA;&Jm_o4GkS)*7}UhG)bMd z%W!o0M!|JQ!ycR8{T8Hmc3A5QJK_57!qlsN6SW{!z0aT}dNAE~qkT=uAi_Z`Kf3#{ zk+I%)3^nb99oQQmq+61GXe+~3OHmfAPM@)h`f3t^!x|M#=n=}ct1t(e2Spx4fw%|^ z;ZwG7g+S6CBC@n%BdTfVFk%$kt zW1H=?c=0O2!bC_RT>^`-RfuDZ1<^jH$IpWpeRix{;X@Z=*{R1JFB>Sn!cV4XRy}5L zqf?Be-KJ7xVN4rIKmFu`Nm@M0P^qp?xtVo|e~JXNoFlG=Q9I!EGmLGcJu)(gH0uZb zkV1?PtWjCj4rck%JYrk-bWh@kXb9TT{Ia~3B+bs`j?6&A7P2GRq!=?QA-z$|I+(Oe zdx$kC!(A~~(3>#@XwFz2XwHDDGfyeU&?@1raG`S%vKam*gSXf}70uLGw+p@CKD1oT zkw?vE#dSroMNUb13zMm9^?9w1RqU_&7iR>jV+jcC1F1&N zKJ?>8e2ffghM+$3Py*0n$xCM{v-x@)FhZEZsuD*DKgi8R4lt9PY2@Ne~IsYql_h3W0qnUJ5AoiP@Jnad zFZ{JM+%Do(4rvelUXSogYuHWLTW$D7*jsNHLHJXCI8OLeefT^4H6lDO(w!fbA5|U| z^oPX=7DkR5B^W{e^PemtPzhDLP@WRHkv!TV5aPGvAffv_)Y!m~tU5fO$sH5893sEI zKP)J?2rLdPrH(zI`%fUIeI5*am;iX62#y9z zN}qlfSfsvGG=CjPa)%AxXL1J~)W`JdKLCWWJfw&D88%Qxs}Aj_f5#Zarepk^2Kby3 zLI36m8Ut{T?5Dwg4ez6Y*D<|91o<(!rww?)?vnYB(5eF=wCj^>-v)xeHo#==D*&_i zpjz%r0IMrP|2=pqssF`G9b$BVQBn`fOX?q%DoE6=3SG7D2AgYkM;X+H*{uXk)-T4W z>t6+EW?b*bpT?i$Pr4`kY>eKzk7Cq~)l0bFawiNz$E+KcGVYEXSef3(vQE9{nmz%) zO1ST8ml?%&h>2!9NHhNAeV%e>${p2Disrf}$Mo|Tn{=mg9e3vnHU1=+O}mHJ#y`q& z4~}*_Xkfe<cwz?gU?s!qGt)h0Z$9hKTg$Aq{u$9&o6#=IRmVZ1R(#yb+k z#M5ttxFg2I6V8i9U>NxU+76g7eu2g%+?R3JBcx5X=WXysQki^m6midf=IVFr(Jzs8 z+)`L4-~XT-m|$~F?xd`f?$zA8qx(i_G4qaA?Es&t1GfO~xqXsu>Cv>@u-c>$C|FX%JZkB|l}7puYf9xqQ;qaMvhl$JKw5}}dn2{< z7^%kHzNSWcKu@DRd*AGEO(T8Q{f|1B65Q#&s&T)B0+OXYA%GI51rQ(Nu}%R4Q;!CO zI4{95aQ;a3HDlQWF>q2G>L*3NEkoCo&6B{-UF=zCsV5I3I+)8Z|CegPAM1`hlMETU zT!Hk#Z}?Dk99#DZ|iJH?me=Im)Ax@ZR1Z$?RCyW)|eSAV#T5}=qy z7~R$>DA~T%##n5Q^`vV2*g8^Z47hOB+PPP!Kem!LoHihI5iQ)|ElGvQED53tRO{5>}BjdSx~Q+x*uB=4cZx?FTi6U_N>~(UI=UuZ}ubU zW1}(%krpxDw!Yqxye89)1I)o|D81R=^ zw&WC2@()ivCWuT#DrCURXs24ojiY2BG*@X6FPF1f2@7v^HQx*!U$rMM1l=^0q@Mkv zr=#ngT{C;o+nO3o*IyWi1kU(NIQX^^+*80#(<|BwP-;oHi}}LOD>ifUvpu0stY0j$ zT&{W7tX8$1f)kkktulxeq8xXFBXqV_CH#M}_Kv}oe_gj|$Jw!M+g8W6ZSB~$ZQD*d zcG4Z&w(ag%ee*o;^VYfdo^$?Hx9<70tA6|Anq$tn<{WDbcJ_0f^6%?ZV2ZPc4WVMj zS)}LIirz~Og79x|aucG?yxtgvp?MVcLVhg5ro3;{RRYtPMWY|c))nEa#_x6p287Lmb*xq2}zT5b) zoJFv5PVoCu`OqHK0IZnVWo4LZmgu5Vma3d#M-vaVa#fs75EGAJ*DHAtQQnB%@gIl) z%zt`A%`!PU4Cv@|5wtuc`c#W$CyMJg*GQM>Q!^J@FB4%VrDAT!El~6=YcR6>#IyRs zwkCe?KQAa$T!x`Xq-=V@tzJW2u-*J8k2lpAPpX zHcv2?(YWr+@|4voYV_luDF?cJKn9E_62+1S&jGVS!lzZ34W zHsnCwp_;R64<+6m7ASufwzH269$a;xmx8W|(s3zszax(u%P}3_d5o7OC_(SNTEE{C z$>OV2cpe%^|Kuhf3jj$v4k0YK!33FNb<3LoH}T!bj7;!STAkirdto&|vD@k;t5rP2 z(KNhN+x!q;3ZzSrTq_(&= zw{UXUTWM`?uD05}NV9ZQ)1$<{s`aLcV2PZ+wXxCmls)9)%AIh>VpyASp{Q2|-p`ai ze^ixC=`#5X#8UNqsUaA@a4tk8(EVXacqkQX@misNCnuG)dVT?uQpwmZy3^m9k$GSk zpn`7vTt@Hu);yJ6x`+7FC zn6T8WRvMWA21VC!^loh9C1a+Es-+7Ii=ndc`0sX8keHF(Gu zG)cz@BE6p{09ujRXPh@BF>^yZyhwcSDDmPzo(@hM7L-DVM&XP}`T^t2ufoV2?i3!$ z9DHwWR((tsKPOSsEtfcUbIgWoNeJCIHB#=XeUxNWHCbO6lDND=aH*6XOgtVER*1uj z5l7if)4>LWqHsdSG2W7XUXx&TQ6}ve9&;N9WqA^NmmZA>LiuRfV9MVcXk26YL-a$$ zX^iGs%)pO4WjGYVYg76*y_C2rAo-!zv9)joU)^gr!~~NyH;i7Ie-O>k}sKl zltjQ~PJjH=U&!O;oU4~j$C6|7W^s-Up)l!L#fC+znn0t_>!kRTH z;IpPB9%=Ng7tP2!2f~Cd+K~@VS8~|>sqPU+OI!PiYU+ahhCC#jhX`6?HhS!TJ&9l< zCoOy^Q`1UX^OJYsaZjunHv46U3X+dM%rV*fb=lCSX~f=6Au|Da^}S&Oa-He?sTNJ?oobH> zOk7oi2b+zQtA+m)IU(L_wmm_}q6XUfj)d2gJg=M4(CsaFD-V{DUm=7v0rtyB`SFDU(&&5SwfS85U=d{yPX%EqL$LCOa;9T29)&`rKICL{?1mRcy1rr$*puP5B9p z$qE>eexKik<}T|Lb!LB%o$A^Tth{h6Bu32(sELV#|6p;mqB$t?Yz?Q*nlE2x(b0&m zf^5gB+7+7UtlXtuX^f}0JJ-qd^dPNV%M}ME#pUuXrk>}z*jU>eh(IJhhy%D*(M?@5 zXf7-j>yEg6^w^YG@2()L*p4Qw<7_=q@v@ zs}9+=laAWWQx9rv%<0E7Dved8(an_UjL~B^*=Dk)Gg2WeoyOc$8Y{ArmN=aq3+kN5 zlE`5zIpV|HLdHV0AlC7c=F(M#$(}A_EUONfG!eo@kn!MS9r(C}cJp;W1AhGsJf!@K zrRLuol72Rm9_#oiRu;#Jz__&YgYE6de7?TmXDVGE6NILp`Y^lpYn*#r!=OR98smS+UE|RQ&BC zkX7Kw4h+>~zb1-7!FRUf+HH8s@>vZt&Q$SL{GUY*YY+YkOB5qNI+1!O_|K&DVs~Szm^#A;MPJ=-uC_AMD~)`k{s{;@}B29 zd_At{ytT(cb>y25HOPt!+fBHbw~=^w-9$56YHry0WS+qYa)taaV9D_}pX)vxt0&iH zG9ov`91mEugSvHa%dY!TLw<@R*#OJ}Q2mgxTbdl`AIUpE0}WQ_Y48f-NRSHELr6go z1Uu>qB~V-a^9%g$vcBhwPqFCK#>9bHK|Rf6DHd!(A}g{Zr0VGGo#O83f>VgGOe z2W(oMeXfGJ_~qB3M!L!!NI`Jx0!#G?_E&^f>3`X2T1eU`teba!sT!|hnZ!OAi=4Uy z-;$c*h~ovsrUAAp&CEEiD`g$rl^@m)ufE+Ro!|7Kc@S3ZfmH+}7NQFT%H2}mllF^g z)+met#0W($B$ze;NBycXhcJDv92Vk{%b~Y-pCt!$?5HW(7L9~C`cEla4k$lY>7vYt zjJad_?$X3YkcuT7wBka6tQf}>cI#`hBpk_wXyql0ldNN*Yj)>N%bHj}fK%W)O;hGm zQ7+czF)<3_DNh8NA}Q3k3WX8ha>TV|!(np3{>;LTn7}vh^2ro?DiW&}?<_`e0v;>o zt(-n_d9t2t;W7B5JCE9vG2?`!6gSSoJ{?)BX* zS}QfPtswL>gy1XcHd!;$T~|o`YSrFn{iefvj(_ha1j;&2SNM=9;bi@#7Pd5^Ep9sSv<}pE;eN5Ko0eLTcCs5@NRC`6T#(#8&ng1f zwI127FtKN;r+$xeZF))$xKUr=yDlI_#y;t+us6+!AMcu1?j-s_kG^fz#ePWrS&*<^X4&Bj5}e@PaO! z<$$%m(%p#HCDicy`*=eG+Feas;x#9fOZtXIadYKUXDN@JDc~YwynTW0fgxQL^_|%% zJ@_INFQ{zO-lq`Wg;`D}oB$j7U*=x36!>I2uU4SFp70TIxw}L&-xn^|K&HJ7*&mbu zjip(f_dh6!jKNjoBa;K_=Q>G1h#5Jvr$B=?-*ExYzeOAtzxhyt=phQV@SAN`XFCya zy?4US7hDI)JZr_)ererC&BJuZ;%#JTrE2x1UO_Md)Owb}n7X(LDLMd~N$QlW=u2a? zJQ;@=yr0fwW>7TdH9OKhrT2I$S9P0UpW08RVSx6S#xsIdC4(BM`e4xZ#*BeBRYU_E zscY%f6wtB@&7x2S4nfTNbVW&U;>VRAk? z*}#)fkv%yhnr>3r;3sgz&QrKP`3C5y?}6|s7F2I|0cwiIAIP>X-h4#Ao||8!e-FW@^;ZJfB1&z4sZap_!H2In6A`_>Cyhx;iS{42>27veF;xy0qe|8#dh zgfqU~w|9*&h(_Op*?*yca?*uY92iBw*MxY4X-ClW5z}2=`BS<)W>rRp;*C}O2q91q zO~E0D1ac~*oL14Xc$un@3Sd=xvoun^i2=ZU{S%dvM!Yfr#f@y(w4_eesB>9jdYmT| z$~ElNHA{TSCfvL?P0i;7>m%;XH;UiKWhI=exE(naJLt8p!I| zUKPE^!Er1*rj&azR8(Tn>kB+TEhP}WDDaypGu6QQrE4zxKNtyE-CxMPNZC$eH` zw~s%airE%yPDS5&jgLo#vmG=m)IZyWpSL){{daKyTaw<6I<%zU zm+vB);yqgi8YaMFgAJ%S{fd7FllJq(qv!2W5BK(;<1w~p;`!Cyp&kXpK2MzmG2HIH zhhcF=U>2W0aQ|_k>3qce*YsJK{AWw{*Uq@+AEm(mzweFzqa#?Ws-u7^g!U;9)aueZ zEDCxEf~lZ~fK0Hq@=-Jar8X8N$1w=I(u8W;a&^}x`ULyZ3S9duShP!iw=_stI$d|9 z&D?NjG&B8T-phL8W8u{M_xT-rcmgP9$3+_NwX|7 zP7IC>B__sjI7)Qn+((7!}j$VfKN}!vX6lId2_Ygnzr_5{YP_uqIdZiswr`>PC z^#|{d#M=V98~QdX=qm^uC7KUzr6cLphmD^fEMZ zPXSP;B18=R%WKo|A7^Qu$T9fIx1=4|OrDtWEzf^p88ud(lSt!w2x61!Qh=W{8|UOW^I``5^v*HU8@DjgDGp6XOtlg)Kn6wmw~W5`Eqf zDqXsH8$uUD_BFznx>P%EF7>@3`M!rGK2s7P7AnA&^UTof|YPA#EpV^SPr?$cx322Oq-FL$Vd-;Y&eDl-)C zgok9%lWEFSWveACJxYzs5I~w&_HgnfkpY3bZqP8-GIvZNIGcb%3|nQsq_B+r7UkOqX42RdvW|6IJ2j|JaVHRW?&3)?X-d7C7^L?9(9yq#zfoXd+Jctol(Q4 zPTea0r_6nK@ViG)UelMQ_p}=yznQ&OnOtnML{IlczRMdLk;QS-rju{XMCiJ$Z)Att z_E>#Wk*mOF%M_^defNl*uRx2-t$m6s^5GB5x18cvw|f!q5!R!8&m+(-^78VE3089S z>9w$FqGZ+2x4+}@Tn=@i6Nb~o6Vz$Cg9)C;O2J;uvePIgY41meQG7;3=k9&Xc8>Nz z1uvTQUZz=tWxx$X@L1avW=XLA&?s$G^qeKTc1N~l5m2 zX{I|1I5>^Fg-t_v!C6FbbTzIl1BZ@HwF{vI{Yr7#CZ}JiH(i~h>kmYsnte&+7+s#f z`}{vX$B|t$Qn3=psvadEp~DznppoI!L-;no=X)vOYrJY^CxZpmPjn}P)L}XU#qkSO zN+?ciojK=eEmaG?$|LS6`cX!N!r~r<*s_%1eUW8URb9k#I6(ssk$CR@Px1TMyFr9z zj}-)*eKFm?G-c3v0Bkh=6oHUC96j<`jB_z&D2ykiCcM9KVRa<^rigN|Zxwpi+hQij zQxnC3_7yu~GCD-{(YS9FI`S@8q*NeTHe0qJYrg9u*2tXE?GL3k&1zK|kVxu~b9Hcq zBG}@>*vQqSpMclDp#Lf)pi9LhfUhD_^#6N}`QLOf6*CtXpq+*De}OGkMa~|T8OfKS zFp%vY7KWY>g)&7_ZA*Q#A7l=uQW>-&(P{VCj$$~qDbB{eZjSutw@9XSh|V zZ{A(@-Q=I={hOQb-w^KV;#OR{D-UXaji`5Bbf;MrH5!mjxlpj4NSTlEl}5r+@OjrTJF0;ep{OK{3}i1JDHSgGVdQWF*bDqZfol3O{H>v zr02z|?yLq}jI^u5%hIK>`pzNk3yVy%i+NP zTNl@(upmKaQyVh>B4+_DLmd^qvP2r2Zu+oaZx^-amB_1x<6HFnRA^trXHdH&qP*#|l zJAXj+-!BRp6g1S|Bb2(Y)?(xzTMMcGd9iKpYyo66v3D|K6n3>UwK0>jGq)EqHF9t< zb0Sl8vN!*7nUJ@45x4*P^ZzA1ovS1#Ga!hTQ`-VuSbp`rC5k}Th5*~IC9wn+B2_o< z4=r%44X2v7*(4QxpGe;CBixNgF(9GRRJiWH&gLA*4t)B&dxhMEzQ9nYtI^hM>Qk&w z3|14u9)d|zGG4W8fASg51!x4a#>A=$ReKK10yjI?!4dMEZsfU~9#1{ip(z*rScorq zF}2u{Sh1yQz5J@Vzenyp6FQIfI*_EsC}4BUpdKlRD#Siy&XhMWg;&Cg^w#?JDLR*; ze30P*oTnsE&sRlqu@qd)V5&@Pg$WEIsP;kjYV#w4MTc0>a-kGtO`ObEKWQtfgC}C* zvDSZr^S~UYTQQh@jGr=#onEw8N4~fAAz)ado*B7JNIof(H%nBH%^9qJ_vqVa{jHE` z8mZ4q>ZT-`%fnvfT;cO??EZGFDPsLPse^wc5B@LMod4sb6u!<(*2u-o*+s?0>Fd|R z^FOdvo|FG-0QpTewi<1y)j@a=z9Meysp5?Xq~j( zs_?ilfErOul`lo{&Jk>dZt_KQSdP%0ZgU_e{;hpl(UQ#_%N*xwW?%7ElMH!>Lz{dq z>*!?WIZ%n&K*8I$FjUIb@2PW6-gQvSAS9nmBV2-SiezX&Ri;-=O9v|x8>JWvzm}a* z-Pkg=QlvQdghuHYLd21OD;;jBRoc{Ib|d+%Hn4&??14E@&0KZC$hda8#zkT; z{^-jyzZnmeD9!Tulq&L0KiK#O;CiadJ^oL9x39MgCBosuyhk7VeOawp|#-Q2BF& zMxY=ve!+~+=+S1FM2xpsl;=9#|4Lq-0h!_0dg~SJUm%{#_I2(43Jbe`1hM2lf%tz8 z4Kg7o7ofS3iOau`En;u$VDuF-_D=ta7}YQSm?F}ryghJ%2vezMA704|MEMtNYlLuM z=Cng*0|H`iC|io56wes2<@?ZF{w$^iS|8Mig+H>wex9Ou!EQq4;bk7CEF3j=vec<*7mzVRNy^mlC^`p zoo*jPi))dB%e?iH*HE)=ixF2HQ0M$LQFo4u8LtsQp>hF7I)=(zXKRDYGviKDNiv|` z$eKMtbVAu^l76AKp1y>x;BCt$i)_#!TPR2Vv0k#x!se^T}SWwDdL^ zaoIP=(h!^U`mn&c6djQ0Lw1<1;BRTNgl^QKtlYcPYS(_?YAv`9xP~`ro%>5Y&7(LB z?OqL=M=Tt-7f5s+Fqof~Zk;ihMPyzJFU-5i<`$mV=**+@{)jnTVcEu{Pq$8!2ibi2 zYiok_v;qk?HlZ&U785_uI{9XZIK#cUx#*(b%yE^xR?e6Kt~T@K04v_JXKka{c1NEa zhozNO4uaz(RG$}s<;fNTb{}VyGV3@WX32=eo%<5z@yeURh-9Kv$}Wt;CgVM%X!{4z zl59lEPu{|hm_yp0AqTdWLinwHJRzE_Um~hGyiQMdO-zAdedJY>q%r(jcT$DCa6HnI zq&40e#AmQz7WMb)7q4ixEB+HnfEdpTLi=7wKqv{dfwe@CcF{_te@Ngp$kJ2mbHWfu zrFojfCEzzPF^OL!%>h75ID=p}!3u;}9@*hNb60BSX3*eYz-p8Zu{!v=n@mCe)7|8s zbFPX6P|nB>X#SOT6^)#n&HjU+QVlH)Gzqj%9P_e5pcu5(H)1jzGkawAaZ5C<$qXX^ z7>#*TCUt>hnfGO#k(BY{5}CQeJvXA~ozN6_z+TStv524WrxXE-Q}tP(5f*X+_h#Ma zxt;4x?S`8F$J0pum&uYkh%f{eqhQfD!tsn0W^xnl;h2~<({B0$eC!p|ZrTHW?3;;a z!C^`kfz-Rqm>Dx4;)Bi@Ml&Ds18ZzfQy-NG<7RYY%s5(Tq6$Ir>LAeWf&wH;aBgbJ zHX;jjw7rU;E3O(ts5mMrq3|H(9CgJoc?jOQ(u68?p=m0r5g8a7#~NsK52XZ^pyp~U zp&vxPLHDpI$flABur$V4D##-hFfzB~%oY1Ikg8l<r_V09G%7FY*E@&bML5Du>@zV(($d|mRknC3w&<+ZZ$t8 zfx^l$8)aGDN#1yCT1@#c+`^nqS~Fg-&SMP6FFaZ^2`vXLp*Ca-Ycf4dRCPLZ3+)(g zr47lX_T>YT+=+mT$?5f&p{H2cdMd1B$W6y zQ(asf=%Zi#46Qo@%9|0^MzmG1FS=tqsbgG)3)(%0;44!5nJL)OO$ppqiD8OY>c#Cm znEkfidV1oM3(UVL;795w73nhee9NcTw0{up$#zY}D&;Cu>Ra$3>Q75FWnaSg{no(qoz1do)B#FdJk&07rbY{tORF&`h$c>Y~ zzqSw2(^K?wmBY9ORa<+rCjM+zvT*j`eh}3ch%~!OOmkMpWKRe}oohG3c^3l&qHh0M zF&e^>3-uxmzUsl(Lx~y)8}m|$L^el^aw92pv5iicZ5~_JTU^-2J-?2E<9KpeXfvi) zXksD}ifl)S&Sfyt3Avb~<@cKZLuOA!vUi(sR+1z&aZIP))VM5;!$`ke$@~DWv}Mj- zHe{{bx;LBjV3|VR0q)Oc$89_{8N-bUCm`>9X(b(xsxpUlK)kTmiA^47>;-!fS0Qh* zXvhpuK%O6HCs^pn+m1jn74{x00cUSgLH3UOkr0BvmJbF%r=1lXKNJsgm4mehCfDv8 zSbaSuuYU7e?_Bv!u4>*ZZZ2D=U|~6BiXgMv+xfk$)|^bQzi!ju8;oi{?lPSkeTtFMbmr5K(2{l!y)qr_#ZhG&ZPYi$1aI%lG#NbcXXct?FcP zMqAh?tL9a^^Zt$`5Mhrih7{5*rN2(*%li7C>V{3a7#k8`vqCTt&~@4V&s+Jk5L0M zrg%EY5X^CsBl-YxLNvoUImpd`p0f@oB)?Y>GuR3|yPV+V<7#_Lx+k@%A|QE36s>1q z9;Q^*0lPwHo~f9ZG%iNHZ~L79Le%PYzJ#8ekuF6?KGNeMO^?+C z%hP7`FQRpl<4f)?Z?~DxT>kW@>(5utZ;$)7nDSjrXTs~DF|b;gc}~P9!rP(Ln7yZi zZMn~Js5`Fv-ts;>k%U}#WvET^x>dsXURZeM4k1E>!KiTZELeuOo{;gZ9{uo$23t@4s;t_vGb{oa0Et7r-7IsI25;J!CYV>0~$NI@Qh7W8d%-q#y=W+R~*y_ElO{=Y_GjcnUgWi+iHKX}_{`h;n7c4iCpVIK3KkB`c5(G{{av z=SP$!n}~1onTw9aZKp5;OXR4R{`kwlJEAOe>)2xNjX5%9%4Z=0pyL!3DC`s&yo);) zhY}LwoI#5xv`XI}lY&<%mpvcmr=?V!_dN5+OUCO9EH;$~Emt}#e) z*Tg8Q@XEyXksNut<6*U~%fD~e15qcqmcbaqh&#*_Vq zIl%soNaMUnTcgh~IL8m?0qV&l6C76a44Y}(9#&>jYYJ9iV3v0_idH7eJis|8siWZ@ zw%LyC1vH$a(f6c>?F=GZLqEdL6O*P%w!|%KO0iy#dwo@bV4HWX#wief1Exs-K41@GATmdkIj`$5k;jJ)P)m3U#ZpDBnMRlb;g!LPRf z9$Ou2e=*V82-VgpQm5oca!F_Onw@|a_380;P3IQ=@XLqEl*cNPB_$!jC`K{35kiWUJe2t}dZgRwW;NokoMo=NTE5&m_!t)V41Y_G_ zJb=EQ9nS3wa(6ID(3?bJcFV_Q&zkE54FK{7#NUN)rN@td3q4Eqx}jO1b$`Bfqr(>C)wCF@;vx7iURUY0fAseQ=|o z|H9-W6Uhm<-=;sifUt}1Sl#io_q%p%ILqiu^>WBH)?1wMD8lbI{wCN~{tTfV&v#UN zfvuw@+zoSrvOkze@ndW~KxKobJiqRjQjCaqI2WOc>vGvT{aiZRxG8W-OzFs!0ZXC_ z`6eLzh=7JdW&?6XD1sa)_N-xhbP*%=8lx{}4&VIY=b>($b^+mmS!p@}>p79xB&pYL zluRBgb)8DqTH=)`aG_z_6`TdJNN?DbZ7i8T>W0b-3nf$FOFg}^ySIJBNK}B@t99bd zU6fZItuH7NoBwKNGNdHFC1q@E{;bjmFN3a;f(uRiMdr8%v2tKXZKmk z*^$6$T221kyED#xhdu0-q1fcl*mWa*F2s*Ea_os)1EjyHr36x2+KG#HJSH1-KAj4M z>x)2YiMNVT&k&Ozrlg#tM3Pq*xM{J?$hGES`W1XZo@HhUzvOkw5vbpx6dnfhX7tf7Nk5Tfc6Q8KldBU!9iWNl`3`g+Z} z;uneLJuOy|e%C8NHdV)35c*0*$~m^JAxje3CW8XYAjCJ%mdtgvhLnnsXtXrOxTtcS zU{mUhc^&;-LTVHxpGD%UI z#r94U5ST~1-aCe-AzJq8Zi-%5b_C4PXVLdA_4vXa+?z?3=F*>jU#x1bJXf2tezHmswT9K4?%UrxI!Y0;mtiR%EISQ1 z)<4O>>NAPu4dh2sM(w{{KHT2K4}>iOWmfHG(Z_>?8N>?alZh6>?q^ZB^Le>7ItF<@ zrZV66P&j4X6wD9%o~%o(hWR@|ix8G09RS-Q-9zMA{0(vNVFr(Y3A)AcM%C@=v>RQ2 z1_F($Gj)?$zF=9|123L{6-6!B96-&dh#B{-KpP(N1IS6;u!2yh-Y>H1P=~VuUPUEC zv0E6fBx)&q75m_H=kefy4<3A`(|7iGa>KHIX>60;wC9TLd17(cc>;=Ec&>@%$$?{n za8U^#=(VTxn0YFc7fjTCAK-Yby{d0i;XY^)Ws~kyc&E~*oR6Pl57p04+EEN{4hdG% z;#>+lw1uxGA}jj`=1YYLrrTpyI+lJIVy1RjMJy|cE_x3`?ruhQNLGq}$O2{BG77J1 z*&7cO&ulz)*BfJzNr3B&$7M(nv2VQZu>h4x{*bJ6%qZ#H$tHCsb8WX=)%uA>a4ZBx z5DZCmo@qU0O-DI3S5WI-7K~%=w;$VJ>*)NM7H{%5cPM*SDT&bM-bz4XPkgIc+Bw8} zFH+(zMbJ&)FPhqss7ij=X*E`lUKN=8kA1XfKkhD4P@BcSjlOGCs!$RXkKxdNw3I=K zp~~=7N7AT%0BMCSB7i^2FskZW!&~u#qJhpKjA8U9y)Su9%EcHhRd%M=a1AO;I+hbG zmTj&Y3p;P@A9^zoZ+rt!!5H?sCI_3I-~Z5fzZ7IVV5Q(C!4Z7LY}Ym?&6GAT2vXZco<7RgBHSmJ z86L#A$tlO8NLr%-yv8($ztMA(PAm>VAuh=r+>K3LT8XOeE>}i`oDJ@XE%>mjCCBb( znh+;(Z{O469h`RHY*M}J&+L=TjLqxIh#r&(nuC;tn^H3BZfj{}37frQ3W>9c5)Z%@ zH{5faSuy#<-P+G8PagF55|VLl{>#a3%Va}UO~WN=9U8;aL*Q)HBJon#D8JW;cYj9~i4Wk3|TlE$sUIZx+X|=VPtwF9t{T7fJ1ZFKzLUwdB9{h{|S;u0SU< zTQfVC|5`P~s%j`6n?-_!JUqut0Th4XdC&p%x!7t@&^e{S;q zKpeoLS?WgHX-tH}i1*+D?qr*(Oq6?52%{c}(MAjmj*ePFc#Kq%h6&Nc5GXs+rziU) zm|(gwRHwTs2ynm*(X8m4u#HiN#HCvr7kE~zC8p?Xob7#Mf)zG8hbsbo^KT-iWK&3T z78ux_3z=^l$92FIxpK>z*SssVax50`F8w(sTJv60?8oc8J@x2Tr9W4V4d$L|8?Nf7 zA?)OMwahW)I`7?GEw)D=l_z>L%a=}lzfV;au>6as6!`O5-+;H&`BO-I;M_Wid&HVy z1k%LJw!E$12WEM7oMFtYhhCe_y_e&To>AY4L~N$%HQ{ofY)7=~u57fnMVzZ;C24A2 zOf2kr8qb%zyV>oX4aU@VCckU3(7Nsbnv@%IK&eyWwdz0m+_}=5(W}qX#;PyC z)55*c8>vc`ikU{qo3vq^ZmfRR`U?qN!}&ocv*k0FJo_Z1?URzIXTdixMD)n2utYj0aawZ5M{v0-eedVy z_x>g~gD*HYf|#)QW&)+?|1G~doh$qp6YJ|Grll<70bboMXk8IuF;_fLxB3mQC^Zb( z@k7FLhcliMJcHugx=^(=_v^LZ1r}@}#YSbaXfDh{RjZ0UifgZwuk@0`{oG8#a=b&{ ziDQHv!2y<26u$^#TZyrRq~k3TCc+#l(;|Y?(LXm)`jX9f65Fngi@_6y81d$a`$>+n>A+ zsW3$fo{C7>#ez!xKbM+zhzT}k2uKOGWCI+5{I#Mi`RY0U z_c?;+pZZNP4>J?jf4NwT*|`Co?Ct)QCjP@V_)oS_-H=CBLemSE=e5PQ6oT3Qb|b8V zrPOVRe88_Sh!O!A3lQN>n`2Q4r=Byo1G^7}k^?WI5I11DgL+5zRa(iUCPI(RbeR%( ztLb^-dAmGIC%h5(#ufL+5pT{>dIX4X;R1KYRc*org71xXDOUu74bg>mDNj;V6Vb@l zQdlU`Cl8S;HJAVtMZ1EGGyVyJ3Iz|h8xSM{IpOGuq6Y~xip>??9f<4#E9&L-1Gf3$ ze%s5GUfX=lN%}bCW=+15XtwdX?$vEAC&7;xx}9`(bd!e+a>HO=86|?zLFnvp@$(l4^h9XYK^lfe5#*47ONJWL~GWxlp_w} zWlWa&^q8xa6A^ltUrMY}F~RSX?gx6rwb@BN?zpXu82AJ`d(Cuo3wZ+Le!4_=wpJXw z+SO6=Q-kFngX2Kz{V>%=ujZnZ^S;YGV@R=SI`x`=mq4X%ZLHjIANY;Ol?w*@iL+QR zXQiex(uUA?#wUBZXB9C}`h~1dd5mWh87`JmS z2=&Vcm2xNO#_|z<{|86Eap0eCl_MN97@%^3JZ)j-^Qawdme#+vRsyxrmt^IBA!G24 z8~2=QL=yKp&jkrxZj_l9^_u6Y`dP78=~S=fUw_$&io|yxIs)qoJiV;Aw)o4FY+g}m znaa}7(clYmC9aFXODz$bmF`qh7u0@)Vj-$4QbhkT`GNj-oQ&pOh~o)V$(H&Fdu~+u z8uk7p@DBOavSNJnPfM7rsZ{Ns!0xgDv?`Ui$cGP6frK@zOY3ZH``g9<*2`5SSM=Ek zBepyLGWe6qzo4!Lhq1cG28_-GbxE$VH5d2WMB9g~QPeSe0>i=1*CBNh2j8&?m7vrR zl`HN0%wlZdeo?Dy_}+LS#*(JMcyG+pKpTBuptY?1St@00P|*GK@A7PXEqaam1-;~d zBw5n^GxQwnoxWC>|Gw<~H`w(4MI7c|umiMj7B$zgCrG>Y!&ewj{CfE$3o#bIG+3c{}Q!=YGZ80odW zgYE!^gk}FUoq2o;%gZdLSYjAH1UtlmYzzrbLfw6dU#&9BOGpZ69%PhZEY4kCLC&7M zg63;)z)Zuv6=q|76lI5osvcw;rnq{Hxo9k}rEp_~&5G>lL6gTa;l-T3`)nHQ5j>jt z%C{n0tb1bYb@EVT$H3H{9#bt*3-=4kEuXYTR$hpLlrY@zLo*ceqduGMj6)`EBk zLZA9WQLDOd+VXg|Rp+nBzb^K-d_Bp^;w?FI>MnW3+-6DR{4IxvXp1&!(qvs~g_RoK z`f9M~kj&+oXv7L6Gg8B|DH^n%-nfAa5<*Zux;uLPO0i@fMdo3W#Zj!{S}JxL(Q84i zqSnBkg6uaq5eviQAxg-BQGX@M^>HQ#^(M=W(w~Ozscs4ynk5$qv)FgpvU%z6#BfRY zWou+TV1dJNmblSF7nYHJf%Pg9f1o7o>9^Gy=`qR>0&Hc*TxfxtAG20s@F#z zzI`#vuY12MIdv=wkXBd;wBvesP=4K=_9^&2!%arr9XPlZpFp@0XL?mjv)Ih6jN5jY zy|-=}o{}pVV+Z&v#1IvYDJSd(8o(|Puao5m zdnkZGP)Y!zLdGX&!4a)KnWzk!n^AtXP1XW&K1|QkASO(w6&kvW;TwJ$K-B+v8yyj& z{c9oa{ojih2<}+isjq!M`#-`&@SkAvzaY}cIRQ=oX9CTZ!h+&gSKCnAg7%US4^ku+ z=3-Oq=WjC_EQ*>04@U%;OPBFhiPq_A-U9VcMEt!!VNRx$|53cSU?<+s6jt()>wNu^ z>wVopdGh)Eazq>8t(oko5=J4CZY1eJwfE(qiIOMjK~qRpNN1!b1fv2oKT4I*$%Nkr z55ZDLtH@Mth{OuBI9hG2E{4!XqN(Z#rG@V9s8i}9LvwASKNJj|XOu@=cm_uu+m$xV zRChuX-aQnH<8Et0d5^!szzTQT!5>Ec5o3R`tC(Tb;ZNSyr?~j$ezx=MxlpOqU;aVK zu&*Mn^24Lo_7;+J2QUD{$1OX7Exy*8!dXjGifyr-a{?W4=B)W`_A&>=d~5UwyuzBA zt;F{3kI!I^Kf;=?j=Ko4h8uI8L4g}UA3@KadJVjFe-VmRFKeZ0?-xN1Q3Xi7d63h@ z39a2_^-}BeAlq6}9v;8Z*x&b47<83s*gJe@X;J62RV<3>o$kh0>f*O4#lxP>n}p7;9rZF{G4dbf{v1g3o)OP66z#- zg~DsbHpklFNUM^QuGeFzn$)Cn$(wxPbwU|8CcK7qENmI1LvJ3^4Ea`O3~VrP+ZZ>8 z2c5#z;X|n$&R{Js43s-5^HaKlcN#5htV3$WOtH&3_L>9>&`3^{Ljx*efR~c$>pn|V z2msCR-}EuxKTnPkUr}H2WC zqg0N-TN*@aq7;(AX4U!dBjS=XTW?}HVS?1CXTc$;>1SO0+&OF`yf?5}jKDq+i6J3; zd{>9XIVA}Re8Qjj{+d5~o+y9|EQUP%UEb4cO*?)TPc}{;JJI%Fnqd~Tw>ooHV%g|l z!(QzvTuW;er?_Q@q5xf|z0!g0#Dc7zs1H>>yCO%phZr5KZDiY2x!xP0B$? z;_Jq~C^6whK*MktbrGl7y-mO201I&%Y{Pb#a3O6!4eq5TooFtSHB5nF3z9V~6S_=j zyGmcrD$O7Vgg26EJthc5&n-1qz?Co?HCF@!1aaX7=CX*TVnTq15DG3jT!B)b$ZE;1 zBv(R@Z21Bp3f3pER16R2MRKP<232Ru{x8bjF-Wp#TNmxBF59+kWZAY|)n(hZZQEV8 zZQE9t?JnKgd!M*(pBHiVJ1-+LBlBObSYv&2jxj$NwQ?1)%`O)QHxB0U_Bl>KaxDo- z(3U(^=o^L;xvDUr3Mn0&JIT--7+LHGe(1!{L<~FWuw=P_7 z%}s)0XKHG4J->E-s%Cg=s(;6)xR%!~^Q(m+UnFMFm#>*N0x}H|sotzqcc#Z0Ux~-m z<+lpLhoC>g`EPzH5m*GoKi$oOwRf23Pa1`V0q_!k+@XevE-~;V*Gc5%$oeC287Df3 z{phkNxV2+JLJlN?8xCS+{bZy}Bv4x5#4x7M?P^Xl8DwY?_S7TTuEZlFqxSR`#jE@_ zUl`MQ%El~Z0+^zvy|>%pV`g9zCgcen`0n*&q`43dx{!b!-Gj`vkgLzfV)}gbdC;X0*jPO1IIt-SD-2>WTqPnW`MgG*Hhd+D^{ zI6AL=K;?}Lhd6CvuU@L$KAmw|B6=daj+C`}mg{MAv30)o`1}BIk|$BLH6fN|m(+A4 z%#Mp{cfg9JPXdg4)qlyX4{S5AYIQ6=cd{{Iij63?B!0$-x^4=Y+EnoPd|bAD*uLeo zebI>)Ew5UDH*}u4z*AI?-(*?0ED22|Bm;fR(g_b zkzMak+R|UerR*4}N;DmunPPCu0tIayhv^wGxTljF_UxQrk&l2MJ#(Jy4duqg&j-VA zIP?l&eL=Cj#bn!a)P19OJF>lr@sY6THsE;A5c|MJ8@6Q(yS4+_Il%Dw75_JW=$<@l zaK;U&XBYK7V&w)~cjS6<4S#Y)&!gESUw*nF#=$yLJm5tv{`EEUs2F7LA=xeF#c|Ds z1-e|$&I`x}QsxS}EWUMB(8YpOTR@>fN0%kwwdk6pq#aF1Al#l&Hg?<2SW>L1>>bHB zz1Cut6qLD0a5D7;T8K)pOE~~GK_^tgt?(V!fUs9Eoli*q9-dfzE}jky`Y}=HCiU0# zWRrT)z4{H9WP{Xz_PCArtIoe@Hp5$}&iUUon*iAVwC=I|r*-eYQ))!4{(Ww#s%3?( zg1~dWvOdizyU9j+8dxH6@1R*q8@F2$%L1RUDB+islBB4QwuJ?bY>)XGa@Re@Mn55o5Rs{`a;L|ZN^j& z7~ro$pYvp}7|BRKY&>X8VnkwW##B9#mRd(3lv+nYd?duf8FYfSPsz7whE8-53ZCsV z+W%0{1;;BK1keTNi-DLU70yK#r zX{{lZIU<|}@?}M4O47)v(+g@M!&)~;gS}l&mWYHhPMB!=?T=e!7IOloRai6kFyC2J z;-LItK}j_ME^agrxn%SMRcUGA;We?C8%r0jU!8m*YDv}6B7*n0li_EQ&_-SmPd)8| z&|5&WECiK{wVuRLcW0hSX%luqvrR0KR#W0Clv?~ZCX7#EGr>6Pup|#?JjGP3fwF}q z>hN46ol&3e&QXt+^_Fh&QfbN~8b1ysH_Q6c7*2{UqO#WIi99qtij#5Gh#_GLMJ^g8 zU22VmUsQgU5DZTy<%~C&ID?J2lef7SbL=71aIuEAa#udqH~n=3x-rPl%3~c9--bLn zX^WMgIgUHNGMv$2QG8UiZjbz>VciOA?=7tuvRkkz)`l;DBMc3fk61%!ae%i=Ww*uS zI_qXhJ!QzTfx#K6&(#mGVPz$?VKQUffOhLhNQD+&QM6yz|ysHKKsABxWs<|-8c)(6Hs_qzo zSNI~_oX*?>FU!p|z`t9i&o3?VqIrr~=7n4kyI-Z=``M`IF4+Imt)N=>iml_$%)VD} zo#I_mO$aZPCaXZPKi`>O5YHN^fG*y+?-6pUU+GW56*rs|0>YHCmdJwu_?3QY^e0bC z0O`XoP!Buob}gfglPjk7(jYvmr$u4ctwvE*r;c3qa?62> zQ-~u9Nc;ok=zD06KKLDy9#6*3V9L%&^UhFAuW`9k>jaljg`Jz?mzemT@6SNJc|JyR zP&*N*{og42rA{HJp$IpqfPL9?(jmUj5V??=OGX@-%q)*Ha(o4P`R6!*Q?(iMof}9&qz#+<$=-#p9db3Gh56e%v(5aPf8Uym#iLrBr`#z z%UL^=l~>@CBD44@oqf3!6yH*sdwQ7w=I=neB`)=$w?Qc{u?VIf`I`OKGEkAk=ScQFi=FBGrY{u9ssRXvU6*>?>~EMuF7;-nD4&&0`fnh zE&YE&+kbT#Lf=mH2If}gPXDD|ivF*W@4`mo0KXI^xHXLo zF2dfj2@>8!XCyLE78V>#1E+IhI5CxT>}4I2v%Qj)nl8ldmpr`#qBK$#MQ& zbiCX|bZJqo(xW+~ROeuxljw2BtVFCw?6~)ek;>0m9b|Lz2LLIX9QByRCetzRAR9Bw`%)Ir=&rVN{`BkFz4JvYC!W zejesIikYpXg^iY9+R~)Evs6Pt@fNTMk_f6G&=st+=Ro~wh0P})Xorp~NRf1nmq^va9)O&d2z~Sc*t|e^O1Kq_#z{O3&gmirFmI1HqO`G^LM-+j6 zk_qJM$>|UO8^W{xcyG7=vXqJ?j*v z-zECfY`^Mzvyhv{-H+~{FXaJoj2qJo@CRu6$W|3ZStE;FnkC|gNDp!f@skT=*wKOA zHYF|~bKT%$NY#2;5-;uSG_Q%=;b6<-r3SF?TG5KW$Sn8=1-N!3!G?c?NNOSbiE{me zNu<71P;YaE`0Uj^lBP9p%a~uOHSZ;gmLlm@#GMCmG1bYx^w5$G7GO$g+ZV(`iQoAkCn6g zVN%STF{$1BQ-dzDtPw;?-_o8o)&$nzb+75&PTknsEDquSA!9L_!Uw_op8mr9M;Qy# ze|q%(`$p%VeB%G=^i{sIPK{A~w!La4)ce^5>u70FgxCmaQKh7`qzo>0OSj$Te0QVN{!%~mzjS6IbUP5Ddp>o} zxbHaTI8Jw%;(xr|)Bgy$sfSm<7e$q(bQ2KJ>}&jv7%)N6R*O@x8;Iq^c_Q}f{;>(5 z5Fz;i9|N|VEX5ZCDjzGP7<8VWrx)Sx@iI$1gh=U8>?RlyhmsM|0H7SgL_M|_7-Ggy zjqeSMFuhHRm~h~rgQbKiPwP#jsupJqN2aPKEZG-1-6e(j-5P!Xj9?cEHVnEh_;YOI zFD{SCY1`{+^4f;zGTs(!>19BACi!L^B>h?mDt1eBfXy*9OXCFt$y9+;KLm43C*dsK zI=1NkM}C*RMTkvJQ~Xtj;0Ex>eTvA83GXq04^#3F^gW}u!pt_4!Jq6S^=^ReaQ$ll zqSPtJy-J~(9@_&)VO(t#D6uIQ-oe+~Vw4RnW?_?ico_ed2D9nJ$S>-(fHFGjkOgKm& zJ|MATg|=dJ@+kHbCC13`U=h!Bx~cKUUj`joJwK_?W%8V<-|7Sf^ioKF?N~ae5^6nd z3ngr7@T2h_*J5q%up)$A9D_kbU7C9C$XY4Vqrf^m(@6#=MgGb3dcE*!V*mhgh#Zoi zC*X6i;^WJL5FMA{mL}`5Wb~gygy8pPYKYy-nZ0at+_M&^ z81^eHWQnSj6C7u6nS`0b);kiBB-PR391IR(Ggz%MMQsZh`vk!a;tNZYX^gg`dFw=@ z3W=wepkAIT8$A5M00vQekl@&Klkz)Ilt>Gmyq3ni0VfxgN)O@jCVN#>;@Oj*6ayAG>jPP9=z#iz zG>4O>zAa@UO7>HCRH*kryqxx+1=NIm$u4Dy5EZwm+vavWJ1e!Vf42Fh<$1)J{ifVfWP~K9`?=w$^&16ps-Tak03DMF= zx)TU@HsmVf3O=FbXd6q}s@%?L2_N(HX%|^Mk_0wME3wVt=>gCIMMVGyRl@7YXjj6Uun%R9b!<|h1r0Fj1AX|kQsCHK3};`^E~HVXE{3awY|n#{%AfZ{E-8ZhtO;E;~3bD(~l4I z#?=2FxCY`~a#zKF1w%N5B0oOPUI(?guQk|5lU&Xo3=C3_ra}qjuF|U6 znCp12{{~`FV?Hc_SMBR5m}p*J3bn5Am`6RXY^;i6eM*LTMxC^x)SFtmklO|`?bNE+ zGwqIYhUZ~SX_+}C));WKX`z!k{Ixxe>Au2}wMDI{ON+#n8-C8g!)h`(^&MexX*B6J zK8<~wLrFZ8+`MEcli|LR!9bH*EhckS&L2(%;e@4BtzV4GF%@lEUvl8Eo;{wCa>`rK zyQ7oy^0Z+t)K@~9i+GT-AYOgQT9EfB#dgGCo^T+G85H3BQDRI2g-k5^8FVN>L=CNt zTMzx3WIvm9#wt{ugH>8!wXK|Nq#{=eKEe#?9YE&8lWOP%b*8AXL5Lu|mQsJNmU%9D)Y{11K56j<}9v1 zT4&snh;y{+5HDvKncCWUL)NaayMKe`uT8Ro3@XrMS- zTMvZVxETGoF)mHztn=Oq@w^4d4<+< zeHq`jkE&T^Ooit8`d|u6P3(A)n961=!hype`Y7m9$MV+I4=*W#ncsADWImGpkQ#8s zrO~`f2-Uph^13z_j&W3^%C0pC z7oaBsJj4{OT9p1iEVB-j5wB(#`Vg?g*IQUNfCp9|TT}btMUPvwq`!{)eZ*_#4Z<}W zYXc*n*sJiF-A~|zGXUV>jwa*{kiGf#(oidN_s2W9`9jzC-;Lup^Y>chzp)Sb%2&vf z`1RpyXXZ~}e#nkqb_c3#a%0^8ILMnR2Efc7`Urn=XGut1HbcD3*Nh+BrO0tH%%2=T!{?;Z>3yxlZofoK1K1Z=N*!lBsK2Cxv z6g+LX+aKtE?9XSnOZIHO_vZF6|EV?pUyvvN&4lG&YuS)Gw3n8t^B2C>Q&&RuUEBeQ zq(nt0E_qDGaYm-t0f{Wp8K4@UQqnxp@_fC!+^bku!e$fra$T^6sksj$?#9YJ4VI#K z>ky3-o_AD%fC<3pOJz=b-W_j>{wf(*{Y&E@$PMJ)z^FHb^1B`K6}NrfPBXL zQ~w9{2^Oj$)u-&xv+{dv1b*3z9x9*8Z9znC#YO2uNaVvA%b>bqz@DHN@WS-Ri^s%HMIWUwmbV&1GpFczw2;jCtG z2FiNbELkucb)!f=pZp0_a5GgAb)!uFCDf(7S*f5JRijkCNw5obqgZ~IF3X-==V}xm zTC3LXC9ihGhBw3k9Dd4f7jQ1hOH%I+)FFr{sO(!UN(bMHQGxj{KPGgKRlF| z@NNwVFL`eTwb6*=S_hQx$pBW?oqpBq^1dwo@?I6N?LA>Y2gvs6fX91$Z!Xk(dT%at zr_^py?@wU(zqN?DXfILlnK!)t@Q|CtHwyl-Z!am=h^;%Jv~E4Up`cf&FG28H!Of`n z$iGZ<7Pmr}eOP`8@AC4g9yIu{?BfFaQr@fp`xfrK0jO`_fxn1uu7PJDxT$Zf{f|Mq zEB4&qr3Yd`d}wZ?w!&@+8!<#dU>DBhn~PE_dX_3{S=hQ2KmCDhOfqKD$Ho+EV=EL_=>h(?<@ zQGD+bJ->+)MSRcfRby?(fwyeL|0wZPyfb*+=Y;s5K5{{%P_uTzLu;x_~)S|28njn`#0J8`>Z%2#;(=n%}PPoWxM0 z?|g1=I2uL*)4}IZcHFv_xyF{fd73kD$U$0fZ9=q#t3WnIA7772jTmksJu*sytDDAU zzLyuDA$ratvglAkn*A9T&*T9<31NvTQSw#=JfXiJp(T;IraI$S6`0K0(x%3Bv5zR| zE!4QL!YyrDk`ZF2e8Hf{OMT1AD%~>UG`yujjmUnq{+Rrt5lc-qJL7xT%1l-+uWU6; zmGlDN1Dvg*r4sIAO=_sTUrA&6OEfF_igjqLOJXDnhU{PsWac0~@TzP8r+#p64nXaE zFB0)L8^V^m=cXEn+&ytFkwK@hQQ3eucCMm;Y6|vhY3}BbDAw+UcV$!qqHTi6NRvB!xK5h+Smojq6HniF|f99jqZ_l?}48w zGc43|Qc-9j)d|d4C03Y-sKKtyPL2(^drUmEcrKk!f96kX{Qi|uHXt|el4G&?`eZxB zduppnC&-VBXK@>qXK{H`QvGDQgEM1;vruPlfYw+lhi9yHEV$=LI3m~dv<8N2avyd> zvctG|F);a2%Q2nf^n0h4HsugFXUk;mQem8Fz1D}faGHP~PM>NYendRzpt#*A-P}dX^Z9D|1TUaw!TFL`sv6~F@+O#LB0^1j*?NK? zOCkh38e97LrqZwurv!xzve~EQGOcUOXQO?MHQf*<{nI|27952lr~Cw0akEs0(cAVFCAndv}o$W5}=d_s0%oGX1y>8ZDJ>>9Q76J*aX z9&dLg7a{8tpUh>bNX>kHb4xjs;nK&xY=_M@V*ML`&~mTqbeNIF0yAhz$fVK~!3qra zqtO+xA-MFk6!tTm6uR*8Ujv?0&JtP~JM)-VC&H~ZFGeMQU%AO#ljrZf!-|~dC{&}J z(^Wq2GI0ie`sbEm+M((VshQGMU~kgtNLvc7erj@J^^f0MrT$&jb<={}Q+q4$t2Gea zA(ieqjnX8TmgI_Rf^m7(KQwTvZ)g)cQI!ztoEW`b4?!iTxKuE@k~VJ*k0?g^Ahf)2dc5Herd;fyuK zwzI&sur63il1zgt-TD1&b+bo9$Yen{|JG>pxi?WJQ>+dz(;m~$;^j~ZfcJXn33$FA zxhe(MJ?nMle}QbkHT+BCmxDdi~WoiC)gPNDOYWjk)5Zx=WOXWiihc3LBG z0QQ}|4BVg{4T>8mSTrvLm}Aok>!ZEY9ERHcd=KYuhF}iPWC?gJGk73hHI3KBek@~U z#4Y7A=B6aZ5bJk}#}itBF7|JppDrU3+{A^Mkg*08)htH{=uH9s3ficO4x=cI33~`q ze1TfO?Pbb_bvOgrRc?bqHPnKRSB2CIDwec5MKU1ng1tlpER7DKGz;E@EV`a$>D%gc z$?M-i1+s}>YeqHgY{>N-tgQm{1=GQ62S}-voRoR2)`-1s=+MylxJlj)?vAY=41>kap=sO}fJE3C=OQAajxt$n!#kFRj zF$#6p<`jQ7~JZ@Yc#h>GJg*<3aB@N+14cf6Pr}e)mwV6VspyyNu^am}ga0Cm@Onj%q?IbUw zt#5tuqAFadQcJfpg&I`?mKBV=6;|K>xvu` zM53o8UXJk?n&uW~MjEZd?k|(mT_xI2sc4O+Y|F$>`6+-t~g&HS@i9S6*)cK^YYf9@yYMCgr z+3w{2W^ReNprm7xus~Z;yiwB8cskp=v*i>CiJ-wf{IuE^%&Vc~rFPb?j_EjRt}2(e zD*s)sZrL*E6ax^eiFYL`UI9Z7vDl!%B--X`bs*N)|ETYxH?X#;sMf=U-(J9 zYY#{Mz(0z!=!q8Mv$v3EeMsgm!DWP#_ytFx$n zE2hFz6xv2OUVZF)E!c>zjtVABE)_iLE7&E%i?ZWyAfl^N_-!{c+Lp@4j+cyk0W+)3 zrj6jNJVKTedZZl7+W4b`B1k}UlB@&9wuIqof7~M?Wv@b8r$+?VEl2f0#NrTONkp$B z+hEQEYF>z~@+>gb@WG?#i^9^5dWFMAy{h;-JrW^J9jCOTPX6YY&EBOdXq?)yFZ<9Q z+ADEYJ4D>xUgDK#JVh6YRE7PA%5-l-aPQvA;Q74fAXi^oVHi(X_LUoN2iZyXMI^X= zaYu8Rm$i?%b!u9Mw$jXg2!!@9t9GBoh0z(k4*UDfzsMviLm_k~-$arly#Lh0@%|4J z%5P1J6}_slgX6cfMN!|z)R^SofBd^uOSIaDt=1BzkL<+@=abBStHfVKUMBJI?`ZPO zl=;|RRYB-{2?|&lyAd(ltc{oEa_g*21d8`wdg(B4NU}VyW-Sqt@y2i0MiG|g4+fC~ z`m}HRu?7CHo*(%z*Y2@3xC^QlB)QL7&t9F^_q@kE$9TSA!>en z`yZ1Cn(=c7A$W*bA=aq~D+*Hy7e0rrk{Yyx@eutL*`(elCxbf>Km-?o3CCc&Wf7Ie z86ZSX34`ReAR;zE3M8|N$^gWK%1GOR4`ZHDIXP)mOEoU30 zi)$U1UY4XLD0N~};`FBD*!yHsVwQ9E>0z2qmi=8@*ZNah%EK}ucI)=yN5e?0CEw?2 zo?m1{L;;O-$sWRRN|Q#V&WMw*#Q6WQH@7 zPQ{Aln#Hy%YpN9wOH>;okm|t!*_lS%m{jSNDx1etAlX^p{$Mi^E9cW-r|OrUM*ARZ ze+ASyZ2p`_E9G!hgKHyYa2uhTUVPkRcI+}S5v4UdD%q&!-+TInKJKy@s$)KsX> z)rK{86Tp^)Rf~06nN`h+T2rNDnz|-l`8X|SxWsTV%`D=obao5+ge;<2TRH^QIrdFT zlrrQvYkMZ0oRICB;M(Amx4l9|`mbeG$}{{K4~g5S)trg!!Bc3PTK%0kA;03NI|Yp# zwm5bq*5!Z1fal+DXvNcOkAJSUA3k9gLvNt7>53_HyFC#$=vk9@$%I93uT3bkR_)Cr zjs08z30?;$bkfT}B%fqq|S(1uaD}O`gzbk@KpE09*Lr3u1wPl|{-( zs}8hSb+(vOb+?eL%em4$K_xsE_$qW#Ku8FZb{nEQvBV3zOW7?T*Mrce0;GT54NYGH z%n=CtV3GKi1w7_&EF)iaUh>Zi7QX5blwu`@Fa{j5VTlBH$pO+NXX`A-_5>nnyxb=g zRJrRy1?;Eq29!!bhLbjz@QTR3eO-}98S}wwX_17rYvXoY7x=sj=ETU{7}&1tO_8+B zvACy(b8RrrKUe>!u0CE*#Kx^-^8)E(D}*{EcLCnk)EIsr+ugb z?ua>B8tjkAlU8-u-5;kvbcyp;+$ns8u6FpTw+E}-BK@=W1Uxgr_i%NQuM6<6^?zI+ z5PJ0*dZs|S#?V*oFqQKz_PGr71k?h3J&P;csqH8PNNgC(d;zbs>S^L(Q?BVgeZ<&Z zD+(>?xTTY7Z^L!(@c*b+>t(CCx<9+r?HZ`Kemcw6^^R4$zB}7eBxl(RH^%4&4GPK; zr=T8lqe;jhi4=m)=)M{pTGE*zQ`LyPcmAFmouFgPUNc7X5roR!Let#-_>AZF5yktG z_W3MG=YTK-1sc{P(r^|8mnQ;ph~p;JRyhk8y;VzCAPJpTTXyHp3{tEYJT3;fdw0KBj`mK@DLkI5!Y-GbxwB{YuECe--_T*lDPlU}wZq zMPT{W*wWY-^plh>Rfd5dI$|Yd)%)!0AM?$d+|lsb@A)Rse2N=&}$DM`2M0k*d(e<0#xfg@b=bAE_!>4L0K>{N%t&U_oD$#rM9_;xfe78jpY_q@D+8=sl@!O3{pD*z6L z132&H0N=L%HS6!H67?HH&0b>2lgfaKt|CqTJMTQS>E>5%930_WFpgb+co;HW=jotH zBP1lWIr{u*kQUqKDy>mXoGPJ??4o{bBA5##WZMl|4Ad!_gWxD7`t(6s954E?owj%n zH2Um$zX*=Qo_Ci0-cQ2B`ie0tC@^Q zkn1iTxkGp0Lej@J94a4 z45HcV!Qs{gbu7)>p%4~r($?Miwa!azoTxyRPw?_vX^^JDAaGBKn!1<(3)qj*I*i$q zHQJZhKhC>a1bwMyhRLv$sYU^fU3|keBK?Qb148dQ~=G{wHDQeOZT* z&FVPz#8b_lMa$R|x7Bj!O;z|RH4!V3fgbv8P57d+@FJI!*20+g5g{-iQ}b3>ZK|yx zKG%^*3|2&I-&{Zo<}=41&7yyNJ5K?!f781=e)=U-s$NBgr*LLn7~H6Ahve% zBMO^+44ZuL+KtWai3qQfq zN7_9tfJzUeT*b9qwX$Gn(JDbRxVa80-((+WU6w>BnhlxW9SJ0rY%%T$F%_8`mHd?? zI{^Q~Z16|tom-N%k0d1YNVu5YNJ=d&i+WBFes4$ECGP~$_U>kj{?)M;BCU219>LAG zS36TI*xbEF$}Elax2Kf&wG^j`JgXB_w;iw(4~_3$64di=4S_%BDPCQ7PsxT8@-hZo zC+7Jw*G82q3kiplEo}ESQy3u@*`W=Go%Rm;Q|5u;8d1A)vkRy!_dZUyHsT1G`fbAw z5Xxx5Tf(|K_4j<`bm+v0P&VpDp$bxm$PuG%R>ED3L%D?z@FbB7T_=Ih2+B2mxRLA)3O<{#30;;?SO)9uGk2#2YQL^&xUyE9)=I>G&akN7wgr`35JdVvPqW-;7B6} zb?!B&%rIMx5fAcM5WCcsGwkMgPmIA9m|HHq=xfLcV3V7`a6N<=)NS&6K@VU#L_ql> zx6szkAL}DItg|?C=R^E|0K6LMZ`$Z@Zl@>Ie`^yX>yzzfapcnwGiVF9$ohzCa8CVpP**fQtQ$h#3`aHG8R{ zr~r4+XH>89UH<@3P)g8K7q@(9VGvo!D7QR=*+3Uzo}1Cpzyn|*;8LCw1U+y;V11w` za{!f{;BJxM(c5ew4}grJk}w1sxDZ&4#mk@3KNgf1@kLn(cmXQ`W5o^~opp1712)8u z(h*;hg?J8U+ERT`3Q73pNaT?;oo3bH-JC{)@-!-R;WAc3&_}*HO|vH|q=+EwXL+y)vkK-`*WS_DK&VOh z3fCMFPpX{Od$q~?q1J}Yn7RGNS3dhzGvP*N{xh0&NNHLjEvjqf(o#mG`{v!lvxT`t z_4b*M#3=&oExn*wlp*;QYc#P1;!R}}djucxFJo+BJb zQ+FnWN@GZWchtE1=Tbbx06R#wwR34~lE(1|nh8Mqa%~1lRIsS?G$YL@w#67)K5T|` z-=hGf!XD;*gJYJVWcHy^R zT04S!5DZw`y}BQ$+k;^5M=3y!dlUgMYU${fdf#!^uP{`DmBtQ0*&o6EVA-9s#nR7rs*hn*L(L=O-;)yy^RKlu%sD z_BSKe`8FCkoHXCM^cd=svauC@kfyr6fP|EpkC2*SeB!VX1H*}_^#-kV2`mE84-;g( zxKnOc)*voKiBU2xq!jsPHIy{ z9-tX}wdE3?#TeXmRY1SShI}0so!sMRHcJeI%r27*k${pa(Q%%vf=o=xl461Rx;ev~ zbRve)=-7=f%HtDf+V|?aQ2WWFJ+1P=svV>9;p(QR9=Nlc9Y;g_{wB-q;()dBsdiF- z8Md{K{^;g+*^9_5eZ)Fvgt0vq zfrmc{CaV}UtCXcWKKwjMAgjJrD6&;7Hm-nMnkr9PMENvar3$Z+nyzVhjH`%bx#H~J zyt`-bzM?gH=4|USaNw*OX*tnLY&5+v+Z6^p4QJ$t^EIy1=-o-eV5-b@yRNzi(;ZFC zHQqBFN8MU5#}j<5C2|s=pX`3d_YZ94qp=tM`Hiip(EpCD7O7w|-*EbWUzp$D91Wc4 z3~X(k{>_MwfsT=pj!{Q($|jHjru&%^a8WBE!$fsi+dYu;!``lsc8);QzHD8l^X;OM zpb`1@`QXK|tkoayOh-YRvA)!f2JUGgr9%hwpbRiHQRnu0q*U(^wChU{J}s`_utrjl zQw3oX4~}u8E?#H-TFWPOZ!jX>6TOLvqo=DOjrk zL-b*cyJX1^3pSizhcWXe!c!eLe#Z)8H_>H#lQg zwYy6Ih#|$jm*a-DJI9XB0Q|rcft8xa6p&pU{n`Dnk>&^Rh4cj*-umk{+WK8od#(tWxg_tNmY zg|uOFcTc3wh;s~zgJ~k}$iud`DaaIw;)65IZdurcShqd_0}*c|5)8yMpcuRJmUj6A)7nlMqrL5)s0#QI_`0Z9L92 zjfKE)+%EuUpi#h+1DTm3Q@uYR99TDc=c}%vs^_ z704~*QCIW45heO$5yW#Vk$2U(r~ir`y8MbwHZ8qf|242fq3a2h^d|mej9h-DHN698 zx2Jf<*6Opw!UM1?AMa`Fo>&aT;ldfig)WZEmQE~cVtJQ*yAOTd$;($wF&x8;I0*MgcYIxjBHof;0LX z3$lhw6xHm%X7eUqV7WK_#Wqxv$3JI&HxKy>Y#&~!s-po2eZ7xYA0f(t9nvcU=w_zM zZ@fl1#oRI*Arp;3G9nQr1)ZGX8_fUE=%9r!8?iS2vBewc;u|fn z%%cuTkf#4tk2W?!2pKI1t7l|lU}OL$WS%{WqKSgRfuSKl`-vTAWbh00`})2GE;CP$ z`QKNw`2GH$ulN6X2IL)#jf_pqZH$fn)oOUF%xEF2q3{SXrH=q4aUifr5aKPwA(S<( zsl^o{9>owQZU*>)$jAKp^vTGOg;ze2x7trt4MBVUF126b&x!Qdbhs9GU2|lFnKuAj zr`?aYJ6*56Y(L%Z&!v74yY=4S4#0+Rgt&)f!brhPz)-_fz*xexV6b6Wfra)NQ!s8C zQ!p!IaD%#owxFV*T2ZwY?)p%--*AM|b7bw=r3|RybpN@54Ryp3x&L>*JIf@sPETK>IV-{g|fo6 z08s2?0)r`G&s%@%Lq}r$ZY|owt2SHhGlrD>>JOfLPa@1eT8s;d8RR!v*klW}URcA( z8MD@Ow{_~Vayu$$5O5%1tR)~!z)+vQPvR0)k%tbS= zajvSSg*_3=--5Q&t%Db%e zhOugP?7%Gh`;sa2OdQ!vwia5`1gexaG1NslvkIt zP)^_^gfdP`LTMqkUGx#&1Y^yw3Zg+w#l6Z=kle`-|;l@UvBPZ zV42sZ1REyP_3mCP4S`yn{-^J6A$V>hA4@S%wkqofU6QGMPNee`YG>Br%I`MCTatx6 z_rzU<{_aPdQJEI^?s%?kaxfwO)*n@>Rds zFU4B=bRLbkJAL{)-q`h@e9m?`8oZ#*n z2=49@+}+*XU4vU-TGun^qco#4S;f(8wI8*=VF=O;Jsz54#x6{>a$W_o(M*IGT( zBL^k&DHfgRydocS2S&KFM1#^G+(2<|7F8E5R z7fdC$O#waz3!Qm+-cbM^rm~4gOOAH{9#rrZLYEvA9vt<(Kvzr8 zF}orNYj1>gH9(h`dVbQ#SctVZvO=-Pfq2AnpSji`PF9}a^Rio*(RFBc!P{wTi(SGi zet|RuPSGXS!!;BHebje&lj@`?c@2C|uSb2MwRV|JffrfO{&v zvDqW3HSwKtd;BGmkEcUT&jDxu^4#@*j^rQLrpkpyc8M*p{6$gdTwwVE27br)js4NMa5I-%@0 zAK&%SKetuoJ+0a3P*XN0HhZYkZMNN8Uy0fV2c_!wacwkzA<8iJuo0fRLk4Ki2i8pf z`0AZ5#s*epJhRaElQH|E7KzrN;NJe5$k0mlo%8#4$0Otb8H0D}Aq>mAoKWki5CqQT zXHb}DZ%2^CqLkdC%%E_|u|8z|#5FSJIx+V|w10$rvEm1hiucbz8-@R0T2aE)UD3qe z&dCD!z~5iDs#RjTWI-5_0L6aF3I^bKAau5yb6aF&WF%N2n0Bj*4*C}9t_zJ-yIqj$ zxe;F)C8gti4zll_?`C@D2gu*7bcuI=4a9*Kdb>5`T(3|l32QQc5C^h!-R8HgRu7oo z>x(G-X?#zlf2*zvyQL%SnA`l>4D2e&7QfEDvl|Mlg#WgTg@=*|mBv$*?9eaky_4L2 z1r=DGeV-^zc}LCmtWlO-1ljmf>GZuF@3A#*v~^m!?FBQ5LR79l zPUmeaH;iT|i$c7ON%4_2)NO9}RaCWfgeC^n6LCmTZm43&z_?-%QjF3!YQ{jx(Kp$LBUG}{4(;|u)!=N*Il?*R+g+Y8y*np&8-0N-;2 z9yj?ta244ugf8Httn<@~X^m&_+AIz(D4QgN2U8YWAz1vh3>0dZUimJG`x;rA-yA z>tZyR&BS8jX`no{HLnC@xz@b_FUk*>y#oAiY#M;i_FK}w3AS2feT$;k2{IBv9AeL7M ztg$6xk(k8fn{Oi^xoN8jt%koPd^^kMHYZ{{Uq?I>!(L+(O<+kMJsM9>ZEyGSY4d%< z(PfMLnaGu9TYgr)woBe#-hU^@-v&}<7CXXqkF5_`D1Wu-Xzfz$JA7lBORxjU+;K$i z;&{&2&xvzb2eKR5RM>h9Dajkk42^9hP!L2=cUR(EAqP^VmGO7#!t7qSG5vS|2^M6Y zQu>J9QZrejbMvIppfF6hI|+hD!v(D)h|sVdZEafeO~NEX*7A`)j-=IVFpeT`h9yOW zEM0IOcMlw8nN4bYD4piaI3lsR>$R90L^TF4Bk;>03V^01GqhA7#{2XNEerlTIlps0 zeLmtGY4PVE8g%7QyY44wj+`>`v4<*#Y#*DTgo-JP0=t!jcM~{@(UVdgjrZ^`ZlbV| znko$3)kJ^PXa05*B@;(i6UP^4`QP_8aAU*6XNPST#7TP(1b_hdc-`pLbY5@V=p(n4 zOo_0)rGkcKEGsc6U*Jx9N@{U(qI%NcU?+Npo@PSEVNz=R@F2k(l$i;MQK|VGxnW5e zIs;>US~>|DkZF)XGXJYDucU{`?+r05F(?-(b4Xt&3`r`M`m0kN2~4hs0v)R8k4}XG z{PwRr`8t{36CoWHfC=D7>p%Zd%2`OO=^V1eGFk79gy#S4t*Co%NF+nlw?$27KLqs1 zJ2pfguSdSMd7Ms+(oSUpLK@X0qe2f-crN!b1g`GsnJ=^%N#unx{WfY`6Bgt3W-Zv? z0!i#XXkF;e9}^$u*0of(S>Tgz#U%>=gl^1@3*#r39CJZWO8| zMA1?$p;aU;prfksOT@`rr>Y@dF7;r;!1WU%v?k9B!+ff!G26Y{yE($?1jQiiC)^Db zLF>R>h$RI_b+2U(3xBMMmGiK3t5sG!Qd6BxO?*&z6ipF5_cYpMa^DSVX?mD%7Wh(J zM&&jPmu&c@`6E44erAPA8Yi_u28Q%eSn9;}5XCN-UMi&x&myG3cl1YwKnAtiN;c~5 z?Uj~Q{MuP0I;sA?Y4Bxk-y{>0v2JxjqzdP^17uSeEP5vq9|*4a?X9qoY$qXUifPSg z?X+Z(Jajj@FW>p^L4l_0L)LmC_Pol)@&P|oZ-J)s|6~68+sprZ-v3{M;Zx3Rz~km< z++&{P|LAM+B3PUgXl!KRWH-+fmWvRj3DcQ+IN*i5{~A zVMGg(b9R2L0`F6sl!07nrV1fYhk;pjb}@qzB9Q@*5Z_zs+`i#eK93SQDAFE;U*j3# zy!mr6k!lijAi71?p4Dz9g1QSA35zv%5W!=CY^;FphRZIZRGXSLVn0f!8}nx z{+snYcj`E1_H*0*4--opw^C7%wokM=WYnnsWavTs$=bR;5~!`645ak)!$UOcA2;-U z@!N~ViaJq4=Xi5&-|l?@0BxHuIld6DUO?{7Z^@S@zd8`sJ55n=o59 z+B%B{Ty_aCAZ{Y);P^t)QKCpsT|*Na>rc(mQAfc!N6So}80$~T926_?h9oyTJ|(&G zM|MJDns)afL69v)H&%{E2#H__yg3pmF%lE#`@zBP!Ornc5JSf5x4^8f`nuv5R-wr+ z0k{SD`OmQHZz88?;_PT);%Xw|W@KXjH}0~Lmyzn>NAk8xD_HIQ_KhBid%37jzA6lJ zO6hzu?52Ruq;OTd8Tyw73`W-{zD|77aXLdpcu;1$@9pegMsFteF#TYU9~LgBEc7Aq zAV1**Ht33+FfNNNN~%|(q!#xmo1X^7<^1W;bF>9Ih&LGAxTwQg>A{c7_V<0 zS%7lWM}&SS6gM7vpiImA4mKbUt)aZs4cH=oPqeR-Tq9PlFO%h4e58{$1uZ5H=O?`| zFN>*j%T!BjyU5-c+pc|%D`+PO!J<8Ld4!T9r62O}d0mi}3cm1rW5YtjG7rkZQjW4y zMQ6_u#mZy)>>k0F_jczr*z&fEI%9e-d3njvC;Wx1Wd6}X{zlx=1}?Tn=Kl%=k#SOT zK%O#C?AN+o2og4NblNA=y4lCCi~=W$g5W`A)z@9SS{F2^cDW9DCWIY)8h{kJQQL9C z{WOz$us8nz`9`}_16M%NJ|jR0gmlCf@gU)YHpl#mkqgMzprQPyP762X()yeU>Ab3l zcJ{gXm8NsyY!91_s7c(0V=)l)5g*N=W6Pmm0z9?B8i+JVVOE4@<_(|MreNKfJC<_J8d+iJwxfQNP4srdKH#ddCsOYfD{CUo8P4k zVIJ1v#lu`PRLGFGKMZf*X(#j7Q3$4w{sqOXbRD@`r1pVA@RqfuQeg@x=v!YN0i5DFt zsQO$4R-%=$cb6W~Qa*sF)(`j`Nisn-qQ;w^lMv1xofg09=O#cc3AdPRY)&y@2R{B>ZY1WESTk?-gE-qgbEWWr*kWW!Lx)*2Zho9M zVxg%dBUh_voa%@?RqH_J^GQc3i4bdW3%8x)6Yn*w5s$TJ)2XPEYMJS1iE$4<5#XRQ^BXJ_TlgtR7~>`J#t>_MmsHjh`>xCM+K< z#BiX8LMxv`;}C__$0L9_&c$9Bkk!A520ezr%YEM%ok9(DeEyw(@3l=o_vGgVNT4kn z{&YiT^!nSDNnTfpUM?c{7*UMAlq_QN&GF zse>_-_lyRv7dlqfkK*D@7TW^qkLBJj9f#|)6BAIxNSpG4gA7ra(>~ELUaz@0mPx)m z2{@~cKh6vX`0ejpEMwqm0;J0SRT=sldg;FAV4%a{{YUimHpO1oGStUB22ozTm%WCD z^&eRok!0e((xJ|TRFK(lh6z4OYSyN}SpTLvir`p*y5Hn_3^xZNgySVGqr9f&)sbFc zTJGxX?tD|wgr)9J6ajZk-~hq)x`bLecp5ptX-xldqR7B+ZS0I)tWExLWP)0XmTG)- z;tT6E^Ec*6T3M%ZNH^a}w75AZj0{qb*O0l#&6DYwxBd8UPdwS|X)A#fb8i12R<0|g0;e`yl2uLZYJ zuV3r4d854e$CHN&!XDV#R zM(86ZHptLykzF>EG`XB;MjDH==K8L$JyDkQ?oo4fVEt0H%Y4F5-1GXFysf)l&csJd z&Qt-A4bmC5RTIFv_uZ&I)?j+Qg1PdDsEtqptsn~d1=jtNy1)`Z(#N-fO^=$_En}h- zP7*f#8WbzdNOSxFp(G4r@ZKP9g-S0Vd^i(3$i z-)zsgKSQ+@j*6ej>7#~v>updiGElx*W0Z0Q>C#Ifp**c(I0N-Z|9~sxkH~N@HR~!f z(usMx-_d_OmlwFSu>}PzlQObGMmyXw{bcVl0B@Yy3 z7XOGK-u>G(e=`IU5(8U1TN0-KzGZw|A%Jm-mk#Ls7C}0O(g5tPX0Wg|UM1|74xRm7VV#D4+f>5dq&62o`Y|sQrT4M%deXtMjz*4Zl zu-&j0{JandY>mICgI5-934hrDOaOX_MP1!k@ldd07sxhvJDFF@r|zpl3qkWNiw!+3j6W+ z(ZeOIA8m!YdR?_~u8lzx1V94^f(FuM7MF!#f?>;r4vVeTzSpiX+ur2_F)udcT6V9h zPkuE~@{k8&i=Yh+E>fOqYGNREaNI2+h8a`VD9gShn`&b^$c3AO8!=iN@DqBXZd-z0 zttP2-=@E`;p@(I{a4Np9X^1?2J1O@mKd6g(t_oy+CyasOj!Ny6O{hEqK}1x-U5(eW zjpd8B1t-Rn56c{O^z}ytzc=WbfZd!`sxhTH{dh<5&nRjkkzy$~y;nlrRE%e$;z~ZG z^C7VF$Go}sXL8QD6k?aZ`_2s)BjEw9p8ZG5lmFZDMt0WLCa*@Pmo#uS01E9u3GwAp zrxVFf+T;oJ>tdm`I2??ReuD7z zuhKO&7B$25zK*`7?{%t8EUF`>JlTGzO}{)j<@99Z?0E9}g^+`o1#pL_XEkQwcvt(* z@f`+BBl7H)Fc{7hPEe;m1uHb$CV^1I22zg!fEdmJKnJh|-~saC2C$--NwDs*WSKGy zImYbC!XTVQb2ln_IcymVNKV%?dUZ0A#kT@_d9I|S_4zk>=_I8$<9b20lTy0TLxUTs z&Y?b`L^G0{gY}@yxQ*vXVPVClbg@FC&Xbxt2pJ-1Gc)v*x>n>K(qx)jmVD3cYn{iUXMmXJCU7?d-{s=C>Pn^4(LpiNSAA z_|-ofp=r-Mw^5*FDywEoQ`lgj;r``4Pw8!+&1n zL&0SPV_nLj12R^Q@~kIEnG0U8+KvoXuflU^t!i}k)?$e%djzyhU zeb}gJ{50N$Af>3#Q`C;d&qoJ7ziqQ=$I%)=(OGP5e zk%$?B*vuh-o`{MhCErWlp&e7-p~1fso>>gAN|~qmX`r+;6Pe6nI#rCpCuF^vDit9& zG2<~*Kx0voIpw5wY2i9-#}3XE(Y|KYFP!6a5(0%=ey}P^KjqR&4)*i$#~XzTnDK~% zrSK%?U|lL{uwO^}mV1c2iL5Rm`fv>;du(4dL+^^cg?^!Ii*+FTM;cG*hXG26Pmi-C zp8|g(q?L-pw*?lRPJ~QW>s4D!7mtOdp?{@V$^+KqRYh#V>M55h&4cqY!gX?6qs~O|9EYI@_*ai(!j$* z298Q54lg*##=_%YCy63s$0R{t$gJgZ>D=M1lFLp%O%YCT)T~UhVvT&sWM<2#w6zkm zL`G`Z^^`VH(Mw2y5U7Sh8H5Z@cd|Y8es=Q)McP>CX%DUsCJyMyVNUx(jv-l8w84>e zS#XSM4VK9jV99U{2fc*RfeudHCZ1w!kXKljH%WyH-KW935pARtCf#~g*HNp^u1*B=8c!5^34zas!3Apzp%e+z^!>3p^~Z+%vTngu@|2pn%S@bjOU@QcFz8)*L{Wyl!VOIuj|MFPAPf0z9rEd}_`K}C>R zix}|u%IGV&y`uis>2)@^Kmp`cr}y~SHb`dx)yax?v=iZbp70u|3z(EHC9dSUkH7TR^Ek$X0a&R_b0 zXYjQXo@5^R=Z0|O75{Hs@?1>BR8Qa-#j5R2;XlD5%Q{FY4{ zkAyE?g!%r5TCab=w80K}LcPtol(t3=lR)&5wUUbYuMByEupV!^PS z1_Rv!l|x`$1y=@aL)@){-I{0RVxZ37SeyzkY%v3lUyJ?%8Lg$}Ko4yEV`=cEH~s%u zGaDD@7ve@Q;OJ=JE@$sVVrMGo?ric`x=)PPdU+vn;CaTjWmS7$&? zm)UEaW^{TTzT6-T{u0>p#`{d7CcVZHLs)9-LRv_8bs@WgNV*#m=7`f^?ml&Z$za*3 zt3ZapE+nFTC3ECZT6(h-Xu7Q=%)i;KEUdJIDx^kwl>ZrAzRh|j{LcBYMm z7+*qZ)8)8e@tMVuZCJb3!z;+Z$f=IACFE%Gl{c{=IZi5xLb8urMN{Y;d=TFK}OEo1Vakh=aWj>DDSGaFW_lNyi-SH8J0s zpay7E;=^o5IG(E6o)n*^l17rw#0)XJZ~Fl4y*X#S8et#cAC-}+YfzOZd-s)2eQTv8{3&M$~LSB*?r0tTd}!7 zyYJaAi1j&ii9yfyf?9hk=qW3fTReLL198v=73v7}9OmPEtp@Jsq0X%tGj4g^H5l*xZpf1vnr3EzmBU@`^?mp(AHDuR5x%h**=B(Iv zfh1P~_lAvl*EW!2hfdl$K7#59yKS}H51fO!s0^+VMfgOuGyzIZa61U`B{OPVl>+QK zLG^4ozJ9Iq)dnh-RUf7*AHiP2?|fikMF!C6F@P6L{&TQm`9C_opo@hyur>#DeqlS8 zf9n{ZRc(}TRM31}zZk@u2z6^|!PKEqZYQEuE9dqJy3c`8(f93hY@vLsb{;B92P=Ip z_^?%iza5TWLfp*}HRE%QNXbl<^#vz~Upa%3xoPja(}erD(|FSjS;ynu*2J6p*z*k; zY$GO9;{xLX6Yhlb$_RICSSE~LB?9UAKH6KkpMuk2NSvw9Hp>KC=Fx8_%O*u(5!v0` zB7^C`VV2zYm8U-Gq8qFzoI`9C zw=Tu~(4xE;==2G=@g&f{q?M9>NwSE`H`s~C*@>$+JRDM3{+1P$2=AoQ&{7dS@R`XX zc+nle*h+#`!0E;76?pZr>|jD{aGQ=!s^K4DtU5~#m%%>=9 zc*u&%i+48fv(2GvY|q%vmwWI_^{N2p@#AM0Rj2tuoI+%(?sD%Vp2KuMfRYDfoX1_K zW+9LNxB`R8_VwaLf0!-3Wt5l>Y4z5E2;=tE%B`Yho|Ip$e&R_5uSKvzO|P5#O!6$ z^t-+_H}1nc-7m-5asKmH1vPgGmPSWI35n^{_TErM#c5rwww9zuN_w?p?rr9&%BF%1 z*LhO@WG3;OrBy|=Ia_NVNY;0Q=wki8Kf5kI4H+zcg8}!RBX!>-XllAum&S1)?pLc_ zS(b~W+Ec6eEHc6>ir=Qr>w(OJbVr((I%pS9oQzvK9f3y*g;g{M(&md7H?QRzH#7A^ z;RZadL+FG_1~jWNnDwC~`Ul6G8}kYyC*&C6wrHQ?_zRj5W-bgT3$6~OwX`*pjY;dp8=&$vE^&)i6{ z*uP1GX!obF5xR)5?m5D?c>XC3`+$V{K$)#2OBWe~FzKy#hO3A+v?0jT!(^CP@|i?q z&jLxdr1^d0`?3MtJoFytLaWRv>9Dc~xJX76#^Cg5VSVy`*blH=#at5b#$<1KrD^NB zNWley8P)xtGSUd+9~s`I%aH2|x&sb+VJU9II~PfXZz-#0|+3gGn2zeimk zy^i;8B0-wNeiV|L3E#Hm69k8`qH30IT6?580K6rW(d+fQ{jnFWBS zR~lgVZHhM^cqW$~`cFZS=}$pW&C$T#-o*G71OS7ekh#HM&EzAMem{|{v_z+q6dfR+ zgMkif+b{^TDHdR1SVkrj7MW`fCpTkao=np+=DG~LRCdqhCBG%M1qv+onzYWGf>QRK zRXdqYWH{}uq;vT`J@JB8M-IT8QZb;fC{-8gYjynsGZZI78i;@aSWywBB#vZ+Q4}eE zNcmc3h%zna!ioF@m7_EyPK&eC5t*%cOp^FEjS(FX;i+A!o(XOjf61b&XqggD00NORmK z=RhsQcW~5MdhG7;TJQ!-nUxmq?F=KjZ7-nJW-1dj`Jua^$*2S0O%KN}X;1t}m_=^c zpPOld%Xpy?h5qP0qDNwL0Wln^O~YMrXgB_%1cZ-Ed5#gZ@75^b zPqDneI5Jp_55yL%q7XJ5&Xhn`$g1h%RrbYBA4~;xB5^oj+dOGz}RgbQ?;T4a#MAY}31d>QE zMAV=LPm@Z5@w~WfvQ)WzZa|pL zDqS*oD;XBbC+q2g1*Ee6GnQ4^kvNlvMP0*Re23wPmaQzjXP}P?{dU8=F^X`ATx-Xv zPU9JOOqY8i1EfFq)W5T^3u&QM|5mV^+H1|L!7r6^k%NcQNg z%-SPbym%{3e$ECV2GCpc0OToVSTnF9(?>zmj6WP_c657a)S`n{zZ<5IH<~ylr~8+* z1g3J)*?pyItzngKHw`%q5|VnSzW1JHes5Y|ls<|jYc3qqz=AzLy7RM?JxmsUQ1lXG z5x%D5r(5O$r=?{yuYoG)Zb${}BFQLnU02yMqLQ;RDQc%=TplUgVcomF@@d;70iH81 ze_9$bNku!5@77^Umjvr=U;Q%(i5^giS5Ahgk_Y)4Hv>n_w{j~Lgw@<4e78 z-~JiPkZC(n_lrM;v_rwR{{5QOl#dxSqVT%?yt{7_*GGt@c4{NkDei;1oj7;i_dSP+ zZWO8-YZ_nPNUI48?MU-JoIIZU(7V6023;y;jGtTfZiFuft0PB;13dDkR5a)LRYS#H zbzPSRI;-O!o%N;r&wnIW|AiPwDvrEJEIbF)-s)Ow*Wii}8Me3-n?+pUYQ*ShHwP?( zv(99)sB+S)M(dH@I!Ne_0x8>|c4J^$R3dtyfPER?DIdHjfw zrH7=S*V3Z1;iLt955LYN;?BJM?ZG={=8Vxgj!c(4^AnFNlghHbnk9|Mw}s1~3?9i# z01R^q#A*7G$Hvy$ot>8CX-OS%!Vc`AF38$ z4c>h{QLr0Lentsow!VL4w$y(z{%cYbbTKsr;``rHOQhm5ux^0FV`Vf`bUy9TF$*hN z=gqKRE>b;rtB7um?xnp&<cL3SC4rN^}9h>y(@lzOD{XXo}jV#Y`;LG(sdl~8JUe|l%z|NAr6^IiQSn>>I1f>Lp>uCX) zXwnqo)G1f_Xz)I_4r$3`y5ryk`J`{?@n9zpQr~z%f$!&JC4Xt<9+%?qd-KlSLUk%E zoQh~)@tkFoDoZ3gjM`ky0X9PJleBz1RCZ*bA&g-QR~3ajh=47E)!g-v9BJ|)^-64g=Q(vUX3j~Qk7-VA zHi`>f#n9`RWf)@JZXR0q1aX%Th9fdYV70TMFr7+R3mYUd+~L)>7V5E7hk=6Yra*F) zm_AD;MH08$?G~jaVxSofDh(w>y-#g8%tR*qoyD95Z572m7{n$FVn^u*y_Voihm1;h z6Dquv;DhhG!yaH0^Q4hb_uwsFU015}8sK|f#^>nLd+~B6=wF<64+|`erUarBqw$0g zC2x`QbfEd9>N9E!CAmDJ337w$Sa`hg;>-jaewFTvQTXDx;OAKb>ILLhdXj9E``C}) zwACdopK)DTpXMQF=daaEcot0h3sQ(qYweMllQVlNi{$6h&W;taAx8k%a=#Ph8wbNJ z$m-?5>E*%9JXF3n-ivoM%msY^6iuAb{8g?n!M<~z4V=Ef6KcBato;GTBI7RLYUb>4?+ZDX;aA^vlRJ16!{dE)=5haykAtOK z52>e0d1AtqmNn)_?oRFYVm?jnSdb|I8-!Csh-7iMGzp>P1M2PPT9~bn=FSAJueuw)+j{STI9sc{Mf44|E__ zSQZ_h_#1HdmX3C!&nX&G=ozS^-8Nx&NhC>aGiN82b#NrcGv+m-NV_rR22ZRc)W%xU$Rv0t>1?a<@MQ!2ibG{t*Bp zm2Bi@hn=cQtWDb^5E+4ay#${Bs!o z>}~C>|EnPXaW*i*;CAw%ZZFHpBa8gz>FM$atP=u{Qe8!#sSv>GHVCyb5&5W&1V-2wn)Xe`}ANCAv(@^i4& zqmtL^3n#Py&Hyd8k4@Mi#K{a!13RC;;Z@ndCp^F@wAt%37FA(nKUz&k(3IYs zQ;KfbcITk{;tS0kd<3@g$Pci3w^MP8Lzm8U8HZaEC^tJB{T`&)%TVOgpT>z=#w6NP z1WGUr35i6_-Q{18;KF_6ncd@;T?{^~W?4M=GmQ9rp0?&{pU->FB>Vabg+He8eS`r* z;VslDYv(1$5$^OTgKNds3SYGTVQmJCG=YKgd%K&*I58I5$J=@7V)wyiG^qo}24X5P z_2PJ(LS`;eIms-E51U)!)5|o3BUfMf6BQz{*K)jyFagVT{gCUPd6fjHiphdy7wB7j z3_vW*zs*`8bYUnSCAAhWC$thhBf;J2H8`fwPB8~Cv@XVAEMAA=CnSi!` zFCj5a@iW)9W07>K+Y~?4i5AY-DVGL+m@M+{*;02p(3FmyP?Y`IR9uJb0ZL_#!YA19 zG0?RVR`Z8^B>(g4_1~#I=TEZ#M=bpRA~i_c*_!=@%Kj-e2nz6*D0e9~EDyu@0C^j@ z%o1ApTUJ1^1sAPU(yD0->1MQouOFi2Bf)Rp#&yE0&j;jfAAgQ=ejIOWx_p?ZVt#Yv zma|?2qSQqTZUyrVeI<%8Ko}0_p!$skM1hn|(&bRZmD62;08(vW@0kn$oGQyU@Fh3M z@OP&~g&Vw;3=#W_AP3jh2Qm0gGrO`t-i9DDx2CU7(5SM*#?GVA0L|QB{oV59ykAu8 zE{w3k>?RzJ*~35|0L*uYQmb{k-1HPpQKOvsi29g-b!Qt>B;G+W;WheUt9(S-feZGb znyR#NlAEYVBtK$#)kXizUC+4V?A%}FRt;JrB) z`prp}mc19CW}O`PfKr7+wlw9yify>#dn=YYgLm`D_eI+r)6UUE0xj->Ne6bZMEO{Z z?E-hwIDn%%Q7)jj?lNM^S3xN6P>cHNwqTbC#A-$ZTje-eRLh3>r;4d)lM zb4F6>-SLYm?J9jR*S>)mg_8?h32WAj^aPP;Bb_OGYPngv|8(Y3&{6d45Q;9UWB znlpu8o<#6$oe6Vi^4A4s|BDICyaAWFMx~MNyO}Eh=d@Nv zDHz;)F-P#8D~;CJ#{6;c==NrL3>Mx z863>(ax*R8UBBEI|M^EU@qb$debGSwXBCvo2KYcXSm1D9S=$@%Fkw)vua<&}>u>1= zvH(nzeI~#nXo8)6F)MTlj+y^ za6z!TC(OXH1C*PMrwQePik#xB&apj$G3x6Piedc zbNV)6u_5%V3G+E5OrE7Zj6)3-=r}taKB5ae8W(Q{S`d@BP<;~_M%tCMbahC4vvocI z=O3Dpo8IjGX%@9|X5HR2yikCgfHa@OmxLv<9*^3hbSu`o<*c^6HzV<-;TY1=ck43cv~{;d={ zzB}K%jH}rimTWS<@HTI^X&~Hah;4a^vbn` z`i|t?BPdUvxa!iIP;DO8ww!eTAj?x5ND`}z3^jq9VZE8$(%+X)PH!dnrDI+gYkT-L zMg^bG&klb>rx>-MVfGZpCye)5}ju%0=5kdooc40rMoS5to(K;ngq|q#wkr679sXs|bkcrjr+h zs#TjMrm1C>Np;8zMAi1zsYlJ zI|i^(^qdNH-FUq~-nu`3@lplF{9_fA;ZJey?-=*{SSsW12$!ie_EP_UmT5VecD+OE zK;r8ZS+X(l2W2#5=r=c4loybmoN?yz?=wk0mc`+C@O8WH7C;T%>~dokh-81pLflNx z^%q7Jq5sjAdUO8J#%}l1r_~ctAEh!h4|+g&QMj*n4j0aua_Y0N93Gsvd%>gz|GPGD zWBcyzH?o?I5#bo3_TRhF;k2+sI)YHf)vq0!QinnsK}P`u`I z3{m?Dz`u6{bTz(b1rxe4SWl_!>nw5nIEL8g<R8vZH1w=5mJ+n|L;AibB`n4&p{N=%}H-#F}OW9NGS$ zp;r-?CWHh=lgPBO)Zv6!yCu>Je{2ZBjp&CMj?6G-q~!uq`p*RN{^EX|c`SgBkxzNn zV2Wq0WNTvtl*#RnRYr~hH>UJpVTXX+3;G`;F;l$KlbXfm*E9P{;ZmxSHZ|Ysrk7@5 zaf;0^C#EbSScrA(b%`I4Q?Kf4K7XQ*8MT~OgNq&Y^A@Yz^S_5aSusQl7{Ws)Nj=^gu)w?2Zq%Ml|IeUxYBVd1Esx`DXI{|J0Ny)u>@*A_7YOmVa=^r$=^khY&502! zsYCGQ!e(2r=nXnaIAK3Rzmx&^C#y9yfqpCb$Nc<9H2KeCD|U9)CI+_uGiJB^J7%9? zloXaA`YFhx#(^NZL7%bMh-qrO9=V2JDEu>GW95lSavG4J5cyEB;`HV-a}0H4EEwa%Ioxu`cezaElQn1H3Wz2<=P8!1k&s6roIv`8i=2O`}T{+M3U~TSw|KxYSV;p znXE(T&&Y|2HE|%4Z@xz2vEq`3o7tr3z5p#gB%SKsHJL&A&al2V4gH%pc9Ov@{sVEO zo@cnC>EY-~CS+=h0${RLqsDPlSK*Lle3|>k7?7;36TRZed?KM29ky4`FibKwNtC79 zs9X6S2FU_zYBnl0k2@EvhvASU|D2KO6+s=%jp&Wv#aMVd}#b$ z4a^@-aiAccXLQFz%5uI$AN&!LPsymo+LoTaLC0(``zJem2lo_Lg`w8`*qrq!XxvJL z?Lg|igb;AO|29`GqXb2VSR%;!!#Tz<1jukNnb-HwEO(~ z$tg@o@?x8&QZcWY#0VoRw8;sHVy4@WO#Vy$EFI@K6mmcJ|3EZbDtq*4eE$Ax-}qWQq>(Pjj=%MI20Qo`!OBEn#)=zu-h zh{_F#0^ckNK^fp9W^&_B=d4#l@MTS!f9wDdEU_$^?`*t5gmmBkmIFNELie7BBab*> z>qC}+;D8g>tiwBr_h$Bj0~*|)jlg<7h{jHzbLV}~?Tr60e(4w|qbpp+U)`dg7`}Ru z#^1>Fxzam!KczEEoQ21Z<{jn8;6!1+*{(??OSMWSEvKoEZRd3pO^$FLeKZtqWQ6cc zUxop8X@-r)w)xWCtYDMzs5%qtHb?*UMyZqcges8{+y;3U7H#awvBEU| znnXvYwd`)8(XL{C)UOX;Pz2Uax$y%JL^#gab6ZJ}mIe6gKMjvrvD9W-b~9oWDj7GQ zd&!^L?*gKN7!=50@#}v>VwF&1vC9bGNx$( zb5{(A3trXHf()9a>Eo#Jy>)|M($^7L*{Bq2%<-g%mAMFovq#HY0eS$NvEcJ2_SWM#t9NsLgWhC5Ez&<*9;C?rC!#`Z}tsO@acT@t<83f5EK|!HLO^oPLvLy8BcYe29t8#*;Ufqd5madF=(mZFC3r} zkIqG8eT15-0A!P@$u=t%W4DPRVdbbKW%1$<{j&K8lDZIF;)z3xpW_-41#}Rh`Noi^hBZifh(1^1s`iA;4)shgJNT$A?|fDvA8G64PHtt+=*N>I*GPFCN&PJQlM`aNWR68`2SdY$LPx5 zt=qR^Clx!X*tTukwrx~w+qP{~Y$ugeRI#yQCnxpad!P3`_uf;dwcF0O^?A+tJaddb ze!Y(?+?e?c4y~=)S{|uSjHOg@gCc|P=&&f{`?oF((XO*jLv4xuC6=@8@#~!}5ji#= z$7DtA@|41G`fojINflN6dIk2^S3kOJMp*y3gwm4t6U`wPSC{fwiO9;#& z-g?a1DKIG~)DG?(GL3o7+HPrI(>D2%^tHEA;%__r!?AE5NGV$?{MrfZvS8al&+8z2 zew#2(&=vzpuK)e}vs|u_U9{c;RtxD@8%; zppzRSm=h>V7>;R_C=cTFSEkS_aBbB?rfnvW)>+P5e5qFZ8QOgr!{A2Tzsio7YZee_ zKBR0%_<*0+j;Su+(Z4MotuF;jsk7^~8Hc5|o3zM0_z|eWCyeI%&|oB}G}26WRF~Le zZBh@Mi0ecLrG_d25iCu|(pHRM@qoDe^vMz^U(*SVj5xMIEq-Z>g@xj?)Z!|(>1lTx zkjHr@Z|);4QfFwh;$qIm_RtME>n#-tr#3VuA<`Pf9Uo;ZiYuB1Rl)qA`qoXfF4lFp zU(S5MfcJ$8g@^b(YIKRJh)j=K$ZGPkb}lyVJ$?eLN&AdQ)mxzH0mdw?7^8pkAKo}Y z*>d_%z?jKjJMF(V9RICw`{$$eKg+fa+5Z5?HWXl=tu~?lk}FISGy&3&GV{-}4gC>u z&$1Kuc&DLyjb^+M0PH9fB`gRh6Q-N~NX-kxaFXs)UVH`OmdIgd`hLT8I5~1?CpPlM z)=+Vn1v4Uw0h0oAmvLU;aTYHC0&z|ovX6=z3YQ?`+e~Z=eZdiuj2*@R1~gI3G`*-p zcptVLHGR=;xV45797{1OT%c8pF0)c5s@4=Hx65+F;<*><#;6mOs&@)QLZmdJLW1k|m&+yr4GwDq_g|t-JUKfv>#%LjksE5RVR~Cy}7&lBx?P~M>P`DR} zB4|>qQpcJ(3YhOOtX#bjY2H)hDY#~>7+s0EQe$PC05vr~q@%1*u*HE!S#;bsbHx3F z8&9z;#Pvb-66CVb(Cj`}B98{WY?2OQifYNRdzzHAP`9fmCN)7Z*UnOBd*#eGBp& z0g`$b<_RK?fGrQg%y}cmpgLII!NLysi z)amtq>5s08AM1b16a#AKW|cR!x4gRu^6ELfo_zp|HO6S$Wxsyzv0tmdg%HGL!f1X5 zacF9z1HsIuH`bgGd#1*L4B1g3PSUj`wT3OOfgP0LzJOU;V3(*yd)9RoAMfhn>Alot zhrQRqprYkev|ICc*WDbLeH~y%@|REOOeH*`xRfXhKR9*ghF(f)Qj^T3+?QFqvM=+f z{Ll*%YKV)Ufc07x^o$=EB@z>luaKMvn*@vEnAA{As)zF8sFTCb7i)ki!aE%8A~rrn zVS>7l?*$0C@oN;S8pSjZQ_VN(?W#nej#DJ{{8K{j{ze?<`n-w0{PiaKFKg+4bF2Kv z`S3^j_ylzR?K1thwKP~!iw;Bp<-MeMVzuID@x^kA4GF7zmG~eDF)hMiVCykfNApJY zMmZptJFYDV;_6H+ys=VT{BD18((SWdoc8eg?h91shY6MlU4mkaVvH)?T8IjT3Y!r@ z-l5#|ZPOo;Gcay3PBbB)&fIJasX5jmdDe!bCRyj!0B*tg(@YO0tS`{ z^o6vw-JqjICT*W{I0XeSwMNWac?LJ+DvY4=BU#ll0o}&H+OfB3pfZ>rSE~U>ik7LV zs$(R8K$q-LkWI*N&2iASS`lSaK;IPOx%HD=toA5bsROnUWS?&g`WRv&C%L$ckdkjyW|( zW00#hWd?;U&x>t}B*bh=j`QV|na2WHzQfm(mBB9Od&U`38&6Bf`P81?b@ZGn{q6%q z9D%Ib`nGdNSllk@aAZ_MR$sjmCB2@3tX?8^zO|GQ9M5B@LSdHpfP&!v5ek4nz9mI` zKINXjK4r?k9Xn|QPmh07{{K37$;mH@3-VuwduIjBVOy3og)ijunt~w-TL~rGXHev6 zT_2fjMpP*2uF7sLY)$jO=|4-k62K#-KV6A zN=eGfQ)-pjh7dN1IJ3I`g!FjOW?Q&BMXfI>Sk_Q1?nR-AR~r1MP6&j1wKXsb(& zq(G*=$9hdgR2`O>r0hM0e1%Bd*t9-rn&PU=UkKWAFEVRNx}-0 z3F$A|Q);x`y{sA;CcsIh{%hlt`2?9$BDc$17bgaO2eW44_^0xGVB&fySe#O32S5)Fw>UL}9Gb|} z_+R01x4WU&QQdoX1PGNci#K*f@P{pRMMpyuFD~TWU+g2fqa75AboXw$@~cC!oLqov zS-7lYNu+W|v9R-nuTJdw6|xY$R0@6yhog^;7~w zSpm=nV4w)Wnk;@aitiF+bzxv3g5}zm*d4`IAx0YO0O^sR(`_5GUJ$S+cC8!!rLEL8 z*{5%x?7!qbHh8`BUZ(p}o%Gr*Jf`8&m?*dFY8C+p)Gv5P#-h`bDLU{CG`HHt` zedYN?tW>h)JEdd+3r>*bEtUm@m}}b^FMV+^)s0L0p5+S+*mio0#Lg1i^w@l56UpP4 zHDL@*B4y(G3|sdYDGD~T1%;57PK%3M^4@B&FpyX1_Z`A!lYYwCVz{bOOc` zy9^$h1(VX>$Wz};Bw@1hNwk_CH^%3=Tg`%cqf!V@cEz{}P+tQ)I2~)0;?@2>=;2Q36qkIN(atRx$6B3`m_bHLVPJbWk#nP$eYg&!D z$!{*AP7-tNnMnQX7=A{DJ5YUE?$Q2whtmA55)m+Ta&|N@a{d>R{I8p|I$29?;m=K~ zMeENRLFf(=FBR01m!G6ax!D$p7NLE+rIlf8#ZFKzp?Ssil*e24xOMdlVc($z4ks2a z7(&mKwXrunJNs<<{rT+;!jGcs=tol!7*r%u3Q3i?dNM${Uz2Rrfhg*0NWXbsGri^< znQ-sd)?f_SLbzq3ID3__&w6yQ41_JXjl>8eQBZnJ+)!H-ypa*_8^JE(4r7kK;4rr# zV+uXtZhGB5J*5${8zwEeN#o8>udtG-W54QXT#~icUTLN_;WB6(BDq3n$@9_A0~<`|K(CIS09-Mu z`!SXKGCczb<0S_U*UACh2$VTL7K0-U(AtDn^qH!1oTQlV6Y^O)(7dK*v2Chkt-?OKZcc?mYzn#;5<$7STHtUkXa)|R5|=@fx4qw){!EKTar>YCsLSvg1q}P5IkplICL7R3*sLtxb!; z!oOaLjVsrUM{J>c_nE>hVQmKuAxEYAAgp)k-IOhmHiW83T2TT$GF+H588Nqcv+h{_ z3El$rGJ2af2UNa9k((h~T8>I7JUuBzt{9`{EwIQX+RXGufQhU!h)Q*ncfEd@y4EF3 z(-<40S&*Of4a11o?5HxAnP}q~GaFw*iI3oyZllZ&<3Zl@9)0sB+Whw8r{E*X z4<)&~C&b*?#V0C)E=y3OMdgbzax4Pr+oD_Zz`{U)0F zJCGZ&d~=8>`fa2len8M)k({os?82DqQZaZSAG}>h&A7m@-veOqfdO#BKCdag;VqBo z&R`sKs3vfaTolM@fg764ts(o;=6zc}DI8L?#{%t;j zieA#E6&T@q2gF$zW5i)q?StSSh8&nicnFgz(d&Ze!EO2}+v%cv%2`o)#T3VVOTDste!ku#8d}HKW z%M=`xBm1?eqM#f*ro=u|Mm`B+i9uYxttm3qPynl4*kGQCMX|908(PqkK~FX{sxV(> zOg#i0lZ3E$rmU1X80KUq)0iMN3_}t*USU?frop6l+F!~MTAw7j&G}r(Yz{#~WH3oY zucOoK)gO`^`OIB{_;v|NWf&oZYPehM3@8k9L)>&y0p96&VJ8$fxaWZ`+8W!i)l0ug}@GJE+3Y zbyGW&6*B_Qv()<*-c!Es5@Cw+QKVr%ibf@4P6-t1ttq2GZAR!?`UqW*^O>lkS9F0# zd1{{dDBMfEF|y;adFB zIdxN%9&0tELqu}S6|*jyR}__30M`~L?LIEYts*=a>lvQ+-rn-mPm*NYZ|x6C9tt@> zJnH{MSU-EK5u9ne~08KzhpAeP^OoXJ;4i~72@<%r?hXcy~9vft`DJDR*NV!paGrL$Rr z!iF%eAjj)RS4OQ@fOu*?phG!9p5x?0s{krWY>2R>C#H7B`|5hSbNdE;G#-|T> z%6=OPxUq$_LuliER%hok;7gDLjuvt4;nTlW)NM$%^ze^U3WhM>vG{X(Lh@IV{I3nd z|Eh%j8v%+=So@=d4fihmtf{G1U3!~Nutd)EO!!Ji8&4juOpG^@(NLwK(b=C%B7ls9 zNAgb2(5TuK=lNuM;C;wuMtk_Sdkpr2(9}8VG;Nll+(>f784c4J^IICY;t^|{=q5je zBPlcn<6I~ni3mwI>99Ppc?y0o_qU>n8;BsqcHe#a*k76P_JYgk%_gXLFYsJFhgU0g zZYw4mJcspsFOlC7gU?2H@6kFrliM9~T6Un>v`LJAz8cAnk{k$1BVW6y0XB|y!XRFt zNu^tVr|C1llG{I)REB928Bez}C*aNoCWLK;6;q>hBrQ)lVF{;t$JY)V|UXZVxQ zvH?P|fvZejIhWRq;#MC;vv7Oe+D~>V^21__8zE1Z&wZw9%AEV+iDgs*6nt7_ZL5 z?quskK~M48I7v#2AY%S+kO^Psk>|NAiXL*}@a#9wHmb*`vQ>9pu8(he-7eplK9%ap zuGT{cyzU3yFOc<#$;;V%-!~CrAAf=KtsR&d@I^jqEY5JgQ6HFHS*pV?s|vB;REA)& z>w+ZPH-UTGgBpNtgZ4`VjSy)2+e2?l233B|@dF44kr9+Z8bLyV`o{@kh^6t*ey#Z& zan3`6_gjF%5Jc(|NfTxXut(a%Z;wIB3Aj`CFMO>La_8)4`kE6Cpbj!4;)d96hnx{} z2kM7G)C~e41*H;p!EWzE*7CcP^jBIM2ZB9js@&!s)MU73!>@Wv$oR1lp*3wTf8FU?1Cv(qi5tm@Fr zue`$=M2cA3R#_|r#hA8x)2Y(?x5}1i?qi5j;;@h(V>m695+-3V+(w8YD ztR^MUyDaF-W13?c*Ky7=IyZ9`x13fmZ1QruHjA%p+=RxirIXg@-_PPY8V%1NQ>Kabc zXhWid;+il-u+c;6nm{uGXEYRv2(#x@uu13&h?|`~=S2-);!;G!T9VDi9-&xhJaAEJ zf1K1)-)UbKm5>D&r2zpahoiPb7Qvuvn~U zYSvgvnt0rJ`wK`HvRn)7Bg#sVSb+rIzSi(xnYVju3SDJ`MT|hqg}W>UF(DI~UQ=D> zGH1C6Z4}L|febYZq)eEA&P_m;Tf6Azxb)dZy|NmnF?zxbO+-gYn>r&VWL?bT6xiNd zbx;oqmE?aqN1#CDW(P{Mva|TkjOXRA+%1rwl?N#N-%`>`HZ~RH-GrO1WtLzxJ0r0) zVkeq}6^l?r(0^IiXmH|}%TFdf60q#vim8Qq+-L2UVm}l(v6fKmgrj-t?#UYhqck{R3$#HKE9#Wo{mPV)ilo1;&IFtKD(DL$y(c0$w2EJ zFML$gN?VR5qVhcMFYO9VzJSk;Ow6GepeG5_AWr1SJrz!SMo+nRJZq&ZDjC(5?6-l~ zgAx}p{rQ>g7#oS|j8GIu*5{$adLd9IEaU8fRBVFa9(U&&qo^|xSmHrOqw+ha*_}Ny zy7=fj_2C&Ij%LC;Si@rbVWLLIa-#mR8_G%A?Ki%|ah^J6+(D}l2%b_jYQ|8togVL@ z1mSL6P6+hU&UF)Yy@U#q-`x=1)Q49&>FPl>#lMBo&6OI}C>%NmtlReMEgbsQ+{JWG zT-}vtw(8uBXyOG$y>e?z8;MTXvuhVshP*}!Y$cp@??Rb0Dxk9&aqfw`FwDvx;-1!g zd^n~*+?d?J(e`zm@@`{M-0jY&*z{H_5>qn9!itcuf>k;ETU+LDZmX*;V@b}OP3 zmLflGzurEkiuCFnMVLDPV^3*yB6Fm`mS85LkJETU8C|`DR_u@b?f1ESpkRS12d8;S zNRP-km`70rgc$l2`3tjLOP2IW8_YlxM$u;uaCA;Nk*wz6_+(RxZFOR#h*%eT^&I(V z|AoYgX}`ns%~}l&Y%}QrRTiR&JXQnK>FBf=WZ0j3J$JGtiv5ZKM%(Vh8914IcuIw1 z)5`3`)v}tVAp*F(N#?`^5Xgv_`u-D==XdQ0Ob6TR8Xh&{?G;H*J_)w_yg01IChti# zs}1Rr*h(ciI7k%O=_SP{oYNWCj=5=ZjmVa+gsmEt(D-JxJDFcC6+z8e7hvd`zcnWMxIeRzjXjnw;McvDmZuZJ@b( zZYeq}++?M6XzZ(5@Rk-Quvju!R*a9Vp_J=bkk!Y;Xhu0R3cNfGzYlk>K}dw@E2aOH z{^KSWd;^2oY^e!jRzwrSRTV0vpnO`Nu_&m2uD(7>YfF;Fgga~CyR zHqw|I;?OxEm~TFD=0wlnIJo>tvPupw%sn+YP_0k2K;$9XsJ>1(EvXa%)i6Ur@LuI) z!~!D`31z)9B}SBpNy}pcqie&Mi3<%uE;{>6Vg`>xyFm_v=adAI2J=3R4G(T<98v4@@zv?=&ChOeOTxX*TKP0KL0xDj#WP@Bbrpgs6YbCVA zPJg(TH8~M(3>@UXUq}VH?^&_hX)IQth@`Hp1#|Oh4yG(C+Qs=P4y9Q$Rq*qA* zb>^ZF!tkfvY~1Y_cSgb|7RPm(Gs?BW2OLbRHRtCG=(VIveM$N%Ql+^VS+{R!P@;wm z1pBEIK!;)}{Uh2CTtq@SUPK|^s6!>=1mZqaw?77eetcuD`}(R7^Qz;!28nu&kXO-c zgLS`7%E#~s;hQSw2SKt7(YoKB*+=&AC8f26g+*@QWDV+GK=Vdd@@5Ed!riLD>)@<$ z%4}UwCXlcyqOc}$!Wyv(^q?>tVoTC?x|JQYT8+{SR6@}_rQCJ0jTf;dd|X}JeoB5J z*~T-oLCln=$op1p!&RCeA2FcY)*QCJ!VHHP(UlQ(DH^dVrMQdI9A89<(u`nB0WGx4 zd{)vnq0>BS0>8`#XGLL)oed{I*_FAqkp#y@Zi~LI)rHE~VGyw{IGmr|(28nHScZ$@ z!XwcgR-g-RM^^SieuCFF=Rz%Z*SZN3iYXtX(*II+R8!Da2*BzO@f{Co2H;r|wa8n# z{m4#&LRVThU^8s=;TrT~Gz8rgTv-!SNXHI=yAEenek{AAb6%SY>5|N7#pD(K>EWm8 zEdq579x=I1OR0&jxXzi;nX_XXilDfzgW?9)l>&KY8nG&@*s8QBwc*+-l4FJua-#a1 zQk4NN8^uR2`~stR6k>}l$!!CrHB|ZrLxcy&P0131yhbobnXCM)+z&y?5*xDFUML*d zgv4Zk@sX$49nJ;xdF##idzT*}zCRoCw2tI2dyGwfdAj_vk?lLs=F|eb;8^*bJNb1Q z01$Zx=lMDdoDK5}yrdJ=RIy@d@M^2rHiE~AsygY%7t7hOyK9W9Qe}uO9g&L5AkB!? zGrTX7IpddKe36b9=-K(U@e+_K$0cxz6q{CU($=mO%BjRhw{Xaj%I)+!x1()+4uvbU zYB4$>Lc%X-jyC`uL$hw37W={QhZ}2>UmW3jd-OlXELOflEKVg~b3|GPx3=pZ?kKZK zoiIx7Il9~F7LoMI2U5+u@{L}w3Wvk}$dtSs-A@wcTkj$dFJvr^_{=1hWN^oL-!ZkK z?O@cp3|RfyX&~ajrw_n?s`Bf7`$v6Rwx9pW0rMG{`8j|7--p@!RT5VE+^u74_8D@mLne~YU4Fj26Hk1Y9kcoW-=K1vAtW^_-Bu zsG8p;CB}pK8yk3_;TCKA$>#7R-$%#DzEc4U;#w3_ct3XcDr%&T7lp2WnGokOdoykp z1$BHm7+uICr(H5%EHyfD2`g@vY=E|1p;4lg@tv|`p4d`4eR z9%BX;VohC#{Y2&bJ;jMUwxC;86U|8K~?xn zzCUeJ(OEVt+h?1E{MR;#;jbe7pE%6_JPFfbv)>Jg;t&o8z~iORWG!e7SCqx(X*u>c$$f3eq5 zZ$eB>)S4kqS36cKO zWH?|SUbsrIs1`3BcsJ%8se^9+>X!>j#4IvBY^vBgvycndOzAYw&=^iJ@}6X*=+_hJ z(L;EAh5d?684Ff$cvL#0(C#54G9996A4PMF!miDknv6ba^oCQ!Wcs02H%`E0h9(Aj zqGz}2(rQtfOpC{I9n(z+2Fg-NYH_e9ZDFLr2?I+me=g#J%SG;&A^BTJTGkoT{Kj=` zY+NGoT<}JO=!Mv1kEa)!7uh$k`)JQJx+|U~l3As}H77_<)3J~rgHer~!*TO9%A0cE zbgWKX%d3N|$!u)h(jj`sjvJGzP`4#}2^6GuEU5i133_)_cwSfLu$>)r!6m0Jt0}6W zodg}%N*2vJ(o*^;hB}F2w#Zn4`|Yj?Z1ugG2Y8v**$33{V>{z5@h-t=@5Zrsa<)-* zTmw{nok;_ke03jNu9==)E_Iehsyl8hd)B_tW4p0-$)(6Y$O_Adj>s*UX!!Gy!Jl*0@MCxeKZ9zrBk zEk)?lFtb9I@baJXAHr;s#5oZP+@;WWQORvV%QIq91(Fi^(9n^Z?jo}`OT+xoUI9Nu zS{|+vMG4oh4?57kVX2UF!;AGVXrJ;Q&GMU-IW?b{nFgq(l^fz-dqXxR>8*ZbL$}wh zR?|Km11%z>Fcym;+W8KU=OB*le1;KgpPmwnK)G7qCqo@Rb$Lsq*vAKh7b-#ba!;=D_Q(v|^1L2wso>;va~zc3VkjaG?ea5q zL22kL(g`j-o(_V|>;8&1xbtD2Ar!Tr>YsE%MQ32hXOP4M4L@NM`Yu>@aJN$SnOpkj z2>&1T4-{7*7vc?!MTq1{ftfY&!~@6%;=waV2wQ$9%d7F4Xmbzg2Iyc2yT`p9ZJ&mB zl*~1~N3z1p`$w-7DNpF9`Un4*`F7Z7DKvy=`bYgUK@;1mg?#rCX^Q0K9v80lWPubl z3N7Q{A2?39>pW=v69edD;C=wbc%Zr{j8L}5+ablRoU2{t82EA=15ZF6BEfY+$^!Vu z1h_E0kCO7K|9$(b{zvh*OYf7O{$CKO>SVjm{0NlcTrT}UMg4D#aRlV_9q?s|e2Mzr z{^9(LB)}Pu4bEihXPRd}G2fIk%=z^mfnMc@oy3xjY1EM$*PYh9zR$Fm9&UQw?;f^Z ze!18c0DoX4H>*qNvjn&DIqC}o_BQ~dFfMK&#=JzG>Z5Ra66V+_U6k#(OM|z4V5`( zu7f00Dkofx>?PP~4Yyo&C!W?j@}xK5F&F<>fwnFc<%MB;ml<`?wY*tP{!Q5H%WKL> zD-{f?&2_o99OzXe0=3|Rv`Z22Ry*Wsh<3Uj76d^_3zA)v;30{m+;1bn*QC?=6jnQ8 zR4WQBq_S3QCh!*aDkK3dt?hKsm?~!3E(1jlp}VDZJD9R6;8-@D+G?7t#!6{LeZ*Z0 z43qQSI<2(iE(5mnE@$~_Y=vyZdX>g=o9kr}fCHapbXShZPCcfB82@AP_cbAX=9aI0 zvc(F%`H1VU!`aIb8ajI`Wuf$mv@Jch)+B08ZD>?jr@4$h#O&XsZN+Wja`SnEtW!K~ zClY72VH>96h8Eq=PmtX0?lJG|?l?{k3b(#dbrc#U zLaGS3u}9BlMN)bUas8F0dg^QC*fYF`AEDv$Y)i5jvqUEGBp6c;81eSgdBcqhW9ls; z>rlT0M=77vr3pv8)6t4~n1;DBcH{T&FKFKW35BBM8WnK*{B-Yw|E-|<>p1Vf?5ux& z{Wr^gbb^)~mcrMOL-ICg$2rZ4ZqIxZ32C-tDmfXDcyJrVRo+Di$Cd2SjKe#Ue<57PWs5QNtQKBkX!rl8K=@3uf&xGQL9S^(`I9UB)gj0$S0!t2%N9vqCL4zfUQ6}ihby%P%-2`B< zT!k?1IfTC3ai=Q50jaQwrtg5gZ;>z~pn`8?N>>Q~XhHMb4;?Kuoj@pYU@j~>3dMUz zk^lIhzYfa(1=zeX-`DmX_Um2>mJZls_W`)~w3HXtme=ApCx7!~Drd}4NgsLgR~1YI z;V91S7xw5Gy&0XDl&hWGC4kddY$v7a!!u%18U*RbA|QR6)|&ny zZ_>MfrMpw~x0U?cKfD?;y$)B|XBp@5Iokc-7uIZlyV3p~y!T(5V~jp6qK?G>8Eq*3 zmckbJ`cBH=M%uoJp`~T>=AVUxe2j>HB2@fMF}Hw57}{rDTTNr*Y-pm|{G+TuKAv)A zB;dR9u{KhiA%Rc&uk@#$CsVik_lGH5KNso__v4-9NDlNHTC{5nq53ZYYW(oJh#Dx| zN%Y6tP$fLl1_5yoT;nS_baId}_`igQgREWdkPV7gxsgfKOKhR!B?neX5`f&zvk4ttbqJpk*&pJ-cOfU^ocxU1yZqt}+x$qZNR;9$idn|(nSsrhwsLMT30XV0 z>>CuW6-wC$%3Q8d*@F(AJGYx&mmB3R*PELgiWj)lk1y9($GP3sA#Vu;?#n=3#O9mhAJfEVta@l>4Quet?Wv z>LcQiunX8HY@zgh?Nb3&L(U>~hwWnljU{o%>Dz^J4loE{_a_wp8uc{_Nn6SuS0Le= zNE`vXR2<1DqB`g<=pp1ZvbG!mG=L0=JA7*ll$a!2-vG&gydrc3f?1B-(^u*fS$y5u$+_v$oJF&G+wgcAUlcr zAbkpNwFnbH9*PUIJVI`=A=s-%L^8l3fKIX=x`%ei(w#qo1t3B3v#%NyKiQB-fwf<) z*!34g9DpexS1P{`yLbhNFU63|TMHWBTR1}0T|I(SaS1jz z&XCPpAVO+;LecrhVetw?ZoDC%w@}2yR;HqJ-*V9rsUzDIHc6}J7Apn(551z#)hmgg z*~=kY4~n;aBSlB0{sRCZikSY`B6jfJq#gEG{s@7`1Qarf-xThhC_(^SAQsJajAcX9 zd1;ukTb6q$^<%5EURC^MtprccA`|^bP1HtCGuPa@22oGY&eJ+B^o2yv3I1WmNoH3Y z`wn?Kq~iL{{XEHBc{4NIVhvWOLZ9O{&e|Q1C-4-5@+#YO4V>k+tG+7Ung$LZ_Hyuf zhTtYhF>D2kWEMkX_-3Uda23kLMVf^5X$h?I#Waz@6kj5-n6tF(;439hXpd@~+R>A7 z(>s_ABT>ehhK%&Em=hBo>Ijq-@ih)?8%^=n$>B*QdKTGV?wWoh%kHF<`qgxtEJUO1 zJf^>tyu5vqBr5B+6~jXmW-Rsa`FhsWR=Kn!t9KsnL5tsf_C~O5f8d4F69uOuL=~TV zfMi$Ar9MiwLUbB^x_WFq)lH~;n5u5v6!+ZdH?romICOi=?5Pu#f%cqJ4(YWH{o)64 z*sV+M+7PLXwkUdDnz|F1I?ts~=+5cv1eN91J`wq!(pR>Z)D>J6W;8-_Xw9xEiw(4) z=_(G%vrR?g``35#zI%cU?Gp&6n4Q9$oRc@`)_mD*sYOn`4%sJ7t)bst;X5y0Fw@7X zZ6~I5c{8E9A+g%A=J4l_T&t0gdBK39^ zz4J*X&-?4SJh%HxH$szZ;cadbbJjxyWaAnj6WilXrPDkQQXHMGTPKT42DN4TDIm_E zMnz1=t4q3KZ&01#i~OkiFjZPMg5}eB=C&o1QhAO9e{OJ$tI(ilm}WJtzq?is4QXWQ zhP{h9O-~QxgB|A*Nu5{nW){C_L#2F|*^ZGwzh1E2=!RM7>#}H@b@H5+F})dIPp#FB zE9(?GoPBkkamAFS6<-Rt-1M<6ar#^zI3={)Z&%=yR9@bg)V`s>y8eFDw6aarQ$p*^ zp7JYTi{zo#vJ8OGW$dvXW zy3ygiH?n<#jqVcdXawU;LB?vtbF% zhWH`q;_&2Tu)qTA7rp+Q-i{F@sN|*Bfxdfrc3$pAzJkzQn{fRvKG9}VQGO(g=G*eH zTt)=2F$ES1UOMjv6)Gwx+<3a|s>yYi@|K{Sm>eq?5*7dL-0_85%t4 zMGDAvv-Ju%xJyojPyBRryt3ItOcl56Au$==#Ug6a+Od*b6@#7Tq(sY^GJc8U^WR+dE+vTDhS+pu7?<$e4Ttajqxs4PmDJdrud zCDtQK%c#pOq}9`?Eq;C>WB7@ZP5Sa+oVTizokJE(Iso(1bXbQI(0m_8gL#5_etCn4G!yWs))1wT7SG1Nw5R#=i|@s-R$vAN4EcBBzIBEZ!_>SM7-o)81d z^+;Kd#wnslf2Ec%|6519hvvs#4MHmk@VSj=e@fOQ9Su7U{E@%Bwdr>)tGZ?$JZM9S zK3}sBRSnW^3H>^n1=$@;5pWW|X05JU)}_tA|)-!Kaw&Cw|@+j4M} zK+NT)IHG*t&yio{;qdqg-?d~v9>Bi%$kPP?$j+X~-d90UA0gzI7P*1Een-jyzl-$N zgSA1mi4r{jCCbp)5-I$bj@cmlL zJ(fYOw|43fHdO>S>l}auaXd({f6L%BXBM|OEk;wT?3O9Gi%DRxO8>x%>0D8e(l&77 zL9WZ#z1V5&n+bMr-?E0sAxUbWheA=szTZv5OL!e;eo2vw?5joR*z0(fT>SbIt}dPK&IVq1Cbpp zd3II*VmA1#%fFs&Tp<`aUtW{4@nsx01VU6Kmb&&5rD0GK# z{qfe7w0*Su;$!7JEO>5g(2GJK)f^@%iB}>)~VjIAvXkx~hfmbmS)#*f=2kRP)BU1mF>U zfS*lC*J;S>y;;MBv?Elxz?{SgD5WBhFtP$k2wmaQd0SH84Oh7Nz{$3 z%Yy%mM^?Q)yItU=EeYig`F>(-#jBlG?IvWiz*E=M zga`RZ*MbU&{rG3S>DLhq2!_x32F3sX`Nn^9p8QWG{U7FN2-TP9lR08;A=wRxTvs-Z zxz?$b>_t{R_^{t8_i;A$dO77~x7n4>!}B=m^8muHuC3ua@N{z+2(Xv0LWqD9aBz?p z4kScFsTM#)h-i^43vx=92OFu#!_id*17g<%liGspa|l2NC4&lqtRZfT_$v$lSL&eVoL(^n8csZ2QK+VJ_64R3ypk)>k}F^iO`b@SY0Wiu5< zGQAN-oa8xNuE1R^Hr}*3GG)?AgiOmHlH^509IIgs%ERJu9E-AvSjt8gN^auUgtGG( z*w}7iE9-W~WAW!sjr6{f_(Hl&BUE*qOqg%l%WVdvDx!@_J}FA$eF4HbQBAl`bEd-1 z6WWtFU`)G3k)@!ZC)hO?g(a~KCUC3^*T6E$L>I4>X7KJF!j7fd9KPOaJ`R`KPfZ!S zoyaH;5Ao<$?LcnC(@}e7n|!wIHz8c=g>*G^o7iWr?O6oR#|FvO6}culWq~QiTnkf} z-O0QAp5P-3CD25rh0LM9*k0g}*>(ul<`YE=g8a#zE|e}Lr!QQUs(Raco1iv2_AmV3 zFukJOyu<`H5P5bnIy7ci6_iIgc}zt~R3sOqlcx?MieE;94J{+_=ND{!Zk<=mX4-u{ z9q1$veRnyRwryi)*Ku4o9vB#vus4!3JDpu=CHp2N>%C-gQC1mtJ(KrROV(Ne+P2J( zO92kHw_`5I^#h-oTDGxz7P_xkxjT_G2EOPq8*`E9y!(7r-Y(`kX}624QT72zB59LP z+GhQWOub3HM&I#RL=GI0bUF0p_-PpzYM6_Cw9E3`z6JY0O;addtOMJxWEL+x_;WSw$xN230W8_Y%OGdk1e z^gt^Mag(tvG*j-umOeq{px0xmQ1A|)9SF0)vuv`Wom3(6yZhx;`tarxIP$9*`Yn7& zp|oK32^ zK`3fmr*&@K_M_VlW*_Jdoz%U+KHPczj_zdk7SN@o_`TVS&$^)HmRbmtCtFp5EdY$- zwi8%O&6|c7@IN?vr|3u+qP}nw$ZU|8yy=J+qP{x>DYEU>7a3{`}^;;*4|^E z?~HLS>b7pGYSjGAXTEc;S4Rs(m~(%C(=&zrM)kx533lMC1g|;gqIdW5v(q+*v}W|% z$_#{Y6?(F=lD%ILo{#!vs35%R?8~2`>{V18&-(sQs;Wfk`XG|B2=aulc-EH1dqquW zyKv_%ht{>~>!Z&FG4UhyBTjy;5M|57ZFmZ{LUH55HMEUSs4w)a&pobOm9{uMg3NwV z+r`TxP(Oh}Pc4bLD{E%M8f3a+(PR~C2M=wt(ta4hripYhV;ZxWg&Ze z*cguiu1tPsFeIF_%#Q7Ay(%KhO{_x}yUh^&Hk_(e0gWLn=zY1&x!@EBmL3S=0H^nI#r^X6; zSq*a<$6-M)M`z>(CF8Wa`h+alsV8Qw%G~KT2o%G*+^BejibhLzSuBKz5?iD< zQDK;BwFhm=9sZmoYw2Gqw8^U^iW%$=lzpXzW4b@LRQ@btsrSfACr~m~ccJSePTG!s zW)L?c%*SFEa1cpBo5X^crGteCFwS0^eS4(dA5yK4)_y)?5Xlr4oK6k$>4!jA7O0k_ zwh0HPo3C2V1U}@$p9UL#$TIUq81pEUgTWRT#*WEpi)0w5cc^Jz+u)@mjsEgRr7Tp# zlWe&<{P3oh219m1{I-twkdj9+HAa9FJ@sU+BI)KOXP`-_SuBRiZFQFue|TXI7tmHX zjgQ9_+b-Q2uO+3SN6lU%y8Ka8Db2rBr)KYdZT(K#m>4ZZc7A$_^Ha@N5HoI6EXiys zEoX|6ffXO_>cGmxBhXf^q?7?C&PZf1!122#H)pT7Q3JsiL&r1$-e;#4WpSl46NXwt zDSq7Ou_M@%43o$YILU)W2DL$$9egb?nw3Dv;(XtSFl2SnPl;aw=`I2dKP^DDl7a>f zdt zZ^PG5xL!4s?o!01GysYtbZq#f?2Rk8cx<2rXK?TWsD=&T9L-l8jw)K6n9AGYW3&*q z$DO%ce5$=~b>q81Z)aS&#CQTeg~TcFQ5l0_MfTp;kv>Mmr68Y7RByaG999_6x5gDa zm{sCR-9&hzhZ_%*U!Qi!3AB!2Fmf@&*mB=03gU_Cd$kV$Jsc0GZI4&s2UR0CGW^b@ zI59R$N3`uBWj*do-gF-nsb2iu8RhTJD*{f8yb4JMtH2Iz3` ze7Nz}_RVHQ?M_zKhIevcGMu(Sm`s-a`N)IVOptdcHnwI}!m<7;aB~ocUvRxH&4TsG zXZGPpO&>jZ*?!(Ik3RAA2S4>&7>_%qy>5BqyTNV`I=Z=UZM-nhHW=_*<4X-^RG6No zb~O3tso~S&g42rZP<46U`%qU|#*&Z*9C_||xgDsoPo3j=!BcWJ4dc6W1u8vUzN$eI z9j>gg+8mUjQcc0mMNr&BDL&ZTLc{Op9bO(m;J-ol1Uuid&P5D=8C{X%xpekI5W6|7 zkU9vMYgUZ!Mz{?rs$QNmNLd(Z-W#`eIPTQHWOurHf&Rgwv;!#zENqdGtQj_Kh)~=4 z>VX7$v9P&&!Nm`+H z1EK!u#Z$4Q>7nYEuW?Z2uJm1y7E@T?mK>ds8~5Fg=H=73tdO5xiZ}UT=4_>)x8zuZ z+5Gjc&W}I^9yZOBM7O`=odh|NOW&F&z5HJaJi{=Fj{A=S7eSR``I9jEj{-NhW&Eqa z-H!wsdOH3paP$AAz_)sn^{9XfoaA2>IQ_qYkiQE2f8|;J2^fv0$+)6P0k>W4=^V(X ztL=^$EZ8Jt%#B5Ju=x-TznXn*>=D1VucSbV<(RZerG28|cABKR=OEN_3a+lmNv^`@ zxtHJ`fbn90NvtTe;Vz{8Y5D$q_w2hP7X>&q{x-+O2r@jF6dU>PMG5;&cyi25+_3; z^x=#HC(HQejPMjN@{mGABhL&TQur$H5c%bTG(TqcvPhZO)}Og$ZULv}Qg^e5YI#lk zoOjrb*-#qJU_>6UI;riUhtV0OTuNqtUM0r%*mzS!!Rd~Z&8g7Hrnd4emYqg)?`*ta zLW**^D}B9&CL&^TO3wEgnvB8{a=s=h37)~3feCH&M!~wS$_m~dvDv0FOrO(S(gJD{ z)h(l5^zCqITh}ijaWI2D+CrDnidIo=3H9P5=CEB>f8NH%JFh9dA1mCjfM2kT#T2^> z-8&F}O;Y~$D$IWp#1$otOcLAL(9hNfv#*yc!!_I z>l3G?sT0``Bp4b~d%U1G;Ns9;4o4ki3o--HAikW6+@J>FBhX$}N10>`BEqSkhR1@)kco{lgTmqj zr3%u5kU>=N%JG8-v?m^}#ivkxn*No%cVr4<$7iIGct7)afVT~b-(UAwq z;Ex=|A3({x!m+Q$bU5QxIK{3t9yg_a>){tSIeBp#=*8yMFWyJgjW$s{tRk3Q_{({= zO5M=2XOs#2G@j2bDBpD7y$6XH`rxkhAfT(26RR{0`X)PReM;~roEGj&*W?N$npV*N zMm7I6oc4b#e*D)-4cxVISQbXlQAo+e{+_(l(o)EfN`9R#nbbG$}ci9}kdz{~Z_>&)WY&$D%wAO(KqhPr|p zVJ#;q;P~AvxJjlAalADKd^0Vnbk!FVRSG-VVcJuUZDCn4NG=X^XSrbm{beVj74S*S*#ZX9rz12 zrIXa8gV!Poe$w(^z1(kLFk{9S*;Dz!%S0}g2bMhJj~@~2(Lycw(|cu@p4$-xZIv_; z7ttqQEPFi+yf_ToVLtOySx5Aw?pz*WrBUHPy3gNumwDO9OkUF^c=8rKOgz07;7{O? zy5O@6-GB_6DYMxxGqdi*k5Ht+hcj%N%_ZVzW47ACm7fqX*K`=loe?+?LhoE6xh+43 z89M8&#yfT@X7FOa^ic7~Y^`k>CtoA88|Xoj6z$%=J<1C0Fo|7=_QY<%Q?@zHd09~k zl;8GMc7ibMUa@y58BqH>d>3zxLfD+Awm%KqR_qLDnSdd`un$hW`qnBB-21@j2QDZu z!P~lxf!!0R$VrE|aJXhY_--Z@YP? z{&1#@@|BJ}rVo!&&84p+64^NJzw<#+yhN z)nQCkz*zph%3tn0XJD5T+f)~}(#qVbOYdKPF68V@50R@=g>wAQ$S9d-|ARI#lo9@~ zUCsacwf!G1kmx^M&Hwxn{c(cyM^W<9=6L0Fx00RPkH^>qW!g$@c_*6?Y}z22PDu5L zMU%_B1uh1ceb2g6{x1)oiQ-=Le&3abV0)^o*v|Q;==ZtrLPN0RQg{9^9TtcsJ zyC0v3i5Z#tZ-2Z!8G4P-ae9qP)^|+Mi5jB3L~GW6@siM^P#@})tq3{NP)4k;0!6~F z4xw;L-3K3(2~h(V1J6Ly7h#qMGS+J7Jn4J#5Gu5Da58WfPzhuzYzl0$j;wuL&=jK_ zViBh-VwprzX*78tSml;;Vi;6|&Xc`o4=G2}m%4`!u|(yM`Qz@8crgw>gEJ9(kqpK_ z8;ahmhGd}hV@O&h?#qTy2P-g(-1~)KX^BB#ukJ%s?l%NBsfRt7imdQ^un)Wpkef1uKhTKms+8liP zpj)*jXkPBG6%>Sy1%#s75c%Xl=vjSmrCJl5AOp057)E_MfOQ?JD=4LigvmvD)Y8`YY}?) z0i9~ga466PnwM!L>LVE)y;q>&J+M`EL+Ok;y`cnRS&Khdw)B6)vQ+;sShndemVIsh zi)A%*XEIlc+N||Jr~DE8K{elS-|N??o-NecC9|O<>ogbL#w`hx(C(Y6CC9iYCH3_knd!O<*qn42&g7h*(U8k2f?I>+ z=VQ8U$m_X|RFbYg7SQ8t>YnBAh$_()W%^BpaoQ~2eg1_GyYgW4*ys{gdRki zeY`E{lmfj7p*h6nD3q?8>j36wdis;oFh@gah2YK{@jm^v>X)) zk8e{38rxd*x9RLxwE@IQhaQE^2vGVk8He!S30XZm>+=(yejCi>_9ge|9pUAD75d3G ziMp3I?B)#gf?mIg$p`@F|EOAcXyBzG+UD>!b^Z453^05Vrls$&8u;58yK{BGy}E8P zQ5%Z(8dj2`9#GQoOFF@?4ZZBk11}dB@b3yx~$0M=Cb1B z+=ufy)ms4%YYwkV#yx%pu)~zQ$NW+ z(^4gxI~s~GPJ1}_6QXyLAHQ*t)p2`eS$lS2tiyinU4vgip06^SGH%nWJ3jv4JTnh> zdc?>4*7=k^kEL{+*=@zFin+_C#77+;i*ikd4X1MVK^!;N(7MDTHFiz~9$wMN>@yd{ z3g$63FDDn1ldQa^T~)=Tf{rn*EqmO{ni-)*RtNp^s(k|0H}ZEC!P^dj00js0YI=9d zZXWOzr9gmY5d(M%Bx=gpGMyukzzT*9!Z;h_Ra~nlsLeCfA^XJwSST@F>XjwT`}Plr7H(h3>|Hk8 zr`>Yv$|!J2isnO#C^OBPdh{d+KSpbx?GQ?;WCnQMKIY@sPJ3OUyX?{+_t9Ol2WjmF zc;g-VLUrR+#?l7k&GHp$38oCI6B>8iW+auEk)wb>@>sxujB!pwTd6!*^bLd}pION` zWAineW`=!GLtUn_(G%x zt`QkfS2cXMpl{pVT_r8-uA5ro@TmH=TQB?sH0%R@e|en0h8qn{GU`_3;IyA#z=HqK zAV(MH;+ntA-~IT7BEY$X`^cBPtWyRdH3TAn96fjAXb;oYGAb%UPrs4BH;Q4Mz01zL zVZBAuGri2&2VwoIfG{RfPxpx+DNzVLiaPakG{M|Fey3EqzBiS-t0=;V%5R+5fYTfF zAIdO)h-_`i?_dyNqLpakA27bZ!uL2uZ~{Kj;%1i_-PymA@9%vh&}ldY3##voWIrM&FuS+|~f3pQ}jUoyQ;@%sXrk z3}QF!@mn#=xLcp~du;XzevJ%UA zMegy$fiBMyJz`37URH$@q88sjFzFKebOP$2J;##(zdc3a30jIEq?@O;7vGc5SM}z& zsT^K#sIu04We7n+F%=^RL2e%@=Wul!du`IWeGsZ}|FXq(9i9E*nvZ)njz2>#7t&#eFkHx@a?1!N;8WGamuD~d zHK!`P{T&G417|kzT{MB8taPe+z>bj@%L^PGh6KV;>CRHPM@p^C`-~jsCCzmdftm9L z;gT}V>tL>v@1BxCKPdW_uhBn#(0Ya_aC?uA%Z)p~zxK81TUHLx4fyApCiW_ z+IljyJWT!WV+G52BF-54-CP2f*tKcpR3hsZs>b1Gjy6+I=WDe7n9R3K|QvEA-i6r zE&ksNeE)kqQbP`OHO)Q9tYa)V(QKJKI7wM#DE*LpdI!Iz*VDI)FYy??eEecn(YDRA!q;S@Nl#LiDaw) zuSoVF_`i^>;r|zs)f~(()kYwq0;*=)eV`5xhbqyA%1<>B*cQE4p}G8`3iUbduMW5P zM~A2WA38kQ1PZ9bbN}e@dlVYnePbG284WZ)(dZqZ@@EWXl3PT~&oCkKlLV4i1RBOj zN7+S~&nZPQ69(*#T%D_6?Xu3Fevyufyyl@t?sI|nXA~g`QjUH?z>gr3bw&>$A7yzh zMIS$aQiUJPDB+fQR~+mv!H&3tu2?b|3&U)cr=uy@USFUxYOOck*Yy{5&P=1eZ$FbLfNR5)DDhE~=XQ#9HZFNgamq>kO5hSGYA=H|MlT6~>}d!aDB z?1?`4Bg8dJpKH>_{s?i|D>T~NMW7JRjHNA+;NGl|t!hD`aIMItL;?)m`EhVa3i3@%s z{c_%Gg`@oJ;ku6iNei2dEf-g;xj6}%OdZOXnaWVnZ00&GmH_K61GxDU$xuB8>@&#> zeLfUE{S=sS$EfS7R!f$!{Sr#l+8xNUz4m`N0zI-~Q{aQ@ubp|=!^^>a`?Vk`WG z6W@)Z2idaYd*at=|0DgJ-*+arj|>yt6n$(z-Tpzc!`1?6sw{l}Ala?HhyY+RvMj&f zP~(~-S<<6F=p_99v&B5=z_R^lY7hpPq$&Z9Qf$RH2a zByUP73LRiI&P-C+eMQy)yU7mho`U~-wJkrPmi4RdjvH|5_)YK7P;R$-{o1+)Jp{9z~B!GNoN zU?dF}uDc2P3;3~O`nFrCbxW8UUb8c>YBEU$@o0Xmv}R-o5oTai*^akEgCP^SbDRBmUeNqeo-r!-BlNR zWF3ijo|}pp>*Nuz0nJM+?H5ZAtE7s$%`M3x>}?&gEf%%b?;*zhLkw{a4ta}0_Ur9ZWCz04d+9k-z+fcmpJ1fhA1vEY${?vx z1pATuQ!lCYoB}j7xAoemo8R^TF8&nhveB!fboJs(*pEVKah0?|#J^OQQGNFhl?`=X z2}JxuWx<8iL!c7B{MKCh?e*U(JgOh4!heCNvvVp8?S4N@2?|_vv;*0V*GJk;I&%;) zAhgTi#|$>mi-59Z&bkU{@Tnh{rXmyuoh`FTLHb2zX_-wA=TH z=tkTftJoP+u{|(Uv=_jt$L&ZsT66wGWr4)A}NUqQMph+a#JmR>P#tJL$UVx)X;_CWYT;8zC`Cj zLA40h&M19|U8ep}8lgY~f;9L!*KRf(uKC%a!l4H$9cvv7??l zN0kfx0p2nZiWWm=lm_DB;!b<*(IHI|Ey8-laHG1&x)7e|qX-b{=*pNX!W4N=yVGXU zhS^a8L;~OYTz@y`cbj>AtNl>=RDp6u&QAu@O^%d^_(I}50-Dcw6hm>tc>xA$_a-dNlcjSh3jW%{g(D?_<*fs)8QF~# zuUDQ_@tAa9oKT(ev&o}5)z^(-apR>)@&WQW^1@Zz0*xQ}Q?Q)NV>7%C%=t-=FyN=X zFe1%+BKXXHfFVu2Qr)IJ@J5*R1m{n^Vku6)a`n+13B5+evbcyrqoQGM)4|cvU?{TE zSRC**O`Pf=zR^EACD18+1aYt!e`sUE-HYkGI?<(2nX5#01Na$YeE1n- zAn}bKW9fguKd>F^Yq}FUWQ@}O;?GB@9hC{j_oPOR?%qKFarYj66fO@M-oc9|fA^Nj z?y$Y8=EIOMU`(`jTA>5KzU^Z!W^GY1)tR2k20u+r@RFHo`p+$#ZoFRoSBG) zH8;o&X=!&w#|*^>*FId5hb(h>wRX9T>mxE}!F|`}3Y+ES^rhfezNwk01=~4XzByKI}cqzSOtS;uF} zqa?1RLv|W|D;pJM)}_@u)MwVo(xJDiWuNA32_Fpvw!|-|mthf0({|3L*}~^~#kGRg zzYs?caNcH?K7R-osV9KofH%L*zeR`?{?W>2F~(|E?i<0X##cl$o44~jQ13mzJ*L+# z!{dd|YK79=+}eO7Yeu&3r`Gb%MnPP42n!sIs-Y;S9dA7hMB-s8OV~($gVbQc0WXip;G3|5M9?B67UHK9fr-VNw)XPXJ%)BBC+|D$$G!Vz+o~Vk4WiO$>|-g`&Owjpv`FB%)V-rsgXz zeSD=%z;dw;*+P%1-kF)s{o&$`XUi{`TgtJvsV&bV?A>^)FdH#_hcAWbM`sEqnDi$uc za4wFT|Lmf}Peh7@bO1oK5!bh5qLG7_mK(K#*bFTM_axD zfkv?HF+?XNeCb;=iHvUBG{!(n1fi$(5;7dk_anU`f0zIysO*lgu|4ELjMM~~416Ad zi<$Df>K+p4+q)%S?|iD$c|l)NE+pG#H6_HiY3Tv?F}`%eQ_Jl)TfUE@ZFvU$l%e-?$8#k@F!L_KLxI9y&uDx#WrnqN)z9mlwpDnSX>;#B zye3p4KR_e|JS8jz=q?KlcF_=QCCARXOr(mKr1g^d*^6f7C8KR-BpK-w8$TiH5BIx% z>WB!WUy$s7=$*p8x^LlpZ*dfQls?pi{*lucZH>;pDe&Foz&H!~M{OL5Ry&YuVGm7h+j#TtNkwOsjjV6AGqhIcu9=IZD|BhUboOM5xlrsQg7j%o- zLwCQ42r$6Ts~@kHdF0NsTUNVy!i~^POw5GrhK`j2>FOU(#wc~ft-Q>`JtouC!!Wmp z)(aoca!rXT!J|hChWaQnIbGxo4}s6e5cG9(Dl=UcH*9iAHFVsk;K9naFM=;tl)g~k zCAXP>cKqP70(;CNCEzHZ0U`JbW^S@yx;iI)Rx;ZYybrQ_TGOb0QSGGqSXhsK1Axn1 zYJ2?^^drtx$-tI~Z6VZ@37=zjNK|`#f5}c}B9-_Xd&d}aMsX?PjDp9NhMKhv@vtdjngfW z0cng|$Ww@e4t#bTcQ@hNTRd4bm(o#Gs)FtuY+(&5eKj(_wN%Y=nA*p!*m-p{ec@>6 z2zplA^pf;c<)swvjUF^C7JEYu%rfBSP@8CV;|txWTCXH5#`7V*x(Y9fV^mu8va89(Vs~rMSisowiQJ4U6`uG}zmo8FJ`D0`iW@@z&m9nhMR@LOT2zIOHY>nP17xrZ-l@Mtgb}Lf% zD&}lHx?J6mNO%@CzQOPLKL#vz=YMWcI&qsg|0#w*hg@APi@ zP*m{uK`?$+zaBLabYN5I-UW}wQYbtFc;91eJDvvb$=}R+t-yB=&1~8D?F=w7>o<7K zIB{UhgJneaA8bL^&2THazIj*+D9&n5>Q&FlUsk`Slbmqg%IO4>FF9;naKt=d;w!D` zCL|%2rc4lyb)McsSwQ~&wE~}I@^t^*%tAJH#tc8y_Y9gd%Q^tVvn+ zW=H=DC)m@ZpPK_JgCtbZM}$;L&1b6Ud4(C5%8^NEanJhWC)RI>KM3M@s|vLm{?n%? z;(trA{cGu+l#8S1f4AQKa|P9=+W%=B8vnhs0bA-Srh+{`LD+>@S+Ebcf|UtP9wRR9 zzvIsJG*>t3k-Ml=8WnK?ClmynZoREQU6-^m$?|pB`uNCq^|`%y`*n21^+|6dsgYzj zv6049ZY&qZ%t<3Sj0S=RJ*<;*riFPOLw8n*G>(qe!AK;N0)tIkO+`Xwlwn0OmHKX zQ}-x8s^BYEA@pSKOL$)m#Yc-QsDpM5a2HrAeiU_$oY4#%jf78T;CI@phZ!Zv0x(eXT4Gs`zplD&OIUsSj389o$5@)`=-{Kpvt z{uqH%(PU%Jt9Mk`VkvFW)#uF!ZyVkE%)yVliR$rKQ;TeYUCViakIc6^g|BKugim1E zmfE$gn*~7UV+JvG}DoE%iFUkG}o+SK`I~a+s{btzdeIc z9_{1QjG43iA{izYIkFCp&FnVeayuZ>f&AA0F`0Mbp}zww{MH>cOO3HIgQ~(ImU+HWy*W zP(41xMzr-p;kBg+%>@i=b9|q@QYZmyxx$5|AZxiTWa6Yk;d29@z3{eg1)hae3{r5n zzTLJG>6Gz9^}l-nxo@Yl-Di^lui?H#K!agR1w<%K2QWj=nqp>=rjs^<4q(Uth*`w3 z+9rR61=OZ~r3KWcf5ipVrUBF}uFO38X4a->D4I`YD}tu!1|hZ7MG@qY0i=&FvK8T> zX${~jvJJ!96!hUn6!f8q2vhs4c-s4+oQeCqc-jZDc&WoscErOVq%fqBQ6*nWqO8PO z#VMoo6^=2)4P}ls#0|xc9Z2s;9t}zF$Q}dmXwjMr zSsfchIP`7A1SF$+a-gYDDU!)u!X~bw^i9PeKHCCcmSPY{8X^>7)xyEtNm^QiCfHP{ zBrX^z{x`U!j%1IB5Q5-T=pBRs1p~!Scu9O;{1k)thMA&%L{HR5@hcv4i3i9Xd&2&} z5tKM)gvblpiuxfFOm%<)@e6bufn6pns}$@dx~&|U`N^+#68VSyuQK)PTsaf;slx*IV!(Aw!Hoco-femt$?iR5Q_W!Zs^Wp!srxrc}^-$ zKTK@j!CHUirh@x=<~YOGzK5OIy}HUZE(t##cW7?nBNOIBY3^k`Dpn(8d4l_5@}CSVx7nhR|`{4okaNQs&4Yt#{{)}Z$tPR8>mM%^{Bx;2h^3*?mx-3oea zlyIu{^iO&XK6bt;@TX^1Mk0ivG7P9O`mYEOh~B?Da|Ls;Z;C?Ep*uzCmRfG?%A;>lV6@ejCA4bk zP6~e6QbW1^?f!K%WEz$(AnLAc0yMlv_DDTinW9U=g`mK= zQf?t-LGtZXn!m{2TsiGKH*3Z8$7aD^Sd9m{Xb#A5PsK&T$lI;FU2J*8g&^c=8UH&E zRcmIa_6Z4LS=uv&z)ToFQ{;%ElI>O~gC2KM^kVwXc68;YxSlG4VP*W&53)*m{FLPO zn>cW)hW4V`vXEMm_s#4mq$8-CX|Pbf@6UHGtPKbhtd+!fafy;K5$t9{1(XU1Sa99E z)mieA2@BG+%oQu+bl>LmSx!|5iPkAk+d`tq2SXRdb7smCfRk9hTD}Rq5e57Do-vSI z4I1q5RBbp|(uL}zQA>;a*VoVyTmFNH=(*#|0Cb`umoUW>wWOBxv3!IBarTw@Vcfbx zh*c}})lnF&P-^ATu&g}h99jh@jxa41X7QDZ!7|$9-O1teiv>UTKX#pQDIBZhFs4! zPi{V5PLGcs0YgZ6Hq28rVyMrNFZ6UDZk)co+2d66x8&E9JG*+ghy_5*S8ZLnN)h|IbY3|c-&fKM zbpnYd41R>nG>RV$2GU^gfy0^>vpTelMUImjg5Ro>iu~x#+MRyBO-;O5e3_+3;U{x_Ma)N?P*jG;ujiG*+dGX|)!9 z97^jKzp|A3j2@EkBF80qrnUUKf;pnb9|R@CIfw+4kZR>bk-3`yAQ-R)ijdznflgRY z#(22Mu2{n?Um5P+JjXjb{@T3Y8m^;woNM>=@z#>!qg5-Uh$RYsC1Fi!Fv4l`cQ`8P}l0rn64{wyam zZrvTv;YU+$<9oQ0lXnw5(flwe`Eyt^4N2eIbYG*l+)?d!K0uKD5dmlg)-AQkRR$o<{9_OZOAEO}be9*= z7!xo8FdVGXZU{f1Zn^3K1GZDn+vg5n1&ki#sF^+d0;&y~^c;gF6AFV29%l!PaAG$o zE($(p<@xLTZMjfqODH532Ix=>*Xp#;p0^7^u$|Us6brM)_ui%laS#(kYLJZ=8k;%T z0heZ^aBFlncCe?0ghScEKCt&^J_q2>;T1ZfPc0eQw`5ov>oqD(pDWd$8f0CR-Q0p4 z+IL+Z5z8$T>ohg&XglGDbJUKh!_E#&PYo#VXq$*FHz!298-gy;C-YDlPE6&2U>)Yo z$v83C$Z--fgF*lVoz(l&EtXa^rIuA1I1bEwUM|W$L}0ZOhNF{yT>V6)wQZEs(O%y) z$_*}LMTTp}q;GD3@0A}qAFC(LnD_61S7IjeYv;abS|FQ3B=Td*Ac&wa_mnfm1SNIi zo6>;xXt6L(f$l+fpq4$Ow?kHkStAZ}z!1rRDHKHc#?MW`Dwa`E@JSwSqb*8y#PvSt zi+v3AM=bUh{g5EscMM<9xGT(yHIRIU7w|6o<_c&brWSzI$U0M)1B%FWxN<%8W?FTX z_X#f?)|arKp79LEfcViFr>Iv(Oy3QrM<)nBQF5_v=&J~*aG6C0&~=!b1(M`;LP6Rf zkLZFOrxs`**h>k_kNW+c8PRHKO-gj5V(B0Tr|M5Wh0;M-VMy&_=*Pc<^yICIVMfmi zD-*4SndDs|G)F<@98Vx4KfrswQFq{T1uqAuxp85rUh-EcY?wS~FGyT%=Pd@Ad0yN`1y#kZD}yY>0z6ILF{z%9Mg{T z5w+Pc&^vMfa`;vII#i>9NTXsd{O7Ef3Pk+&4L3+H*zL}{o;w)5i`SRW=T;BXcZrBg zgoq^lt4t76GG8NHetu<+46@6>HH#$3Uvei5U6k>Xxw>#D(bY1;t@YspXZaNeg+TOh zB55Olw7S8zFswPwdmyQ%9eIHxCqU;m)40j&XW2yQ)C!PJOLaTT59%XLAp7AM@{Jn= z3u9E}hQf|+J6EoomFz}W5=vYpVgHlhV<|bbsP8^msVLW=LaC@;!)LaFX$31C=Ss;O zDys9LjOb;IOEmu#*)C!CQ=LaZO+S=Mo61QqolMztoGVu1;8l*xxdsX^lJHO&m=SN7?=F!&( zL2v{=Mz}a9^kp>_&f684X^Y#dm+tn2^nok;!mLI3M&|=k8q^9nO_b6jB;Kv+M(nw4 zc$wq-O|?G39PTigC;wvg}Haa|A+5|Rwk&;t_D15(ig zlFBTm19)fS!PMd-Tf8O{F!U@-oxXO9C1m=y8RzZ zMaSyxGdb##kRWahvG6~P+~4PT-n=WLWQZkDk&}*p?xt=$F z8jGvR7lQ<`^M4k{p2d?|&@DhMZ!dq&zvKB+Sp0tV{X5a8^n2;Sq7VuQBy@T@ZIuSz zAVGbtLFOXTU}I~^Kc&SAX}e`mi!rGYEXVAzrn+K~5D1Wz?AyZz2uOu;YAX#9JP~Gn zj3JO>fgd?%cQ_G>Ouu&%E=OHfZFI^Sw#8h(7fjup@`@!G`pqs>J5H;K>@jlL$!V9} zz=#ALb)NP)ws!0_Ac8aT-Mw~!Ydt%B9(A}N@$9_YI4!&LPxOgyM^(~+%ThIR0FSS5 z$`6weD0vC(+Lu!)Qn|dz-aryPjy2>ie$o}T@ZV&#pyFFoZ z%__8#!NzacHVl*+*C7+ek_uS2uIMuwMOBva(!0hZ-dU;^hCCmPxkOq%#z4Xq#EyO@ znTQ#R7$*O|63k8X(Dx-czic7b63$78`b9$p&s(qvo_Qhm+Aj0{ld|P^>05t?TW4dA zT+G0e7=hh;@Dn+j_Z}4JWUJqdZV`=ek0uia8Uzsl?Cvlh`Qf*bcKnQx@;OGXo`KqX zSjz7j zTu~%~Ad}Q4D(u*hb>^=SN;CPwF(GW3aZ@Jyu2|WLy*y@EqT^%{4-m2!cy$!_7H4!2 zyz7j0StmCx1Kug|8~|=0v;*-fp){$zuFD|`aAv;3jj88|6?`eYX1`p z*qh1j(J^dGrjbucZGmS7w8%8K7uL3vmIl*@m#mVk#Cjhhr zB1mO2o}7*PeJR+0ntdu*L*@ITkbK%#K*(p>*R+s5>et$kJ(}0v5FzT<;t(O4*XEFZ z>euR!ewx?rkU;9!ayZ&LmqKVQHW_9aRvaVN5unFyXynu3=iFsDqP>fx zco_kz&RHyYj{GnJ&EKJ8VYp-+fs4`dk&@Dw>v8cwlBCYb6r`<7#vd+4lhR&(6JTfT z0+B)o=n0qMO2JMs=K8vHN6F^lwLh3Gzzv6+f}COt&>ttCBA+|~?OC_B;^5xEuTu9qCM$vX!|#ejGqa{=iLW$~tvSoZ^h}c_=fQ?6oMm zexC&6^QeLROVul`gO+pZBzQ`>b91z1qtqzZ0}jTX#f0ZQ3&!5)xP~86zSaZScF7^n zcIBaWx)+RR#Vg0W;TQvL{KGAa;JJoh*rYMW?@>XF`h#NmJay+Bl5rfD5HpH>|0=WM zQt~5L)W;u5+T{NaXYUwYS@-ShR)rPYtk^aywr$(ClNH;xZB}gCw(X>nlY005x3kZ= z?Y`}{`+3c_KFu*k@8j3!^ISYt&o`tgH8LaGzyFC{{w2=e$$qo6sB#wRRL%rJ6P~X_ z+p{Ahh>>U#p@v^Pq8qW6k=9*bg!ZwTRkMjSdrG`-Y^T-(M`pHD zr(r8~9_+zT{4DD9qBcgl=72!88h0)}79MYK58&#JRU4&y1;&0#h7Yn-io zRaXZaeslEvm1AMU>b*;89D1e@i2F{KU^tW-Na~L4LV;b4R+io9gCy?o{&+tz+eBk7 z)^s$adbo6MB$U=!PuIh_v@&`qzilvc9HC|P7=oP%Gd}1$A0a(_`3r`cgqEQISA|50 zA=K#W@is$Wo}!v)_`vQ-oh(<e@#zvM8l< zG$S7+ekiTt2h2Kgi#K8o4VKrFg|iSiB7xVU5ItLwG`dRlUi)90tBdR8J%d&+RC)@J znn;lrJ5uvjdt#7$i>H`-L5}7-*Mq7Y>{Pk7=BL$_uuCe{Kj!W(rV&HQF4)@%Phjlq z1EEiGrO!%#Quj=G@VFtIhMdoikl_Bnm>rH5O$)@%B?C>ueVv|n7+gDyoI$F(^|I?9 z=bX$xmxg;QZ!d2gRR2xVXL^28T4jB1ol`MgjW?Y~q^2wVj6sh>EFg)hb%iW)87i2M zJd))qzr^q5=%{l@MLe4=ItXrd7}DSSD!m$^3dcU6Cw(bz3mTmqSU9(CJQ}1;-A1#* z+0EW!XCf+7025t5&pb5iP78%P?!9STQ^ZB5CLC5FLDHxfrAB2e!y~GAT5qM6#rYvli15$$14YwNb}KC+F3Z(1M#_ z1}-fgb+heKG0kScS81|7_N7sk>yR`+CBy6}A5W_I3>h&gqbXH(C{=`VM9@&0FjuFd z*pyJwm0SxB&V1&(HBM@)+Vdl_LZYd1& z+^|{-1Ic1?Y}PAw9uQIek>>upt*WVZQb%D!w%TcFj`q3Ugb!07t<&7dUW;&#=GRsxHYeEFOvL1d8EQ)JLw z!Ggz>=~aC>_z&WyCe?z+vzCqCs)E?smjRcapI4l|#A{(gH2}Dp33zw^67X3fdP}f! z_-c~~&aK@8u%TMDUOjd$0FYld61+e~P8d^X)O6j{Op~K>#>Cu$Z~*4kp7v8|bVs37lb^yT zR&GU#E_HC#EV0LEV6SBvY;3x(@Cn~V?F8x4PSd>4JKhXWp!FG=;!zAl7aWIxq8`UTn<$4t*XLEtp? z)k|Ejm(x@asVzDj6Lnmh4 zGOm5q(_TSZMJ2v3nK8SW9fK8(wsndb-u`R&K4 z=VWnAJvb=O5yJkn{h%zpzeB27bBePun8>#AiJWE&c!4E|L`PUhAIFZZ{-GXWe6v)y z-WKUplxsY~4ND6t0uvV!8Y_^|?^Iti=2xnW3@^QoVO(&V4 zL2-d_QzJEU6?S^8K{n-O1)LO17ymPJ+%HlP*=^{MoGpdw$OeE7~^DLx^=ug>_@Y0bU>bCcM zOrg2W<8bOBF5B8j<_>a^`$)QEsxylVZ5i^h>Of9`soXu>N=27xB+*lh-5VYAbBTCEWF zHWNnzT{@OM$fj+KoodYIuPb-m855eSFsyB!F4eq%oW~LU_FoS#6pEh@;c`$+{XOj- zE@nq#G;QrEuZZN7XSo(BlllE|^F`0>N^d>w1;*I8HoVRi)G5Shj`w{X5NB^5z})YK z-fTqNIU)W&xYC7m7J|#L>$Uw)XKimbLeKLxsLO-(|GUeSG;{b8T>+cvCNw9gzIzDGX-Rd zx+ZahCB??HGcOoQ!X%Yok;jjul%|>o5lvFYT&svQ##F0`M9CzVAF5)iUr5rCrdk-P zE>*E8sD*Jzs0k2{VCab5fdsfD=^@bA=b{VHu-UdlNqcq&A$m@O!u$jv_Z31fF=!6i za`(MykqzPZMMAT-%lZ-Z=>f(ttZntaOQMlu>i%FDUi#5TClIm20AOY82;bR&W~Ilr z)1!xNlM8cckpuh?Ncj4R5~Ir4m9vl8y2W-GhSl2E02Ue$jIIckg2w}!sicdZS0qF?W|Eyr@OOUJsq{t19Pd;Zaxvj@vnwkPcw zz4OMA)lUzgW$;YhIpX;6H9_~T-lKgkjOx;tAKJ3*it^cY;P@E8{v0%b&R)8q^3L7k z?YPGClo)b&PK)~7o#MzEf^+KVuBP2B=P079g4)h+gJ&xZCy+eOOE?<6ZlKZZ*dA19 zo3>L#bFkG!bFf3}OGd|C8sIuiiLO4@N8l+9A9yaJne4uDtOe6q3W9?>&il@5^qfkw zxJ%lmI<&jAqpigh3zdh0wWIh4o5Ov~NKih#u_$e48x zje+pfO>ntoEaH-pcBFmOJ-J-DJ@2Q(IJDZkL?SXdqh5hNgu0DvC0wc;BLZw4E^hMx zU{83yt}FlBYiA(6IZ52$ul{q!;5`IFBg7+d6cblhSE7Ny$c-H$j|K`}l%Pc>K&W+N zm~~S{C1F4SiAM_oULgw6>e?SfT6o)eryF6~JiWyvXCZ~d7-SWqb*aEe(dU|jKcg$j z{B5RBQ3dYc&4a>ux%*MIIc8(k!)+Y$9EQdyslwzU0rA03h6K@bB&Z^iy@Er$`s=7-CgIo zXc5?#BnJudEvs;gdw)bb$($80wP3(J46vCE*95X-V=*5H*c0(H-XW4a!PQgZ^cIR4 zEUzQb2Tzz%oLHG#V_DijGJB+Jtb&30H-(AWG1F;8jgy_xIR^20dIWR zYoe-_-X2A5EF3>|pI~m8i9VB|n7U!``X6`3#fMAE;CbDbpA+LGHk5-pqr48dre(!t z`*Vhguid{U`598^fz091amHW_!7nI$p9q!S<5y4d?Sf~h=6l$+%1e+=6Ua!LBiGK@ zf1iQ)jS~ zRMGO#!?)Q>Ypm@dcM;XN`D{5gOwOXXDl_bYQDHM`v1l<0Hl9q}j9+`R2+ye6E>aL& z-@uC~!L@wlQ*a-?vSeMI&cbc5P{G(_9V0Z@Fw`_(*s%W`M-Yjk_S*niuO?L>u+V$x zkDOX)nY-bwqWyL(nVA+8l=oT)psu`Tr3P)mJ?t$aZPM-3{zZayDI}mS5~^GTQ+!mv zcy_g>61BzcGZqP)m7|>6^`om;NtlKBWx0y|wCL((&2lj*`p7%a5AL{fZ^X6vGSr=T zmiT1htOe>bl3K0pEKAsrnq-j)HS@1&J1OG1ptw?nk^U{9L`iTW1sjA*B~yytz}{To z^XXQ8v$c+O>}q-Y>*P@`z(dJzHyYYGT;{pEXa9+Y4Am5|yO%SW?()^t=z`F*(0Q>v zegarF_kuV8#SoD*8s(EC^jF|DZ6H?(|xJKSN2076VaZC z(U)ChMZ&v)8EoY@g=Z^TMIrJqE7ma^8*oE!l!{w3dVj8O~yY zrcxfT_COz zBP$y%i6zP#%4WqJ*%QOCu5+l1AY({_WQk>gJFViW>){d*vp+$UOU=6CH+aira+HNS zP_st}9%bv*D#bs1wiQ_H8gYn+yj0UplsQAW14i)~t8srhk(>w}WYej3(prgbL@YABR{I^Y16QR`;?~g@y3ulRlIZxBa40(*Fk5ceT`(eBLha~uTgE@_FjqZ8*F2{pDx)<)vhL!` zVeFQetlCS+i`{(H32tOZ3$tqFw6j>;N|HO!33Ra;3(Ixn6^R#oo#M)Azk#Dy*Sx_I z>^(Ydl?y7rRde$fj^5mC1v8Qn{o%$|hlS!*ik_q3z8WFe`J={Of`@(iERa5NL!j81D<|~U|oE0iwWq)SVmf*gZncdZYIz1u_r+k*FY#LZQAJsm6 z!WrVXs1o z?%O%ua)efzdtj4DQ{}U(j-5r#D@oqv9w;2JYrgH^r|OQjJbANn_-(c${mESn<`J6R z$LuG?=#F~x0m1uxRTEzNMuirsDt6Tb-WKjil~JWt8_z|So7fIjPBaz=@C^_*ueB-4 zcmHIqetj92sdkD13KA5V zaJe7O1UHK8#-11bT(`MMxOODw18Szo8q@q<`pL^t*0sRg`&&G<;nH^-=fNlm>O&`L^fYd+Ikp;uXEBF;%z}VMn!b6oz4&nf9|~Xklh{uai0g^aoK& z&WPb}}oSO+Gs*Qr@x3DJ3RgV$?(&tahj#n439h}sTv;cAVjU4pXn1VhQEqS(!EGO+9AeT z?z}cE;d;bz0_^-2#06=z4tp{BZ1CN1`P*s&c{+;5<8uXT<#e_)o7$ z-*%0)0Q2qJIPt&rinRYaEUNF|Xs>7BDCTHnucvSM-*IeYyoJoFEcReFuqe1hnu1mac^SR`z^4ID;b^eLa^25flzevJ~>^n;+wDr{ofDV-^^yGyg;-O#c3(p{} zZ&zy#bhNsRriG(wq!b{hYAV&Ic9Li9TCGP3B}98!c5A9<c z7)g9u$6NO#qCq`dudEU4Nz%~-PzA3a#)JY^2l7EokHQZ1xF!8+QN4V%N0HTX%JxnGuJTAFiOuYZ_bbY&qk2cyj zv>aJZ${lmXHy{oCmiKdf+xQ3Hc<|31WpwZHAc$}>QC+znutk&tTNOS`dQgmY6;Uf8 zf1L?rBC3+qU3yNvwvmb??JB%GKzecwzio4mWD)24G?C;Mqgu0uQRO@SU1OjU^W7tD zu}Q0N`q|XE!e)gUKsKZ_D0DR3Tn`)7o!$vZ8pm3?mz11z{^U;xP!A~>wF@!G<2gw( zoemR~_G#nUdTCvo*zhg#ROx$RJ%skbpW8e28zFK27X7CTFdwrYt-mT2OTvCpy)uKt zo;kYSmG0GiJpPI}^j!F15@PcxgiNjoNbiukh(U?hpnekNpLJH}II9^%Sc;7A+^oT= zLc36I-NS5JC@d3rfpmd3#=HXX%n8)!rT3B`JUCCGh`b))67N?HNUQ`41WPCsJ$)L^ z6TwuNEL_Z$Y1Nn_ojawCA1vpFUlgyMBeAM$s=0r!51BO&jUl=~L?#YnTqPaGGySO- z+1c~mRay~-KDzBt?tpRJ+mAu~LwcXe+GD>!1Qv25{E2WKFIL4h&?q{+2p1Uns9{|O zL?QuxtIQMof*3I%^TM%^O{>mb+k6Rr>*%jZ9X6UE0Xar|E)bM(KmSpPL-{y(NBBIPE; z`+mWH6fG7gTbxY+lg-CzYFI7@9t7(nVurei|vYA~r45pw(>(rM+NZ z{n%M?9C+zFv-1BdVSPiIOle%U?k$PLJ7gfM?wd>5!U-oL{)!fCj??_Znx z{MV}ge;-6){?~2a-d@k`KYVo?;2Dyn6ZckDy@Uc5no#=$^ETQ-DPA_~-ZYgY^jm4b-9ts?;6-B3WB9BQA7o}iwq znOIMwuYXlF3~!b$I|{E#)M!6=;fl%WZ|Bw4V;PW-K@Vr$D+YEdhEkhjiL5YKBhrwb zR7GOnQCBmVb>d-FvEq|^n>=ilqo@m@SFSr3=_UTE$)Z4r<%D>ZgbsGHBeJC%x6?Fw zscqX*HI*}JqlT0SG8x{w;x8QrPXwF&gZZ?Nob%_DEDH zNf6Vt*RC0+D{MHU13^NiCB0ThLr-Q0%WTouk^?#Lf{)PiiOh`;C-vRANchrS#I2Pj zRV~p{Y139nF&MAjMm#P3Njzr6Ceqv(El|u#4KulFb7}^J{q#dLbN9pC&Y*5f5z>k0 zNUZus>}Ip5?JWkJM!Rkd8?Ybp_Np+jUA52`7a7eHDI*%{S>lhJD}2I!6pfnD5+fN+NDkg5|47 z`p>Hp^WFJ{ir)+7L?v34j!yjdH1dbJRd58TY~>p$bOfSF{m!2PLvPD@sQ;^`-G3e+eH+x__P-`?W=)qb4? zcVD*^U`ycU`|6d!xl-pn)$ufbD0p(#%gQ>OA|jW)TxkH0o zcR0-8Jlb4;xqEsd_jTe@wiWR!-LCRy20eqkl)?whgY1fy>9*t%_?xwADkBUOh=VI& zTJM$tG*T97B8Xu?_nFs4l>30GOkD%r0QB5CB)_w&v2R&etuC3y%`ar<{}A+X^;B{+ zx1NN0rPDdg9ab*F+90=&HbcvCcWLO0o)z91cDc78|+ejAl*OzbZYtnKW0Kgpb7uL$G!+Ob|)*FT2a_Y>`|yhjTprH9h^qf;o#d+f$u6s6VQG_nddiYPw=Q#1os9F z5~0+x1>6travc{LnWx3$ldZ0I$Zdi&>~w5AyY>B+0l9;giP{0X;60k5A?!8mCpMm) z=Y&1Rs3~^GD6J?=k<7mB<-O%2(|$Y5BND4VZ%(K!n3TBJ}xmp~Hdp zR1w(%jQk)BK}l|kx{+xh3v7Re5>$!0sf1A&35}K|JQZjr-gYLy6==rC#mC9)axBI_ z!&^Y#oxI$lF>lP*GmkMvsyCZ8)>mq)Y%xckYiV3LM!YhwEk-M&^PjwMLQ|gH`h65; zF+V(dJ3Bo2>MQ#nrLd8w)d|mXvTq%FX4G+T6PB|9_xcCgP=1Jb5?8xVse3d>aNiy!PV_3bvJK&vDNj{l6c(-DC^nWa!BV;pRqLJ)Y#)4}LJM%R zle>L=(o0NkA-{+*D07V4cmLTeJ*ZS@sc;6pf(D5FEXtW|ycZ}l?UzuPX>SysX`)Ww z(agzb%z#@Y09a0IA5x7m-Lv%RZ-?Yp(ffLI=FWXj4roKG(Dt#E-~$#fDpasR^M9>w zYzJ1IXE&J z+|G8P`>6M6gp5h^23v1fC_!|GlmOnK+ro!=@#z|Ef3b}-mFN`?zcHxGm`WPL$b17F zZiE}KH6(cGa$OfLX4TWf4)h%Us~DDO8ewTtKpLFWMB+ z7@cyF)M;0s;<#`BGn1VHZ|A$rKlMwFe)qw=2_d4Q<5|fk}Z}>sugN zC_ne-i2YA8@y%7A9i*!?C*7q?mn+wa1k+a~fxJK;|AH`w!5%YBNMuUFE8ynJrNL*H zBZDtoZ$$QVXZa5N_l!CQim^)nYR5;x|Lu&T`?p2^KY+LY^L+Y3-a29pA!HK&5{;>-ZhR;VQPAB~3m~a9i;fuqUvIYDl-VP&3!e zkp3g9SpRj6>|cz?6}f!^GKKF-(i8b#3W~cQ+P|*({n5S>z-?j>T4Gl>7-7?pZ6>~m zZUS^tSC*bTi(JSE^=tkz)TG{eqIHlj_XK>0Qm@bU79y_SU-twnImMTILa|q+;J@7y zDF3)8)Wa~J+mRcu+5Zps1bAUdzMuPZ1v1)S<}GM8{ulH1zuXgVg{n|+qP4KrKc7>O zVFb;5tHozT6C!Qvk<&$;89l|rs0-XEJ+rq>KzNh+16ajsalEMpV4s_id7ev2e$f|y)7rZfH;mK?Cd31r^T zLZ3T8H75>Ha?kt#rFvk2*`l01ts%+Hyvo34Um145Vd8=}WfU<_=Deim!cvs(KBmiI zqDp?gy6u>&jZ|3Me&8#PqhfN1U8u%lm;a}?Vqz`E(7sXO0PhrqMjBQ>l22*OdI`2T#8X3NfFlGEuIay_1{I%!ik~HVLanByU_)@9@ta zxyPn1sl`2U=j=w0bqXc=KiFG}FYGN)Ci2ULB&*3iYE<$S2Bu6pMM%cvEw=H|IjiJ) zSa3xGE~~x~G}nkrcAbj7b91H`aN(Z=spA=iN7Uu)+PIE2&al&{jbC-j!Q@CX?j zr>t6A!%dd*kjJTz+mGh?a-}er%GtV@xT}JW?DIz|Q6uWNh?k`MrI!pRTe+;+*baQT zzqbxcw$CR#+2#6A`XM_Kvz3oFwZl`?lX7T=-qwL@4!3cNw3Z$4&sD@Ht!-5`wy=dO zgwK4MPOgBmHIV(eGc5I*GpTp1rtG=3Az!CI;rAX)Y`3xFNI`=^bC;fIAFD=W!{Vxke z@CH`89E5(ueTq8^XTkrpQ0y7`&}AMt=l+HP*Mgw!$GGG+e6-(ULp%CxPvP`}y0s3y za-`jWOE0D79kUgdDOOsK(v^e!Q`OtlRhrz1nsIqht)k=+kr2B^s_RDop1fNBEhmv zXUMeqeGgYO<7#EmRuWg z%)ULSp)$lr>M#EUFLu*3gH7+egKGWsV4%?;xFUgwBxU}We?r|gI4bh5e*$ML*xl&H z?)4x41ij<@z6EugxuJ&=&=T>c5F^G)ry)nMbTw1m9HhV!85kHT9VBhyasN4-7GvA3 znjfRSu)czTl-(eOLZPsOskPRJUR%)EtroX3L#2tVkQ`vQ8V^B?N1FA1r931pfAO4$1@iB-nkgJlky8k8R})LzHGv^rAO&*z)c$KjWal;}a_I_T7bT;#tLTB4~<)pUEe6Vf8jM^R-`t`d*M*+n z*v)=(8e{$6`*zH|M&bJS|L zJag14@D&wAA3$t*!Y-M^Je1P1$^>!Ic0JRR1*GNL8nDLpS4Il^tb6h$BNf12nHtOu zs&B@y)+?#RcEXYPBJWoFHq*^}VLQRCpR*+uyZ?FW*884eka(?4(?-dD3E@g?AV6!< zhnW$f7DAn&j<-ILYD+$Z<4C}=(JTPOMhMuBjQGust;D9M8cn?-yR&oHwM@=>21Vhv ziTVuRKIOH(KQ+CR} zZ;N-NhBmYT>B2v7`QT=J7}afe=YsMOlO zIk}`0$(;RE_~_d-q@o-6uwI@F|L1w2$2Vf-Nn*Pgi5c@^U29rFBQ?1%`9zLjL6!D7 zV2S;WlUDws%Y7Rc-LQ;xmUCwTD);Iuy@bJ`VQWUw@zYjmz?&-l6JKLllrWTKh}E%j z!+}RSbhabb;*ZpdxTyed=Knq-e-*;C1*f_J##YPY>h*%s8W(>Yq=80chpbR`FW*;` z;2XSME!}k37qsGzHvjtNo+$isPx#bU`ue=X{Vl}-XR-=^-4hi5%Dw$p_r!m$$%*u= zZLEpt|C_0!q^2_W3;lOIP!P*-UJIo^AO9+1c$kEioLYmg|JY2kELg~30f`jKL-aGS z=N;daT`te_alq#=TJ%0 zh|+00c_COclw`fK7JmbZs$Ksuv51lszg+z)bDFXg5#f}%-V8ZA;Cu?}T{eMsWyjuM zd(jvi<#X9v^j?Mlybv;Ut z$VnhQ89%H{Qs2^yTeHfI#B|@YK|+?7LR_=;ekGq{bv`+AFV$oSxX*#EBcfT2%y0SK zS^Kf7P2YftH;zd38y*Xvt*mGBKLgu^R}_DS%PS@~)i+rrPtFm?^v{Hdh`iJ_k7Kmm zHjN$iib$+?5vM?NJB`povpC=)hHD?AJr__ba-c~l@9b14C6rYv*B)0WaJ}1^vVYeq zL7|ptcAS7*EQ@tq!X*LdP3bUK<|(P}6=`XcKJl=kwHPFxGjv^WLUCPVkER-W;ReFW zwVC^yh+1<*KnFL82lClG-pV2XUslMX`u&NJS+m~PktXe!);b((P`xc1!c{W|M6~Hc zIdOsh&hwM=xj>nS9JD${z=?uCI<|-r7B=WD$qC*8j;lTiui{*3G9@PBdJqns5^3|b zE;ux1)S-(J>+0Q<#BW5~)s5FF`u<`qYmB4vR|KnUfd_KK(!J|!1J#Iw^DW89Efo<^(>_sW0JIXq< zxq%zvi3!m`O#u<8kq)RAq`4OtArLouT+WE^e8{hZRg7{2E>bY=UvaTt5z3Xbem`ir zKMpjCBV|eCh0v4KO_kVg$a)3tYK2F=;J9KLe29Sg8dXte!lJ^O%fl zFl-*N4Z8bmHlP;F>35~pXmzAr-)vt5I=vA6vAY&ZO^QklgJXZxzz%|Mmp*FER{oja zC2^qSHw^I_i==2x3+NpZkm4LHbF9O*=E{sKt}u83DKIepRH@meG+rHlfK=q>D1zEd z0inQ~Yx8CLbN1+u4DSdSMKo5AI#4+*WSj^ADh#TrGJq12jo)K6Mg*n?T207wk++{V zY@b$~6x|TV{QBS*0gtGwN88a^L3mI!m0g{JoKs+&mbx{L7&>+G5Qp8UQ;KKc)_Jo= zRKwemtifdDUf()&w|f2bPIhW_Qa{5l*>GJ`t9X))A*%*$h;bdq-;8raS6*FsQZtb; zikZB=Nl1#sQN;K+vT1BHS=NW?3Xs$%3!dLyaT`5Q?WcYH$B5@5Jp)GTc43Q6m8%m- z3QW3L8Bt9AZw*@6IGL$6i#e9`y!g%1Z@&Y0kZ;}u$_czqR} z1twMSIRW$7IRuEMYeEy6_Tagq8?g6Q@{nlq2BbGX#rs7{x+j2_q-Pm5$>Cyn??G zW~}gt7N(rz^EfM93vdaBumE7!Rm66OlQo}ga_PGQl%qjM$5;{e8|zqH5~l+mMpq9v zuVP<^^fP`MhRDd0@CemEL*wi^XcDCwEOzTCGyEz{?k<+!B2VW%PA&-X!GdImj;nyT ziLxb4WObIC$TZ5e%gaeW+sH+1hFz5#!QF*2-IY)bhhYlkoKMo@(&*OA`w@W=&GX9^ z*lOnOM_c|^+sRt8|E&Sq>nrdI+&$X}+*(?@?u$jRCZxEO=hm>MR+7cddq}&!kV77r z2r>q!2|~%8h15@~ki#lGkklw>``HOX0!Di0(+C|PPA|dA^7`|vt-tH%R+2$EqBccI z+HXt{^#_+Gv9uK8AJer#PV3CjDehK_P z>ub|?Q1c82J3D9%%s;6%`@~CfT;^u1E?-nXWM?QLg+0>sWac&~PU^$GllS<%g*MGB z1t%Y~KYjR3s@&s_I?FjV7@bwU6e^@66;4I?yJbYUAsfYNr8PxgBF4}5K^?%jW?mk1 z{s?ms^O&G6d!zkZ#Mro=f)#xQ2*m%IdHrjMpx|i#|A1GjgL`5vV0>m#zgfOuuZd+C znfyZD9Tr2TjwS*@Gz#TF*B3Z#Fk=^!c_faLUeCl%hi%hnGd%&~ILT?4W)bUg7L_>B zO@KY#^hmzsJO1|SRUB_A@%3=m$L-zc<>s5up4Zk>r;Eu^Z1L4^xNkt`bsVng{ino- zNvZ+;hN09+s^$GO3CrrCZbVJe`eZ#&Z3 z)R)jYW~T-Vwfkrh?2&9gX?LjcpKoca*t#43# zi90ygjQ%>q*KF(3w*FtzF98rZq<2j~S5G#?2miGSMwV|hyl2Ap9thm9E$U^$j+p;v zH-^8?$ThO32B3IHg8}$CYaHEE#8}Bu1!gNT6{?e>9`hNq2hKsSRuCwaYbi-a-twOA^(Kise-`MbLD*fwe^b+F5*C8(#C@x?W8YGoka zh$W+^jxiq_aXtKd(zXi&RG*FEA}|ue8S%sK0&mI}7xH&`W6mA=)C+)yQ4{!O;)=E= z_!_uRoEq{a{xcIz0AD6)`X~mjH+8_^yVXr=n}I+=&u$cqmq?=AK(ahTU+2fN94>2f zA}m}=TN=jT4olBq{Wp5u=i%^}T+|U;2 zWdrt^u>$(mk)<%DBTnEXLyT$5v0!mZC>_O**@6BJS#o~?71y|?f{=kxAQnMLWw*$v z-s@4(?3TlVC(3q6))Xe_E3lvR55g}%-NQXL2!(5}` z0eTkpluCD8+(}+|A<}^SP^dkRTE`F4!?ISM2lVC;E1bml+?7RGzgN+q8?scCh;U^l zyxNvtDSrKfi`9z=opsVS=ZsyyIIT&dv8Rzo2P7(L3_YsauQArad}XK5Mbovl^fA>% zpxv6Oup*qj)-a#;7$0v5$`Bo?x12nwH0^b{I!vE|oxY^lSv`w-W|#5PJHd<75>@sf zr2|Rk0|`oFPms)8oc%t}@zWHC%`wP4Qp}awLrA+o zp=_vG78qC=<~O`Ms=(k+~mI?pwCEnzNcrWzAJ zxqssY5b#mt??Mnm#@q0ai@bH7(;=s-9|=x#SRWm!5jWUa=RHsypSK{UQsu{v$yp z25|;Wj2u8;0v%qj)UGvAatQ0W7HJ9*rK9X+4$#Sx7;51W4a1H61J?yle zdIm{hOYBG;et5DA5xhI1i;v6y+f$NR61dAVUY%lQDBd)WrSwFcBFOy)KzW0Zfg=|Y z>uIS)sL3~ksc66|qo0DbpICtDF{_4jF<<()6P^vSyX2->za0*>6(`OZNSlQc2hi5# zjwvV4!eE){8GM&2fDc)0U^v_{Aell(Cy>F%mIiZok4aW$oZCCLepT&B;p~e>d#Ikh z*UOF@7;wnu;D}1hanQ+TkrW9@>T#_^Lx8n^uTm0uQF1@UXKk1#E44q%x=y0Ol?3Zu z6lmrh1Qurt-8@?#E+q5hDCYi^Xt5;}E~jZmX7&{_%yAiD;`-ocoZpfHW&NVV4j(W$ zKB;)|<()@5j~wFG+eA6O0e6>x*vWE@2@d!vL)K78x_$M)xU7$oY0|dL?N2zjM{loI z<#D^hOB(B0mUl$JFqJkn(otHXIu=>~$QBUva`c^xB_Y9G%bT&vVZPyp*i&2EXAyn| zvLKVbub>StXN#&b^?$MUPT`$@%idtewr$($*tTukwr$&H$4SSwZCf38_x$?5_kPcL zpPAExXD)J+Tz#`@Rn@Bcpx)Z(n`+5iB!{zcjq6;;$%BoU{~+Jl)khVk?ALNJpP$_D zjb`D2-nXGA3 zMD*%|J_?tY%+BD$es=Sq4zaCfY87^|9WgW6+9(uj7~(YL7opN{h)T%EYIkqwuoq^u z`&p_;9((vBf6f6jFA1P61>;~BLNV?>bt!*|5P*T{hr)dW;iDVPr~WjgfZB_X_~rp- z(PqKlXjz>g(xPR5ih70U>~H0)F3k1|B%wR^TG=5o0ynIZ*=cixs$E5(Og}2Rd(A

    v4dmZf==&nXHvd@LAc!DzOa?5y=YR^!)n(B8=l$aXreAlP2GChb}obj1Xd2D zcRFWmH$O0pi1=`k@C4QprNIdKIWMfbYR}JN%DEPE#^s10g03$w&~6d}inllty%n^V zSWCLzf-b%9*7ioK8@X+S2doQB<&}Xut6a}wbn*Hcm)ijwUbSBrc)5Bn4XY}%mYee7 z0GP-%J)%=f;u=6*>`NDQT%&hV3qpWd3KLnfdM*0%YdE!j65=}f5{#iOSz>@`WQsj# z&GmE<=MtnaI-;U?=u$4RRdK=wS&?06d}=N1i=>E(=`89pa=NC@Dyj|Yxh)EXM>e4m zp!DvX)B$1q0;w2WX>@|-7WK3qh(h<+BAFOAdrfMf(xoM?4|sttYE?yz^dGck|F&Ib zq-}{d+z-Y9lkzV5d>QgQNL<^sCk%XnkK`&iAIQf3ZN{5}HZuT5+IKA;#vA#jWgTO! zzm~#n6I4e*YIg5Q^V9{;_dKj?aszc9u#nKLymc?&knc0M?Oj#-9`LFmZeci0blVcM zndSQhp$CGl1H!iBN2^XS83n2r>g?DkZK3>{khM8>2BmzsOYmx97VzR6tAX^(B*;CiG={ci;RHDN$A=)sgvNB^(VB}lPV>D zx;%oN+lV%>o#P0M0C%2)x2R=af?HlWk0*#bqoN1X)xGO(0v%z9vOaD60`zyB*5El5 zv|p+vc1=5NU$lCB%?nJ=V3%NBjoc^cPCy2IiL1p9_hbTyH={N{pb{K=?^TGblLo`i_T<8?-LxnOZl>obA=utr9uO~wU< z`D9AGJA*D?bWUtnEm8j4QQ>LAG?qO#5KI{LyJUpifS=;9$X+j2sm|os^`cJJe?oe zlIP^Ek)mr=JXj769e7Y@=0C?7JTaOi+iOyAMLv1nV1IuS{OQH@&=6sm0Ru%-(!cHY z|EdD_FK+&SiQl;@@X7-VBKm@iMO74x%m@{e&$Wx7@C%iO4jm!OFg{N*Ck&cmVB9Qy zH`_m1vND$mFfum{w~f!=oE9IrCwK~0r~1gez`4} zj%TOGBoQ)PI!lsymhufHso{4$^;VwbLRNN&Zw2aKw}|> z!rMO#hDY2L=|6bpz`x>|Y5oS6`0tRue=Ct?MEWnSAdUJDus30J^h1TA8^<*S4vVMt z_<#yo$4G9`a`uB`Yh_t{v$yT9YnivgOWt|$<>;w@DzFv8cF<~`UVgG$B(cm+!asit ze_F)S)U&y5rhB|UWwB?w{V)?_dCVi_fB8<42ZT84k8`hzwhPeKLX)rXP#T_9{S+Ez zQ2mq|u2=n9e!xNPSAF14?YA59?aW>XvW-=6u$NpX{3p@Uek|rYOdh`1*MC^H- z0q(7d1Hxz?A=D#XBGzICkwkohdn-7EqP~Mg?B0;s#@DaW3=OYEVc`z-VfDo|`#2d( z4)_FfcedT~gYJo|cZ_^B`$#?tgJ8dYQ1X@Rd$)@Z8hdnwMSEaG$6L0Ce6Y$K@?ztU z@~}?b4Z-pi?lbRH7Y0$m$v56uc54sD-zmb)9vouljf%5&N4!|K4>YTL3`<{qn))aW z^54n9{SK=xpl>qQ=!Z+>J!g3@!Jocd@o-_RPnY^Ywb3ZR8_z)s(=Nt$#aqOt_~BYY zkL9HozjMB(d@8Z1wv6eN0mEsUu+|?@lXt@5F zQ7jK#USj@WG{g*QxXo;%qcOk)2OmBv*rl*Umqpmi@r8eOGJ_KJv6ChZxkfL-JKzvZmjS5cudp88O>27E^+-K_FM<0>IOqMz-fv}od9_1SoGi`o( zq!ydDeXPXO(HVKB-hyeD+Flisi*$b}j*UK}AAK$bUXKRqI?(8Rhi7SkWK5-K?gLpE(Y3bbCg+X6Abe#=6lr_4OZ#U?1`G4kjIRY3#Gm^(qj+29q~K zf!53o4T<)eD0;Mx7 zua?()`ZnAkXnCCDcRUZ52c?Vl?s}=UyZT#CW3L^_J3=s zE}mp~%Bz;Q>G=)QL#yZt_GjaGhIcX1 zKtuHDh|R8`?@D7dDmcQv%EB1gfml)znn|jX%p01r**Mu`EEi9{Y&32UdENAST;42- z7=MVJ%-mIb227!&5QFR#da<9-nWmFv8hj+~G8vCRwQ4h~3T5X}_xzK*HuXZ0I*?ZY zogEmnI14N5X(-!`oQJ(7yf@XExh16Lf#2_MQvGV1Sn(I4QL-Y_&?cYU%IJZ>g<#V*cjFdpURMrC{qocyPOG?o$$6DBGnsM`t0;) z*1A~&^-Mr=Azem5dAQD4VL{b!yo*0+ON^Z|AH!K_M>-5F?Jwul1tM=dQcXDXkQ+^k zI3%yvlNVSjQFDcAZrNPschf8NPMjJw?4!I|3sX4Y_^PFLR`FHo%;o0Ub85-px^eXP z1#J+Ik?@XQa?VH zk7CxY8ZoronW`o7@#i*#F0D2)p1;MVT}Lc zTVv2K4mT->|5{-zX<+xUKzc87)+5k({~9Y$>3G%Yb=ZyvF+qtXGNQmZr${+li=7m! zI;x=ky*LfTI@U*r7lLEP=hgj=6qa+3b)h(+2L7lpmX8xKx}1$*4gFbfB91jqpA_g# zgMe(?X`;;~ouwMMD|{TCGO98&tF*INh<^n`%h#r+TUwnThw)hHiR3C-u(3kaBSp_` zGP~^*IH8%c7NBRvk$GEPm?Rd;>$!05%pRCK_FU4b(yyK5Y`0VFO)$mr&3^_IOo)zaZR#wFy4xxzbR;j%q6v?0gBsz8X zgXXb4Omu}UkItFK0VO}jfEO%)jF!=jVt571Nu#5KXTXNto5PfYQ!&xIzN3qKAeOd0 zZd3VgA{mK#k#QC8rAfzwfJNh%a>*6;%gwpWBg=%QA;$=h{!gGk4fqqgLBk}VQ%nU6 z#Q$gZ8`J;OZjsd9Ov%*jUy%~4vZ;h3h{!ugmR(c51&S(y1VWGFigsI6vBipALaHe3 zn-xMtYv-ms2@YnzTe!Oiq6M6Wph0Hu2k?WpQ5!~FNG z3aW+{Lye)vRA#K(%L=-LPGS;iP>0WTTEh@VwPhNbs{@!@M`__ID8{R$x^<~+Y!@%s zg@+YKSaU`mI$_Q^;CF_>aF!b)hJ{6QR_`OrSzrzj!KFJY48lFJEM5GR3`6hXXB)+6 zw{)hkk6ZKc^Gh&%A=nwe${Bk*x*>e=iQC+I8j6wabrJ|Wg$VX>$I|-oD|}f<`-jPL zimjJZwKlobnYPQ%&~DZGq|mrk?P>kvKHuMcwhP+F9!mB{MF5%zqVRSE4;?19QW}X} zDzxUlsmBWW?2hfxDAje|b^OW?=jx+ZHNgzajx1^}EUhsGQzNG*IV;+kg0k(Tbdo-MF5Ka9O@dAHfqQr#06%N z<|MBt_2fb?I=9Hf5R*as0{fY{7^Wv(nvWYUYovQPX}TZB9@Bw4L6| zV_ChU4oyQXm}s+^A0e4ekIACDPIyx5I`j%!9_VegrA{99>zU5BnhL;Kp-BvFQ`4aZ z?$7$|?K~`GW@qo!`Y6I5?Cz6uZ|RrCJTzRIFOnm&+$s?gm7LSQfhbD{KbC&DEc=?p|5*2k$E%;W?H-(QUvrI5yP(GAGkBra zQY*l6rCBqyNzm4ov+;rUfXx63$8}ev-@`gM6JS_hY_SraRzHI#-j&pXvj8reD~VkC z5r*A4#@zHH$sv=RRssVmM;^-SJbfz=af7t9SBQ1asHV{KEj`LfBeMrxrufy+CH($l z@HL`D%U`+wM^3}(Jcbd1f{-S*s1XkYb!ZRaoh&YV|Mn1>JONyv_<}vn90QK&g$RHo zH{{x6Bz6FT9eyLPpstzC0)?_wApX zmp4TFvzM1Jl0a-_7n}lkAKK(BLi7BJAlmO_t%&1{~I`i zu!Z4&T)xz7|Il{*0G!w&9BMq_PXL+_)3JPX}^VeCmcjDL;<*dfEOPvoLBDGljjbVd{NCD$oq89s7Y=OCHa=da_HIwQoS8Wy*m!)g# z^!+QkLJ=MTER2h2IFHg>j3L%|jIHL8#m4%PR-*x}7Bklw=SXv5ktLmE`SLFhk70-R zHP;}dPg2YxJ}-6;i1XXra(*0ZO|w#Cvn1oVpHL8`UwAPdznYvQU47tC-@**d%**E# zJ3V4Y=fSaEVqPwcJGWQbi0LuLFFPm9Wc<|cpSaD|Y-S`>_^?{FOYJ0Aa2C1*R-y>M zCZi%egAG+SQVY6E!s_XtVYhslYnL#4>WqAukDvH_E$IYqL-AlpTW=`IiEE`4u30SrWHn>g>w;+;3rO8Oz>!kZjZpq1)J zUv5@G${#aKv6#zHXlvB{2-c!U*5AQF$-f7k4!|)m(0?G8YNfQk5)y3EJ*6mbqxAfu zV?N&!MoVp6-QDBQS7n)izl)#|Zc#CF{PHVh@4Il(_0tbUVz0q!K}PglVGoRNfQN{PQkSGNF;M`%T$P`h9S5qKoSI#nrK6LSnUGu# z*X|z~>l^AD`vN>gD=-Z^1q&;Xg(Bt5)bPa=6KgGi6a|Fl9~c|JI;g4?@L^kkpZ~dM z{p-;9&!?;WQRpH4cdx3XYrUv|>9@mfnZ>%T#8E!EGJclAJ;Z2Fw^K1FWX_-l(e=p6 zrOmQfQc@|Jp@1puAN<{rV=y{0h+p9I7n z)~(y1Hq<_LidTNJ1vTQu8l~I6Q}uM`GQNzX*cB2NtW1p%qL}rYG@R~}u$@ieDoHcs|8K@3_NCpS4p9liyE6Y^Q;w1};t2V=% z+qRV9D1lWXvPG(&#x;YH53jfAG;<*zNYK7Pg87E?7_@WhD(5&>Pr4RrW$BvJt&6L( z3L5@!Kc2RX^I*D3UvfX-{=9FDq95Ov0sTQAfHnL-#|rV^t_i?e=U+kM8!HPvz=#@h zs%mRHSCsG{{W3Jne^$!~ zXO->DDz!WNz*RJEwGye=y=iJ$)!JFGH{)A}73rdXJNs)0Jfy9MMaPpOLE+^Bi1$By zNwvLJrDDJbJ^%H3aQ*F*|6C7%yAJ6;AZ;^OJ5n=yCsRXXi~r!YU6Z8cahOm;;~%q_ zVdFuyEIdp4z7VOz2$8YZQmcL)BJKkYSt>PmFsL|;BxgtdtWqlyEmc}(NZYS;^17A58l8@l}pK z_nL7WBth_qiE_)S6l2i)#;DftGoi94qx3VjOm>-jcQ>yDSH_vu4E0)u6Z0Mvk`{dq zh4=Hy$Y4k2t^tegoR3LUmmYISe23PG|4biL7$*)Vj_ru4XSQd6!Ox6Cy@ZWkXO}8L z?ddMCZ6OP$n?De{uq{<~^8Zcyq7i%RoLZ5l=tm<77C&<}S*59Fl@hl}{EF-5IzjSt z7AG1*2Rjg)ty6?|dcI>LJSwN94#dueSb|sNpU4jQ!E~?vF?y>>D_} z&!F@{4r0tQiCP@QBsrsldE>lKXV$JC%LEP=9GIUw;rWg3htvNAf%@K*a~>e>GyWR) zf3;}-XZ9oS;QZg;^Z>@J2ktUbp7}U;syWGcT9?l1vt(;x-MQQtyF`;si0P#0o`F!( z@-~m9q5X?bTavAk1j0E~Ns^eCkOVMj5Fr#1FHz6Sj<*ms6(@`LaFX3k3-WHdeE#pA z?3dZ@OwY%Y9$x;}G2a&u0R`OZ&R<&{&U_wg6l$+SnfgXZ_ z_p^bnB5Q!M3uf)13WoI&We{eNatb@7?QsWDAb*YA8wZsqYR}uN1eGW8;O=LE%#*#t z1z_Rwr0;x!Fc7;F_C!G$$UUI?r7xMdMj`7+=b)58HG|BNzSaYw4{Crc1+0JJ^C%0! z*@r;J58{w~h4|DR_`YY3{0qcC=??N!V}R?m8}-XB#cL^Q^j^7=O8;m{MIgWQez3fx zB8+}&QCtCjFOevSj}WvZi1c2vlFpa!$wf$fGIs?4qAM9y);@?5ZE(EAJTM1}k3>|e zh$fVNf)Sdc+Mujb4bk?uJ4LFM#ACHr^nL^=Khk0F*B(@yeQzb3uzJZxFh0sqa0Kbb zR2kb~h?2WO^Ad~TSxKZYd1<8Jcw(*C^Dk{b;2tq6hpecZN_`rY&MohEKsL zzSlC;pLfnd`jU+ZH|Ymo;B=sO6AuV|)T4-ABT>WmHkDup%}Y6jp5q2q!IrF{jFqA{ z%WR=49@^lbHE!&2I>qvrcx1M*FER0Z#D;V8)(;NlMjA#GwjvH}bU1#*?Y9`Op+~Kt zi(0IT*rK}QDy%rVRvl1IHwEJ0wIE-_NF6L7EMG>-VcnK%T)np4_3i8$72nl0 zn6vm(jPaRSzm>cs&jlSb3w2>qmRXez`|871ybkq@{gSZP#nw^|*lShhM%#;IGp zP8*{4*W`{pH}B<><@)D}-Z}IW*ZnoT9*5)Poy7_F@VYn4{M|4jxx^~SXfFLrnXKpO z+T-K9n~X`B$gUi*M!W_J!t_i_jN}KV8TCdFLNH#cnTsYS1S!*Jkv0ldy_Wz8UHenY z)o))lvRoIOJ~o@t5X>9DA%4W4&HvRe=^_t27zuC z?5TNYaC(%JJ$0Pg!JywksA?ZRQ~KDfd(Lb_KeiNfyA!Ne_UJJiGds94U|;0iQhDB- z(y^_`w)K8i(|%6VokQ=!^)(B_VXdnfE0t7C{ClN&Gs!!qe*Ko}u=nVJog~<*Hw)I! zD+lh$Yaw?WcyFaVdB!d8v8&_WLgas#us_YS3T!ZLie6RX&$EUjr*T;>i&-G4D z&5uO>@L~tPsjhHMwdLdNF)-4meurAQVy7Kkr!lZBRHAp`MN`F7<2qVDk~fHS$a8-DR5LfqC0jBczp)y(<* zV`&LXTvIdHPq8NUa;2{lY8#dCk?)FwSu#rujM%5lX+ zuJ#(AqSl-|AO^dqB&^nD2N8f*YRNpDXnz6@+iEi|}68{xKfTBNlP z9IMIqJH>V7)`!8<_gL@O<{)Tu*v+WX3WlKzpv+FEd4?3@hrT$PeQ@1~J(pOWvLBN$4rlfRRBz!-=1@v=5`cbY zv2@4q00Zp|KaY~f`5@|zg0`hU8Y1dVE4(-?4c<|Qc|nQe1$lRj(Vw)}-sw?xa9?k+ zf!Tij;LS1RpFNf`=V`P19khE?nQh1fINfBF>U&I`iOiKfIko_ z*m8)z(C}0A?XcXBw+HJzYy^i%LEvuJzReWl2c*(8vQ7Dyko+V z)=_jsQ-C47rtx*H%~I?k8*;gzi`qQde(aUO7x|3{yG__zrzEbdE z^y~ln$Jy~)D;)b1^p`Kze7Pd}RJJ zb5NX=8xTO{6%JeoN(;X=j}gI#!PyqlDL5#*0A@4PoDd+VvZb|+_?3c;AxnA>@=19p zLzE>Ukt2CCmCNNk)8WkjeTV-`j*0XkEKHV<|mq2 zyhw32Aem*lY_2JO5{VV_?AMOXQqZh^TrU(@?xijikD!|VFh7#B9~JJn^Uj6Cd4Bz( zH`2YmJ?$Ly(V$k7a9^X@GYeGkxU(`T#^gJ+w#qDXZ(KlpBR9;Re>eV$}W=a9z{kyD!5Muo`v>76V4+<62cRgj0;XT4?w}^)d9;mGz45FX7=rn6^1 zdedJ{Z)f$tkUQ3cw3*0Ev=bf1#dI;3nNE=s7RzS{8qQEg6zB(r0D&nwM(yV?VxSH& zkxqGr9?Vp=M|4Li!osi=8R2$D0oPTu$4OI@Cn!3iSfaHhsxn2x3hOw7YBgiZ8R-y|ciQ9NA@r*`msz4G`R5b8_vxO%#ytH%r3+6F@=EoVA0h}d zxm@*-FvGMHzO>M0#!P9#@gVoNh}6+F-DT9L#k!o{a%8!~re|YloU*kJ_V&pXtiy^$ z-hGmEkHtBXXv0>7w)tqZ=32TBl})aX?uK1wB)p^RQgE6K)YNY9%;otNnb1C+tNL9` zhC&1(itdtIQ&0az-xLGN;#DXTKdtoJ#6p&-Wo;8{?LH2^Vwn67gSw47-oYpBzA1k% z$-#Ls3akfP5zDOogaat*MGo3*aJ8~P2w6XoDdt>a0Flu|D#q(|fyN96HvODk^fu-> z@cZ_p< z`&d6BxE`hfROzN8kYTFNWLK*TNPj}T{D!X-`7GrqjvW8r-(gP;00*lo|K}BMp%w4%a}3 z(NGIzBu{onF_x)vXUsdGsI$?M6cUBkgaJQb-w>7V^DSWG8$}udFawhHr!?Z-qq5mN zvdvoj$Z-C_hLL-6!G9L`fwCDLrjK&vBiT40$24ILdAl@BQ?Fh-7u?;wQRu zlc$E6banB4(inS3JRHyjuErv}G~+Nu@pPjP9OG>*5{8r8<&4UWxcA+gRWS706&5rJ&`V4fh6BD9$= zGJ#$E{Tu_kF<|)~4r{q;oz*>!6F$)5<=edfN9u9fY7-#!D7*>>cLV)L>e0@EhX)j= zj!qY4-p19}(A> zAT^9#=8#)#HwRZd>&9`&qD^9q?p<2Z1eIijgEHT8Frko*`^zrMw+In|9(;w=dd%N} zmCZ*8B6@;f3Cls8R8Dx`T*5va*~1{((H)wP7-SqLDDj22Nd=izKb%%zBx3?0sKys3 zlan$OIY*98vhk2hSK^r*>p}u)vBsPNZ8ju+sXqpBw>WgbGkHC60ADbdA}FfF4!Bc} z$XlFN75rcyMtu7ICu4v6q|pB(^l1CnV5Rt5z5O%81T4h=U2H@DQ*2>MQ#pF|6W72R z8v4y+hC&fs0z1FR>ZEa7$y&-%k-w`VV~{4j0{Nxfw~~zvK`ffwY>juE=FE8h_V5L1 zh!TZrMm`~(lGaEdGLjJlZ2|_05~|G+K&SGTreKVO3ad4$++lK&UWFZPYTwU{tKD|U z?kX$93;lL}fv|ObMik;o@*!W|3BZ}xkmdL~N;Xld*op~Fl3Ofv zFVYueKQbEzT-ui)7-i?QbX@r^jV*9RvIB#SwI~4(1Qx~Bjw8^H`ks(iX^2_Qi$0~5 zN$W__+rRFA$HScRGl>Co1yb*ZM9ojI!us%n*nXYn5OQgE9)*daYBT za=UJF1^16?+wm9#!ww|mM(!rOU&tQ}_1ch0*+-UKTzv8Ao_)+oUbN@uTLv;=q&i58 z2#H9EXo-l4a71bYxhtj!aC7N8DFO{^0PSb2xXTRM=i;J;OSP z7+Q_Z;i=Rtn`{(jOLlrj?S2J)9BOeDX`at4Qq-90Zzv-&E0kgd&yeNCZ0>YQRA0yI z#yiYQ#}%fT>!!GA4m;^^!~BZBR?RIuTX_%?KHhgyk=t!}9;#JYq27%QYVN8^??^S6?;uem_~2cBKdM#P z+Za3TLh|<9QZDyj;(13x?g``#!Mw0%ayw|x zoI)C?^1kEM&RY+Ax;cG0f$`fdYdB}3HsRrY=04{XK-WhkkuTA>z%)b_@D~^ElM)t? z+7>*;iTRv%k_xhCYyJU*;WpP8P9IiFUM0-!Pqrl-KY`#T10?qQG!=ZF*B-r3;1jan zx8Yb96k+L=9r%LYM3u1jg(4$Ky)zz?&)WkyLxxkae(&NRW;pq#^OZ6nU?u*Vb^hAr z3;x>y|v$04#Y}|%8d1UkwM)-K|x?( z(Uz2$D*X=1q8MT-C5#0{5N#z`X(w(3olGT$;K|td`-Ne+Hx?c-RB&NF)CYNCsxej? zgRFxJ++R~t%aVF+T7)98 zMzgwD)?Z*Nr_7!~1|7h zW{B@w(3T8O!aD75EE?u%%DhGy?Jc1$A%P`f;}@YtV+`~u=s$$~D#xac5(Sg*0hG{* zrggvV_3=~bVYGMQ0bL%-{1!r@{xPm2QuR?Op4ts3+1r8>+fGBPEO2Jg#SLka+Qj@} zPR-n%67wTveaCAS&oBrR@8S%>v@%w5apNYM)p59q#JG;gjLUIfVQwnZx>&i9ilmP~ zzc6@@fO%g>{;=|M08=Y}X4)^@3-nqU_!ld+zuE|r9jU2a|8{lZ+j!`>zNhRrwB#2(!g1%<&jhRe-iTNMaxnMAhs{T{DrfTSl_@$^y8?zJQj3IEN+wLLD1rr7+$uJvxd|?YZ*@s%!W_hz zu&8+*av)g?SN#XiZ*R^QKcC(n5YC~vpqe0CFfKGf3v5V5IG_sb@_9_9h!1k4L2Tv_ zoysk2?9NhkxY4E%KrPknL3Pt6$U%Jgp8G7Gx6>%%8U`wT>@8H`a?)in-5|61BnOqa z@f9+cM^{jyRYqGU_8o73=lwdQr*uJdMQvmCN7ssIVu6#X{sHLq2v$d!MMkfL#uLO2 z3lWj;J>a$}wwWVR!yLp9px0TdY&J`4G#29I9Xh%Hnw89Yzl)R{xLGiC?As*s`y#ZW zPb+R%AwfKo%4&|~2~DXCN}({qtk@X2hD+HHP$P@vVLqEr%kA$t&EpZAZl)M9EJFtagpiAfU(?ps0Y742%&0-m}pPqO0R}=@xxQ z*&VRuK*SU%f?T9d&IhDe%&>=oSnStDTgtBF!0~pH{WgassCG};psOqE>ixKV2Wfj|rjn4pL)JR?z&vcPp zC5=uV>x#z;SZHy%`gO1J@T3{N~dumdTH$FOizs;4Z&sjM6Xn-`eK<{px`b@50_405wO z`SQFGjG!kmMVb2us@WxWGfK=1WvSiL8+y~HY7fHN@po*|mtYqdl5wyI2(e`lnAmTV zMMY?GRxSXi<}tiTdv3YO%h=SsxulUFWHjn=(3hXf_qCjsUzwBCm^mM@DTTH^^{ZPBYMEBd8NE!C>Y(aEIt9gp6$#Q38Tx20+a7Z*#yE>u?+woS~LeP^2> zedn1IqRC~oE}Q=~#OvXXwB<&QY-{ZbwEYxd8_@!>E98UWYLDAWgX$}{&(a@0gYaAE z4wSz0j$RyhZ#UT75F=3PNnL2vab47X&Z6Gy;6vLV2&)(APU~F7mh*kh4Q$svNL1R# zFntzhH&A8VLtyUG!o9GXRHc9^^Yx1%h@YVmir%b<1qg3sJmNYzaO4Z3n*tBYtv8(F zTFBmdfco0Q+7KJOBX1@MG5US*1Bi|*Yeav(!4=}S@7FU$+c^V7C0#NFk`*phcItH^ zz3+$iL~40A0Y>qQbf5o>+q6PrYiaaXqpf40~EN?4}xvQYy9h@twG#-Bj< z&_WETL+EXFCI$kCO>;0Ql2nQ8k=x^pEaJ}lKwncZ4`DbdRhSJ6_T1$7cU#hiKKPQ-^ubG=%kUl;R3 zLG^HK@@w*sxeB4FsFZqSTZMpIwL$$TQonQj2lus`7C$%w$kIrFJn=sRS_J==$Nx8U z2PxD48RfzJuYa2Bzu!zCLZxb+5w{Q{D!~Re2GLARdhIDV33aspNb` zFozp}r@YdkkPFkxRF3ydZgx)m>?+3>S6a)AMaFtV!NH<1C2(Oz7gDAw5-?v-SQ2pP zG3*SnnLb!@xGAHULJd7@y$5SMPn|q%@oQ3-u{qHme$YuhMB976-NMRr!PX2YUGY6b?g@MZTqG&VDrM9Yl$)&6)dShIU=b5 z6s5xl6_)AnsY;1Kl2fm;mt@^b!0RW}1`IRQ7Sc4MAe$^C=TD+H`$J|dln}4d_Xw9` ztic!mv+^PY#ZTZr6`<;cTzm%>Ldl1SB0);@J~1?VKtU+R+m>cZ&u5Um z<$Tlg`-A6nD|~i$hX5FJBq9QaSOqDVm=#Hwm>HSaB8nsgd?zQ0WQrGP+A)ieA!-CP z$>La69N70vmM}C86x<<jc;HM8@|!zTgBU^l~iX%3;eHN#_sq1rT)x^l4K9PV^dLiIl4pp$v8>r|S34 zI?c|WqG`HXWCIz`F+?1Wnjqb~xkk`A=R3!S zRJH!7;xPq`nG49~CwAMD+i6$_k84m@jXA+5A7jg|1D)LRqpR_hVIVBG+ArO@QVRzq<2Lt^eG-xtk+3(*ZZHW0jC z(p#q7O;D;NOa@{ux)H1jwM%|VB1n~9g`!HBF5?$k6OqYS6C(XO|1Glji6X)V=Kcu+ z(z_yC6(UaCEL2eqUg(B!m-V4u(gu+R-EVMAHb3@0S#_0AnGyxn)3e&>XfuIG4(Jt`Cm`3 z{{pn?xq-vGfy=pp(*t0wZs7Q0;6St8DN9jHDSJyo{}@_5GJL_sWJ_O=#MCMpUv(Nu1vDj(+NK=_3IO5}==*u=n0 zppZ;V4NMIzfq=w7JPBr|2B3eytCYI@YKegC`~&dwKj-iNr#+ssg}u|i-39-FW(}kH zk>t9jv9^*O21Rda944EP=q~2cZWfqn6Kc1TX&Z!-R(Ek(8s0wpxc|Xs5kV342vAp+ zASHbXB$N=6ke9dxptB@LJ?(GpRBv+sjm=ume%sA{+3EIV>GFG>hrkC72xxD5cz-;d z_1^!k*SJH&?lC;9hx8EDpx)vsIz&^ntN?dfRR|upEI@`^3xv>J1D@806eJjQ2ucAN z231Ge9t8ks9YWTTdwl)JqM!gJ25|@qRWQgP#UN%6JIESJCWsUO&teq}Ba}`c$sqg> zJPYY-<{lNOJQ)Ck4%$m8%HyLJ)pJKh^$f5v zXh-d(7p3qKjiM)ZpYPs2QbX7xANG4~MuphpQNj(;NBUF)ptT}Uf3iA2_A(430c;G! z_fM5@gKs67K=l(2IL~>2{8NlDd&vsKqH$2PrkHC}0;Kef^8-|SM}Ap9LG=tTDHqd$ zkgQf{)ET?I7|cQrF@FKL4>a1BZsuKpjay;FFdf7`CxsBzNRR%4ruZQHip zG;G`v+qP}nZDZRu)=2;F`@P>c*PLB*V{K$BJL5RUGoI)9o%eNL=f^_Wo0QLyE3}Zx zmh$NtPI0CSW0AM{n}=m#dpkJlqOvB}Y4P0-kvIe+`zTbgKgFb3e}qxyiEu0yNft*S zkvJ8lle6ZbwnftN0Mb!=-{)uSjE4ayPPGial5)h8lNVuS6VjsmzgcaQ9O9?T z`qq=;hvS{9KPzRC*bHjdVKJ^SVKB>eFLM}dNr2$%Z54m9eEh7ZYSc>x2T$S=Ss6{R zwnKfAPVJ!Tj3^tVyoOnB&V;>jnlA5*ur$_tN`*ZxFj^A7*PGO7~Eb0Ee05ZK#Rd`+CLV9Q}zlKyxZIJ$$wi6 zGJzHYE91R)iviTXEe6Fvi^0kti@`L|V&D`jRgwN3uVOgO$!l5iYE!KhRnHpQsnz~C zO1JG?;?7{FRA{Luudu=32TC4Ik1^dg7fM0KL;iBw8SPauC1YZ&{RoH`s3RcR)s6CO zOAsO*jB;JlUNt_l<=tYisPi|Af%<>57-av;Vn9#wkHz3;iyP2la0d;v7)<=jVxaQB zu^8_?+P0s>npaLctuBsPEe}any3=zfjR?cEuhXor1L*I zgKV>_O6v>e=->f&MEGmmv$LPzb8wnl$w@uA`1Q(DgNc^B_>+(bk)jx5P8``QmWS4| z`86MXrnRtVmD&pjU6lN2q+8a8jGb5v^Br3NBQQmg8V6272{s@dX?tH?A}Nrmav#L} zr{y{Lm|FRBLbhx|^*^LXnw8c0nar7Q$is0P5k*AhSSWbCs{~Y34r%Z$IaK4T&gk}K zUN@?O5cCI^PU+c=W8l)F>$R88wdXV_c~UsOXY=JxZA<@xf&o%IyV`CCYTA4`3U@sr>j;pxx&~;&4i)vk@15{HX8^ zgNB;w^$a9&rxu~*dgI4sVE{HIA|;U-x-@5tB& z`TWqe<*T@tmf(XC3!uF=YCbdyWoIiI9>Ubac5KL%+gAS|b0J&Au*EVuDv+_QR4|NibS){D{;A7-RjJig3) zj1pD>gjf#<@29ZwQ#&j82GOl-LUgoaH`jNa!5!?o&Oqvq&VVn4zi1F;<6UQfd>KNF z^pDP<38*uW`bTH*VNuEHV{YbG3J88>Au>XwxAMHVJ5WEqB8)HhV7Jd;Uv2zhfX()n zmKlM(Zkw@wUuW#BL2LyoAWv!R8~q^PJ|wWQ+F2(Bs<<&82ej?Br|qJ&(Z?nwQ+BI@W{5|aVUuT0BY42D}4&B>Xvc2w#LQSVkf~%Qax1$ z$gWPy`B9piFsVn$fvmW06q)e8bZuJecxmw59Jbs%@-3*CE5JCI;nq~o!V+8~)0}El zOH{sYp8|czzkLRq?>>Xn(~w?JjzOx86>VoV$K|ba$$?<}iD1@qSzDq8M@t`jM6(_; zT(_>!dFM3*==BIpe|Dx@S109-Km%ZINhl~J^-ZvFxs1MO+e2&P<(TizA(ozANOuxI zwmd3wBpB5iu~)Ix#J%o=>xMC?17B$f+8UJ0Ry7ySd1xZrycD*F6_njFT&t)oEr=tw zrdGfe%y|iN&$_1rIe20`%hRI}vcV^7LqE7Ok)h1pd|d2@Xm5FhRd4T|PIG=#P5pDC~BNv;He`!erd#e5^LOoom~~;P8c~J2Ks#aD|^6 znlLue*P1zQ;&DU})ka_0G7MckUy+J+QqT1U2npQ&II8x!DoV0-r2FvL@&|i^hE>>l znY-?q8BfA>{(04|wYNW@Dc|BTixJpAM)ucS*I$!C{{~IKK*T?8vHv=89|4&w@Wef9 z%WXr6@dZ3@s9$BNTwV%36eL2Dm5A~jg#HU3tw~nDNuzD!=ja~TAq-?P@*m=Yhh#DL zG<@F}50hOiB)1@3W0RT9Uaz?K#&$-d-9kQyI>c_lgbXnD05+St0SF|14N%_ZfbnLi z=NZK*{A}nNfAh#3#PphjP(!Eyg}!N|eg-;*`>jxm;AwYawTYwPj1jG1qD$FnCZ!`Z zF+C>X!wQ?D)H^B>BaQiz`j~pEZ9KO`K2!P4(0&>r!j7c)yu9PL2~WeL{1|mtz}702 zKX`Gb?5Be8h~<=y>_WH|Z5iO18%dw%B94d!z#e8g-7IqmJ!$U1>6Cx@9p^_(a!mq+ zkX40w*uuzTOclXM6)fVJ2MOk>9#>16xs(mhX9yv*}d=T)0KV)badz}%E1QR?Dm3XhjZ z?F`z6j(v`|3y&FRaBRpmo|5h4bnY>mAO5m!sPxROj9;e6LZ>W` z`2cRldCTWo7SnT^mx5aQD_r{aL7@WV&E*y()Gw4$ z(>}COV7$J_kxZwpJU)O)LFm?F$gd&9o}^B4#>!Tia)mHY(1-j1e*|4{WSb52b$A{< zI7V#U8V6vEHiDmGTEC&TKEj6jh7LLsrRVQM*A#RM3BG$T>55j83Ks1PX|y(Vtt7h3 z#KF4usiPMa`}${;)sz&wv=+|Hs{a|AwR-&GsBN88=bwYv+km5$gV!oN@NrT&TM>nlxP!;A#y34-)zB+G46zb zKA=cEq89!lt9x{8g1xpg9q6-vk230y4zxtV%4`C<>W`BoK#cb1T zzZwHWyXR4qJXaUZ=9k>eDhync%sYhj8PWfFh}dWDNG61p$+(?zC3H)C2pjAu7Q9K0 zbraaZ?1trv;ncc0Oj6|IxU3xR82=P zYe=4`>m=X0^985!00(L;I5_LQwG(@3QO3&{gC$H6ic2IBRB?@hk`z}Eua8zRUNPus zW!>qB$AA@6QhuRbhp=TU7;2@l{70f2DgGv(5m6UxB^uV%AL-B7l}crb6Z$uQ>I=HD z*@+l{tZ(UT4hw(LzAw6mgn`F=4fKGloRFgX?Pf=wqhy`p=?el?jUa37F4eHK5> zW9Tdd1@tHN<)NHRU>{$qI$TXtaz8Ciu*UL;A*mnvF$|#}LpW48K6 zbx-uC)a*@pX6)%DICveJ7LDyxq46eEFOB7{O}}80Cb?cr8u%^k)<~;HlF|(heB+C% zU!u3gu1^87MFcL4fg+uENo| zby;RL4NPS;Ou($(@~@J`Vk5HNNO5o-*zt>%#9{Lxm-}2~MX)*0a7(lXjm36`;svAsP$RBZq6DL=8&h$3 z4=XnFlo@#mrcfno>h6CvTFdvN_Nrl{&9g~c$0HjOj=R$kQk#M-Gd1!Ajl$o{s{FpW z3Qp)@;ZkTjpjE-Pj_2$})#ChXYm@zktJE{F|zwP2d^5}-?Z=vf*g#kJ5n&_nJd%8n`CX=WJI%V8 zn&!)kYF5P7`?c&y{7{FNco{F$^+;!96`$nSY;95WX~Z?TaGr2wH6J#+@LGj>wTAT6 zK!isphw&onMoGVAXKXDBakup=43>+?49~bVT>{bqfK((korM`pN`fe~&;+XnwI`)) zHdBh6(uCLtV6JAYmZSVTJwlkoM>OJblq-lkqG2S$V5d*KrUL$1KWA!xxFK=`!-0O7 zqPQL)88p(8S$!x*g~lUNLsWUxhwU5fzO90nR>j&l#~f{b zN2tf@0%HBX`zLz~K|HMq$gQpjj$$HPBpvA=sTY0xxOrP;R@V;$I*lUXctfBObtbL) z`s5U?fAz9?&8~hrP8#&&^y(b6%}(O9WSy^ez*ieyze=JBUGuHCE+jbicFy%C-wgFC`;HdbC~JX;+>2{?KAnBtt(2fbmu@!#f*z`V%67Uv_ryf4lR@2S~Xm#zaB z=jHUfg!V-h&cQp0#E;kki($IsL6GP2hGkOS->@)O876k2 zS-7&%NQ=956i4Ww8basB(3b_R=-OS*q@?_)=WZ{5e&3l-y&(REzIu@FvJuJfKr~pe zt6gS$aZR9$28n~xLg@Sn;_e*jOHjn8&Oe1qjw?v4F~HA1`u_`w7qzxC_z#I!#~noT z1*4Gd5(m}jj}aKBKKd|h9|=Y@Tp&3wUPNdhS%GjQYBrGVx{_6xI`T9E)CLdhVGw0 zop2hlJ8E}5cr>{?T(=Rlvp<@Adp&vv;$n)T_;AYSh zNI;V?hyNf7&$snZaQ1(%OS@Bb&q8I$+M{&W{^dT4f`A13c&N&=3d#@ZR54c^zx!rwYV917=;)iFIFsA!v)SYt^ zO7C+c|20Vkkj}Us#LSo+m{)QUR&P}p=(RXQh;GUIDAdyRFO-(%S?GKu{UYZSK=wWe z)j`;=d7pxMv<^b~tCu2g{zD_Ow{RF&&Rn-zUJ=EJX_H78EomznA7ww=OdDQ@*twE_ zrbKo(PTo8Se~cl8w^Y~%Z}qT`_m!xTc_q+%bp5u#jqSwl#60tmN#OP~A1#o!x1a)- z@$>crfu3TKZMu}k)aAo(OL_YN{8B)xFg4IB%-VgH2eb-H{;>)}zFUPQfmUH6pjEg7 zXcZRu$12PQvE^6*SX|i&EE&+$#KRrx6yg=JNMv{AxrHpnBMW6#$cLpkB#gYhd&mv1 z`~YNPu49uu_mn=k9$%u=^j%Du9v>>8d!>saOv#?4r5dH0)qf1n0veq77R!=s)1#Af z^=;Ff&*MJmWoKeb<1jr;=NRmV8a8amT&;mmDxXw#mY z5?)j$+IEiHWq2x>WN;wCuTk{u`JTvdPP*nZqA}dOB1;aBdY8zSttH3FokedHd1ZS> zQ^cKPW-Y`HtH~V(qft0IRum{{nNnP{pk3{Z-z+a}cLCg{E{?81I9m1?lw&^?IpERP zuH;HPK}yT)t$6YkHT6v8cDzcQm>{D}(xJE=D-96jwq4EwZc{sZp=V4+eyr4Fn25x0 zmL+y|CwH1SxuF^l*E>@1E+!j0>Z#`TJm@KG3yH5pC=ZX#SPeFi{ZRuI%b9s3o#ct0 zaOrr=PM=pWq%GS+3waDZBw{)cUr-kvj^>P*_k*IFQ>9@%Kt7ar`cxt=k$3&euO-eA z6wi`M$=4n(u1{}~d z!lv7B>`S;aPS~FjIVC<7JaD|N^)I8T$GMGy7C!C!&I{WdXaqBRa+M>?g2O8AyFoO( z!24X+uR9ZbZ7-R(%7gRj^otKV*V`QYYh2`U2Jckmh9XMs~40H;kZ~>jd3smu}`{ApXO&N#0 z%-N}+#=bLrB(e1teUb}*Abgb8!Ie;g5lBbSp0A4xX)IMPke}KB%nglgze-1wYsPMT z;z}J-w*a9on$7`mxDJqD;)%@W+@>t|N|#d2aq_g=mk}RmD^8^@_Zq;`UQx)b48#Pn zk<&6WX2q~EmPgp8uvl)Oaq$J`8hN_XU>y7m8ceReABfB7no@|RuHP>KoG3_WCkRuF z8ykBK&a!c}FAhxV z)V5n%$}j3NzR-^h;uQ{7(wAAONT!ePb^1LX5X?%}iMOfP!8YV(jw-2AosG*vzS{7K<*AvYLY)pQJfz5Y% zEnbV1^id^HYcIf7qvS4y5Sli&VnCV^+}Ixy$5k@DD!Y(pm_fIV9;`32gs+DXI&p%Y zZg5u@=|!SNwy=POSPB5uOnb?ZIm3wbsGqGn7RJtv(K-_e-BvC8%18`*-&SjX4tv%0`?BdzKpm(MqSuoc%f`Zm+Yq2nimvpz6PG(J8Z$_& zQ1OAn#YqsJT;WXv&i8Z$#a|wpPk{JUOXlqa;=_wPb!;eFC}P2Dvzw4#9!-YU(X7MHc} z9m2y(t#m5{oD)sVPjO?Odb-2rx^jz^2YGSU-)Og4uJc7{4IY&5HXm`GQZ+G8u7K{` zL$2FdFS0_U0;R$MZs-8^pE6$pNh%GtT9b2KtLNCFGzZ_M!ti$VFueto^SuscYr{Z*UB{&kadVp18F!HD8pXo#iy*2l7-F6~yl;boD zr#iU<54j7A5xmmu_++=J2fkO-dN`Pgfc>rCws|2*ZTPC88*<(Uf1O-U!@mtcBIQni zQ6A2D3X{?LZR<49i{sQbsuf+g8{CyztlX?P(Q%G?*|8CRk{L$GB-gI~bE>~;R7a<< zON8S#*g4KbD?-%LaDhieEu(o>f8y)#^1@=}*zl6dO?k@-^ zJ}{4aKtVU1_Hr4!dPEz6 zG*UuZ9-}C9lnHN)G(XY^XQz^sPW+$U>h$2E>8j>Qr^$Aw-L0z=ye^PmGG$5Xtknr2 z-`e0mj*5!nfT<#pp@yjo#&;L9w?r?)@+69VA#|t7ox&rp{*4&8Bx}45>oTN2htt?M zz4;B!#Jlf@)wut$#5Qd3h{t}o*~VR8ukOg8{OO3iHhFJ{{O^<~1Gm?bOoxzP$rx&d z>?_P6-KQdi#mZFpgY3o>xrZ%wBnpX0Xa0M0!4VwS>ZsjV04ly-BnAHihU2yTxU zj$=I|z)k0;4i$tqbH0PBpi`FS>vW~{Bz55yN}!Eanfb{)g27i83@yw2@RAs&GIp|9 z$@V=+wGD5p*iA*DVbKHNy?wKbEeA|yJ^u-qR+Ch(_gXVUt7b4O-v13teyW` zw_v2QjvR`@Ctf$H)+N`a9+)s<0^%uGEp-71ekjD8fshhJ6_m^|8?XNS(FVHK$b0H% zj1I#bvgy8i)6Hn)z0-uED$mR28L708#9{{AR-OemF(Uae0=EFRG#%5faQ5M)*oxB}u;wvdfG#Qdp%A)y0xQ z;DngNQ<>p%^BrwM?wWS&-IhFO=8m?yuj>$_^^5e zV!rXl2U&f|J!l=vdkQX0isw0uN?oT-`FZNc7tmmBa!nNxTZR2Zp-RKRoY6WJSmzW{ zIqKlN2k2(7AroqVOwcgs7c~ZEKUoD>k=5k*$swPJZp~_&o2G`N>M3vBYg3*8Z`^?T zs`S2&LL~8H=Gt4d1&k0(Mr0pMv`wK2aZv}|0U?F7Cy;S{0tTN5wT};H;&+VFA$$`e zw}feXnT7Dmf@C8|FIcG94%pHnw@@g^;s8lbO>AwfDr#gZB2Fo?77a4aT_Tu5GRCA0 zt^T$5Tr4RM&m|9VSmE*4&8+|LIo*HE#s5`PUaqR825kC$4VF$Km4SjDZ|eD-XjZ@l0)`c>XnlJeM1nOL^fWk_R zgNZte3^&y7z(j}n##%I0Z^`grb4tUd#vE&5?8k|do`4lcjpleUD~}eMG%0U$J)r2& zjoDilClq6*rP%5q&0=P8$fO=_lxbAlYF72My2F&|61NjrB2_$uSLZM~letQVwaZm2 z*c=Jb@CEb5E_kD9X|Q~=iCCaGC$l`KMj{y@6S3a>z{C{Iz3IU^MdwF&IhFX{*lVSJ zcc;IGbwH{GN`dZYn!{uw-=akW5-U_O2$uGVd)Cy8T1lK>Ph;Z732>;nm~Tx06Q}$W zR#Vzbd(gvl{RX4&J$jFY`=EJ!&*}O1#^QeT$fX_{{v4>!PqkJJRk^v4YBfh&%>O14;7jSg^;JPP`NVo!j^W)IgS zZ<3odzL+mV15BdRE#xLf%z4(yXCp3^a#jr&L78uI6ilTOn!8{)W5a|w(5aP)XY-7a zYo587LAl;aJ3uRR_dTKH*VeILQg3SV_pYqlW3r7_RNKA#TzA~@=}aSN@TQc;R5A#z zXN)MPjc9U0J3U!SH_ozX4@~NIN@z_|rmdhra_cSc14bXK*ftL#^l!9%Ok#E(RB*AiMV59->&aCT}W64PPOB0#>Qy)g%c}uVX-Qe zyrp>`aZZ#$PqAiVOc+XQtGTK~k*h5}@~clgeG!IiYKcFyzS-v9_?#?Gn&PKAe?+`} z`eMws6#}Y5ZQ@(xRh_ZEsC7Kl+~?zy&FH2+%3b&|47=tWG&(A+Hh|oT;!Ay>m-AG+ z7k+=@){ZgKTpYuSY2i9-` ziBX&H02L5*0zcRwqJX%siK|$x;~angiKAUE{t-dmx0i*0=mhUcn&j)Bg@LgsUbz{z0W!=WAj3qX}yJUaO5Q zaJ@J~Ja3(_n{z)@9AF8gb)XhBAC(B6!r^+U;v9+z>@sn`YRt;V%osy%i&YR{n>f*+g;&I5NI1p13^_!f_ zP;zZpDLNxHhwq+{H+rtKQ6lu{<#B+o#cnb@2e02LUIY6n_Y1#~00YWV-O+g*2%T}8 z;LieKU+!a23&qzg+*^S-6Awg1a}4u$PJ#s)MBEehBY4>j>$P5K^wD@h2CfA@W{0Xs zEs$Z#na+wjg11^#aijc{Y4;$EXDuUjwQ+5cuMC};U-1?vlPht$ikhL(YM$;emX;|} zm+ix>)U?3;-E`4i$5%0ffS& z4((G<_&)w38jQQZ$q&0#cnyB3$)Wr0XR_>3td3DImXgJIn48Sv$0~eu;Y;hhlay#S z>b#|0qutL**o8JcBwbrp97|;Sk(E}aqT7*I_m7`Le;M?eAi?K`-E{EzdPi3_xpi1; z4qlut$Xv|MOQyHZrFqa!rRag{^7(3?A_-+d_ws%MGQ?_z(ag~KiEXh#-A?C83 zb|KgC$wuZo!~_9C%)}+fD~x|2Ci(3I5Mrh>RH!lfTD0iEPVR{YXwhQsi6&}uBXMiT za_-$W$M5!6I#71ZA@91rS3){(FrW60sD=FMmyomTC8QA72pmqEbRn1Kg_UaNyiUbX zR5GTc*oXtW1>YuS-V#(=9PEeTf>i8^Ur(c2+7&G7%P@B%8yUrSBsx09-6=_cm2r~Q zwEf!pYjcxEmQLg?m(vVmV=CsF{zv{TZRYsQO9i-8XSV%d9_)h##_4MQfxa%2_C9Cr zI(e-J+3Bbny~Nx~wv)R<%U&y7s+3~=cB@-v>Vftub8h%l{dMX-sEOq+4VkT59DE}` z7p?0(j9rnG4npD~1g?vnwPt_l^s>!i@>mvM&mOg#ii2Ktlh#Zb#>+S5;H98jHe7qM zHcYdoyC2P?KC|9wZ)b+5x3nXzCLOgp&ivLn4c9b67QFF_jNJYZl-I4GOC7;X0hlBP ze9iAe%Xk66wx^^baS)i2u&K@kV+GZ$vrwI(${+@H+d>BSgUn8S@LvynU85nb7t3phpZ}sWVKl11WYq1pdbpJqysjq{0KJf*iy)~UK zU=JT?`)#3VN)z;DxcoLp*b(+uBPIaCTX*id=|x(WR1b-zkQntoh*p#TEH&3JT(X_Q za9FSE73#dXTmckYJCS+pE&@Bd2~Dw#CwIbNmB6F2X{%TF0nS zNYwRuB+rF!!6cH*NaQ_7Y&czRx|A`vrmiwuZ*lL;^{3Ey3 z!j7xSubw-cae_Ic3wx>3StRHOA;5RRhn;zYuU(&c7F|ZTD^iUtKb#bEMNdz*yZIAP zb%TlbeJwrUZ~KsiXesjPHIVnMPfsfg?(G8=c4~qCn%9LySLZ%^!v~b1n=U+$Q?|LC zZdVT@C7l=4vi1N2f?d|LJr?%f(W_-o>tZ*JEmZ5BB9Mf|iT4sl*{H)1M5lp|tHbu} zU0PW6+#Hs)%cI5Rdz&g?cMi*3vUaSKD_st1-RT~us-Fk>KiC<~o>I<_^&9ZFm40t) zwuKSI^`OOBqs6Tc&u?&;<4P!Tn6q^kQ@~`C>(-5GT~?6NHgMuqs>;|p-L37O406L+ zo>-^~-)iWE3`+#f#n~Q;w8l;0^h#Y<4PNX~V6S)4mv8^ZMEAg zf7ny!YzqlLwT$wD(e0j}>RqV9r!Yb{E=YPJ>meF_I>>N$45ZlNJenTp9Y@9s+9Wd?@%V;Loe0<;Mv%8ANN%E>C4ohCC_P|`-)40|X_Y4J0DjeQYkpHtoR|9?!|J9<(ua# zF}UsK*5nX=>*iD@RaBzB?XgOKNk=KRZfkkd#ndlhpW$9t3C})rnHhn{qvL2q)639R zsv?*y4p6ExY=|4o*fw;J-EyImjruL5WDh~%NY=(pKl7nEHvborh3AK=mK!I-_Vbn* zYDY4PX|P6G$xV&|<%|4a8A=euZoPEt@gUgR8`~n=Hb_wQl`?)*by5oQPEV(=Pa0u;RM32x{{sn~+8^yIk_i76kSd{dbwLBtL9A z^4SvsjKbFOQ`I+6)-8TC#C@J&8DABKEuOPZ@z;Z!|Ak1Fe4)(M0yN=XV^$m{BBQ0Pvn6@+_iQ!bAan|8N*OGRB}Z z|4|9;{s@0>WC&@};sH#dCiyZZIE=7*o!78LvPQQNoDQo6?$PcI=3wz`O_e;!4f+XB zAGM@c$Lif=?aP`2afyzd`5o24Jr~MHsyprkYpBFN(bss{%jz&n+NH}g24U)#$lERp zsNmz0?N^dhR`&Q!Z}~8TD$|8che8z$+fQnMT)K>=9HNFRh-oySs2P(n3%1Lf{dQR>}@u?kK zOcAficdHH~VMiso*|nMe2BH~x*d1G#F|FK&3+667YelfRhBRYqrs9j6H>R^_y0d^e zsl&N-IHx__RD)Y@46(Z{ZZRa9nWvfk8^(xYGhuFc2Wet4q<}UWjrwc+9341Za9Lck zh+AkBAO8eXy*sdM>OciFlbEC{%roXxQas|;Ymm^rW|pT5gqB-;&3oF919y&IzZeY5 z*`Ig=8$G8QTQJ9}gy2jB!9&E|0MCL8*#ckvd_OTDYU~=t9OL#ILLsi2@B@e^=7vAa z8moj{C}I@Ph-q_h%x=T>EC{$ivcF%O?GipuUx4ha80>FHM27#%BjTTp)BlRNYyBy| z1V-FjR}|^|p`hZ!OI;fU`WN${^_8ar^SXrE!96q^z-Z}gR%{hkL$P1Ly+J%Sz8Hdr zk_u-^KhyYv8qP5vDN1cYxW#gsnf{Yr&m?}mgq;w-qwmpai;B8BFj#F#z$;Ec|~4E|1VuSsmZ4Cu2=XtPxjff_Y5wp>Aq zjMb_x5oF;MwhIl_4y~G1j?1c2qYK`{t^+Iah?sdv4M`?Yedx8Is2I1CMIj9ebXRFo zxOb{Zq~flkB+?k1$tp%G;_9LfWQ?74l70>+NJ8d4buj(@P62Z$8MB*?yQA?6?1W^@ zDkBcTzofH=_DZazmOChVnBd-WxeRgD3KVrOkDsq!#_-~a(r8s|V%KP)B%OXSjt$m| zF62H6@02S8>a#D+5a?B*#-;``mElVj`B6u3;-4qC7o%5Dq_C|DfX#wxY2NKrn%i>G zli6%#1!Jgk1v5F`sfjkhfHy9Qk0*0py;+&Q1aArAFTD2gsCr+5fIfXcZov!ERc@rf%yT0l9Rcx& zedJ47YpDaV3^?s`ilLCB|N7<9Anj%w%+^t0|HEsLPaw`udI>zS#KKcDYSEX+jR|O? zUTS3B0S~!(F?EoH>s964OIFHyY^FmZut)qj(F1ac$|i*%=ky=Q3&zhRd9;Cf!#3d0 zu|8UuVPE~n8jzyC`qhOLaQbY+8(ZMSe1!$E7^Lsw!&nx40s|er7knjGW{2dwM2o=7 zK4|?;6TUu&`=xo9^ibGpkaa)5bm~{|wc8Ij95(CN#c#K87nH|Y1d#urpxrA4|jsqCNr@>-};D|ACJ_woATsH_%>)^I9D z9w`m8HO8$=){Vl?GJN+Si}zjc-ubgS96@tNp5x^O=DlUkyWP{*ho>jhF0Kr!rphkm zbAj#@e-{WGl<$Om-#!2@2BvRtZE>I?$Kw#ao`M`mO=bNn@cds@p4M%)-+{ z3olpI#Za&ZoA>*wAIx{?Pw%BN?GjLZ#jD@s3MgA@#{K z70eh<1LI(N;d+Vg3i2shq zw{9_!InX$oIB-eqKh>8PM4iU7=(4kGWAIA*Rv8ccoZKZ3(kz>FD7n@4YZ4sco993?x@CNNM(bI^t5fQ(EB7Edi0Y z_ogaZs&L9IqYPO-4O0ZOV(B$VS!MJ@cI2{{A4Do#!6kA#pp^kAL|_iecgzG6NmfNvL#c|Goc-WhX64T?i7lU-sIa9EUGXW0S> zIu2sZs9|*<8G*vJ6)|W?flSah_3t1oFx^Il6mr0`OjHA668 zz-%GsL?j7vim*p1B~z~_W4gmf|ck;B=AWJ zW^NV4vT(pRYL3pj&zwJLnJMA{UkItIX%zS=80mG^_$gt{u}K1Wf)9#zKcou;zI=-J zCc{eZpRjka2AaU&A_RuOuhB_hr)c452+_fCei$3-L;U%f`f1^oqyT?}7r?*&b1TAM z%W3~$%>T@H-rKMK`HhyVN-5z22Rto>AsJYn?y=(T;y=0=qU%T{;lPohTE^bCrIswA}hh=dgn%`2OcYp;Dw8P?0Wb%HA~n+k&?jLqL^Ia3URdl!dxhTc@0Lye`0&3!%}zy+VtG8ed3+z1n8cd7JbHeiF_Kg2hsp0@n#6DjwkgQ40#{(z2jCdZ7GDkQhCV3EbJfXG5#DPwe)@VMWXC%(U}yng9UEnMVGjmNVRPoh8ORYmwW6PsFF zDQ?%I--Jfk0NhBX^2`C;Cl{7vEN@!jWNF+AA*6k8QWVhvYc-MDvSY23uVDNys5PPL zjXfX26_|xm1c;9KaQ5@mWbz?rA(Qo}Q-+^?IUQ#J*yH;f{(*_+tTL0i(Z)_Ml~DOP z{MpAibE`rJv?;+p4g^-Gxx^g@?)wGR5f_(F=c5E!60e_pqGT6EQ0$5V4N2R>bOXVQ zIR#BvG&=)Q7UtM`rXOw0wesR{6N%Vj_yvof8L1fS%@!p*UDZT2%x~66y6`OVwjeJDaTl@Ij(J?@PSZ5E*_<;Yj_FzsCeg|o>LZU+_EQh06esbU2 z*3W|@5I&kuY_uyN$b@QItEru)FaTjM!?>lQvo%t|v7=HYI@|onEM!q!7o_vJBmjDj+%93me@5o{ zYl{#we>c!o-sMLPD`Z6`rYy+|^~E~Zw`R1RX}lKIcb8+_$-B$ZN`Bi7DQ=C#rc!Ax z|DPy&hBn4QCh&eQ_tz;7*Wcb!{zs|TyRyx~*~HPn+0OC5oNWLpDKMb3P3{pJudw{A z(N(FQ53)a<_&cJux{f-yTY*u@G>cL}XjZ2rJ34A#J-=kztg9K>HYxiZH#^4Z-Q*L6 zA1x}bG-r}4!eRDI`3|`| zf9Q%tJQJ<0@l7Vr93}$&2PSS0_{Rf2!D%j&80V;RUm}fHflbR3c!ZMEqfr5sUzm1KElq}n|iC&^`3Da0YZYG6!*3_fCFQ&8FObdkboBRyf<9P zw=O$6{4<7F6XxdTXABbUwCh+ZY^`YF59RK3AF!%FfbQ>Y>VG(Lw_8y>gTm<5#@*WV zpwnI7jPqyIR$z!yLrwdl+8v&x!0?Teu7YxC0~tfDnE`cv$jL$I3s$VQwz7SAID|B% zJ6I*PJ4%Xw;}2DPNHa9=u4Y6|M~o|NZ8dwu7XM6u;yHDN-}c7CsmRPwm)c4}hb%WHkYuk`@x%tAiE?RqLLp@V1tmc5el4%0cFN&Vs zq+x5`(Z~zexse^#Slv&V*8X}1CMi3Y!K%hLxFhjlxZ(Kp2Lo_hzGt?9v_Y%Lhs~tj zIM{pRuT$>592D0_)=2?gLiHAUY^?G0bV0v=e?Tr5Y~y^Dc!SLJj6n$u1nKT0_ve~g zW*M38_`!XrJnWqI9UeBkUajxv@UxRkU}YsfPS2keZ5p4rs0dily&kZ>^JQC zx=!ec;)&{ktXgOso6k!v!<>#bx>>~^pE@Jb(J{5!RZ^E-bKuHUf2I|frdc{_2p_ez zU~}wom!x`LVB)dm{({RD@)Ts(D2W?o@Ji`*F8QgpjXN->K$*P)f8rpRk;diVu$d>h zhJt)R6YF%6qahWfLj)wTrlwCWlydqGQEb?~lItGz@7q?(ed?GsByiI@(pT%Q?N-i+1lz@g|#qjIq+&@UrvNtQYk zVSIC6Z8X!6`M~}4+v00k?s4B7^Vj?1RlMr#M=k9cTz|$- z=BR%uW)c_YEuUU$)aoO1*W<5D2wkh(y%T{jgo&-;!}ko^#5lheK(}mdOMpoqJ#yo8 z&RUEo!4UBnR`1>7`o{gh|DpGW>o)k8c&f`IeTqE-zep%_XXH3NZUN!F94dq(*2JJ& ztKdUlyeJQenYnILhSEeLZ74}rFCOsRWrJkFwQFQW3POwRbb+SzKLLjTLhbRRhy=|+FR3FV1j~+ zRo4~aUpN0{AWTu-JHe2E{HL3r{7>my$koiu)af5yEhJ&{uW9;_X;39fRgqun@YGoT zLt^%1>k2pfm?B;tXEfuJJApf#54g*C&0eH5xRepg_`jWKo1x8`bk>anGl z5w1LTTV<^*BG3HE6vP%?>GUjiEU)8o2OMPGJm$(vDUT^L7HaJdUb9<%R{9}G4-Iz& z=MG<+V3^jl%4-;w92l+SrcFnW=z{{37_@W(noKr47OvYlIPOa_oy%D7Qyr8(6Akyf>ytyh0xg>3!a(zla-LPa%HO`|aRZ8|^^xEUU+bQIewJyS@b#fc$w8U2gV z(3#=^nhp~7P3pH<{vT(%H{_Xk13yNTxr`y%`wLPv2N>#6AIdkzpbe$-e6R+?-%wlEq1GIJlBrjb^1nUqYA< zvQBg$m;+^S04i0;MZ8US?bqsOupU?v5dBZc&=60cV0|`SVbqls32ik?$6Rzyo>o># z8YITb)i8W1hweb+0a0bEddW(nC}vm1xw2oM+$D$FgRh3yQU-sBrT&UCbv z-q@IbH}WlOER#17F4=*j?H5sNFi}UWP;5QeHRNA0tWmMcS@Qm`e!YMG_vq#SwvkBE z?myDg?;Nor@~fQt`bDx6iikjoj!xkwEDibsI3u-{kkU@Cc3iQocfp{kcC+@EuR=l# z7Q_rZ5;C9SgO3x#y9f0JqPWa8)8{;T+0xROk237-yt`f>T96FTjbZ62XE5Mt7}0gq z81sn3lA%E@Q1?{86KYHv#Et_ikkj+Sa&^P1C?RJEMe%GE;dkMK(B&r>v9CqiGFj>7 zM=}3(rQ~A=N%^+wUYvq_G8q10LJZTdK>rLM{n98dS^YR zS?lG^CljV|kbT*e`Ipj%^jkLQ(ddNXKC3ZRI#tqSvX4LZ&uPU@7!&=#PaNO-nUGN} zI%xCy%K}QZIeAYVkiR^E$9j2{ApG$mmJR@)?LZHIohWx@Pqy&=Ev#jJ5^HQ;)y8(b z)9%_GYwcm>VKH8XJ{0At2ked(yKTT+Hd*S8pdqn1Mb5ThP<~a|0c+OwGG~tF^bX|Z zP7PdSQ`kaqTXf$$wldaaq}@aEYGHJ@8rl!0*w^E$Iv(;?P(w|m1n(1TZsPIP>}ElT z`rLhU3<%B^@)hyaQx8EN#z5T`uTHFw^oU3j;F~h!5B!oJGYEl*UYZatNtC8@r3dCC zXVBxy8PHP7yl2=FegS=KD3X4G9YH`&-(!4qPqey*n4AtWm_2{-4UtyfQJSkZph0pC zdZOXd$WypXxoRz`8)Luqy-T4Ca0kJC#z~ERSJfR)d;a-)1G|IQkK9i5MD$Y_4>?^i z6BVfF)coows zRqvNL7Wh;9wGXYCdo?Dk1m^`_say8YEfu|mG!EmT zz2_NJ88ijL33MKm5ZZ^*p%7k_Ljh<6NhnMeWN^j&g^AW^2Ag_DANav<#36OJ82%ct z5dwli{gVk#Q8A_yUL3~-XiPmBU0O0A2o%InJyuqXE{VY1C^v%nuB;eIk0Cu0{mKHax+6*(G$xmkvYd0JdaDz>j?bH{3~!b1s;j? zao2Zl5QDOlP#6nrqPlO8o<1y9AH7KJa3K-MCrnI86PIFf08S%w%2b>!>vea`B0o{m zTfvn1NuvZUX9t?NGdTE#oTaQbzu zY|>70&rvrYuPDBiv7ITt!EO%r;&5(~a54b>Xc;s9ZbUEQwWQEZf>ckt8K0xyZn4~) z5u_A=s#?=R6aR%bE#7zzcSn@6#A&q=BL?4FnPsj=Ynno4vr?yD_lHej$;I>Zu=vuRQ^ zO{Sql;wAvwXYpbu9r=@Mk#xW3J+lara8l40s-$8-n_zSqXOeA^r39~JKsvh{x$M;9 z1l%{r&AEL`OT`7OU=6{;jS&K7<7#Vy(s{-oce0rIqYZdws<*UmX`{OtEQjh|iAAsb zMM+(jOM=Wy614=Jt=xnNpOv!R(ye8!Ir%dU ztVYXh2<^BjrTpIW?9=L@wnY*8y~nk9iif*DG+F&AIzsc*uYpp-Ez&qX=G!_RXT##H z=(%|L<-s==m~^3mmq87eCsRhM=V-KC=&#s^XeDs^ zVh22BRXJRkEvM7F-n?jIOSDTZPN(6@$^G}?${B<1I-INnRHKI0)8KsLd9z9NUpTA~ zxx;R&Y1P`Dl2ObR5xK)})iCc{oUFo?)BD}_GRODq)TdDQ!tk0<#HWo4X^JB_y6~Ei z&CM~bj~q{LGf!zW2;g*tg%SBbDQ#jb407ZIAk8R>OoNhz>hiK6dtn67rgNv;&cg}EK?SXO}}+2GYMaE5#khk6{-`Ol@R+na5eCF32-K@ z?R{}oWyBuIrCZ{Ku#(O7tm;v1|H3|R-LSaDSFg;@A*v^sYmKNA{FSvqzYV3^r`EoH zUl8RXp-*!_Ud;RnqE1`L>2sX$C3hRmlB^dleIBRG4cP+?&AaW2?Y2k7qB#G8)>nHU zqi?qkbV-8T=CS5L`us&jly%k+1qb?|#h-cHwGiI3F}}y53qQ>;e717}oab{V;k|dmtC!E1Hhfw?o&?)v$g2917&?i=Y*$ zh~(Yu0HJB-CMJr^d~iydxB0h;v{vV%-!6nyq>#%J}d zOF`9++l`_|b$Nyh(yci>*{2kU)&g8%5iSb{PDj6_bg<`ScZoEh z9_DH_pE0DvJ8qq6io;74ELPR#d+|cH?zaSfyu^N2yT~KZSh5~&u$1~33Oo++WsGX? zgQL~2WIT9cWec`;8u!^|Ffdd(gGZ`nR)X)EHR{r^G z5u=S1{38*wPzW1|AUBcVn8Yr@44Y}cy*!s#@iS%IJ^3a}gh_$(8WyQMioGR8>O+Ji z%-0dA{ZDCO#C#@o8bW^l^Dq?gQ`VJhA2j)d{luR3O&Lc$ClGqhz@y`{Y2HMh&?{U) z4@1@X#FVu8#3H0xFzckTP&cBj%wcu0NQ$3+i(q<`Z~h>CN5K?-tT_Ky>3wliyZy+zfd`G~x(n@3cRPeMi{$J=tTrLI#P*9aZ0kxZ2MNWq+I~++KtdIo$ zp+X#XambZWgrl!hyu+_guMgmieUcGD=;Fb*HV+!GOPO%xjp%xsiToZXE86VjI(F@! zojMY#4qB6yNlbdGnheV*sr7{)C%8vNch**~(j3xRuL=MtojA+G=J#{IKKkNw3fY^{ zP#lO@N=oQe7+1oSQeQ@>zsX^j+{E6x^^PGwN$WXQt`nYM|5Xy4;fm<$cNvWt_cp{?YKY;0UqfknT z;CMXC`zZUp>&nUR*XtFG0Dd{O6t$X)j;f=qsHUiBNOn*}9uN5;QxcRR50WSWbrGC| zu~0wWlyys>Gj4KiL2g7Ou9e1&13q)`iBn-M4OgE-@co3x%39-uMOIDUNfQ;GVQSaD z!_-gSez#2yRJvh6x}pV4iestMA=9qhqs`UJ2(0Kq=$Y@a**RHHqw6T6)A-NxV>Y7B zUH(RoDBy*rcI|pypRJ@2Wp)_}Ez+WK*U50MrR`dRSpyEtdyfmson@o(ij|N^4n=Sj zG-$E(NYnWUhM;A%!--|^*XsJ{x_6CvRDQV*i&z(NOSu~Q2paz#S zq>$nA&8aZJ0KSadc6*u*&wALRmfj;$m+ zDL-^eQnxLh?zLYD9>Uv}KC|0I&ye+8!yDdFD10RI!g})eaf`7or$od0k1waQL@C9q z`HdnwpkIw;q88kfGlxNk$1^hmZr~!R7x*a|qZmFVIf_<2FAHRmIMPa8FISL2+<`@X ze=8=4_vbT(Ex2|@tbcjRfR~b_>m0gJ?asSGX>j)MBTBTehmz~rrD<19Lpy8)b7AHg?w_1~nnW8v*-cAI1O{1O7t5iVM|1hYKG&RSVqHnv!4s4eYBo9w z8*EDw-`(#`?c@j9k6l;P!t(6#8u{)3kz7G#`Jh?zT#-#R5VVnby>PYh z1w%#pMfvpm5x%@5jHNkVKx~bD=@g?3lQhoB#|Ytq#JI?TLdv5vX{3>*6vDVt{@nZT zSQfNRgYV)W@8lgtO1M$z`(0D~zVH8g^6vkz=kG{eW>9SUxNIra6z%1jRbje{D(hi<*0hGYm&FMts;!RE7xAr#li9DXy`pF zSjlS;lYW#aENgE%%INlPD<n5DJ!nT0@}*8yFaAnAukd zjZH6(Eb<;G|HsQ27g5C8& zWW=qdcZ^{T3KQNqD$ttC?WVS7IasSJIH75{lwjp!gtLFyfx zTy# z4mZf&69_x>t|Gg*-W1WPSrrDBR7hh0YxkWhQj^)-L50oZqv|@^9;mwunC`riHY@Cn z!YVi$BZvsn0J@jyLT*50HEtUfc%eqE+uGJ@lM%0B^ zML0%u;%3LzT_50IY{dkyYIWZlMHLTN$9?IW&UOYd>>QZ5l`VYOa5+x9*vsJ%Z21FT$q%~K z7FshX6U^fR0kYBE+3y^`Xa=ezblM}oyVCE1X|$K zhxx>m6L9Xt2Z+EeWA!uZ+_xCU!jb)SSVPL{ML@zA_V*LuV5$w>vOm7=zht4t{_#aV z-sujjP3t5@BXCKuli|8W@$!0uMCT;Td(QCdarNlF-u!IP0a|!?68pIFg8wvjF4Z}4 zM`)Kmw5;Fo>W88(5=?)di-H9>ytG(3HrSsjB9`y{zJi=$A33)k4xnYfKbUdWe;s5O zm-!YZMKzYYU_Nwg?>Z*!yqaO`ZnQ_Uz(BVgX4pob@%;O6V!7r_F}`2McTj&ioRojQ zkpDTH|0Mr7Zn*dQP_VggmLgd4l2LB-QGSCwMy~AQ&;&>wk5F%Cm$|I8M-T*y&Ab&AOlkzx=d?_@K>L$ z7{;Mrwj<$`gA^cIOIsLJtb%cI{pT@HW02D!LcM-#y|8X^GB>^dQ_4RAqyO5A{vTkZ zWN2q@N-Ak*Y~$)|>Glue42he5=Um?vs3qBCWy>20UcewA)(POfR6C%BNWBzL?vkq_ zX>Hi%NFlaIgR;RP2zx?N&4sULr0=gLr_L`kRyV(HPuqVGUxBVA$Ri9u7P&%psSRZ7 zC5$0}e(oog6tkpaP8_Ub6dRSoVq5amQ(qk@dEly-KTVyn8sXl`v?woE4&jE$51}mJXB+7JdhyKLj*0r-~Z+qz@&_Rbyula~|1O(Zi znjv6scP5J%0VYz-&^9JYesOoASp6{y$`b{}1x~ZN2?hOOc(a$Gd&sKQXBI zSN2DKW%C^*Q4 z=y3#Hdmy-@g=0r=!KG)OLQw-)ql`}Kjk6WbZ91}0VPIW&5Wl_~mt8U8>68PrbS|dLKaWR1 z{wpt1f*1*B^J|o1d470ZwuYk)neSnBidZM#N#C(7Qp4B?Ln{J)Cs{O4S}Z=0o^`CsO*|7?-Uy4*)~ zbX}-e-fTk~N|=K{{Lq1dp9&5#(47vJppsh6Is_I$bIpc65fu0~!_40gnV%#UQ>5ZO zb^{tvOHoU$^l?kK=a5Ru%3QuOgJGMitS0~DG{0o^u5O&Nczw7ZWcW~2n=K+Ym=|%c zx}kn8FbGA>w}3nx28n^?a<|(7o#Ha!pcp((92Map8X8z3XAnrrSTT==14gEU)yu*d zWQk&j-5DzBPVRk?=hU6RK0K+y4F$&rB$!)n=d77hcRr76c*lo^y z`iU1LX*u1bQ*Oepld|45Uy|as*421;gWR~_wn1$_IVy*Q^F^qzWr9(uM1@!z5sRzt zOgpypMCZD`$|nqS!cOEcAD2N4RNwgW9Pf79Mst$9T8x?7?n*(zlb3-NGY@vQY&*(d z>^Uy8S-1H6LnM6oqeDI|ds(KT!C>iaXJFPLkL)??r_MV2@k$#ic z$?|P(eNKKPWpNCj^_t9EeKYKa?7`>d%PHs0OOWcM+bXYbnv+mx5(h% z*J1a{oVhe07SSi75|Zh|;|;F;3@Pm{v=V!z7WR@HHei{B^Fm-{gEV$*ME;EaqIrva zLKuf_1cg)U3#&^DJ~BaV=BB|p;BPQX!5uq7AbQN`7~r8ZMEX+9D7}h`I!dBtT(&T= zqA!6z>m0#@_S{f1mPm`%$%-!IWht39lnRx5=q@RsFb-^N`LtA7Co>~;>9$S$AY^i+ z;(mlDcqF0w;YE%z*VS^5ow8km8qPax7!%M=Dc=z|_A^KR7p#-D!=%q0>`O*sH%VjY z-2u^)doHz!g$4Sk&n~i~EyLNLi z^EoTlyM&mJieSz0Hyw zg`Rqa!1ZGHq=lL^cvFn4Jd*n?*|?Qhbk=o_V3k8yMn#964@iW3Mz#sIQ}2bM;oQQw@#dPV3xq+%)gnudP1R9k&Z%gHD@|?I&q(Y9?#;G-24I z%4B+LnN1F;IoQT|AMHD$kooyJ<90;88$S1Lnm`vT`|{+rLmIZ4h_Q!|0V@s%ra6{| z34Wj4siRc=QEgWybAE`TJ$^s%Z=h*>W3Ghh}w=E-gBC7xH~$0eR4R4 zG4^(}1OkV~)E#b)j&CINE=&(NIDM~7_Z-Zi_A6%oiVg9h!M*p!l|1F>4u!>y=(3;( zWBhTiuxlJ5Pwk3)21&veVy%%xYA+5l)nc2nCcC0vnBs<121|M$ep_x14-SG*zbBlf zKQaaXwd?plVfZ&zApQGG*wF5GwN}i@-uCYtl%&uu_YM;>qk|ZjfLBi+f_1=QX$f?Z zMM33^b0l)Qb>xmopXJ(CBz!PgB+z|6==WoN`o0GlPHd!}zW9AAO6~da&ujc^`jRX9O2{b=BDR% z8oRyO*73@4xlU3|}b$Q<&fx z&yBE6T0#wx`WgHAfG_Y2<{Ui^al3jzb*7H=T~_!uLTa|B(Ro>T2BTy1mC2fA`7I>Y zzE}|wOrvsOehm)6+?A+L_O2n2!NLPv6hYt6104zAqtx%%q2IrJ&4&=XD~v0*1BNSi zvq|Nn(7*4|4xIPE>KA9t>`etac8K?Db_n--5^%)ETDSOr0a9G)Az;NXU*Y>m^}EL} zU6Cqh_qDV7AQ8@9`TEH8*FV$%_4l1|U*9iK9kVghrW>C2Yjq!?{_QI{1O@|<{_d6e z&;5!YAXshBp3rHnwU<9j5H1Si@TMRlkR!tMud*of9ITkp%kGJi(qnsxA#ECK8;eWK z=_FyRkqeI%CBbddISKFa;p&ooycj1NOqEc>u2ce&*lgC?;3AC-h1&Y6tU&O_qXcmZ zBijZ=C1Y|LW0< zs0{iu={hGcW6i4=vcp}Z*|nca`=;?nZ>d%#_B-8Kh|{K8+@T zvd+}tUXx`;Kxvk(bCnM&ByMv=YgjVF) zhGmhrH#&^WM)!kxZMohKSw^@gn=2?t*G-^k6$#qkSGqu3Gm^`ZnzZ`ZN5YiS0qG#3 zfl2%T8{0GDy96nRigcoAbqBEuBN^^ioie0c> z)XZ_19(F1C5S$W9o)2@q06A4XkG*0g5o zjl{)FM5n00`{F&ym@}imiQlcr3`s|(E%)OcD!A8-u>)F;qg+Bsc$s0Y?MSHiW;H%x zo*l;od-uU|jhP~+(l+=P1VMm?80oD9NCj3&7AE+2Su3`VrB_>eiL;k(V9KpWz-pOY zR8@ut_PdI(9iJIySILPh*tcu+YRT(HJq0dz%0ax zT7=Of@CL@Z$_KLOJ9-wU!ZeSwCQ?iyFqkP5>nCwbW3S0*zHaiZP|s z3<1N3ZLL(M(FYA+4WIPXYd`$BYn0>Mi8c6uPns+5oZth@UYeN)ZDWI+&dnIJ#bYOc z`uxi;xhAHnhnlvRooSD{B9BITF`^F!=5gI4Lt5`ds~WB;#i2dw8OvwwuxT!-wXqjf z2ynW5l_TAWzPTUQ zZ|5AasP)ZbCB;|dX{$?#sNW?!G>2^CSAAusIz@+g1K8EhaueWKSGu}_%{1}kq=lQL z#5!pUt5OuFrAw_%7LFX>Dw0@J9Ezi!qsuhEQJYp(2WOaW6d%IqQADmdcJv-r0b~6H zd}}%j8-p`UJiS5l0kO+twEU6H6H}tnFc*NE#JQ49BJEA(5s4C8z^Qt?b15DDqC0G) z$;9Wqn(>Z7Q+ntzk6042G@n8nN%KO#E%N#&_YI0%w~-R8`08)vLY4d>WY5ya>7#nm z=Wwd-<>xz=v;@O-X#}BRFG7tOa&3a=X+UmFhF+YGt-`HSOd+t8l^e$avq7V4JD$+< z#eV6I?Y^6VX9OAfj_utziY;foIr$Fp@=m{K?fK~5pVB3qj0$}bt8n^4_6^HzupsPm zTAXs`?^0hU=TsWTc~mlDO`dj7myQF4Z&;0YS`c%+x|8C$OFW?Z&c)S*qwet189pC} zW<6n|_rv(3La=5$3`(6a9H3YjaOSriRaV0e!kJr`h55P`KhE8EPjnl z9s`x+Gk3iMj|nwR%+o$d&7l@^mhy)5S6#w6J`Fkz`oo7QoIg>YWPheU--{3b5*mq` z(q{_D@0N;7Lj!FKKibx<3D&3)7OhYQp;96gFlzO#miTM+07fd&hJeJu+kDI^YXLkMO=V6wm+Zb0{nN0fDk z4Z?<=BJIx1|CdcaBCl`95k8ANPEIC(<_899(PFM&mlpSN4$IZ}Z6Q zwm-V;bF1@Y{w~QR&&6)B=OCvn)F?H1`(+fEpH&f$?{Dz34$R%dqC?u-*Qsmt|XonBoA&NHC(B%IJ_hX0x=pF-26dllltEInQpT&@-cye*0)K zxt()(3O2rVY+-mLzK>gs zc zU>1X^QF=JSfS)5CN<+$k>|~Vq+;Qw=lq3}8Pq~5t2<7N2wORqN{E@7*YbqKuB?*#= zQsjIXfaH1$GZcf`WKp=t_cpF_^g})jShX^A0|>Y_hn{jnI0B>Em_aYh3|1GC0VD3n zVU}}|VxaEv%oPX0BJz+Jg75KS%||4w<6&|HFb|P_G!Kn_J)0SW9S{T(8=eRRP&IvH ziJYzFm8|g7eXmdHxPvG0+&~ObyNBcDQ(b6nr{hnQ^Gnr z;TZ`-D*ZK)@6y8vRbic^+sHKQZ61JZvay0Gl?mh$+7zkWoDGL2OXfvdbViRwn;WB7s} ziI`!-M?vB!JEB+uPc#cqn%B2*P@3@`)tu6amzE4Umw#=p@I?)60#BMj2jOrPdQSg^CFkX zT4VpTy_d6>U*+ zAny-^B~TFaFoR0eQld#p=-2VS^pa1*pY|_TQ&DG0qs%XwM#dX%6)TcQI#W0 zgTef;A;$~iBmKco{DUtNlHVtV&mzozd9M#RSsbARnV~WIj6gUK6f8&Vlq)X3LCIgh z*lTXV7bs0%@3Dp>s$db=!N69aw{Js}$r6m2?7B(m+_O$ut zyr$|t_3|@9q^7r4Mv>xCJn>oVA$_KfhZ+7PLRe!>7$%1ZjZPi{0Se=|l0mBwR?2Rb zqY-ki5HJaSTWD?fGCRn)#uD;=i*E@0O__${F0oalZMORkz3jzWE_X=(GpyVjypD1S zo`%##li4e!$q6>;87(H(xbmb-aV<1qIvHonZf8`#7(p~|k>T=hi4xL9taj)3k%=1E zKc#i%KVRzq5J$rHcFup(8czQfmPY0J6wrCA;ghsXU9wTP4ai_sR*rDe#gbVsrI}ye${}#fFQXBm8j%?JjeN_OTlF5Ki(XFp4~Ub>T=M$5ReZJFcS7y~x$A zNRYx>%=r6UHQYdVG_KjD&mQp1=VDM?U?DX|`JSHTx>WE=;|M&PB^kLDJc0P4Lhxy$ zG{+5ZyjBOj4jdnAF0TEyudsib>tqXF(Pb)hMH!i+Qw&P*gJ{xzl1=1s#fab&vwy`H zb$dhzAEF3;9_vMRo<^w@V8xLdxQ&-^li4663eYRn@f6SF34Q z0>cnD?gimMH&W4ZMbS);H{bgBIs5B&wfzTUoq^+Fjz~uW<4-fPV$K1E0Id#7)1-yQ z#)6>ItcvuUtJ3>QlsBEr%f){oDcn;x?FLkT^f z;IcE|Ze^A~qNS*v>PnWcB+#q#Xnv|Yh)}3oo*l*vVDRH;O`E%z_vl-oOKlyul;s2~ zWaw4-mgp2vo;;z_-hH76PXFc#uRpeM>-x5&(w>PVoq$fCcE?d2KtB3 zx!N4BEYzBQ0_zVJ*gA*^0{Z-RE)iDE*|JzeTfWA7kHXju1;{Se7$NhW_{Hb~c2ZZ` z9M<&viCIV9lkqE&Ps@^#=a!750XL=+)O=PHHlP^VPcHb;Pz6s+^bR$&q{DEfgPvJ~ zcjX!N+|M2K23wHvPNfw4-t)yrccP#dWL4rfl9J19pSr6vDU=dZtB+a?bMzka-%zkt z-sa)8-`gcwaO3-kw5e7s0cbov`gCa@gL9PiGLw2%}>0I84 zoNjWHay)04tv%0^P`g;?DBMaMH7)xQxzCmC97`PL3Xi|X7(dCAp7Ffz2iPB@{J-|H z{%23#n=MG+KmS&`-wh(r)X`t%P@N|jkpng0L@Tk$Oi;l}EC#ixA{w0(L6jRRc_k4I zN!dfeBRji(5-!|V-ONFal}U|TrTCs|y-4cnHa<_l;|@D$YOb1p#$|KwnuS?(&-B)HQqfZZH#CPwRp5~_&&(+5#Bf+5@#25011u|G=-3b7{(Cjts- zI`V)dK9+;-FuK^6*0PCIz&_XaPn8qmV-wWQ+Qa58CBl@6y(KZUcE=;TzWAtwr>Xs9 z_?|jTihXqW`n%~d)r<4&Eu+XWn3GDjOkOuGpT(e8hifRbs1`7Be${T3!(Y^H)p{FA z7Qp6xk(V|5K5F9{w)?3!Qd1GR)TUM8(*$jbl6v_Z>SCSf%VzY`q*1LJMp~dubmUkZ zZyz1dqr%QV-qSFg_7KO*cVTNCp7+NTTBDJf^z?o$qz4K0CIWue9tBOAgOilqzRK`b z1TE*nPxhPcMhLmZ7`7gF);#t3>`k&frK*cD=jPQlV>{dY#spo>ZiIWgzWGKeK}4H! z&F!f!y{4dA;A7Fji`cB|*{#p{RMo*I9=&b2l;}4goiweo$5n?Wpd1Sul;kk8K$pcV zxu71eIEi0aJHK%09Fb9xe)KpF)_JR18$fY{KG*2FSoS=Em_SL$$LDEjcJB0rNMr~!OBE>SI6COYYMO0NjFKRaY>MunXY-s@$HqE;`BBwh2!S4yjh zG8G9Qf)$Gv>o5|03Sf4;;U#sFx@IO6${eXm1|o~zzl(2{y?cyEaCf<#gtdsL!9s|N zrdNI-qWaAOm?Dx(PNnx*Kzp|+v%VSh>159e1I^p0ma8!y29&axSe(zczk5*0Xy9myU z2b`PxQD|gCuS8lX8~rufOQKI76a;Ho8;X}}81NtPpDI2FMNu!{eA`)Iu5s;XjA>Tq zB_%V>FJGSg36=|D6%vufn4p~~(z8+!ke(}u^OR{JqI$wq zB7%aCmFmtL4!xVs-Z8QUzuW_3fAEIg6uywzNKM5rUU3dE5$~Bjk(ryNN@{S0rI0L+ z@uyQ!pTm?A|Bx)uuY>C&^j@L>rZm(iHvkVEf1u~gXjl``8Bu`9qQLaI+294N0fne=s zD;b9!lDUf@nBbu=BdodF_Sr8z;u0N)(H~@jCtPWOz^6EAH{-pyQb{wJofx!yVzwQe z>l;4vaZ+$ouCI|$foj<{6X?Z({NJFE{06fq+YG2Do5TTi39sGkH_j~p9htNnUurZ@ z^MYy(tKgsQ;Lok00Hxbhh!@7i2r(~%gSlDiGOkhG8PQoj`dTnbmUN3ev!k4dp%R~`;Nv5bC9ieB&~GBGnkB;Lue7%RN2tO3 zf84P5{-FQ&$dH-6lda+ZY*Vz-tlVF6mh*GE8chmTm6V{=<;j?vJ8($YXvPPnDv4y+ z1jXYY!0PKK0oDWj*Kj_IB4o27JEH@!sF&Xp;wX`P)83`=yr){3Tf5(U-e7iMcs@4U zPOPQYGuiLQM7OhjkIn^M1`%Ei2!VlOE2AfO>=y-7rpHt;uIb=lB{sBZz-)j1MR$*} z-2Phr+66sHE!^7JGJ2Ksc|rg0b=RU4!C1_u#v1;gO!1YN6i!z7NBu_X}I;1 za0n9QX_(>n82RUz(Qm$XuL$#!E@jKt3o260)FwxQ)k$V zVsT3@Q)I(q9DXuT(qbB^uI7On_?Q=0ur?y`F#Q}#zMHEl?P@2WLb13`tSDX(W2yz0 z(Ub?TR&IVKK%>%!Zl+Lt?kbcKEPkAA`?>cxV`}LMrvfQegDd0*g4`tuwRETWS0}AR zxkw8GL^~y(pgB$m(>PHWj$);vFJKWLTikYQh0ocwK4Luyu z3|bnc?6~N4{J{E)f3;RuaGiJ$nb-e6Xy{*Mv40Bss@A_1PlcPa+}4Sa)GNcFX;+ek zKx+8}WCax9yOdZ^(e~SPU4+}o8lw&1uY-Plc-hk?VdCq0l&~?%e{V}I+*+kmKp1e% z=w!a1YIUE=Oq+Urc>M96H}Q6l_g99Q25P^O3_AMne;Ou=>BsBGBLQ&`0gbCw1_t8; zIuuMIR*OV|gzKi@!5;^jklSX+W!f3>`&@uCL8*+_$g(Y={|{r|6kh4FuG?Y9wrv|7 z+qP|+9ou#~wr$(C?TjQHbUMk I5D^Xxs>z8Ja~H&uVtrx$soSec)eRT{KqCk+}x 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%0AF>LuBa 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

    bxv`zv7m85b+DS2=R8L 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ⅆ&YB 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



     

    Advanced searchLanguage tools

    © 2018 - Privacy - Terms

    \ No newline at end of file diff --git a/srlie/project/Release.scala b/srlie/project/Release.scala new file mode 100644 index 0000000..110adbc --- /dev/null +++ b/srlie/project/Release.scala @@ -0,0 +1,31 @@ +import sbt._ +import Keys._ + +import sbtrelease._ +import ReleasePlugin._ +import ReleaseKeys._ +import ReleaseStateTransformations._ +import Utilities._ + +import com.typesafe.sbt.SbtPgp.PgpKeys._ + +object ReleaseSettings { + val defaults = releaseSettings ++ Seq( + releaseProcess := Seq[ReleaseStep]( + checkSnapshotDependencies, + inquireVersions, + runTest, + setReleaseVersion, + commitReleaseVersion, + tagRelease, + publishArtifacts.copy(action = publishSignedAction), + setNextVersion, + commitNextVersion + )) + + lazy val publishSignedAction = { st: State => + val extracted = st.extract + val ref = extracted.get(thisProjectRef) + extracted.runAggregated(publishSigned in Global in ref, st) + } +} diff --git a/srlie/project/build.properties b/srlie/project/build.properties new file mode 100644 index 0000000..0974fce --- /dev/null +++ b/srlie/project/build.properties @@ -0,0 +1 @@ +sbt.version=0.13.0 diff --git a/srlie/project/plugins.sbt b/srlie/project/plugins.sbt new file mode 100644 index 0000000..580f1c0 --- /dev/null +++ b/srlie/project/plugins.sbt @@ -0,0 +1,5 @@ +addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.1") + +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.9.2") + +addSbtPlugin("com.github.gseitz" % "sbt-release" % "0.8") diff --git a/srlie/src/main/resources/edu/knowitall/srlie/confidence/correctness-classifier.txt b/srlie/src/main/resources/edu/knowitall/srlie/confidence/correctness-classifier.txt new file mode 100644 index 0000000..3011b1b --- /dev/null +++ b/srlie/src/main/resources/edu/knowitall/srlie/confidence/correctness-classifier.txt @@ -0,0 +1,25 @@ +< 2 frame arguments -0.0 +> 2 frame arguments -4.4944734711519293E-4 +Intercept 0.031644501110313895 +all arg2s appear after rel in sentence 0.031644501110313895 +an arg2 contains > 10 tokens -0.01876580492100638 +arg1 appears before rel in sentence 0.031644501110313895 +arg1 borders rel 0.01099571975218925 +arg1 contains > 10 tokens -0.08830374355608572 +arg1 contains a pronoun or EX -0.18461639648831069 +arg1 contains bad characters -0.008040901402781374 +arg1 is blacklisted -0.0328917832465959 +arg1 is noun 0.3841586915256809 +arg1 is proper 0.058780273157119076 +arg2 borders rel 0.11731326074114343 +arg2 is blacklisted -0.2704194905302396 +at least one arg2 contains a pronoun or EX -0.416585274956371 +at least one arg2 is noun 0.8676769321313569 +at least one arg2 is proper 0.0659338679191022 +hierarchical frames -0.4459376935562439 +intransitive extraction 0.0 +nary extraction 0.0 +rel contains > 10 tokens 0.0 +rel contains bad characters -0.0043600598095811125 +rel contains verb 0.031644501110313895 +rel contiguous 0.2775631249573174 diff --git a/srlie/src/main/resources/edu/knowitall/srlie/confidence/default-classifier.txt b/srlie/src/main/resources/edu/knowitall/srlie/confidence/default-classifier.txt new file mode 100644 index 0000000..9c64f3e --- /dev/null +++ b/srlie/src/main/resources/edu/knowitall/srlie/confidence/default-classifier.txt @@ -0,0 +1,25 @@ +< 2 frame arguments -0.0019272832009022919 +> 2 frame arguments -0.01964747984866818 +Intercept -0.29005959281120436 +all arg2s appear after rel in sentence -0.29005959281120436 +an arg2 contains > 10 tokens 0.23615570861127455 +arg1 appears before rel in sentence -0.29005959281120436 +arg1 borders rel 0.08402527703597777 +arg1 contains > 10 tokens 0.04831631993927922 +arg1 contains a pronoun or EX -0.832169140730415 +arg1 contains bad characters -0.3321442760314179 +arg1 is blacklisted -0.6808713332603705 +arg1 is noun 0.9783666488724458 +arg1 is proper 0.15223454538488168 +arg2 borders rel 0.09106994739232609 +arg2 is blacklisted -0.5035442841858896 +at least one arg2 contains a pronoun or EX -0.3055059153587756 +at least one arg2 is noun 0.5213110556204072 +at least one arg2 is proper 0.09253822412272641 +hierarchical frames -0.11113407842599288 +intransitive extraction -5.306821559439939E-6 +nary extraction 0.0 +rel contains > 10 tokens 0.0 +rel contains bad characters 0.14134262184917817 +rel contains verb -0.14369028184185362 +rel contiguous 0.21316898408402155 diff --git a/srlie/src/main/resources/logback.xml b/srlie/src/main/resources/logback.xml new file mode 100644 index 0000000..0b2148a --- /dev/null +++ b/srlie/src/main/resources/logback.xml @@ -0,0 +1,14 @@ + + + + + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + + + + + diff --git a/srlie/src/main/scala/edu/knowitall/srlie/SrlExtraction.scala b/srlie/src/main/scala/edu/knowitall/srlie/SrlExtraction.scala new file mode 100644 index 0000000..8494f9f --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/SrlExtraction.scala @@ -0,0 +1,529 @@ +package edu.knowitall.srlie + +import edu.knowitall.collection.immutable.Interval +import scala.util.control.Exception +import edu.knowitall.tool.parse.graph.DependencyNode +import edu.knowitall.tool.srl.Role +import edu.knowitall.tool.srl.Frame +import edu.knowitall.tool.parse.graph.DependencyGraph +import edu.knowitall.tool.srl.Roles +import edu.knowitall.collection.immutable.graph.Graph.Edge +import edu.knowitall.collection.immutable.graph.DirectedEdge +import edu.knowitall.collection.immutable.graph.Direction +import edu.knowitall.tool.srl.Roles.R +import edu.knowitall.tool.srl.FrameHierarchy +import edu.knowitall.collection.immutable.graph.UpEdge +import edu.knowitall.collection.immutable.graph.Graph +import edu.knowitall.srlie.SrlExtraction._ +import scala.collection.immutable.SortedSet +import edu.knowitall.tool.tokenize.Token +import edu.knowitall.tool.tokenize.Tokenizer + +case class SrlExtraction(relation: Relation, arg1: Argument, arg2s: Seq[Argument], context: Option[Context], negated: Boolean) { + def rel = relation + + def relationArgument = { + if (this.active) this.arg2s.find(arg2 => arg2.role == Roles.A1 || arg2.role == Roles.A2) + else if (this.passive) this.arg2s.find(_.role == Roles.A2) + else None + } + + def intervals = (arg1.interval +: relation.intervals) ++ arg2s.map(_.interval) + + def tokens = relation.tokens ++ arg1.tokens ++ arg2s.flatMap(_.tokens) + + private val bePresentVerbs = Set("am", "are", "is") + private val bePastVerbs = Set("was", "were") + private val beVerbs = bePastVerbs ++ bePresentVerbs + def transformations(transformations: Transformation*): Seq[SrlExtraction] = { + def passiveDobj = { + for { + a1 <- arg2s.find(_.role == Roles.A1).toSeq + a2 <- arg2s.find(_.role == Roles.A2) + + if a1.tokens.exists(token => token.isNoun || token.isPronoun) + if a2.tokens.exists(token => token.isNoun || token.isPronoun) + + a0 = arg1 + if a0.role == Roles.A0 + if !this.context.isDefined + } yield { + // val a0New = new Argument("[by] " + a0.text, a0.tokens, a0.interval, a0.role) + val arg2s = /* a0New +: */ this.arg2s.filterNot(_ == a1) + + val inferred = + if (this.rel.tokens.exists(token => token.text == "has" || token.text == "have")) "[been]" + else if (arg1.plural) "[were]" + else "[was]" + + val (before, after) = this.rel.tokens.filter { token => + !beVerbs.contains(token.text) + }.span(node => node.postag == "MD" || node.text == "has" || node.text == "have") + val text = Iterable(before.iterator.map(_.text), Iterable(inferred), after.iterator.map(_.text)).flatten.mkString(" ") + val rel = new Relation(text, this.rel.sense, this.rel.tokens, this.rel.intervals) + + SrlExtraction(rel, a1, arg2s, context, negated) + } + } + + if (transformations.contains(PassiveDobj)) { + passiveDobj + } else { + Seq.empty + } + } + + def triplize(includeDobj: Boolean = true): Seq[SrlExtraction] = { + val relArg = if (includeDobj) this.relationArgument else None + + val filteredArg2s = (arg2s filterNot (arg2 => relArg.exists(_ == arg2))) + val tripleExtrs = if (filteredArg2s.isEmpty) { + Seq(this) + } else { + val extrs = relArg match { + case Some(relArg) => arg2s.map { arg2 => + val rel = + if (arg2 == relArg) { + relation + } else { + val tokens = (relation.tokens ++ relArg.tokens).sortBy(_.tokenInterval) + val text = relation.text + " " + relArg.tokens.iterator.map(_.text).mkString(" ") + relation.copy(text = text, tokens = tokens, intervals = relation.intervals :+ relArg.interval) + } + new SrlExtraction(rel, this.arg1, Seq(arg2), context, negated) + } + case None => filteredArg2s.map { arg2 => + new SrlExtraction(rel, this.arg1, Seq(arg2), context, negated) + } + } + + // don't include dobj if we create any intransitives + if (extrs exists (_.intransitive)) this.triplize(false) + else extrs + } + + tripleExtrs.filter { extr => + // filter extractions where the rel overlaps the arg2 + extr.arg2s.forall(arg2 => extr.rel.intervals.forall(relInterval => !(arg2.interval intersects relInterval))) + }.flatMap { extr => + // move preposition to relation if it leads the arg2 + extr.arg2s match { + case Seq(arg2) if arg2.hasLeadingPreposition => + // since we are removing text and tokens from the arg2, + // we might violate a requirement that the text and the + // number of tokens is non empty. + Exception.catching(classOf[Exception]).opt(arg2.withoutLeadingPreposition).map { newArg2 => + val leadingPreposition = arg2.leadingPrepositionToken.get + val newRel = extr.rel.copy( + text = extr.rel.text + " " + leadingPreposition.text, + tokens = extr.rel.tokens :+ leadingPreposition, + intervals = extr.rel.intervals :+ Interval.singleton(arg2.interval.start) + ) + extr.copy(relation = newRel, arg2s = Seq(newArg2)) + } + case _ => Some(extr) + } + // make sure the arg2 still contains tokens + }.filter { extr => + extr.arg2s.forall(!_.tokens.isEmpty) + } + } + + def basicTripleString = { + Iterable(arg1.text, relation.text, arg2s.iterator.map(_.text).mkString("; ")).mkString("(", "; ", ")") + } + override def toString = { + val parts = Iterable(arg1.toString, relation.toString, arg2s.iterator.map(_.toString).mkString("; ")) + val prefix = context match { + case Some(context) => context.text + ":" + case None => "" + } + prefix + parts.mkString("(", "; ", ")") + } + + def intransitive = arg2s.isEmpty + + // an extraction is active if A0 is the first A* + def active = !intransitive && this.arg1.role == Roles.A0 + + // an extraction is active if it's not passive + def passive = !intransitive && !active +} + +object SrlExtraction { + case class Sense(name: String, id: String) + + sealed abstract class Transformation + case object PassiveDobj extends Transformation + + def create(relation: Relation, arguments: Seq[Argument], context: Option[Context], negated: Boolean) = { + val arg1 = arguments.find(arg => (arg.role.label matches "A\\d+") && (relation.intervals.forall(interval => arg.interval leftOf interval))).getOrElse { + throw new IllegalArgumentException("Extraction has no arg1.") + } + + // look for potential arguments that are right of the relation + val rightArg2s = arguments.filter { arg => + relation.intervals.forall(interval => arg.interval rightOf interval) + } ++ arguments.filter { arg => + !relation.intervals.forall(interval => arg.interval rightOf interval) && + (arg.role == Roles.AM_TMP || arg.role == Roles.AM_LOC) + } + + val arg2s = + // if we didn't find any, use any prime arguments that were found + if (rightArg2s.isEmpty) arguments.filter(arg => arg != arg1 && (arg.role.label matches "A\\d+")) + else rightArg2s + + new SrlExtraction(relation, arg1, arg2s, context, negated) + } + + abstract class Part { + def text: String + def tokens: Seq[DependencyNode] + + def tokenSpan: Interval + + require(!text.isEmpty, "Extraction part text may not be empty.") + require(!tokens.isEmpty, "Extraction part tokens may not be empty.") + // require(tokens.sorted == tokens) + } + + abstract class MultiPart extends Part { + def intervals: Seq[Interval] + def span = Interval.span(intervals) + + def tokenIntervals = intervals + def tokenSpan = span + + override def hashCode = intervals.hashCode * 39 + tokens.hashCode + } + + abstract class SinglePart extends Part { + def interval: Interval + + def tokenInterval = interval + def tokenSpan = tokenInterval + def offsets = Interval.open( + this.tokens.head.offsets.start, + this.tokens.last.offsets.end) + } + + class Context(val text: String, val tokens: Seq[DependencyNode], val intervals: Seq[Interval]) extends MultiPart { + override def toString = text + + def canEqual(that: Any): Boolean = that.isInstanceOf[Context] + override def equals(that: Any): Boolean = that match { + case that: Context => ( + that.canEqual(this) + && this.text == that.text + && this.tokens == that.tokens + && this.intervals == that.intervals) + case _ => false + } + } + + abstract class Argument extends SinglePart { + def text: String + def tokens: Seq[DependencyNode] + def interval: Interval + def role: Role + + override def toString = text + + def plural = tokens.exists { token => + token.isPluralNoun + } + + def hasLeadingPreposition: Boolean = { + leadingPrepositionToken.isDefined + } + + def leadingPrepositionToken: Option[DependencyNode] = { + tokens.headOption.filter { head => + head.postag == "IN" || head.postag == "TO" + } + } + + def withoutLeadingPreposition: Argument = { + if (!leadingPrepositionToken.isDefined) { + this + } + else { + new SimpleArgument(tokens.drop(1), Interval.open(interval.start + 1, interval.end), role) + } + } + } + + abstract class SemanticArgument extends Argument + + case class SimpleArgument(val text: String, val tokens: Seq[DependencyNode], val interval: Interval, val role: Role) extends Argument { + def this(tokens: Seq[DependencyNode], interval: Interval, role: Role) = + this(Tokenizer.originalText(tokens).trim, tokens, interval, role) + override def toString = text + } + + case class TemporalArgument(val text: String, val tokens: Seq[DependencyNode], val interval: Interval, val role: Role) + extends SemanticArgument { + + def this(tokens: Seq[DependencyNode], interval: Interval, role: Role) = + this(Tokenizer.originalText(tokens).trim, tokens, interval, role) + + override def toString = "T:" + super.toString + + override def withoutLeadingPreposition: TemporalArgument = { + if (!leadingPrepositionToken.isDefined) { + this + } + else { + new TemporalArgument(tokens.drop(1), Interval.open(interval.start + 1, interval.end), role) + } + } + } + + case class LocationArgument(val text: String, val tokens: Seq[DependencyNode], val interval: Interval, val role: Role) + extends SemanticArgument { + + def this(tokens: Seq[DependencyNode], interval: Interval, role: Role) = + this(Tokenizer.originalText(tokens).trim, tokens, interval, role) + + override def toString = "L:" + super.toString + + override def withoutLeadingPreposition: LocationArgument = { + if (!leadingPrepositionToken.isDefined) { + this + } + else { + new LocationArgument(tokens.drop(1), Interval.open(interval.start + 1, interval.end), role) + } + } + } + + case class Relation(text: String, sense: Option[Sense], tokens: Seq[DependencyNode], intervals: Seq[Interval]) extends MultiPart { + // make sure all the intervals are disjoint + try{ + require(intervals.forall(x => !intervals.exists(y => x != y && (x intersects y)))) + } + catch{ + case e: Exception => + System.out.println("Panic on line: " + text) + } + + override def toString = text + + def canEqual(that: Any): Boolean = that.isInstanceOf[Relation] + override def equals(that: Any): Boolean = that match { + case that: Relation => ( + that.canEqual(this) + && this.text == that.text + && this.tokens == that.tokens + && this.intervals == that.intervals) + case _ => false + } + + def concat(other: Relation) = { + Relation(this.text + " " + other.text, None, this.tokens ++ other.tokens, this.intervals ++ other.intervals) + } + } + + object Relation { + val expansionLabels = Set("advmod", "neg", "aux", "cop", "auxpass", "prt", "acomp") + } + + def contiguousAdjacent(graph: DependencyGraph, node: DependencyNode, cond: DirectedEdge[DependencyNode] => Boolean, until: Set[DependencyNode]) = { + def takeAdjacent(interval: Interval, nodes: List[DependencyNode], pool: List[DependencyNode]): List[DependencyNode] = pool match { + // can we add the top node? + case head :: tail if (head.indices borders interval) && !until.contains(head) => + takeAdjacent(interval union head.indices, head :: nodes, tail) + // otherwise abort + case _ => nodes + } + + val inferiors = graph.graph.connected(node, dedge => cond(dedge) && !(until contains dedge.end)) + val span = Interval.span(inferiors.map(_.indices)) + val contiguous = graph.nodes.drop(span.start).take(span.length).toList.sorted + + // split into nodes left and right of node + val lefts = contiguous.takeWhile(_ != node).reverse + val rights = contiguous.dropWhile(_ != node).drop(1) + + // take adjacent nodes from each list + val withLefts = takeAdjacent(node.indices, List(node), lefts) + val expanded = takeAdjacent(node.indices, withLefts, rights).sortBy(_.indices) + + // only take items that are inferiors + expanded.slice(expanded.indexWhere(inferiors contains _), 1 + expanded.lastIndexWhere(inferiors contains _)) + } + + /** + * Find all nodes in a components next to the node. + * @param node components will be found adjacent to this node + * @param labels components may be connected by edges with any of these labels + * @param without components may not include any of these nodes + */ + def components(graph: DependencyGraph, node: DependencyNode, labels: Set[String], without: Set[DependencyNode], nested: Boolean) = { + // nodes across an allowed label to a subcomponent + val across = graph.graph.neighbors(node, (dedge: DirectedEdge[_]) => dedge.dir match { + case Direction.Down if labels.contains(dedge.edge.label) => true + case _ => false + }) + + across.flatMap { start => + // get inferiors without passing back to node + val inferiors = graph.graph.inferiors(start, + (e: Graph.Edge[DependencyNode]) => + // don't cross a conjunction that goes back an across node + !((e.label startsWith "conj") && (across contains e.dest)) && + // make sure we don't cycle out of the component + e.dest != node && + // make sure we don't descend into another component + // i.e. "John M. Synge who came to us with his play direct + // from the Aran Islands , where the material for most of + // his later works was gathered" if nested is false + (nested || !labels.contains(e.label))) + + // make sure none of the without nodes are in the component + if (without.forall(!inferiors.contains(_))) { + val span = Interval.span(inferiors.map(_.indices).toSeq) + Some(graph.nodes.filter(node => span.superset(node.indices)).toList) + } else None + } + } + + val componentEdgeLabels = Set("rcmod", "infmod", "partmod", "ref", "prepc_of", "advcl") + val forbiddenEdgeLabel = Set("appos", "punct", "cc") ++ componentEdgeLabels + def fromFrame(dgraph: DependencyGraph)(frame: Frame): Option[SrlExtraction] = { + //System.err.println("From frame: " + frame) + val argsNotBoundaries = frame.arguments.filterNot { arg => + arg.role match { + case Roles.AM_MNR => true + case Roles.AM_MOD => true + case Roles.AM_NEG => true +// case Roles.AM_ADV => true + case _: Roles.C => true + case _ => false + } + } + + // context information + val negated = frame.arguments.find(_.role == Roles.AM_NEG).isDefined + + val boundaries = argsNotBoundaries.map(_.node).toSet + frame.relation.node + + val args = argsNotBoundaries.filterNot { arg => + arg.role match { + case _: Roles.R => true + case _ => false + } + } + + val rel = { + // sometimes we need detached tokens: "John shouts profanities out loud." + val nodes = dgraph.graph.inferiors(frame.relation.node, edge => (Relation.expansionLabels contains edge.label) && !(boundaries contains edge.dest)) + val additionalNodes = + // sometimes we need to go up a pcomp + dgraph.graph.predecessors(frame.relation.node, edge => edge.label == "pcomp" && nodes.exists { node => node.tokenInterval borders edge.source.tokenInterval }) + val remoteNodes = ( + // expand to certain nodes connected by a conj edge + (dgraph.graph.superiors(frame.relation.node, edge => edge.label == "conj") - frame.relation.node) flatMap (node => dgraph.graph.inferiors(node, edge => edge.label == "aux" && edge.dest.text == "to") - node)).filter(_.index < frame.relation.node.index) + val nodeSeq = (remoteNodes ++ nodes ++ additionalNodes).toSeq.sorted + + /** + * create a minimal spanning set of the supplied intervals. + * + * @returns a sorted minimal spanning set + */ + def minimal(intervals: Iterable[Interval]): List[Interval] = { + val set = collection.immutable.SortedSet.empty[Int] ++ intervals.flatten + set.foldLeft(List.empty[Interval]) { + case (list, i) => + val singleton = Interval.singleton(i) + list match { + case Nil => List(singleton) + case x :: xs if x borders singleton => (x union singleton) :: xs + case xs => singleton :: xs + } + }.reverse + } + + val intervals = minimal(nodeSeq.map(_.tokenInterval)) + val text = nodeSeq.iterator.map(_.text).mkString(" ") + Relation(text, Some(Sense(frame.relation.name, frame.relation.sense)), nodeSeq, intervals) + } + + val mappedArgs = args.map { arg => + val immediateNodes = + // expand along certain contiguous nodes + contiguousAdjacent(dgraph, arg.node, dedge => dedge.dir == Direction.Down && !(forbiddenEdgeLabel contains dedge.edge.label), boundaries) + + val componentNodes: Set[List[DependencyNode]] = + if (immediateNodes.exists(_.isProperNoun)) Set.empty + else components(dgraph, arg.node, componentEdgeLabels, boundaries, false) + + val nodeSpan = Interval.span(immediateNodes.map(_.tokenInterval) ++ componentNodes.map(_.tokenInterval)) + val nodes = dgraph.nodes.slice(nodeSpan.start, nodeSpan.end) + + val nodeSeq = nodes.toSeq + arg.role match { + case Roles.AM_TMP => new TemporalArgument(nodeSeq, Interval.span(nodes.map(_.indices)), arg.role) + case Roles.AM_LOC => new LocationArgument(nodeSeq, Interval.span(nodes.map(_.indices)), arg.role) + case _ => new SimpleArgument(nodeSeq, Interval.span(nodes.map(_.indices)), arg.role) + } + } + + Exception.catching(classOf[IllegalArgumentException]) opt SrlExtraction.create(rel, mappedArgs, None, negated) + } + + def fromFrameHierarchy(dgraph: DependencyGraph)(frameh: FrameHierarchy): Seq[SrlExtraction] = { + def rec(frameh: FrameHierarchy): Seq[SrlExtraction] = { + if (frameh.children.isEmpty) SrlExtraction.fromFrame(dgraph)(frameh.frame).toSeq + else { + SrlExtraction.fromFrame(dgraph)(frameh.frame) match { + case Some(extr) => + val context = { + extr.context match { + case Some(context) => + val intervals = SortedSet.empty[Interval] ++ extr.rel.intervals + extr.arg1.interval + val tokens = (Set.empty[DependencyNode] ++ extr.arg1.tokens ++ extr.rel.tokens).toSeq.sortBy(_.tokenInterval) + new Context(tokens.iterator.map(_.string).mkString(" "), tokens, intervals.toSeq) + case None => + val intervals = extr.rel.intervals :+ extr.arg1.interval + val tokens = extr.arg1.tokens ++ extr.rel.tokens + new Context(tokens.iterator.map(_.string).mkString(" "), tokens, intervals) + } + } + val subextrs = frameh.children flatMap rec + + // triplize to include dobj in rel + val relation = extr.relationArgument match { + case Some(arg) if subextrs.forall(_.arg2s.forall(arg2 => !(arg2.interval intersects arg.interval))) && + (arg.interval borders extr.relation.span) => extr.relation.copy(tokens = (arg.tokens ++ extr.relation.tokens).sorted, text = extr.relation.text + " " + arg.text) + case _ => extr.relation + } + + extr +: (subextrs flatMap { subextr => + Exception.catching(classOf[IllegalArgumentException]) opt + { + val combinedContext = subextr.context match { + case Some(subcontext) => + val intervals = (context.intervals ++ subcontext.intervals).toSet.toSeq.sorted + val tokens = (context.tokens ++ subcontext.tokens).toSet + val sortedToken = tokens.toSeq.sortBy(_.tokenInterval) + new Context(sortedToken.iterator.map(_.string).mkString(" "), sortedToken, intervals) + case None => context + } + if (extr.arg1 == subextr.arg1) + // combine the relations to make a more informative relation phrase + SrlExtraction(relation concat subextr.relation, subextr.arg1, subextr.arg2s, Some(combinedContext), extr.negated || subextr.negated) + else + // the nested extraction has a different arg1 + SrlExtraction(subextr.relation, subextr.arg1, subextr.arg2s, Some(combinedContext), subextr.negated) + } + }) + case None => Seq.empty + } + } + } + + rec(frameh) + } +} diff --git a/srlie/src/main/scala/edu/knowitall/srlie/SrlExtractionInstance.scala b/srlie/src/main/scala/edu/knowitall/srlie/SrlExtractionInstance.scala new file mode 100644 index 0000000..de8b1bd --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/SrlExtractionInstance.scala @@ -0,0 +1,14 @@ +package edu.knowitall.srlie + +import edu.knowitall.tool.srl.FrameHierarchy +import edu.knowitall.tool.parse.graph.DependencyGraph + +case class SrlExtractionInstance(extr: SrlExtraction, frame: FrameHierarchy, dgraph: DependencyGraph) { + def extraction = extr + + override def toString = extr.toString + " <- " + frame.toString + + def triplize(includeDobj: Boolean = true): Seq[SrlExtractionInstance] = { + extr.triplize(includeDobj).map(extr => this.copy(extr = extr)) + } +} diff --git a/srlie/src/main/scala/edu/knowitall/srlie/SrlExtractor.scala b/srlie/src/main/scala/edu/knowitall/srlie/SrlExtractor.scala new file mode 100644 index 0000000..bcf0988 --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/SrlExtractor.scala @@ -0,0 +1,192 @@ +package edu.knowitall.srlie + +import scala.io.Source +import edu.knowitall.tool.parse.ClearParser +import edu.knowitall.tool.srl.ClearSrl +import edu.knowitall.tool.srl.Srl +import edu.knowitall.tool.parse.graph.DependencyGraph +import scala.util.control.Exception +import java.io.File +import edu.knowitall.common.Resource +import edu.knowitall.tool.srl.FrameHierarchy +import edu.knowitall.tool.srl.Frame +import edu.knowitall.tool.srl.Roles +import edu.knowitall.srlie.confidence.SrlConfidenceFunction +import java.io.PrintWriter +import java.net.URL +import edu.knowitall.srlie.confidence.SrlFeatureSet +import edu.knowitall.common.Timing + +class SrlExtractor(val srl: Srl = new ClearSrl()) { + def apply(dgraph: DependencyGraph): Seq[SrlExtractionInstance] = { + val frames = srl.apply(dgraph) + this.extract(dgraph)(frames) + } + + def extract(dgraph: DependencyGraph)(frames: Seq[Frame]) = { + val hierarchy = FrameHierarchy.fromFrames(dgraph, frames).toSeq + hierarchy.flatMap { hierarchy => + val extrs = SrlExtraction.fromFrameHierarchy(dgraph)(hierarchy) + extrs.map { extr => SrlExtractionInstance(extr, hierarchy, dgraph) } + } + } +} + +object SrlExtractor extends App { + sealed abstract class OutputFormat + object OutputFormat { + def apply(format: String): OutputFormat = { + format.toLowerCase match { + case "standard" => Standard + case "annotation" => Annotation + case "evaluation" => Evaluation + case _ => throw new IllegalArgumentException("Unknown output format: " + format) + } + } + + case object Standard extends OutputFormat + case object Annotation extends OutputFormat + case object Evaluation extends OutputFormat + } + + case class Config(inputFile: Option[File] = None, + outputFile: Option[File] = None, + outputFormat: OutputFormat = OutputFormat.Standard, + gold: Map[String, Boolean] = Map.empty, + classifierUrl: URL = SrlConfidenceFunction.defaultModelUrl) { + def source() = { + inputFile match { + case Some(file) => Source.fromFile(file, "UTF8") + case None => Source.stdin + } + } + + def writer() = { + outputFile match { + case Some(file) => new PrintWriter(file, "UTF8") + case None => new PrintWriter(System.out) + } + } + } + + val argumentParser = new scopt.immutable.OptionParser[Config]("srl-ie") { + def options = Seq( + argOpt("input file", "input file") { (string, config) => + val file = new File(string) + require(file.exists, "input file does not exist: " + file) + config.copy(inputFile = Some(file)) + }, + argOpt("ouput file", "output file") { (string, config) => + val file = new File(string) + config.copy(outputFile = Some(file)) + }, + opt("gold", "gold file") { (string, config) => + val file = new File(string) + require(file.exists, "gold file does not exist: " + file) + val gold = Resource.using (Source.fromFile(file, "UTF8")) { source => + (for { + line <- source.getLines + (annotation, string) = line.split("\t") match { + case Array(annotation, string, _ @ _*) => (annotation, string) + case _ => throw new MatchError("Could not parse gold entry: " + line) + } + boolean = if (annotation == "1") true else false + } yield { + string -> boolean + }).toMap + } + config.copy(gold = gold) + }, + opt("classifier", "url to classifier model") { (string, config) => + val file = new File(string) + require(file.exists, "classifier file does not exist: " + file) + config.copy(classifierUrl = file.toURI.toURL) + }, + opt("format", "output format: {standard, annotation, evaluation}") { (string, config) => + config.copy(outputFormat = OutputFormat(string)) + }) + } + + argumentParser.parse(args, Config()) match { + case Some(config) => run(config) + case None => + } + + def run(config: Config) { + val parser = new ClearParser() + val srl = new ClearSrl() + val srlie = new SrlExtractor(srl) + val conf = SrlConfidenceFunction.fromUrl(SrlFeatureSet, config.classifierUrl) + + def graphify(line: String) = { + (Exception.catching(classOf[DependencyGraph.SerializationException]) opt DependencyGraph.deserialize(line)) match { + case Some(graph) => graph + case None => parser.dependencyGraph(line) + } + } + + Resource.using(config.source()) { source => + Resource.using(config.writer()) { writer => + Timing.timeThen { + for (line <- source.getLines) { + try { + val graph = graphify(line) + val insts = srlie.apply(graph) + val triples = insts.flatMap(_.triplize(true)) + + if (config.outputFormat == OutputFormat.Standard) { + writer.println(graph.serialize) + writer.println() + + val frames = srl(graph) + writer.println("frames:") + frames.map(_.serialize) foreach writer.println + writer.println() + + val hierarchy = FrameHierarchy.fromFrames(graph, frames) + writer.println("hierarchical frames:") + hierarchy foreach writer.println + writer.println() + + writer.println("extractions:") + insts.foreach { inst => + val score = conf(inst) + writer.println(("%1.2f" format score) + ": " + inst.extr) + } + writer.println() + + writer.println("triples:") + triples.map(_.extr) foreach writer.println + + val transformations = insts.flatMap(_.extr.transformations(SrlExtraction.PassiveDobj)) + if (transformations.size > 0) { + writer.println("transformations:") + transformations foreach writer.println + } + + writer.println() + } else if (config.outputFormat == OutputFormat.Annotation) { + for (inst <- triples) { + val extr = inst.extr + val string = extr.basicTripleString + writer.println(Iterable(config.gold.get(string).map(if (_) 1 else 0).getOrElse(""), string, extr.arg1, extr.relation, extr.arg2s.mkString("; "), line).mkString("\t")) + } + } else if (config.outputFormat == OutputFormat.Evaluation) { + for (inst <- triples) { + val extr = inst.extr + val string = extr.basicTripleString + writer.println(Iterable(config.gold.get(string).map(if (_) 1 else 0).getOrElse(""), conf(inst), string, extr.arg1, extr.relation, extr.arg2s.mkString("; "), line).mkString("\t")) + } + } + + writer.flush() + } + catch { + case e: Exception => e.printStackTrace() + } + } + } { ns => System.err.println("Extractions in: " + Timing.Seconds.format(ns)) } + } + } + } +} diff --git a/srlie/src/main/scala/edu/knowitall/srlie/confidence/AnalyzeFeatures.scala b/srlie/src/main/scala/edu/knowitall/srlie/confidence/AnalyzeFeatures.scala new file mode 100644 index 0000000..9c0df8f --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/confidence/AnalyzeFeatures.scala @@ -0,0 +1,57 @@ +package edu.knowitall.srlie.confidence + +import java.io.File +import scala.io.Source +import scala.util.control.Exception +import edu.knowitall.tool.parse.ClearParser +import edu.knowitall.tool.srl.ClearSrl +import edu.knowitall.tool.srl.Srl +import edu.knowitall.tool.parse.graph.DependencyGraph +import edu.knowitall.tool.srl.FrameHierarchy +import edu.knowitall.tool.srl.Frame +import edu.knowitall.srlie.SrlExtractor +import edu.knowitall.srlie.SrlExtraction +import edu.knowitall.srlie.SrlExtractionInstance +import edu.knowitall.common.Resource + +object AnalyzeFeatures extends App { + run() + + def run() { + lazy val parser = new ClearParser() + val srl = new ClearSrl() + val conf = SrlConfidenceFunction.loadDefaultClassifier() + val srlExtractor = new SrlExtractor() + + def graphify(line: String) = { + (Exception.catching(classOf[DependencyGraph.SerializationException]) opt DependencyGraph.deserialize(line)) match { + case Some(graph) => graph + case None => parser.dependencyGraph(line) + } + } + + for (line <- Source.stdin.getLines) { + val graph = graphify(line) + val extrs = srlExtractor(graph) + + def printExtraction(inst: SrlExtractionInstance) = { + println(inst.extr) + println(conf(inst)) + SrlFeatures.featureMap.foreach { case(name, feature) => + val value = feature(inst) + println(Iterable(name, value, ("%.2f" format (value.toDouble * conf.featureWeights(name)))).mkString("\t")) + } + println() + } + + println("extractions:") + extrs foreach printExtraction + + println() + + println("triples:") + extrs.flatMap(_.triplize(true)) foreach printExtraction + + } + } +} diff --git a/srlie/src/main/scala/edu/knowitall/srlie/confidence/CreateCurve.scala b/srlie/src/main/scala/edu/knowitall/srlie/confidence/CreateCurve.scala new file mode 100644 index 0000000..ee82ef3 --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/confidence/CreateCurve.scala @@ -0,0 +1,32 @@ +package edu.knowitall.srlie.confidence + +import java.io.File +import scala.io.Source +import edu.knowitall.common.Resource +import edu.knowitall.common.Analysis +import java.io.PrintWriter + +object CreateCurve extends App { + run(new File(args(0)), new File(args(1))) + + def run(inputFile: File, outputFile: File) { + val annotations = Resource.using(Source.fromFile(inputFile, "UTF8")) { source => + (for { + line <- source.getLines + Array(annotation, confidence, _ @ _*) = line.split("\t") + if !annotation.isEmpty + } yield { + (confidence.toDouble, annotation == "1") + }).toList + } + + val points = Analysis.precisionYieldMeta(annotations.sortBy(-_._1)) + val auc = Analysis.areaUnderCurve(points.map { case (conf, p, y) => (p, y) }) + + Resource.using(new PrintWriter(outputFile, "UTF8")) { writer => + writer.println("AUC: " + auc) + writer.println("Points:") + points.map(_.productIterator.mkString("\t")) foreach writer.println + } + } +} \ No newline at end of file diff --git a/srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunction.scala b/srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunction.scala new file mode 100644 index 0000000..b3f98d4 --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunction.scala @@ -0,0 +1,25 @@ +package edu.knowitall.srlie.confidence + +import org.slf4j.LoggerFactory +import edu.knowitall.tool.conf.impl.LogisticRegression +import edu.knowitall.tool.conf.FeatureSet +import java.net.URL +import edu.knowitall.srlie.SrlExtractionInstance + +object SrlConfidenceFunction { + val logger = LoggerFactory.getLogger(classOf[SrlConfidenceFunction]) + + type SrlConfidenceFunction = LogisticRegression[SrlExtractionInstance] + + val defaultModelUrl = Option(this.getClass.getResource("default-classifier.txt")).getOrElse { + throw new IllegalArgumentException("Could not load confidence function resource.") + } + + def loadDefaultClassifier(): SrlConfidenceFunction = { + fromUrl(SrlFeatureSet, defaultModelUrl) + } + + def fromUrl(featureSet: FeatureSet[SrlExtractionInstance, Double], url: URL): SrlConfidenceFunction = { + LogisticRegression.fromUrl(featureSet, url) + } +} \ No newline at end of file diff --git a/srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlFeatureSet.scala b/srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlFeatureSet.scala new file mode 100644 index 0000000..f088fbb --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/confidence/SrlFeatureSet.scala @@ -0,0 +1,250 @@ +package edu.knowitall.srlie.confidence + +import edu.knowitall.tool.conf.FeatureSet +import edu.knowitall.tool.conf.Feature +import edu.knowitall.srlie.SrlExtractionInstance +import scala.collection.immutable.SortedMap +import edu.knowitall.tool.srl.FrameHierarchy +import edu.knowitall.srlie.SrlExtraction.Part +import java.util.regex.Pattern +import java.util.regex.Pattern + +object SrlFeatureSet extends FeatureSet[SrlExtractionInstance, Double](SrlFeatures.featureMap) + +/** Features defined for OllieExtractionInstances */ +object SrlFeatures { + type SrlFeature = Feature[SrlExtractionInstance, Double] + + implicit def boolToDouble(bool: Boolean) = if (bool) 1.0 else 0.0 + + /** Turn a hierarchical frame to a list of frames. */ + def flattenFrame(frame: FrameHierarchy): Seq[FrameHierarchy] = { + if (frame.children.isEmpty) Seq.empty + else frame +: frame.children.flatMap(flattenFrame(_)) + } + + object hierarchicalFrames extends SrlFeature("hierarchical frames") { + override def apply(inst: SrlExtractionInstance): Double = { + !inst.frame.children.isEmpty + } + } + + object fewFrameArguments extends SrlFeature("< 2 frame arguments") { + override def apply(inst: SrlExtractionInstance): Double = { + flattenFrame(inst.frame).exists(_.frame.arguments.size < 2) + } + } + + object manyFrameArguments extends SrlFeature("> 2 frame arguments") { + override def apply(inst: SrlExtractionInstance): Double = { + flattenFrame(inst.frame).exists(_.frame.arguments.size > 2) + } + } + + object intransitiveExtraction extends SrlFeature("intransitive extraction") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.size == 0 + } + } + + object context extends SrlFeature("extraction has context") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.context.isDefined + } + } + + object activeExtraction extends SrlFeature("active extractor") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.active + } + } + + object naryExtraction extends SrlFeature("nary extraction") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.size > 1 + } + } + + object pronoun { + def extraPronouns = Set("ive", "im", "things", "thing") + } + object arg1ContainsPronoun extends SrlFeature("arg1 contains a pronoun or EX") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg1.tokens.exists(tok => tok.isPronoun || + tok.postag == "EX" || + pronoun.extraPronouns.contains(tok.string.toLowerCase)) + } + } + + object arg2ContainsPronoun extends SrlFeature("at least one arg2 contains a pronoun or EX") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.exists(_.tokens.exists(tok => tok.isPronoun || tok.postag == "EX" || tok.string.toLowerCase == "ive")) + } + } + + object weirdArg { + val blacklist = Set("that", "those", "ive", "im") + } + object weirdArg1 extends SrlFeature("arg1 is blacklisted") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg1.tokens.forall(tok => + weirdArg.blacklist contains tok.string) + } + } + + object weirdArg2 extends SrlFeature("arg2 is blacklisted") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.exists(_.tokens.exists(tok => + weirdArg.blacklist contains tok.string)) + } + } + + object arg1Noun extends SrlFeature("arg1 is noun") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg1.tokens.exists(tok => tok.isNoun || tok.isPronoun) + } + } + + object arg2Noun extends SrlFeature("at least one arg2 is noun") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.exists(_.tokens.exists(tok => + tok.isNoun || tok.isPronoun)) + } + } + + object arg1Proper extends SrlFeature("arg1 is proper") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg1.tokens.exists(_.isProperNoun) + } + } + + object arg2Proper extends SrlFeature("at least one arg2 is proper") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.exists(_.tokens.exists(_.isProperNoun)) + } + } + + object arg1BeforeRel extends SrlFeature("arg1 appears before rel in sentence") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg1.interval leftOf inst.extr.relation.span + } + } + + object arg2sAfterRel extends SrlFeature("all arg2s appear after rel in sentence") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.forall(_.interval rightOf inst.extr.relation.span) + } + } + + object arg1BordersRel extends SrlFeature("arg1 borders rel") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg1.interval borders inst.extr.relation.span + } + } + + object arg2BordersRel extends SrlFeature("arg2 borders rel") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.exists(_.interval borders inst.extr.relation.span) + } + } + + object relContainsVerb extends SrlFeature("rel contains verb") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.relation.tokens exists (_.isVerb) + } + } + + object relContiguous extends SrlFeature("rel contiguous") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.relation.span.forall { i => + inst.extr.relation.tokens.exists(tok => tok.tokenInterval contains i) + } + } + } + + object longRelation extends SrlFeature("rel contains > 10 tokens") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.relation.tokens.length >= 10 + } + } + + object longArg1 extends SrlFeature("arg1 contains > 10 tokens") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg1.tokens.length + } + } + + object longArg2 extends SrlFeature("an arg2 contains > 10 tokens") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.extr.arg2s.exists(_.tokens.length >= 10) + } + } + + object shortSentence extends SrlFeature("sentence contains < 10 tokens") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.dgraph.nodes.size > 20 + } + } + + object longSentence extends SrlFeature("sentence contains > 20 tokens") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.dgraph.nodes.size > 20 + } + } + + object longerSentence extends SrlFeature("sentence contains > 40 tokens") { + override def apply(inst: SrlExtractionInstance): Double = { + inst.dgraph.nodes.size > 40 + } + } + + class BadCharacters(getPart: SrlExtractionInstance => Part, partName: String) extends SrlFeature(partName + " contains bad characters") { + val notCapsPattern = Pattern.compile("[^A-Z]") + val weirdChars = Pattern.compile("[^AEIOUYaeiouy0-9]") + override def apply(inst: SrlExtractionInstance): Double = { + // are there more than 5 caps? + if (notCapsPattern.matcher(getPart(inst).text).replaceAll("").length() > 5) + 1.0 + // are there not enough good characters? + else if (weirdChars.matcher(getPart(inst).text).replaceAll("").length() < 2) + 1.0 + else + 0.0 + } + } + + def features: Seq[SrlFeature] = Seq( + // context, + // activeExtraction, + hierarchicalFrames, + fewFrameArguments, + manyFrameArguments, + intransitiveExtraction, + naryExtraction, + arg1ContainsPronoun, + arg2ContainsPronoun, + arg1Proper, + arg2Proper, + arg1Noun, + arg2Noun, + weirdArg1, + weirdArg2, + arg1BeforeRel, + arg2sAfterRel, + arg1BordersRel, + arg2BordersRel, + relContainsVerb, + relContiguous, + longRelation, + longArg1, + longArg2, + // shortSentence, + // longSentence, + // longerSentence, + new BadCharacters(inst => inst.extr.arg1, "arg1"), + new BadCharacters(inst => inst.extr.relation, "rel")) + + def featureMap: SortedMap[String, SrlFeature] = { + (for (f <- features) yield (f.name -> Feature.from(f.name, f.apply _)))(scala.collection.breakOut) + } +} diff --git a/srlie/src/main/scala/edu/knowitall/srlie/confidence/TrainSrlConfidence.scala b/srlie/src/main/scala/edu/knowitall/srlie/confidence/TrainSrlConfidence.scala new file mode 100644 index 0000000..c3cce6a --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/confidence/TrainSrlConfidence.scala @@ -0,0 +1,161 @@ +package edu.knowitall.srlie.confidence + +import java.io.File +import scala.io.Source +import scopt.mutable.OptionParser +import edu.knowitall.tool.conf.BreezeLogisticRegressionTrainer +import edu.knowitall.common.Resource +import edu.knowitall.srlie.SrlExtractor +import edu.knowitall.tool.parse.ClearParser +import edu.knowitall.tool.conf.Labelled +import edu.knowitall.srlie.SrlExtractionInstance +import scala.util.Random +import edu.knowitall.tool.parse.graph.DependencyGraph +import edu.knowitall.common.Analysis +import org.slf4j.LoggerFactory + +object TrainSrlConfidence { + val logger = LoggerFactory.getLogger(this.getClass) + def main(args: Array[String]) { + object settings extends Settings { + var inputFile: File = _ + var outputFile: Option[File] = None + var evaluate: Boolean = false + var count: Int = Int.MaxValue + } + + val parser = new OptionParser("scoreextr") { + arg("gold", "gold set", { path: String => settings.inputFile = new File(path) }) + argOpt("output", "output file", { path: String => settings.outputFile = Some(new File(path)) }) + opt("e", "evaluate", "evaluate using folds", { settings.evaluate = true}) + intOpt("c", "count", "number of sentences to use", { (i: Int) => settings.count = i }) + } + + if (parser.parse(args)) { + run(settings) + } + } + + abstract class Settings { + def inputFile: File + def outputFile: Option[File] + def evaluate: Boolean + def count: Int + } + + def run(settings: Settings) = { + lazy val parser = new ClearParser() + lazy val extractor = new SrlExtractor() + + logger.info("Creating trainer...") + val trainer = new BreezeLogisticRegressionTrainer(SrlFeatureSet) + def train(gold: Map[String, Boolean], instances: Seq[SrlExtractionInstance]) = { + val data = instances.flatMap { inst => + gold.get(inst.extr.basicTripleString).map { label => + new Labelled(label, inst) + } + } + + trainer.train(data) + } + + logger.info("Reading input...") + val input = + Resource.using (Source.fromFile(settings.inputFile, "UTF8")) { source => + source.getLines.map { line => + val (score, extraction, sentence) = + line.split("\t") match { + case Array(score, extraction, _, _, _, sentence) => (score, extraction, sentence) + case _ => throw new MatchError("Could not deserialize line: " + line) + } + val annotation = score match { + case "" => None + case "0" | "1" => Some(if (score == "1") true else false) + } + + (annotation, extraction, sentence) + }.toList + } + + logger.info("Creating gold map...") + val gold = input.flatMap { case (annotation, extraction, sentence) => + annotation.map(extraction -> _) + }.toMap + + val sentences = Random.shuffle(input.map(_._3).toSet.toSeq).take(settings.count) + logger.info("Sentence count: " + sentences.size) + if (settings.evaluate) { + logger.info("Extracting sentences.") + case class Sentence(text: String, insts: Seq[SrlExtractionInstance]) + val extracted = sentences.map { sentence => + val insts = extractor(parser(sentence)) + Sentence(sentence, insts) + } + + // use cross validation to test the annotations and feature set + logger.info("Shuffling sentences.") + + val folds = 10 + val foldWidth = sentences.size / folds + logger.info("Executing " + folds + " folds of size: " + foldWidth) + val annotated = for { + i <- 0 until folds + _ = logger.info("Executing fold: " + i) + test = extracted.drop(i * foldWidth).take(foldWidth) + training = extracted.take(i * foldWidth) ++ extracted.drop((i + 1) * foldWidth) + + // make sure test and train are disjoint + _ = require((test.map(_.text).toSet intersect training.map(_.text).toSet) == Set.empty, + "test is not disjoint from training: " + (test.map(_.text).toSet intersect training.map(_.text).toSet)) + + classifier = train(gold, training.flatMap(_.insts)) + + sentence <- test + example <-sentence.insts + annotation <- gold.get(example.extraction.basicTripleString) + } yield { + (classifier(example), annotation, example) + } + + val sorted = annotated.sortBy(-_._1) + val points = Analysis.precisionYieldMeta(sorted.map { case (conf, annotation, example) => (conf, annotation) }) + val auc = Analysis.areaUnderCurve(points.map { case (conf, y, p) => (y, p) }) + + println("AUC: " + auc) + for (i <- 1 to 10) { + val threshold = 1.0 - i * 0.1 + println("Y at " + threshold + ": " + points.takeWhile(_._3 > threshold).lastOption.map(_._2).getOrElse("N/A")) + } + points foreach { case (conf, y, p) => + println(Iterable(conf, y, p).mkString("\t")) + } + + println("Misclassified:") + sorted.filter(_._2 == false) foreach { case (conf, annotation, ex) => + println(("%2f" format conf) + "\t" + ex.extr + "\t" + ex.dgraph.text) + } + + /* Charting code does not work with 2.9.3! + import scalax.chart._ + import scalax.chart.Charting._ + val pys = points.map { case (conf, y, p) => (y, p) } + val dataset = pys.toXYSeriesCollection() + val chart = XYLineChart(dataset, title = "Precision - Yield", domainAxisLabel = "Yield", rangeAxisLabel = "Precision") + + // save as file and read bytes + settings.outputFile.foreach { file => chart.saveAsPNG(file, (1024, 768)) } + */ + + } else { + // train a classifier + val insts = sentences map parser.apply flatMap extractor.apply + + val classifier = train(gold, insts) + settings.outputFile match { + case Some(file) => classifier.saveFile(file) + case None => + classifier.save(System.out) + } + } + } +} diff --git a/srlie/src/main/scala/edu/knowitall/srlie/nested/SrlNestedExtraction.scala b/srlie/src/main/scala/edu/knowitall/srlie/nested/SrlNestedExtraction.scala new file mode 100644 index 0000000..51f9f0a --- /dev/null +++ b/srlie/src/main/scala/edu/knowitall/srlie/nested/SrlNestedExtraction.scala @@ -0,0 +1,75 @@ +package edu.knowitall.srlie.nested + +import edu.knowitall.srlie.SrlExtraction.Relation +import edu.knowitall.srlie.SrlExtraction.Argument +import SrlNestedExtraction._ +import edu.knowitall.srlie.SrlExtraction +import edu.knowitall.tool.parse.graph.DependencyNode +import edu.knowitall.collection.immutable.Interval + +case class SrlNestedExtraction( + extr: SrlExtraction, + arg1: SrlNestedArgument, + arg2s: Seq[SrlNestedArgument]) { + + override def toString = "(" + arg1 + ", " + extr.rel + ", " + arg2s.mkString("; ") + ")" + + def rel = extr.rel + + def tokens = { + nestedArgumentTokens(arg1) ++ rel.tokens ++ arg2s.flatMap(nestedArgumentTokens) + } +} + +object SrlNestedExtraction { + type SrlNestedArgument = Either[Argument, SrlNestedExtraction] + def nestedArgumentTokens: Either[Argument, SrlNestedExtraction] => Seq[DependencyNode] = { + case Left(arg) => arg.tokens + case Right(extr) => extr.tokens + } + + def from(extrs: Seq[SrlExtraction]): Seq[SrlNestedExtraction] = { + val nested = extrs.map { extr => + new SrlNestedExtraction(extr, Left(extr.arg1), extr.arg2s.map(Left(_))) + } + + combine(nested) + } + + /** Combine extractions e1 and e2 where e2's text is e1's arg2 or arg2. + * + * for all extractions e1, + * look at all the other extractions e2, + * if e1.arg1 == e2.text combine them and repeat + * if e1.arg2 == e2.text combine them and repeat + */ + private def combine(extrs: Seq[SrlNestedExtraction]): Seq[SrlNestedExtraction] = { + import scalaz.Scalaz._ + import scalaz.Zipper._ + + for { + startZipper <- extrs.toStream.toZipper + zipper <- startZipper.positions.toStream + } { + val extr1 = zipper.focus + for (extr2 <- zipper.lefts ++ zipper.rights) { + val extr2Tokens = extr2.tokens.toSet + if (nestedArgumentTokens(extr1.arg1).toSet == extr2Tokens) { + return combine(((zipper.lefts.toSeq filterNot (_ == extr2)) :+ extr1.copy(arg1 = Right(extr2))) ++ (zipper.rights filterNot (_ == extr2))) + } + + for { + startArg2Zipper <- extr1.arg2s.toStream.toZipper + arg2Zipper <- startArg2Zipper.positions.toStream + } { + val arg2 = arg2Zipper.focus + if (nestedArgumentTokens(arg2).toSet == extr2Tokens) { + return combine(((zipper.lefts.toStream filterNot (_ == extr2)) :+ extr1.copy(arg2s = (arg2Zipper.lefts.toSeq :+ Right(extr2)) ++ arg2Zipper.rights)) ++ (zipper.rights filterNot (_ == extr2))) + } + } + } + } + + return extrs + } +} diff --git a/srlie/src/test/scala/edu/knowitall/srlie/SrlExtractionSpecTest.scala b/srlie/src/test/scala/edu/knowitall/srlie/SrlExtractionSpecTest.scala new file mode 100644 index 0000000..3f729f3 --- /dev/null +++ b/srlie/src/test/scala/edu/knowitall/srlie/SrlExtractionSpecTest.scala @@ -0,0 +1,361 @@ +package edu.knowitall.srlie + +import org.junit.runner.RunWith +import org.specs2.mutable.Specification +import org.specs2.runner.JUnitRunner +import edu.knowitall.tool.parse.ClearParser +import edu.knowitall.tool.srl.Frame +import edu.knowitall.tool.parse.graph.DependencyGraph +import edu.knowitall.tool.srl.FrameHierarchy + +@RunWith(classOf[JUnitRunner]) +class SrlExtractionSpecTest extends Specification { + val srl = new SrlExtractor(null) + + def expectedExtractions(sentence: String, dgraphString: String, frameStrings: Seq[String], expectedExtractions: Seq[String]) = { + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize(dgraphString) + val frames = frameStrings map Frame.deserialize(dgraph) + srl.synchronized { + val insts = srl.extract(dgraph)(frames) + val extrs = insts.map(_.extr) + + // make sure character offsets are correct for arguments (args must be contiguous) + require(insts.forall(inst => inst.extr.arg1.text == inst.dgraph.text.substring(inst.extr.arg1.offsets.start, inst.extr.arg1.offsets.end))) + require(insts.forall(inst => inst.extr.arg2s.forall(arg2 => arg2.text == inst.dgraph.text.substring(arg2.offsets.start, arg2.offsets.end)))) + + extrs.map(_.toString) must haveTheSameElementsAs(expectedExtractions) + } + } + } + + def expectedTriples(sentence: String, dgraphString: String, frameStrings: Seq[String], expectedTriples: Seq[String]) = { + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize(dgraphString) + val frames = frameStrings map Frame.deserialize(dgraph) + srl.synchronized { + val triples = srl.extract(dgraph)(frames).flatMap(_.extr.triplize()) + triples.map(_.toString) must haveTheSameElementsAs(expectedTriples) + } + } + } + + // val parser = new ClearParser() + + /* + { + val sentence = "John wants to fly to Boston this Thursday for a much needed vacation." + sentence in { + val extrs = srl.synchronized { + val graph = parser.dependencyGraph(sentence) + srl(graph) + } + + val target = extrs.find(_.arg1.text == "John") + target must beSome + + target.get.active must beTrue + } + } + + { + val sentence = "Obama was criticized for his tax plan." + sentence in { + val extrs = srl.synchronized { + val graph = parser.dependencyGraph(sentence) + srl(graph) + } + + val target = extrs.find(_.arg1.text == "Obama") + target must beSome + + target.get.active must beFalse + } + } + + { + val sentence = "Obama was criticized by Romney for his tax plan." + sentence in { + val extrs = srl.synchronized { + val graph = parser.dependencyGraph(sentence) + srl(graph) + } + + val target = extrs.find(_.arg1.text == "Obama") + target must beSome + + target.get.active must beFalse + } + } + */ + + { + val sentence = "Alcohol is a drug, a sedative, which depresses the central nervous system" + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("nsubj(is_VBZ_1_8, Alcohol_NN_0_0); attr(is_VBZ_1_8, drug_NN_3_13); det(drug_NN_3_13, a_DT_2_11); punct(drug_NN_3_13, ,_,_4_17); appos(drug_NN_3_13, sedative_NN_6_21); det(sedative_NN_6_21, a_DT_5_19); punct(sedative_NN_6_21, ,_,_7_29); rcmod(sedative_NN_6_21, depresses_VBZ_9_37); nsubj(depresses_VBZ_9_37, which_WDT_8_31); dobj(depresses_VBZ_9_37, system_NN_13_67); det(system_NN_13_67, the_DT_10_47); amod(system_NN_13_67, central_JJ_11_51); amod(system_NN_13_67, nervous_JJ_12_59)") + val frames = Seq("be_1.01:[A1=Alcohol_0, A2=drug_3]", "depress_9.02:[A0=sedative_6, R=which_8, A1=system_13]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + extrs.size must_== 2 + extrs.map(_.toString) must haveTheSameElementsAs(Seq("(Alcohol; is; a drug)", "(a sedative; depresses; the central nervous system)")) + } + } + + { + val sentence = "If Grandma had wheels, she will not be a tea trolley." + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("mark(had_VBD_2_11, If_IN_0_0); nsubj(had_VBD_2_11, Grandma_NNP_1_3); dobj(had_VBD_2_11, wheels_NNS_3_15); advcl(be_VB_8_36, had_VBD_2_11); punct(be_VB_8_36, ,_,_4_21); nsubj(be_VB_8_36, she_PRP_5_23); aux(be_VB_8_36, will_MD_6_27); neg(be_VB_8_36, not_RB_7_32); attr(be_VB_8_36, trolley_NN_11_45); punct(be_VB_8_36, ._._12_52); det(trolley_NN_11_45, a_DT_9_39); nn(trolley_NN_11_45, tea_NN_10_41)") + val frames = Seq("have_2.03:[A0=Grandma_1, A1=wheels_3]", "be_8.01:[AM-ADV=had_2, A1=she_5, AM-MOD=will_6, AM-NEG=not_7, A2=trolley_11]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + extrs.size must_== 2 + extrs.map(_.toString) must contain("(she; will not be; a tea trolley)") + } + } + + { + val sentence = "John read a book in which philosophy was discussed." + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("nsubj(read_VBD_1_5, John_NNP_0_0); dobj(read_VBD_1_5, book_NN_3_12); punct(read_VBD_1_5, ._._9_50); det(book_NN_3_12, a_DT_2_10); rcmod(book_NN_3_12, discussed_VBN_8_41); pcomp(in_IN_4_17, which_WDT_5_20); prep(discussed_VBN_8_41, in_IN_4_17); nsubjpass(discussed_VBN_8_41, philosophy_NN_6_26); auxpass(discussed_VBN_8_41, was_VBD_7_37)") + val frames = Seq("read_1.01:[A0=John_0, A1=book_3]", "discuss_8.01:[AM-LOC=book_3, R-AM-LOC=in_4, A1=philosophy_6]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + extrs.size must_== 2 + extrs.map(_.toString) must contain("(philosophy; was discussed; L:a book)") + } + } + + { + val sentence = "John lives in Orlando." + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("nsubj(lives_VBZ_1_5, John_NNP_0_0); prep(lives_VBZ_1_5, in_IN_2_11); punct(lives_VBZ_1_5, ._._4_21); pobj(in_IN_2_11, Orlando_NNP_3_14)") + val frames = Seq("live_1.01:[A0=John_0, AM-LOC=in_2]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + extrs.size must_== 1 + extrs.map(_.toString) must contain("(John; lives; L:in Orlando)") + } + } + + { + val sentence = "John wants to blow his nose." + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("nsubj(wants_VBZ_1_5, John_NNP_0_0); xcomp(wants_VBZ_1_5, blow_VB_3_14); punct(wants_VBZ_1_5, ._._6_27); aux(blow_VB_3_14, to_TO_2_11); dobj(blow_VB_3_14, nose_NN_5_23); poss(nose_NN_5_23, his_PRP$_4_19)") + val frames = Seq("want_1.01:[A0=John_0, A1=blow_3]", "blow_3.09:[A0=John_0, A1=nose_5]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + extrs.size must_== 2 + extrs.map(_.toString) must haveTheSameElementsAs(Seq("(John; wants; to blow his nose)", "John wants:(John; wants to blow; his nose)")) + } + } + + { + val sentence = "John wants to blow his nose and eat corn." + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize("nsubj(wants_VBZ_1_6, John_NNP_0_0); xcomp(wants_VBZ_1_6, blow_VB_3_15); punct(wants_VBZ_1_6, ._._9_41); aux(blow_VB_3_15, to_TO_2_12); dobj(blow_VB_3_15, nose_NN_5_24); cc(blow_VB_3_15, and_CC_6_29); conj(blow_VB_3_15, eat_VB_7_33); poss(nose_NN_5_24, his_PRP$_4_20); dobj(eat_VB_7_33, corn_NN_8_37)") + val frames = IndexedSeq( + "want_1.01:[A0=John_0, A1=blow_3]", + "blow_3.09:[A0=John_0, A1=nose_5]", + "eat_7.01:[A0=John_0, A1=corn_8]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + extrs.map(_.toString) must haveTheSameElementsAs(Seq("(John; wants; to blow his nose and eat corn)", "John wants:(John; wants to blow; his nose)", "John wants:(John; wants to eat; corn)")) + extrs.find(_.toString == "John wants:(John; wants to blow; his nose)").get.context.map(_.text) must_== Some("John wants") + extrs.find(_.toString == "John wants:(John; wants to eat; corn)").get.context.map(_.text) must_== Some("John wants") + } + } + + { + val sentence = "Meteorites are the oldest rocks found on Earth." + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize("nsubj(are_VBP_1_11, Meteorites_NNPS_0_0); attr(are_VBP_1_11, rocks_NNS_4_26); punct(are_VBP_1_11, ._._8_46); det(rocks_NNS_4_26, the_DT_2_15); amod(rocks_NNS_4_26, oldest_JJS_3_19); partmod(rocks_NNS_4_26, found_VBN_5_32); prep(found_VBN_5_32, on_IN_6_38); pobj(on_IN_6_38, Earth_NNP_7_41)") + val frames = IndexedSeq( + "be_1.01:[A1=Meteorites_0, A2=rocks_4]", + "bind_5.01:[A1=rocks_4, AM-LOC=on_6]") map Frame.deserialize(dgraph) + srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) must not(throwA[Exception]) + } + } + } + + { + val sentence = "John, who ran a mile, ate corn on the cob." + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize("punct(John_NNP_0_0, ,_,_1_4); rcmod(John_NNP_0_0, was_VBD_3_10); nsubj(was_VBD_3_10, who_WP_2_6); acomp(was_VBD_3_10, old_JJ_6_22); num(years_NNS_5_16, 5_CD_4_14); npadvmod(old_JJ_6_22, years_NNS_5_16); nsubj(ate_VBD_8_27, John_NNP_0_0); punct(ate_VBD_8_27, ,_,_7_25); dobj(ate_VBD_8_27, corn_NN_9_31); prep(ate_VBD_8_27, on_IN_10_36); punct(ate_VBD_8_27, ._._13_46); pobj(on_IN_10_36, cob_NN_12_43); det(cob_NN_12_43, the_DT_11_39)") + val frames = IndexedSeq( + "be_3.01:[A1=John_0, R-A1=who_2, A2=old_6]", + "eat_8.01:[A0=John_0, A1=corn_9, AM-LOC=on_10]") map Frame.deserialize(dgraph) + srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr).map(_.toString) must haveTheSameElementsAs(List("(John; was; 5 years old)", "(John; ate; corn; L:on the cob)")) + } + } + } + + { + val sentence = "NJ threw the ball to Michae on Friday after work." + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize("nsubj(threw_VBD_1_3, NJ_NNP_0_0); dobj(threw_VBD_1_3, ball_NN_3_13); prep(threw_VBD_1_3, to_TO_4_18); prep(threw_VBD_1_3, on_IN_6_28); prep(threw_VBD_1_3, after_IN_8_38); punct(threw_VBD_1_3, ._._10_48); det(ball_NN_3_13, the_DT_2_9); pobj(to_TO_4_18, Michae_NNP_5_21); pobj(on_IN_6_28, Friday_NNP_7_31); pobj(after_IN_8_38, work_NN_9_44)") + val frames = IndexedSeq( + "throw_1.01:[A0=NJ_0, A1=ball_3, A2=to_4, AM-TMP=on_6, AM-TMP=after_8]") map Frame.deserialize(dgraph) + srl.synchronized { + val extrs = srl.extract(dgraph)(frames).map(_.extr) + extrs.flatMap(_.triplize(true)).map(_.toString) must haveTheSameElementsAs(List("(NJ; threw; the ball)", "(NJ; threw the ball to; Michae)", "(NJ; threw the ball on; T:Friday)", "(NJ; threw the ball after; T:work)")) + extrs.flatMap(_.triplize(false)).map(_.toString) must haveTheSameElementsAs(List("(NJ; threw; the ball)", "(NJ; threw to; Michae)", "(NJ; threw on; T:Friday)", "(NJ; threw after; T:work)")) + } + } + } + + { + val sentence = "Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia ." + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize("nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_IN_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); npadvmod(ago_RB_7_47, years_NNS_6_41); pobj(to_IN_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83)") + val frames = IndexedSeq("sell_1.01:[A0=Cordis_0, A1=operations_4, AM-TMP=ago_7, A2=to_8]") map Frame.deserialize(dgraph) + srl.synchronized { + val extrs = srl.extract(dgraph)(frames).map(_.extr) + extrs.map(_.toString) must haveTheSameElementsAs(List("(Cordis; sold; its pacemaker operations; T:two years ago; to Telectronics Holding Ltd. of Australia)")) + val transformations = extrs.flatMap(_.transformations(SrlExtraction.PassiveDobj)) + transformations.map(_.toString) must haveTheSameElementsAs(List("(its pacemaker operations; [was] sold; T:two years ago; to Telectronics Holding Ltd. of Australia)")) + val triples = transformations.flatMap(_.triplize(true)) + triples.map(_.toString) must haveTheSameElementsAs(List("(its pacemaker operations; [was] sold to Telectronics Holding Ltd. of Australia; T:two years ago)", "(its pacemaker operations; [was] sold to; Telectronics Holding Ltd. of Australia)")) + } + } + } + + { + val sentence = "Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled ." + ("no errors with: '" + sentence + "'") in { + val dgraph = DependencyGraph.deserialize("nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, removed_VBN_14_77); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_IN_7_40); det(cars_NNS_6_35, the_DT_5_31); pobj(to_IN_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); ccomp(removed_VBN_14_77, return_VB_4_24); dep(removed_VBN_14_77, so_IN_9_51); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89)") + val frames = IndexedSeq("say_1.01:[A0=Ford_0, A1=removed_14]", "return_4.02:[A0=owners_2, AM-MOD=should_3, A1=cars_6, A2=to_7]", "remove_14.01:[A1=windshields_11, AM-MOD=can_12]", "reinstall_17.01:[A1=windshields_11, AM-MOD=can_12, AM-MNR=securely_16]") map Frame.deserialize(dgraph) + srl.synchronized { + val extrs = srl.extract(dgraph)(frames).map(_.extr) + extrs.map(_.toString) must haveTheSameElementsAs(List("(the windshields; securely reinstalled; )", "(Ford; said; owners should return the cars to dealers so the windshields can be removed and securely reinstalled)", "Ford said:(the windshields; can be removed; )", "Ford said the windshields can be removed:(owners; should return; the cars; to dealers)")) + val transformations = extrs.flatMap(_.transformations(SrlExtraction.PassiveDobj)) + transformations.map(_.toString) must beEmpty + } + } + } + + expectedExtractions( + sentence = "Microsoft plans on filing a lawsuit against Google in New York.", + dgraphString = "nsubj(plans_VBZ_1_10, Microsoft_NNP_0_0); prep(plans_VBZ_1_10, on_IN_2_16); punct(plans_VBZ_1_10, ._._11_62); pcomp(on_IN_2_16, filing_VBG_3_19); dobj(filing_VBG_3_19, lawsuit_NN_5_28); det(lawsuit_NN_5_28, a_DT_4_26); prep(lawsuit_NN_5_28, against_IN_6_36); pobj(against_IN_6_36, Google_NNP_7_44); prep(Google_NNP_7_44, in_IN_8_51); pobj(in_IN_8_51, York_NNP_10_58); nn(York_NNP_10_58, New_NNP_9_54)", + frameStrings = Seq("plan_1.01:[A0=Microsoft_0, A1=on_2]", "file_3.01:[A0=Microsoft_0, A1=lawsuit_5, A3=against_6]"), + expectedExtractions = Seq( + "(Microsoft; plans; on filing a lawsuit against Google in New York)", + "Microsoft plans:(Microsoft; plans on filing; a lawsuit; against Google in New York)")) + + + expectedExtractions( + sentence = "That mis-characterizes when Shark said he loves ham.", + dgraphString = """nsubj(characterizes_VBZ_3_9, That_DT_0_0); hmod(characterizes_VBZ_3_9, mis_NN_1_5); hyph(characterizes_VBZ_3_9, -_HYPH_2_8); advcl(characterizes_VBZ_3_9, said_VBD_6_34); punct(characterizes_VBZ_3_9, ._._10_51); advmod(said_VBD_6_34, when_WRB_4_23); nsubj(said_VBD_6_34, Shark_NNP_5_28); ccomp(said_VBD_6_34, loves_VBZ_8_42); nsubj(loves_VBZ_8_42, he_PRP_7_39); dobj(loves_VBZ_8_42, ham_NN_9_48)""", + frameStrings = Seq("characterize_3.01:[A0=That_0, AM-TMP=said_6]", "say_6.01:[R-AM-TMP=when_4, A0=Shark_5, A1=loves_8]", "love_8.01:[A0=he_7, A1=ham_9]"), + expectedExtractions = Seq( + "(That; characterizes; T:when Shark said he loves ham)", + "(Shark; said; he loves ham)", + "Shark said:(he; loves; ham)")) + + expectedExtractions( + sentence = "Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery.", + dgraphString = """nsubj(moved_VBD_1_8, Suharto_NNP_0_0); dobj(moved_VBD_1_8, hands_NNS_3_18); cc(moved_VBD_1_8, and_CC_4_24); conj(moved_VBD_1_8, spoke_VBD_5_28); punct(moved_VBD_1_8, ._._17_97); poss(hands_NNS_3_18, his_PRP$_2_14); prep(spoke_VBD_5_28, in_IN_6_34); npadvmod(spoke_VBD_5_28, today_NN_9_47); prep(spoke_VBD_5_28, in_IN_10_53); pobj(in_IN_6_34, whisper_NN_8_39); det(whisper_NN_8_39, a_DT_7_37); pcomp(in_IN_10_53, called_VBD_13_69); dobj(called_VBD_13_69, what_WP_11_56); nsubj(called_VBD_13_69, doctors_NNS_12_61); oprd(called_VBD_13_69, recovery_NN_16_89); det(recovery_NN_16_89, a_DT_14_76); amod(recovery_NN_16_89, miraculous_JJ_15_78)""", + frameStrings = Seq("move_1.01:[A0=Suharto_0, A1=hands_3]", "speak_5.01:[A0=Suharto_0, AM-LOC=in_6, AM-TMP=today_9, AM-LOC=in_10]", "call_13.01:[R-A1=what_11, A0=doctors_12, A2=recovery_16]"), + expectedExtractions = Seq( + "(Suharto; moved; his hands)", + "(Suharto; spoke; L:in a whisper; T:today; L:in what doctors called a miraculous recovery)", + "(doctors; called; a miraculous recovery)")) + + /* + expectedExtractions( + sentence = "It was only when Jesus was in the boat and shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee .", + dgraphString = "nsubj(was_VBD_1_3, It_PRP_0_0); advcl(was_VBD_1_3, was_VBD_5_23); punct(was_VBD_1_3, ._._29_145); advmod(was_VBD_5_23, when_WRB_3_12); nsubj(was_VBD_5_23, Jesus_NNP_4_17); prep(was_VBD_5_23, in_IN_6_27); cc(was_VBD_5_23, and_CC_9_39); conj(was_VBD_5_23, shouted_VBD_10_43); pobj(in_IN_6_27, boat_NN_8_34); det(boat_NN_8_34, the_DT_7_30); punct(shouted_VBD_10_43, ,_,_11_51); ccomp(shouted_VBD_10_43, be_VB_13_59); advmod(be_VB_13_59, only_RB_2_7); nsubj(be_VB_13_59, Peace_NN_12_53); advmod(be_VB_13_59, still_RB_14_62); ccomp(be_VB_13_59, saved_VBN_19_92); det(disciples_NNS_17_77, the_DT_16_73); complm(saved_VBN_19_92, that_IN_15_68); nsubjpass(saved_VBN_19_92, disciples_NNS_17_77); auxpass(saved_VBN_19_92, were_VBD_18_87); prep(saved_VBN_19_92, from_IN_20_98); pobj(from_IN_20_98, storm_NN_23_117); det(storm_NN_23_117, that_DT_21_103); amod(storm_NN_23_117, terrible_JJ_22_108); prep(storm_NN_23_117, on_IN_24_123); pobj(on_IN_24_123, Sea_NNP_26_130); det(Sea_NNP_26_130, the_DT_25_126); prep(Sea_NNP_26_130, of_IN_27_134); pobj(of_IN_27_134, Galilee_NNP_28_137)", + frameStrings = Seq("be_1.01:[A1=It_0, A2=was_5]", + "be_5.01:[R-AM-TMP=when_3, A1=Jesus_4, A2=in_6]", + "shout_10.01:[R-AM-TMP=when_3, A0=Jesus_4, A1=be_13]", + "be_13.01:[AM-ADV=only_2, A1=Peace_12, AM-TMP=still_14, A2=saved_19]", + "save_19.02:[A1=disciples_17, A2=from_20]"), + expectedExtractions = Seq( + "(It; was; only when Jesus was in the boat and shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee)", + "It was:(Jesus; shouted; Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee)")) + */ + + expectedExtractions( + sentence = "In 2005 , Gruner + Jahr exited the U.S. magazine business.", + dgraphString = "pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ._._11_57); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40)", + frameStrings = Seq("exit_6.01:[AM-TMP=In_0, A0=Jahr_5, A1=business_10]"), + expectedExtractions = Seq( + "(Gruner + Jahr; exited; the U.S. magazine business; T:In 2005)")) + + expectedTriples( + sentence = "The president asked Americans to imagine the suicide terrorists who attacked the United States if they had been armed by Iraq .", + dgraphString = "det(president_NN_1_4, The_DT_0_0); nsubj(asked_VBD_2_14, president_NN_1_4); dobj(asked_VBD_2_14, Americans_NNPS_3_20); xcomp(asked_VBD_2_14, imagine_VB_5_33); punct(asked_VBD_2_14, ._._21_126); aux(imagine_VB_5_33, to_TO_4_30); dobj(imagine_VB_5_33, terrorists_NNS_8_53); det(terrorists_NNS_8_53, the_DT_6_41); nn(terrorists_NNS_8_53, suicide_NN_7_45); rcmod(terrorists_NNS_8_53, attacked_VBD_10_68); nsubj(attacked_VBD_10_68, who_WP_9_64); dobj(attacked_VBD_10_68, States_NNP_13_88); advcl(attacked_VBD_10_68, armed_VBN_18_112); det(States_NNP_13_88, the_DT_11_77); nn(States_NNP_13_88, United_NNP_12_81); mark(armed_VBN_18_112, if_IN_14_95); nsubjpass(armed_VBN_18_112, they_PRP_15_98); aux(armed_VBN_18_112, had_VBD_16_103); auxpass(armed_VBN_18_112, been_VBN_17_107); agent(armed_VBN_18_112, by_IN_19_118); pobj(by_IN_19_118, Iraq_NNP_20_121)", + frameStrings = Seq("ask_2.02:[A0=president_1, A2=Americans_3, A1=imagine_5]", + "imagine_5.01:[A0=Americans_3, A1=terrorists_8]", + "attack_10.01:[A0=terrorists_8, R-A0=who_9, A1=States_13, AM-ADV=armed_18]", + "arm_18.01:[A1=they_15, A0=by_19]"), + expectedTriples = Seq("(The president; asked Americans to; imagine the suicide terrorists)", + "(Americans; to imagine; the suicide terrorists who attacked the United States)", + "(the suicide terrorists; attacked; the United States)", + "(they; had been armed by; Iraq)", + "(The president; asked; Americans)")) + + expectedExtractions( + sentence = "Thus , the phloem can serve some people , allowing for swift electrical communication between widely separated organs .", + dgraphString = "det(phloem_NN_3_11, the_DT_2_7); advmod(serve_VB_5_22, Thus_RB_0_0); punct(serve_VB_5_22, ,_,_1_5); nsubj(serve_VB_5_22, phloem_NN_3_11); aux(serve_VB_5_22, can_MD_4_18); dobj(serve_VB_5_22, people_NNS_7_33); punct(serve_VB_5_22, ,_,_8_40); advcl(serve_VB_5_22, allowing_VBG_9_42); punct(serve_VB_5_22, ._._18_118); det(people_NNS_7_33, some_DT_6_28); prep(allowing_VBG_9_42, for_IN_10_51); pobj(for_IN_10_51, communication_NN_13_72); amod(communication_NN_13_72, swift_JJ_11_55); amod(communication_NN_13_72, electrical_JJ_12_61); prep(communication_NN_13_72, between_IN_14_86); pobj(between_IN_14_86, organs_NNS_17_111); advmod(separated_VBN_16_101, widely_RB_15_94); amod(organs_NNS_17_111, separated_VBN_16_101)", + frameStrings = Seq("serve_5.01:[AM-DIS=Thus_0, A0=phloem_3, AM-MOD=can_4, A2=people_7, AM-ADV=allowing_9]", "allow_9.01:[A0=phloem_3, A1=for_10]", "separate_16.01:[AM-MNR=widely_15, A1=organs_17]"), + expectedExtractions = Seq("(the phloem; can serve; some people)", "the phloem can serve:(the phloem; can serve some people allowing; for swift electrical communication between widely separated organs)")) + + expectedExtractions( + sentence = "John said Frank works in the yard.", + dgraphString = "nsubj(said_VBD_1_5, John_NNP_0_0); ccomp(said_VBD_1_5, works_VBZ_3_16); punct(said_VBD_1_5, ._._7_33); nsubj(works_VBZ_3_16, Frank_NNP_2_10); prep(works_VBZ_3_16, in_IN_4_22); pobj(in_IN_4_22, yard_NN_6_29); det(yard_NN_6_29, the_DT_5_25)", + frameStrings = Seq("ay_1.01:[A0=John_0, A1=works_3]", + "work_3.01:[A0=Frank_2, AM-LOC=in_4]"), + expectedExtractions = Seq("(John; said; Frank works in the yard)", "John said:(Frank; works; L:in the yard)")) + + expectedTriples( + sentence = "John gave the ball to Paul.", + dgraphString = "nsubj(gave_VBD_1_5, John_NNP_0_0); dobj(gave_VBD_1_5, ball_NN_3_14); prep(gave_VBD_1_5, to_IN_4_19); punct(gave_VBD_1_5, ._._6_26); det(ball_NN_3_14, the_DT_2_10); pobj(to_IN_4_19, Paul_NNP_5_22)", + frameStrings = Seq("give_1.01:[A0=John_0, A1=ball_3, A2=to_4]"), + expectedTriples = Seq("(John; gave the ball to; Paul)", "(John; gave; the ball)")) + + expectedTriples( + sentence = "Many of the defendants were also ordered to forfeit sums of money ranging from $100,000 to $2,000,000 as proceeds of their unlawful drug trafficking activities.", + dgraphString = "prep(Many_JJ_0_0, of_IN_1_5); pobj(of_IN_1_5, defendants_NNS_3_12); det(defendants_NNS_3_12, the_DT_2_8); nsubjpass(ordered_VBN_6_33, Many_JJ_0_0); auxpass(ordered_VBN_6_33, were_VBD_4_23); advmod(ordered_VBN_6_33, also_RB_5_28); prep(ordered_VBN_6_33, to_IN_7_41); punct(ordered_VBN_6_33, ._._27_159); pobj(to_IN_7_41, sums_NNS_9_52); amod(sums_NNS_9_52, forfeit_JJ_8_44); prep(sums_NNS_9_52, of_IN_10_57); partmod(sums_NNS_9_52, ranging_VBG_12_66); pobj(of_IN_10_57, money_NN_11_60); prep(ranging_VBG_12_66, from_IN_13_74); pobj(from_IN_13_74, 2,000,000_CD_18_92); prep(from_IN_13_74, as_IN_19_102); quantmod(2,000,000_CD_18_92, $_$_14_79); number(2,000,000_CD_18_92, 100,000_CD_15_80); quantmod(2,000,000_CD_18_92, to_TO_16_88); quantmod(2,000,000_CD_18_92, $_$_17_91); pobj(as_IN_19_102, proceeds_NNS_20_105); prep(proceeds_NNS_20_105, of_IN_21_114); pobj(of_IN_21_114, activities_NNS_26_149); nn(trafficking_NN_25_137, drug_NN_24_132); poss(activities_NNS_26_149, their_PRP$_22_117); amod(activities_NNS_26_149, unlawful_JJ_23_123); nn(activities_NNS_26_149, trafficking_NN_25_137)", + frameStrings = Seq("order_6.01:[A1=Many_0, AM-DIS=also_5, A2=to_7]", "range_12.01:[A1=sums_9, A3=from_13, A4=to_16]"), + expectedTriples = Seq("(Many of the defendants; were ordered to; forfeit sums of money)", "(forfeit sums of money; ranging from; $100,000)")) + + expectedExtractions( + sentence = "She is trying to get the Pope to proclaim that Mary is Co-Redemptrix .", + dgraphString = "nsubj(trying_VBG_2_7, She_PRP_0_0); aux(trying_VBG_2_7, is_VBZ_1_4); xcomp(trying_VBG_2_7, get_VB_4_17); punct(trying_VBG_2_7, ._._13_69); aux(get_VB_4_17, to_TO_3_14); ccomp(get_VB_4_17, proclaim_VB_8_33); det(Pope_NNP_6_25, the_DT_5_21); nsubj(proclaim_VB_8_33, Pope_NNP_6_25); aux(proclaim_VB_8_33, to_TO_7_30); ccomp(proclaim_VB_8_33, is_VBZ_11_52); complm(is_VBZ_11_52, that_IN_9_42); nsubj(is_VBZ_11_52, Mary_NNP_10_47); attr(is_VBZ_11_52, Co-Redemptrix_NNP_12_55)", + frameStrings = Seq("try_2.01:[A0=She_0, A1=get_4]", + "get_4.04:[A0=She_0, A1=proclaim_8]", + "proclaim_8.01:[A0=Pope_6, A1=is_11]", + "be_11.01:[A1=Mary_10, A2=Co-Redemptrix_12]"), + expectedExtractions = Seq("(She; is trying; to get the Pope to proclaim that Mary is Co-Redemptrix)", + "She is trying:(She; is trying to get; the Pope to proclaim that Mary is Co-Redemptrix)", + "She is trying to get:(the Pope; to proclaim; that Mary is Co-Redemptrix)", + "She is trying to get the Pope to proclaim:(Mary; is; Co-Redemptrix)")) + + /* + expectedExtractions( + sentence = "I eat ice cream, John said.", + dgraphString = "nsubj(eat_VBP_1_2, I_PRP_0_0); dobj(eat_VBP_1_2, cream_NN_3_10); nn(cream_NN_3_10, ice_NN_2_6); ccomp(said_VBD_6_22, eat_VBP_1_2); punct(said_VBD_6_22, ,_,_4_15); nsubj(said_VBD_6_22, John_NNP_5_17); punct(said_VBD_6_22, ._._7_26)", + frameStrings = Seq("eat_1.01:[A0=I_0, A1=cream_3]", "say_6.01:[A1=eat_1, A0=John_5]"), + expectedExtractions = Seq("(I eat ice cream; said; John)", "John said:(I; eat; ice cream)")) + */ +} diff --git a/srlie/src/test/scala/edu/knowitall/srlie/SrlNestedExtractionSpec.scala b/srlie/src/test/scala/edu/knowitall/srlie/SrlNestedExtractionSpec.scala new file mode 100644 index 0000000..446006e --- /dev/null +++ b/srlie/src/test/scala/edu/knowitall/srlie/SrlNestedExtractionSpec.scala @@ -0,0 +1,63 @@ +package edu.knowitall.srlie + +import org.junit.runner.RunWith +import org.specs2.mutable.Specification +import org.specs2.runner.JUnitRunner +import edu.knowitall.tool.parse.ClearParser +import edu.knowitall.tool.srl.Frame +import edu.knowitall.tool.parse.graph.DependencyGraph +import edu.knowitall.tool.srl.FrameHierarchy +import edu.knowitall.srlie.nested.SrlNestedExtraction + +@RunWith(classOf[JUnitRunner]) +class SrlNestedExtractionTest extends Specification { + val srl = new SrlExtractor(null) + + { + val sentence = "Adaptation helps an organism survive in its environment." + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("nsubj(helps_VBZ_1_11, Adaptation_NN_0_0); ccomp(helps_VBZ_1_11, survive_VB_4_29); det(organism_NN_3_20, an_DT_2_17); nsubj(survive_VB_4_29, organism_NN_3_20); prep(survive_VB_4_29, in_IN_5_37); pobj(in_IN_5_37, environment_NN_7_44); poss(environment_NN_7_44, its_PRP$_6_40)") + val frames = Seq("help_1.01:[A0=Adaptation_0, A1=survive_4]", "survive_4.01:[A0=organism_3, AM-LOC=in_5]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + val nested = SrlNestedExtraction.from(extrs) + + nested.size == 1 + } + } + + { + val sentence = "A turtle eating worms is an example of taking in nutrients." + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("det(turtle_NN_1_2, A_DT_0_0); partmod(turtle_NN_1_2, eating_VBG_2_9); dobj(eating_VBG_2_9, worms_NNS_3_16); nsubj(is_VBZ_4_22, turtle_NN_1_2); attr(is_VBZ_4_22, example_NN_6_28); punct(is_VBZ_4_22, ._._11_58); det(example_NN_6_28, an_DT_5_25); prep(example_NN_6_28, of_IN_7_36); pcomp(of_IN_7_36, taking_VBG_8_39); prep(taking_VBG_8_39, in_IN_9_46); pobj(in_IN_9_46, nutrients_NNS_10_49)") + val frames = Seq("eat_2.01:[A0=turtle_1, A1=worms_3]", "be_4.01:[A1=turtle_1, A2=example_6]", "take_8.06:[AM-LOC=in_9]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + val nested = SrlNestedExtraction.from(extrs) + + nested.size == 1 + } + } + + { + val sentence = "A turtle eating worms helps the organism survive in its environment." + ("extractions from: " + sentence) in { + val dgraph = DependencyGraph.deserialize("det(turtle_NN_1_2, A_DT_0_0); partmod(turtle_NN_1_2, eating_VBG_2_9); dobj(eating_VBG_2_9, worms_NNS_3_16); nsubj(helps_VBZ_4_22, turtle_NN_1_2); ccomp(helps_VBZ_4_22, survive_VB_7_41); punct(helps_VBZ_4_22, ._._11_67); det(organism_NN_6_32, the_DT_5_28); nsubj(survive_VB_7_41, organism_NN_6_32); prep(survive_VB_7_41, in_IN_8_49); pobj(in_IN_8_49, environment_NN_10_56); poss(environment_NN_10_56, its_PRP$_9_52)") + val frames = Seq("eat_2.01:[A0=turtle_1, A1=worms_3]", "help_4.01:[A0=turtle_1, A1=survive_7]", "survive_7.01:[A0=organism_6, AM-LOC=in_8]") map Frame.deserialize(dgraph) + + val extrs = srl.synchronized { + srl.extract(dgraph)(frames).map(_.extr) + } + + val nested = SrlNestedExtraction.from(extrs) + + nested.size == 1 + } + } +} \ No newline at end of file diff --git a/srlie/src/test/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunctionTest.scala b/srlie/src/test/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunctionTest.scala new file mode 100644 index 0000000..32bfe75 --- /dev/null +++ b/srlie/src/test/scala/edu/knowitall/srlie/confidence/SrlConfidenceFunctionTest.scala @@ -0,0 +1,28 @@ +package edu.knowitall.srlie.confidence + +import org.junit.runner.RunWith +import org.specs2.mutable.Specification +import org.specs2.runner.JUnitRunner +import edu.knowitall.tool.parse.ClearParser +import edu.knowitall.tool.srl.Frame +import edu.knowitall.tool.parse.graph.DependencyGraph +import edu.knowitall.srlie.SrlExtractor + +@RunWith(classOf[JUnitRunner]) +class SrlConfidenceFunctionTest extends Specification { + val srl = new SrlExtractor(null) + + val sentence = "John, who ran a mile, ate corn on the cob." + ("confidence function works on: '" + sentence + "'") in { + val conf = SrlConfidenceFunction.loadDefaultClassifier() + val dgraph = DependencyGraph.deserialize("punct(John_NNP_0_0, ,_,_1_4); rcmod(John_NNP_0_0, was_VBD_3_10); nsubj(was_VBD_3_10, who_WP_2_6); acomp(was_VBD_3_10, old_JJ_6_22); num(years_NNS_5_16, 5_CD_4_14); npadvmod(old_JJ_6_22, years_NNS_5_16); nsubj(ate_VBD_8_27, John_NNP_0_0); punct(ate_VBD_8_27, ,_,_7_25); dobj(ate_VBD_8_27, corn_NN_9_31); prep(ate_VBD_8_27, on_IN_10_36); punct(ate_VBD_8_27, ._._13_46); pobj(on_IN_10_36, cob_NN_12_43); det(cob_NN_12_43, the_DT_11_39)") + val frames = IndexedSeq( + "be_3.01:[A1=John_0, R-A1=who_2, A2=old_6]", + "eat_8.01:[A0=John_0, A1=corn_9, AM-LOC=on_10]") map Frame.deserialize(dgraph) + val insts = srl.synchronized { + srl.extract(dgraph)(frames) + } + + insts.map { inst => (inst, conf(inst)) } must not(throwA[Exception]) + } +} diff --git a/srlie/version.sbt b/srlie/version.sbt new file mode 100644 index 0000000..898b7e9 --- /dev/null +++ b/srlie/version.sbt @@ -0,0 +1 @@ +version in ThisBuild := "1.0.4-SNAPSHOT"

    qur+@DGH_x1 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 z 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 z%0D4b-oW0$`fnJ?Lvj5NZQz}Hc`u*|0+NUcSho;4@UviLp&?80QH}}(YtE;<$&a`! zV7+NsrV3B`X^HnIt0u>oeOmDuO1?wEN?-$H$8GVu`07zyMr|t;(P`3HhTG&IH(saR zZxY(K=Od#}q?ZO;;1<0Ys6$X=(8eHkATHh?{K22pGHA*u4+>j$-n3ZN*u_GE)8l(& zv8>5y+Sh2Yjmd4u-eLEIkUQa!{LZu>-U1R4^z4{?gfkKh5)r~fM~EaBLWif@8bMj& z-Nf!)`ag%k!58VWwV}~b*SfNNBI)zCNGiyZ2J(E=*ebsRJ3-QyIon!8%RoYxkyfd< zOMDE{{U@Nns+8c@Y3{V<}wB=5m@6%=IzA5qP;0zZy_MCfuFGOsyrF)P^)z zoV`BF(AF?J>zDaD6GLx#eEFJtCGviXKp_#4T<@v|Ja$9E z;)8jcB0Y;;>PswF64uv!szAAVQK|VF&fRk=ZPSpOphCxh?N5QPd!Cq&97!dyZusol z6u-P#6j*SEBJM2%iz7u8Ye#{$9$C5^mdUlhTEI#y4mV8hYAT52O6ny zcI@uvo5aJaX-zSx>{rBvL+QeC1iA+Zt7Bm|aWFW`@DrIOl&1|K5}i)0n4V7%*B=^u zlLf^pw3vkz8dT7G^ifSI{45vR-&5mfEyWCRkuVQ}IdP1(t*=V7k&k)0ZL2c5jxWO0 zKqe})Z!bW7c+a#b>YRawj%naljHK%LP26IQXRCH)MtS*b>IviMfVqh^c_Aw1SW4`M z+4l?GSN-`QivD5n*jQMqB4EK&j9+^}{A3Z3nYGg3w%-8j1NsR|dZZ`CKv%F2{FRo! zs^B=M_XTFf$51ATL|O(D$7d-vOl<`xP#Ycw*t$8RkP02yM3pULot$I1+#-~nay*c( zK0ik3u=1-mC7*G~5{6Tg0e3Drh7oZtq@1L2c@${j*v4a1U4%BWvXthhn7J5+P>#ol zQ@E;>^|>``3TyWy-jhhzJ)gsDc=w3JL9s4B;FXd!0Y=c z;fhF;1k)bmMQm|IEl)u?yoZE%hbFS8W}@}LVBPxUEsfM;Qp01i)bl>p&FK6!bNF-e z#z2)3hgfF-Y+Z(X$e}(u;cr4XmMwM=02B<;D%e>X$)M4ov~?EG?w7q*W$KDvaY6*M zOG=B++;;)vJ+x||9vRydAW{vF5msH9G)Ax*E^>R0x3TaHl!H(euVEYq0Bp<$M`U`x3u)iJ{ot*hd~@)D$rRd=>xWZ%NC(Z{?by!Yj9Pqpp)Z42 z{M6T(6=bqM8kC$Y<~7U@yq(jFRLr$MWHg8vASK08(_jRqzKOyxuaTrQK?_5m$-s`z z9~B83b>eX}QXGnqutUY(F4`|HIu9U}f1}FO6ri(qorLZC-ISsVg)6dQnEyz0hZ!Le8LB?e#EBZQvF zK`qjHzDE{M3|e@7xGRRE;kbjWF1(U|$Sew!5^@9{RLxq*B&S)yzoYzX**&7g<6^f3 zp3k{8KE+VfPuLgGYSATs3R?vfuUY~=J7rk}6J5z!tqPL1e0(fJRM?uIZN!^`FZU5QX|9_kd|4*{Z_&=qt&i_5oZ6T*2kNojwn`nTX z$U&oBfeISDED2c@7D zJs;*i*hu}mxir;>G$$Y}~XlwMbbx{+P2}naHR6EH63OKr=w6P7nA}Lfis6J`+mfOBi$)0R6Jc z?(5WIGID4JL9Mgf&aC$_!7ck;K{Hseom#&gWNoY^I1i*2Xv|II7yDU zky0{tO+|xMe9MU5-hh$`!+_2?6Wx90FLWiHeOr&!^FrzjMg`1f&g#WTi+zZCbrAs* z$xUM^ZS5_OFeV&NI88_KY~C>P!{ISpJfD$;Ha+-U+#Vs%8`Hul>-OceXOr^nz)#V= z4Wcq}LR2h^y&nK)aZpBAkQ>i$zf3rmvuN3Gu>V+*d@oQH82iW({-k{Wd#C?H)a=ur zsSnyeTnt(X9o-MtpZ_$PETXi;Kh(+kC!0!BTON&SXR->v&QPl!*B=58Mdj#RGv`Hx z8q$;2QJ)pTMW+PtvfxqItG|h1HZk5`axywi3?8g<{$xC5UvjKE$@<~v4=W!+Ovgq; zVXbl6WjEc2CXl;+B>5Qj1u>Gen{J*VBaLxRL`sNjhwmLfo`Pi9)X5SPZl&}=YevQ& z26OZ_ru)34THDy+hdU{0@;(HnbvmR+jXk}B8w1+nvIp5MEIeUOy94r%w@G=d5{byZ zc&3Dv%3M6Delmk0VJ;LzfyY(WDbqKR<1k@N%;Os(3169FrbA4rFdH#)dR2DSjNqW0 zTM4l`wW3&Ef-#-EkOcY}Umv%i&Ov zezZ9k-El#Z1_cecXx((`oOEk#^SXF@`|@-Bp+8*SvTbaa`0K@$bLQX|E}p$B#K=e& z_nuwo$WpF~tB06DC9aPBE5gW3=a(_PHD3m<9q%9#_>t*TKJc%1U7@dGINEvf(KMgo zn4qn9$b~Y{wse)yUBNG%`G0g>;+7lJx0EcAj5efW04F`i#uGU3S2Zd4t z{B|E6hNHhnM(6=TfjK!Sf{Ha-g(WNGDwt=j-bV%yk`SU2nh0TwWF*k+GC@S2qTN9q zBG3f#_W`*`cbMDAb{xWjoIzuPSff#{&>(8=^gkj5bm<+zU8o`Nz>HlZg=M<4Akaa;JNu@)JG=Idw1>Gn zyG7fhs9=9<3cQC;tk8hkMnS4nPF-p^MYP+tO;c2so$V+m;{T)U9iuE!mTu9qZQHid zW!vnsZQFL2ZQHi(sxEdJT{doQoNv5+-hKPtx5oOh#`>9=F>_|bj2Q|U1`%lq^Zq(G zgHHitd6MctE;rSM`HHGZ&WdwLIO8G44I8ry_4*0mN40rc<}ag^;V>HUAw28JzvSy! zc10>TS?txd-rlthF;8M)L&E0yztO#Iu0w^P~nLiEd3nGux5x5L8J=E!J%jbWSnL z1%z#M;xJ2d=$%P{^q|tO0Le-|@8Qp)wF=BlED07JvbUQ(J}gLlzgoDGC35)Lom2}- zQiD*U1)0Sy1U%Ox*pv4{)tNV*K)JX%_!75IR&KlF|8a$jRFwm<{hT<7vl`@gK_;_k zEOxbvGuK4%4DW-tg}GiNNr6hwfoC%w<`U=CD_d`h_G+VN&HoDhQ}hJIqC|m}A-s#d zHl+28DobNgj?fGGRWe?wH8_-0I*zo3zy>t9HAsEy5ie8a?gwgd5t2Rt9H#isA*TlR@)THMVZGO0xZRT(t zXN{nAoCUl1$0-@v9^%Lgwb@hG*@0&cbW2Pd#gKc?Lllahfg6s@lHdWY|WmG z1gpJwxSoX>Il|PT=8x+%bC(&S*_q>%@T)fjv-EH6C4?5#@dr7GqX&SFDH$N9Z{w?ezt{)qz8r9 ztF62Q18ldr@mmXMfc#=vkD$ z9ehzdiGQVdbpOX|<9~P_=YKTQ8(*V*5qLL>*9M)_7p4!_@4~Ncc%&#T%@Pki&6MY5x=t)m*)ceinYsW?`#fd&YP6lkOO{Smi2ud% z;{<<{*GPKa&6vhU(^sxE-2Hdj5J5XiD?*L_sH)Y9W;mOr>XrO5j$-Ub0W+BOQY6rV zW_>bG1D2#?AeSZmZ+E6Dy^uV)m+sqy-NBj|HKGysoi)0w<2~qwh@-x^SI1cxFK^_q)V?LefV1{~bf&-i=vD$*MVVFNDtF#DNyF>`f z`Q3I5ds%e&VOdCOGxO-ser{)P5>)Tdh?D?4pm<~C9dA7in!?cZ2)Wc}mR5%a&2>Zz zEjc)#ZwotM59IVsXluC7Co6G_tAV1IeU*F;y4iBjysdRJkkb41U|#5Sp}VR^DX3Lp z1~Hio2&QMZ4;%7(rjCk*r;o##F*?){M70_ht4a?p(q@FVZwm{j6X zpUL2C2izJ0jZ`pXV0bR;W7tZoXCxvi0<>J$d%EERrczO z_6Gl}5Ss1(K9+3loJ`EEjQ>*v3RaYnLlHpmZld9?hdHmO7;i~{?620>rpI9*3+WB7 zF@hX6oSC)43cZxDjTM-ABamUikcq<%=O0%es8;CRDWbYRRavU2{*R_%5av*Iex; zzUWAj`Y}LWoAot;;RAk8ksK|YK$$HmMQcrgSuz_UhUe`qUo$$(42R{yL6iQ?C zfK)_(JKSM_P6H)-?BfJa$zAF4J_p=@hd>xwNuB#6Hy4!NN2Iis_WD%X`}f)Au9URi zc5OYu)c8dB$3DkVH|<+#1kCIPPW_r){%}osqtiv67*_ zmHyuV8sGQT--i(LDPy%ztgx}FD#D}eDNfybta44{2IXOP-z~9HPbwo>kBToPfXMSl zdmo26Z~&CYYSx->Pug0V_otgTuwB#zlqOm_8XK*ZihjPqfZu^0Dl0g4DKkq~Hb0_k zfEW?pt-q`a51;-jIVZFTiCe00JWP|ML3Qy$8=3$~TMd&;(#gFIM*CKdSz?^kQ92|IIjXI?!!esd-HG+@vz#asT181JCiJQ5%LKv0?$B!~OR~V%;F7~Xq zLy;xL<|+FXXDc|J@j|LA8Q#j@l7 zvoNYMQYfkZxIrJOzA%%cYD2O76?Pi*_b$%ixQS?yV zC~n`!onnC&9@Q{REEG5v$hjR_bJ0sZZ0VdcEZ3LxfK=! zkuza%sWO%n1cY)e+sEeVC1I5;rx~}WJoat2$cZqQGNV9VveB+EWptk*9X@5BG-~SW ztyME%%c|9zgx!}}f)`)B3V>W{TK6xAp2%;JF-v)^g(>|G(oJgB#9tR05^ugzbpzis z^mfzW6K0rgsPuK?wie(2WQ>`sDn4_Qy^0|0K(!UseH{tV&);=3ptoAfzm=857~boq zR?rO@%78lOq$>dmF0_WE?s&D`VsGXQblC~bDqgiW3bwEK=`!PPEmYZqlEHTGDvcFt zG98Claxt<~I zYJwp-6Htg2(qZDZD{*#z+(?~%A7r)N}2>kAI`G3fH}edB1pDc z3}~1a;6k&hAFuK;svfDWL9)qUDw*m-zHo(_`4(;9Rd1-LLjXERPdj8 z;J;S2nE!Fe{&&yq|KUyl1p4hSlLLg0;v~GJfs}wZc|cP1AhfncbbJP~piyK3 z3D}^KE<{rt3_=oO)Wx|L~Wro(_SdD z)n93vA8aAqP@AYBk$nhgTa6GQ2F<6>I}r1R6?)U>2dyo9rhTJeleRESlOTd&%M9bM zj8tvuRBO~6W7I!AV!}30u)_L6`YpVn`eat(q|eP1`8HHkwn7ym1#%r;+}YywGGI(P zF>6zib5$i=)9BOA8fIMD#78Rf&Q^AO5JBejQ@z*@Q0K+xP4{jW_)_h$>B&zbHN1Y} zBuw1hV@`)mP|2lrREIOut7de*0=IDl{UmFD-mCZv2CAR=YT8ML{F)uZy=t@5pf7Y4 zO^$9$(09J$A#bYOeJP|*I5FE~_#c0k!*YG4kqf>+rtn{Jp7bAQ;P3RP?U((ot;2tG z_kW>|vAm4bS4Vf|g_;$XmR7|*Fd~VhR$r4YbpVP7lt-!C_Ml30VF#&9#0NE~$lVV7 zm00+fF=;7}%g)z$UGC1`IWzPCrmIb}^|i+O8~w7FpsQ>cs#IUIu5+PA1dvg|GrmxN z1J{=3Fd$Tr|H{&rCa`rT&eqjNX)Xhl2*oS)m_SuD=Rv96sk$+O9s>&4ksQ+^d;W$h z?TM)!(MMeReH%x}lBA$5imqfq9+b#fjtM!Cmq`L;G*412G5|)dF{3dqV6%far0F0G z#uGDnkm{HJoB)!D;)vHbp-70PA`qC@SZ4miZbruM!q+ed4Dn}B){PrNu{J}c4tH25 z?#G#&{jkbmWeTowCw@P@MXrI-2AG|bVr!Eq#e!5SKb{?x%RZlAhc3A#>7_n|`tQ$k zhUx#faJkDt-TpxQzJEo0+<$DuA9cz9awf8lll$5LgrV&_x%tAm;e3by@ay?vyapTG!!Q3#cpm`%B#v-J_=g)4(+Bofx7X+U4?w-B?#S#&TzFUx zK8OndJT5>%D?}IYfw2PhFb-r7G&$?)yYr-4_9uSaE#yq*qGVq3M!Km$k|4DSWj+mK zCws+0BIKYgVRLt-Y2>u+a1z7Pp0U21bSAljrt+{r{+;GU)v1FQ9l??G9NPYmdU2~v z48wis6xJYOII+x>sd8I{Yk5rmbpbj5v4H=IW?yPHXwKcecZ9LU@lvBaLXp%vpjL%rTn&ok@+fFDCxaHzPV!Kl9 zGYDfm*<>3%&#ndO0vq+DqvRIN_lPx&U2wgNg=|`}$bI%P>P#fwo}K7j5LAL@{#Q)c zE0eAq_rzC8AWaNrE&904D3v$3m5V1;zrC!{id08#SS|=1$#a(;6{Au%X|Q`!ku&hQF@NQ&&i)J7eEr&FmHd2otg(s&#+9h(goqv9i!(FQrjgnM=3!=F{xzyU zCMx-h_S(A=Gsre7=$!C9ypW-FKieC_+?qDe%yKaQ<`6_qHw%5S9rwoMivFCfWZZlO zmq7uM1UE0*3%7{M7l6(v^3DRFPMV)8M4ds2Q13?-tWmm)bI`as(0s>8yLhb4t~zf9 z8@<5Oe?d?JwtJz%>E{#uphY~97(E;XwjG_`U4JTlz2i0-omuSBa{v%+ADd}<0atG# z)^_`m@*&b8o`Tgt*~uwA?fYkEsD-WCk3aI!!T)M^@n4o<4z|{IPJb)l-2XyG>$pBy zAjU5)T;B^-=|@eG>UKkrYhR!ijgBNIEX}ahA=Q^)ER|C2|8@1T#HYGl0eVsFqsT-F zrcX+L`YgzP#?G|3eqm!none7VL3Us;EV6?;!zx^a9gcF{g&sPcP|@6Z)D!TdARcU2 zc8oC#k10hW53Jj0*O$@-HQtCd-4zBrTIG%2y!1Rcs<7KgyhY_Z!y-3Nc))9O1einW z;HDq>1YL-tnCKoC<||S6fsc4&hfV(8r~3_W@}PffLh;aLB%qw2OycK*%X>V8_;}DJ zI-$_+YeW-`$wO3V&O;(c!iyp=p&W zC&g+?p8#hhq^^E*6Y$oo%##GNZP+l!tiMdUpv!xs3WsM+cmjS?2PqvqI zuV&EpVSC4N$42<8Z=fkY0j4>4#7qr@|!r(j#1Ev#Eh;Ob5cMgg6xqPhl>d4vp zNV}a-h*4k9*(f)tq}rGDD31?KS9p0H1r6qG!A)@^^b63U(%@Ez57iRfl_-!UJ9>KO+2F3W>ECpq?r=6!9d)(Fb&?onMm56 zGKNJ36S>%jccSS>H+jT+2%dwSpbohIfbj>Mjmo62Js$j5Lh|1U2s`)xS84XY|M=VF z=s#W93n_FRm4X#Fq~j|Fh-*;#cNrtJ2gN+b5D9+hhm7o zf%+5=^bbwGy1S;^m>*AHj_3g_OVv}G84UH815EX|`U9eYve%CXkg-KzxJCz@k2!wr zflAWp8f*?xN42H)mqv2(7>=r;xnh!0H4%R#zbd|FFd=D`C#DyNgWA@Z-i?26&u9n7 zE_0_y?LijS#(jz25f3u)zWyGT_oPc@&c}elcGsL>Y=HwsL!!MyWqVy8 z!;DlBxBAOG^mso@)=98Xd5dbmtR?c&2XnlIES)HYCt=&hT8_`@fl*v~Qm7%Vd{(@w zbZ?Y+3-g6ig%q5q`0?00VAmRc&%S6$pu7{iXG@d*3a)|$#+~7pS#m>7$@3U&GDG-L z5X{0DdG$B@!uC7t%5LwNk1lrf+8@4pJ2=af3cr3l5Q)SE&3#M$J;+Qlt>9EH^`o|8 zdpGl)+?S{WrRMWbih3R`aZ~+uB6|MyL=gNV^8f0{6|=H6(6{>I_g@&?q(isvRf~JFUjiT|vI_KftgloYTw_8!HFC{Ji zyG4nw%qP%-qboaB>7uM@dheR&%)aZ)dzNFvW2|S-8&odlwmakTP!zf&3^WWqb7#L@ z@UBY83Wlz!Ti~utNDIc6N$dC(-vBraK9jcLQ`jzbNDXGU{?jt->um=-)4Df>PzC&k zy>b{FzDvGL2=olZ9OXbX9VT8U!9XM$VazB+KO^SGEU|D-l)>FN#ZUv&xHTg|fgp$4 z4kuyEM9?O!a8DF&*m&t6VHz5jb`TOz&9@;)LRn};(!oX`U{e$l#_}Da z5R^hYSph6<|8Pi9%ws4zef2)$&Qd+RBh=17M9|*`(tVylABLHVSK+ljR4_Taq@dsR z#0A}>%@?C?vF;PnXBX|G+1c16OCgpXrsAmb%U+a??7Tuork1Bp5t)-`OT@d_OO}yE zN%*QxxmM=mFN21;&mo_cZBG_V2TjNF7?eFF`^8Hi5#^gX4apkCH)r?Llq1ee3Wb&` z&$aN=Td19+{qUjIL<25oqgYyiUgqspl!$*~^4gHWbe-%%7{d#SFjWEBm{QC%Sn^FL z0`)RA1%JRPo>ii-vqWoIiX1W(kM`-`n33hlT%lAozw7UoG|%R&6}pZSy@d*W0;hos zev+QrmD=+0+K3Lr4n&0|lmzmoGge!uKH~?AdtNt^-UYd*My%;e+d-0gLuSDn9S*yn z2H7RZch(6DPk0X@C>S6yYG)C9$2a*DsK7yPWVXX#aKR@m<@`7vV^N??s`RbBHTte5 zFQ}JV5-m+NZAsS3m4}Fwg-guXM@}+IoFYOa*GgQBm2;t%DC>b*V9`&~nl3@CVmO59 z5e*W4dZdsjQH|`E0k#fw5zjO)K0|M!Oe+%_SfW^%)#!I1akQu|C2PM>R?K^HbkfKr zVv`(B`4gdP_T<-Ewv?kOpIjg&bDDi?UQS?Und_C0*pd0ITOsj#?j$g#3^vo~u#&re zQO2uY;P~Z2ba`;&*b!T)tn`8bavO>R)qeey`4WF~OOTG%=dWJ@Ef!q)S`C}(idLEh z@3kl^t?6V+Wj~qT%Q15`+%2X&tn})K|WurlKH1p*mrMIww z1(w?!Cu08WpSq?-c(j5$Ma9kE&<7UM5&m`95JKjm;BoS<4bbD(p+W4?H@6_uJY$cC zG;D5?AJ^U6eFdvbFIfGGDJP{4_eEs5v|A$HcLlL%AGKm%oFk}8Ty2_y(aAMnMeE~@ zf^>IfjI7CC0hQyc)3dQOq!i>ci+(f?Qcxm64NV_0#Z}8!#&)JG%i}?>h-fT2;(Cg% z>_mX_u*)|^q@$ke48Wy>tx~1i?(R^Xrp%(9#lmj-dm=i*w(O?lXQT35(ua8%y7r0w zkVm?z-Wd~NSV7Vbjyx{=wuAPdGh$d*dImR+o(H1cqR<`iVyp(*}h2qDy?vxY2@YBza4QEil-43S@Wt~xIU&Cn+)oBN+{fd{@ zmjqv6gth&JBs`erp;s)4AqhfuP>ewUt8WU%BZmiL z3BNx5#5~DSERFGL^Yy#IAu?&p3eCU|j+487jI!X37(4F)s`QkC>Yx0*t}5en#-A{) z=h4hBs$AHQ3kPr*L{kg`G4f=A%U~_Yvg~c)nOVlvw65*+oFdy&bos|+?WjQpz^-!+ zxE(99pL-GTnle*1}&^m1%1&iGXY)8 zR8V;+nVmfUnCVQpI7X2w*HohQlB~SH0z&iXn%v*)fJ*C-L4PscWchSz>@Q__Chj1x z+}B`~2k8HM$;v-^Weja?9RJ56=IfF0cfveluz1d*X-hedz#2q|*G&Ng(SwRgx%2n% zpZSxuuoq>hh@C$0tGq$;vnhtJSueL!{1aZEUOs>vgT=AV_}F}0u!}q3c00jl29(0s z)G$ppzeDtExN&a5vyHU3$$uEoD0yza(la`he`C6mO;UYG%JZ?YAr-PLZS15V7d%|i zHY#kaILA_JnoJO5pb`-ojEjTGXh0;^mpLkpb#P^uapP41>aa$plf2UjZs^S*4>d(4F6mF#m-WM6j z`PXN_KYNq@+wRgr-^S5g+E(Al*x^4f`{chZSwnPFnxT^-*ngE*+yT*CWR&&AQC;f; zCL+PcE?oF&H8*5@&Ugt zH~|n+xjPgOfnhR^S~0TiuyAlQx_NdNgv*MlcrZ>KqROe^$m6(SFS5V|$sNCT-8s5> z-CjqX9WErs6~8}rNFhCOpl{~hNe$HRp^3LM9aQVw6+5Cllf{aRvp(8(+sqW0+cxL+P^bBL?!?xv$vw%h(^LsE3zfQinW} zaQk7e7Y)i^KOfir)h+b(2nO@=^^!Y8Fm__refK_Cfn2|!5e6E4*~M_h`-C&W=HfY= z)@!JbVGDo0ysBu>Q40jlHR};_!hi{LkjdetfAcg*q4&Zp1BSv6mMeYr_l>wcC4I<^ z0SOpv!Az`(Lv%#0+dT+|YPBpT*pF&urfB85LXRK1-z1zb z8I*1n@u+3@5ijMJfTHn~R$>)&tMSxJM!TxB^5qS_Gn9Qe+#M`Uno4{7oj#C8XpHxg zN8Gl$!ZnBxn2$>}@%~@FcX*)anc{yAA3EsmX<0tz`QNU9c_c~!=4GazO z|M5U^(I(R%|DvMp|C$iM{|6oYFG1;FY_v!N(hKGO-Z$3jW&;-t0vicKUflqQ5FEOc zLI?#A7|bzE2BJbe(~3;rz5(0R)UejVx{JQ?e(<$)xWYQBJzNyDDdN7gc}cZOv#CYQ zvZAZf`s4T1Ia$UO*;UJV=e>g^pDroM1WeL9yVCtW7oZK zS)Q?Qtt_{C^X>y;1@NI{^BH6cUhJx_XTp{|~`vU`k zgYr>bG5QMu<)A%9_5J|;P~V{j`i}a9?Ef`$iP^sf(o1J&2J}O42ODS`+EaKhKjd3OuN>%y$j*0AAF?Y)e_!M$SN~6hCprI5hd!pKKI9;n9jF<$`<+U&%pA z&d~~Bo*O^$4tyt}2;F9QOWtJ;@kP+f20^_d8t8!OF?gaK_zf{j+NbE2y(@-<`}rMd zsLu%!PDCSMV22kHZX^w?}Mi|Ufi74-ghg1MKR#wl<=;}Hz!!875>WXE68-zk8 zxM0^1^Js?(6SXqA4)+H`5;KjldY>J}z%C3mrYdu#F-J;Xh<-!V_Ynr6puEUkmJo`- zvDqm*E+O~<*$`$U9&kgZ>{u}d9LjxAx6UZ^Jp)X7106cSoG5fdMxlnNA3JkQx*=!A zoj6Bht&tkldaViHYlLf}wudD#djbhDYx)h1IEi6! z>5{I&GU@lD-QuFy88;^zwJ>akV41c;z$e_e(Z<}s@ksZxXnxyklkFq7iVu_52@H49 zIMJ(4JfUDQeZ)oI(kxFr;YhjTQ5(G>ri?xT*(6+xSS4Ls>%PKyV2Hnd--TrA9+~`Y zm=}e=L&)@jwZfo0_JqwhXIm#dyuGW9=^HD<^Z|%Y0MPFwM=-zk#e;bA^wb{-Mn(L^ zDUg~G1*lG;hVsz}jFM@}L`P{g6dQ!jmOJ~xT!k14YeZAC1k2%Ehop1Nk2T4sCMD9! zV$;f$+{en|&@Qj4;mzkL6ilP@mRl}ofyv@;N8+%f#J|maslx(yW0oknLYx;iHr08v zm4yoXNhr&~4Mb-*#{y*5889I6u}>BQ^bH)y(+o@)epNw=P6gGPeSPQ zN~1G^zIHj*{|N!sdDe8*uFkO7+!uB=2R}B5eSRL5rfDfIXCrvHWwjd)0ZO`523`f1 z;Sp+su+T@kM0tuSd~wZYR$PX?yVTiPXf*h7W^nOki_*e+s)=2N>l$E;Tpu%wJ=!e+ zUw=2BP?s0iC$Zc{t8x@;D66FR3<8sgX>Rg@^)-B(MN>wuap|sEl&H8xG%^@?V@0h0 zqAw;jPXjv^I+>Fcvw-uWw@hi@FfQ#@G%b;h+(KilwN?&qadzW5m#sDm9f+D5+%4EQo(f z^dOM|v#u8Ne6h7c0+n|v*^_1bBah%?Ui&7>DJ^L5dM26Ofiz=ZxVEw$uu%~ols_ltR&P_YBk$2)ny zKq3wKKu&^t``B!|Gx2!9=>XunFV|H$jMk#O)G~}>K-DHDkC3ev?-nA8rxtUi4ENqg zdau#2#_cCU&N`?lw1xYaFeqICZ7HIRZr#WaFR`)kw^AC;6W=nkEyfAvq*8m{DuR8e zc_Y=K6k3a_Wu=M?%|Kvc;SkVlX1_AoVll7f-S25ksNEAB&>E8Z6=F)uFpEbNN3WdL zL?1u~23Z0VbLp1X%CTk6nV9s4Hz4{S(#6FXcJ%WYh17Vnn-=l8C>{H83$)C}WF{}t zPas7HB4yeEH|mTl=F4LlXz$&y1l!S;ctf^O>r`8Yxl$4YkP%hTA;oaLEtKphMJSm;}0`)1+9soa6Djs?st?S55}ColF;{uAR!4^|Ne! z0<4_BGyO0Z7W}dzOE1%SbtjWkH%a@^zt=En$$SbnLzm{Z>|@OqfCD*6ZE+TBU0p_% zFMm~Kxqet-v8lb(I@RLhxYS%+z7B@(9lL6|?BX0804Nn$v(ri>#|VgtvV6`0Q}{$0FKPh@o7g3=f?SU@+#AW;<8Tz*a2 zOpyB|aKZx(ce%Poy<5_@NE^2B4r~uPh)7{xgrs}oT;WHNZ47Q13CTA`+fx~otp|x4 z%F#ykQE99yG9*scWs&}kyEq#~*YZ=ybdqwJ*o5EWuxeVf1kS`@(T;Zu2AW|#znuaT zcrzFb7}`RCVn(YU^ula3oj8dgF9@edA{D$P@7U<_RNo8laof#hQWt*{=`(qU(V1_Q z=`w^1#VMEQquS~nRmq6ANhU^y$xA)U)rq~%No6fd5Ti$*MwcUCn}WqEb(4)93rl>u z6%Zq+z`G`<>NQ440-hXyP54_Hp%M$X_(jQMt}#@eIMGZ;TL&)HOsAu%+1i+N>Ur2L zks@O)fMQ=(V;Gaje$yrYeF=HC3MyVw=0Jr>J`sCbVmcaa@YiCc^!HUt&%#BCdY$zV zv4olYLNgA>%@wjXHr~yVTGDhw#U&V6Wc|xyDv5T}w-KR!m!-L;s(72OV~BTo>!JE(V-yDNcJ37{T&GkZ?gM0S4Q!i@(hTJ& zggB?M(_hM|TV<|_CncKOc;|EGQ*U8&yG!k@6&`^U3>{bhSD&woX4y5 zTDGi$N;$;@e_Aoj4NXJaGbDblN5B|XTKE?9a~A)M?j%pg{cYOy zN|f2^9*#ayu!ttz6}mUfTpeDtS!@|lasz9?-^Gv^*Osgd`1Q&14YD;!I+W#$eZoJv>;8 zm{%s=IUYhsd6YR{3wr48#RV&?8gvTwT=Ln8YA)KtQ;=c4t2(K}8qswlztKhuC2ILJ zYY`o3T1S?Xdp*6ZAjbS00$gtWi4v8p2O|n`M~ZPa48XWQ60n~Tc^cIo*dkWr1s`A~ z0(dX~mqwFsbyQXA{ne$fwFP57>cnGDKU}$tOVf*_rK(pjt5JCSdkyCmf#DE3{tj%M zqytpR(o#&cv&#t>O{k1K7=Y5Z-A{tt_>51HtZbxK`4LjT)~u}?0RPW0!c`W4M_#k8 z$wAj^`3yo&#MT`>zsjlu`{VnHn37xvSJk||Rp?~<)h_h%vrX`}BN)NZ^!;i4pvXsm zrLpjV2Oo~2BJDBEAkT5C#Sv5%UjV%Dfh8e3py)mOr)gdFg2Qs=q)kGO zY;o^*I|H1{umM`n-DAR1!ui11eq<%Tr?=BdLNk(azwf+e2rd`JQzj3xV>6m*p{F#) z!vs7#YPT99$Ig|LN;eWxJzS9}xIq(YXdE}tHi0@MJw^C$v}&cJrSa-7+IOunj@jDfTJ*g=;2cEpTDRgTiFHe`b1f*JYHs9r6AYRPX$ z$!j$m=G93C+x_4;moF*4;7)uTl74kS$-xSh+Osova7>e}8ntg#N*m9R1Su;oomL#u zU<24bGo0XDwAyf3OF6hnwwiD#+*j=JTn5l?9hqP5TX)FcD+>}Efa!N6#GVf1yi?v0 zqzH=4MWF+u*9NNCnWyx&drl%;O;!Q;VT#&stRZ42qRN?>vjlOp#||(XWIixR17d}= zgIKHZjg^$c4IqRN#3sXrwCi0Q4zyA~1(0HN6bKC%suZOVoNEs*#)NQ; z&mmPbO(m!>04|letQT>ZIuC&9U4r6Ja-D)Q^x-=*jA{J6Qqzn?XORWO!;6CG&359d z-iowWiW$<}2QLWf2Mtss;8Sr=btQgtdzbx_4UWwQ^zFW#jT9*A(ybQNo*kgdGKUv2 zT(RIx!=jZ>X4N5#K!Yy?+Uzz_PXaGMJfPWG=oIi(>UUIoH!mZ)k!bi*%)i826632h~T{4 z$>LE0t(LK;(rd!@m;N-ZST_0FNFF}I`~cBF&js=Fwm}*}D}FF52`4pyB6hsamDoG- zt%%B+Eoe6WRd&=>?YIVZ;8k6?E`7jusPEMw9h5JZ{@lB|32yjaK#v2aR{){>IN&k* z26md+WeD=Ju|gm$4I{z{FcL(ZPLMK-n#ggIx^PIJzK;2FTOvpLEw(gOq&ZEmXAgbK z;|@!6&{8jivxM78%8b<--`}1&QwD8D53+m)CSa>M=Uxjc2f}@ zTPZ66v&q((Q99)oCYhJ*$NR4FPxpY(ydc|vItS!o*6!G_@;ECmfV7O!F9!}FlV^xS zXgu%)xWQb7B$!k~^zwR~00b`s0FU!i%ks)q*&w#*4e!l1)g}rYROf&r_1D589IKR9 z#SC&v($vf@RTORU?K>^X(!rIw{ciNv7w6f{2S@DFs^*f~gi|Q_(TWa5tn-nmah#dG zGSLo-GSQ5VpiimJD|1KIP}GFvt#JKyXX=4ISeDk{wKP#oaq-LLG=%1E=EO8-*AF+kDsHo9aUi;Rsox734< zCWu!&-_W@OK860djJyN;f*K=HwKBGB8;8AB80H?yu}x;%2`tv%L2|*n3iexw+Y5mA zit*wGQo<{i#9Ns4)^Pm*S@W5)>J0{Z*O4Y45N2^mfDcAbb^3ZuV+4x28lP^bg)4taHL(HGv0Wn3%6*_(97T! zYa?@xFy%f=P0<+*=zf*=fpZZG0XyzC_nW@vc(*uqr|^h3V)4L4iaL7u6H>84{k+Ue zY%3jMThb~g{?8(Kp)-W1HzyU0yOnv?2SBy}Ql`**v2Zps{I+~>GvG$a8Gv&dZ-~bE zU$~5Fh1%IhF?Cis{391P&%vJMGryfopWoUzZ5TajJV7+^an_{kqrBjfyXnImnw_f~ z{&Msu9}$YYM+5*^B>%UZG2uTlNdKL~{9BO}t*B%9#~`{yoB9iviZ6w=VUtS7DVf5L zI}t{ru+Q45s&~(+< z>H{Jn5jkj@zhIyRx*A5{-BRtA;9K%}5zp8Ll;wS=uLx2nWkf&L^loh}wZQ@Bb%9QVVX5b9t&C{s%qG}`+Lx={lM@i*=bd%>GB3k=Qy|Z}}_94e+mN#(yfnC9LhN z%ni+*{>m>#E1x;c%OiXU`U4XZ3{hKjL z1@vh#G9Qz5eIsV-1^j)uom{x+3y}`b$9zm@TDIxdygr}5x|a-Far@06(1ltD<4jYH zQw>{(?XvQE<&7v9H;r0{*7s&k_%1F%QM{eomp z=K7I8GLM{WCXdFO$Sr>IZNsZsNiiQn#vpH2J7yh?(`qrp287HPxROd2t~9*CRb{lx z@&zBI$4ptapCZa~r*FyA60PwZzx?#wd3?2#%j$iE?_GhqtlxU<)fll0#&y2l2{JKz zC?NH{Ae82(&ak=tO_kmZ_zBD z%k_l4M|5?{Ah=H(xMxE&vmVd1Z9e~zRNj+pnOkjC{&Pphz!c5i42^fFBO-FMntxg= z#atrn4uw?Ugf{$T)|tAz$X>^D36^omQv9Qn`QB zgCThj?A@uRf8~T@UeO9bDiFhb57rT>?BW#Pqo1)SrDz+mR=x?wJHufS+C+<958NtXKgZ*Rxj!eyNo6RXdcawA52$heWaD1_+RYbAfpTh!~d z|Nch=egFT_&Lm-D?qsfSW$y9+a5iN8Z#B{1_#2$~=P19C&jrK1Y+j z({FF@_uPJ9-<+=0z!2q%SfXbo0u1qivsv^X^QV`B*`8e%MLUKWoYO z3rq3+fC(nM1AbsI+?MvCGrITwq)zvelS$d;8{l(;?Kk+fGeMFtdKV;teqX)DL`qz_qzAY8+)!RQnBv?06M35feZeHe%I zVH_GRjm%Vw{TioENXTVggeOif?7@X~=CTLi3WKogS!8FR@6jw%iA7UOY!23D4c5ot z7(Bhbh;E0(OegfmpGi1_)>z0i$E6a)VyEcC*^CY{`uS4Y=SU+HVx!(d7Pkm$K1t)R zqsbzCDJ%~BOX2eLPWKZk% zBkW_HmbmYxNkYR?JK(A|ke)8MzmTRGQa;Suu}Cw44?l)n+-SMn{h>vfCDY$l{fJ6e z?Scl8&BcF)7~@XW-``_yir0nB^N!ee$UDFZJ4e7{ik)mXN6v-(RJaA$HpS9w24;Y& zuOG}d>+7hPIaS`j15_*yLV_`7=ln!OX0OzLc&H#A7&s_yI51o^!KQU?dS?^dQF6v7 z$N9WzKmY85!^qw_I@|O83IF+LS5`BdLaxKtom~G9CE9=Q+8^Fw|Jz+-WT0cvQJk_E zV1VgF!$G~xOn!xoq+bMEQH1PKg8w5?*oeJ9Y-qM>1UoW+K2bA6{-rAt?S|1?|H z@Ea#dCJ#TuJ=?j3_*zch)Ko>8l$q~CYC5}?6jxStC}e>-sVkKdlZbr7E(EY^k{Yqa zR@#c11MLuvY)i~JTEY3AxUvoBb5PY)i@UqzDkv-b71A+8A0BB50kL5{?!BAq!BUn- zrj7bTo{Tf?_zZ6m-HWfT|F(|%F5HGK-s^#yI=}$#dCU9B{>Pv3HT~foVyy# zh#6~s&53o2!k=HqjI!%ge(8lKP|;vh{VIPkw)UyD7E25Aa~Q+dp>6`kc0qG-)iByo zM-_Pds5$1v0%r|Bop77Rvc9TJN?*F1Uh`qD1|gP$5FbUDomh6}pd9ASIXSHjOTm(a{u9<8Pa^|@P&AMAs0ZTa}vlra(u z!ig{4$Ohkp`3ZVNsG^k|f^oVK#$+vgDUsh2ge%Z09vPg@n7;!eYI5Lqyl^kzSVPoU zq8#MP(9REhZ`qn6Pn09uc8T3|8Kj^x#qOe;=n$HYiET3Ma4a6c|ATYmX6Mgdf1R3! zf3SuB`}k(0WBQ73o4`Ngo8!DzLZ)7IUEe#D7jSP!u|*h~F#_0v{r;zE320tcSP%Y4 zj?fe>h#8v-tG~!L%lc;Xqo5n<995 zBSNG@?FR!NG*cZvFV1y`tN{+wF8jo^5WYZJ>XazoCpU~S@`fsEdykb|o-95r$NHLu zovKzxFL5Ev6*9?=;2|wRY}v@)$m{uV!w<%k#iu|e zt<_qk27R%$y<`DH9uAUx241=gwgXG?!PLz0*5VXtJ%_jWaB4Y0w&YB|-%N8XYdlFB zanXvSzZdslDJaYr zG}TIscT30Jxdg8SJH^{fNhk8gQLZfVBS&qgi<*8@|8>gnOIZu8*BbbG>c!z3>@g>%)IA zJOVhY0#!*(_Ksn%?3Z4R3w38G6_FD>_fDP1{7B7PxERGABIRVAh$eHxEPR_o081$~b_@q-J*99Y$+V81 z=Ns;Bly1|e=%l?S8OgE2+HHRd4p8`I+`KTkp|EHTXF6>vE5j?0BSppgH%q1HybRnM z!o9V5*u?d8X;8*Byme*%QYyLe2Q)*FU7g!!YbX0=3c zR?fX%FN){yKT(r$jN7xKS8r;6+=~RwVwckm^aFg}Y~#Bk@f z(G?yFys97@;rvvh9hf2ez3F#hn?7Pq%l2&!U}RvmOI&j&I-*%!?_ihle-X_GUH zGpp@=>!+)Qg7sC`&yS*>pl-xZ6Stm%l|9@)qBECmxUK3dI(z;XX;%T?RPwEZ+u|%P zr4*M^+@T7E7HNyaLTFPOXp@q(Kyly2-CY)U7Wc(<7k77e*hQB2O_JN>+{{eE|K<1Y zpDet5-~>o7!fBYUF)7F2>8ZM}rq7ZuallF5A_S z|9t83wdVQr`!%N)mWmz|HFVvm$^ZTR;7;=cH8K{y+qz|)Z(*~m6xn~RNTb!^9UjNF z3MpUi{q6N-wq35ivp|vG`&`hixD{|cbAvz5W?6kH-^5=&e?FF&J5BYpzT4rRzQE=P}_qQZa69b75%;B=3SJH|GO_tia`J*tLBwznPo zH!jxl@Nc2(@}D|4V{^s6Lu=;#Frez#6&-6dO9gwzJ{dQ1YteB3kdG-lcAM97uK%^s zhc54WJnP)Cge=kTSKhns(=2%Z&>24`S{HJbDqjXI3t zqIuOPG%&)qd~nksoQD+u3}=-cKB%B+jHa&AUtnjZ!zbAG3vIkMGDau;VOEEqX*4GK zLw(OA>5thvi0q&F_{!w8v9cdW8clNg{Pv&Y+Zh2uq|0WoSA*I=8DJWoBvHCpeNUZ9 z+9oQIzW_A@Bx?WMlK@#yF-oPP?ejpKxwLgurqe>8 zgan+|mOBE=5bU1}$n|-OGP^P!4e$+|VT|UkdTE=eASMBV%W;Cju)A(m?Xd`wn4p&j z7B(5Se{MU&#K$J$FuYv19(DwL`xyr#RI(@_k$O{PVyspkPAFQq1kGrO#>$7hx6$A< zQH&OgTa3(dEZW&lNw9GEQ0fFU2BgDFz6BbK(hX|^% zp<=jrt;zgDqV08w6<0~BHc!&h|6IcLj+1*oZE8K_s{%8)5!R_}edJhfMD~)TtvlSp zV^{G=6Er(Ii)*2f_45hA&j2B?pr`b8&(;*bOw7F^+b&gJMVwZC$&%@MsE_ z0<#=JYmru)^+to#9CS3P=M46PZHpHm=z1sU3{l!HF1&+|+iL`1aIyp!N@5Gt_Rm8B zkSoW+aPRObh#4I#+sdYih{z6~dh8eMUOMS-uqDIc(~<&@KZx%qRHfHwn=BL$9O-FN;GL*+7~Kx_@qFCtct+EET1oAarl`=QzrR` zCS5f1E2$ajZ(G@an`lVT$H_xHI-A31Nb+yZN%AC)Hgsk3?_7o;yf@I{bB_KHzMo(+ z$_Ee%kQ$A*s@TFDqcz7MxtFSohS91Nz>-0^LZC|PnvCEofk3|O@EMQaS>6pGi&2zn zqw*8W>jY%Kqp|I(?RVC>MlMY*P5SidHPNYthxGcQsdoW$@X?Tsc7p%#8`WSH+!HTx zvu+$>+>ST}-u1#<9k_$YloCxr%}lJXD_dxN|EGY{FcN*c?g$E>r> z<{%qhzhs%&c~#=05B<+?c_p-!y`ig|9U9*nAhnaCqZp?!Re+V%tzUm-Q&U#zdgdhe zNe>suj&fJw%YEVCyyjkz*%O_`o5&r9G*T*eLQ*`t)5u|CfLio}7f*UMg4oZUM1P6& zPYUiRy1*@bZf2R-1jw(P(5IC80d(8FJZjkkudMpr1cR1@^VTJbsaxg;&_gYSFvWZL zHpsftze-6IU#epkQI=5UFYkg1z9Z2;UOBa;CEDPJHdG?Ov(N*i`e)M&>(oGkzw%A^ zimSklfd#4){ARedQ;HA!w$hsPZ1l$^cnMnEjAi0$=YG(c{nOx~HIXgXCM4sk{0}5- zk0PHa?Vx}`yP@!;1dXNwAsSoLHIdxJqkoA>GYpt>@lfogU0q2pgMLxK%;>@96o=< z{wO=YeT!;V{p1Y~JB)|jyJi1`jrvgr(GasUbJxWm0UQpF`gQ_*doY^MVecT`Vaa_Z zRBO<7)x{wr3^brtB`{d?GKaVB0`y}%H0CxM%O_I`^TE~vy$t-0U*MN~Xhj$Fd#Ww% zI6k;_1t*LxOCZlN8vNOcjyra&%{IrqX6XTge6HSr20NVnRNQUXx@BH}`#=3&;OFPilnKBuyl)3~h3l7cV zndQvU8M~ziazDiAAfm&)^JM61 zONHvHBtJa8 z1!-Krr81&q2jO)pYx8Jl;M4n`DUq}fv^8Ko+L;Tll+mko+uEc@p@h%Twp0GU+X8DS1}eDNmlXl-OdGt|ZO z27W_&A6!){2@PTPq8+KwMj5t6ZpGK79jWb<4xYcD2Ynl$&I$k7Bx8`Oir<(q5d#|e z!|9@Psj2qgcZ-VWczmk4!*We-1D(AA9nIp5FJx5Ifo;)TG{C;RnuBL7_NH%A|x1*v;U_3STOpq!+Y9y2uNJ$&s9&9yVjR7gJ;@s>*e7t&nb zu&=m{O*>ZUE$)f+O+HD5DLuCD#Dw^9cXcj%td*R^W?fk>`#4>#GOYB`2CbkixHI?% zz?FoP--5IM^)8kGg4a+JoqdlSDkrh%U+kTk*OoiJ3qdCvs)}^1Yc)a+?5Kaf(9i$V zX7S9V(KJPw-N&IzX*7m$Zea)Z#Bw!KMn3$Y5?wRx2JB}%6#msrIlNors5XAw-;*)g zOvB(t6Vgnx4Q_eo2#duZ?0hvx6zAknPJ<6Ish3R^tgNalWS>(Swm!O^s z@K5TS2bQ^HNzj@wdBBj?Q)i3Kd^@C0I)7yWf={l@YLf5E#2vW+XqINA8ZCz*NS z(Se5O0DnPe^@uN}Ugs8x;!9puy#+_1q9X_w)y`Hg^$U3RpkGj~ts8!fOCc5azgH!1 z{>~~>N71$hq+NqI^SLa0Zdz+i1{CR=8V#Xr#{<5$vaX-9guoFzEl7 za}JMMcyTA%QX7OcgDiMXLiVFH(~D<%$zJ619sMBC!Bx@M&r4`Rk((k<^3$4iQ9nvK z=idB5c|f-n?iN5OTVCQ*A~H7DCcx~5M!Hy(HNC8JN^Pt%$83tdNhrD|3eqZV_09S7 zq329NM^_cUuJak=teatNdql%6TScYywSQ+#X~im$`JhXhIkdayJ_WyjUfpn`j;5$a zGqo)`KT%kQ2U2W@Ex5KxnYuUe36CwmT)Zn95{d3gEz~D%N^Tlz)0YDw8&LFJZHwey zEbr=~kJTp#szby6d>sA-O&b6e(xEv#gS(8uhRE2&C|wwKG4q>+GZ6odMU(zR1ftW* zO&Q%K2@Ozuj?WRNou);ZNpl|$Epsi&>MlpH0h{*pmgR%s1YI1TXuHR;>kZME`AC_9 zh*NCJ<}Q(M7juFMB^sONFxiwV@O{hOCnGSbT|{51LpTjT|0t(ijX&3@8S@Pc&i+si zJ&ZRIa`r%%%^Bx4%R4t5jxEzRBF!0>-(3>hM9~nLq%_DrRPhb>- zYyN`nvNl8M#Dp5To!!nFs*BRIx2*BmFJ)L#rxx1#7!MZw96kf^UO)E~8={ZY8O(xC z_A*D}+S6#>W~TuqUr~1nNbCqUAn=>5o2mG1@~`6K>jS!Z7*Luyv`C|A=jAS?Ek4>6 z>aIBlUe0`T5lHJfIZ^sD?vq=p4R9iN%{VQ6Li4d;JOoYCq}-#d`>d7~5tm_eS^36K z&SMitMG!S4>djaF2f6I(wKtS+(^2o9{rVfXfn9=rkkn-yxKX5Y9TbB#DZxjT*{YGd zT*PI4dudIA?(z8ca*ww#+GzCtx{}2+TwV;Tbcn0e&RrV!lB_Z*G(|B|Yr4P_8W2y|*3n%i_xn?-jUyXoN4n4*F_Pvb z)jGS+W(gQ_pQx~9T8cy@SUK~ly>5M!ln7_Ltcp{LIKfeT6OBm!s#6p^ZZ}xU5yky# zbdN!VTqwhh-*dtorBS<~tNek9?jf_}Q?MkkZ2#i$Pq097SfC6Mdov2+l93mR!Lf_( zm~K^wNpRk5c4Obi4T-?LTfS23k4l@IN3K4%s53U&g9&Tej?*zO*ONa>xA z)Z4+|S`jyrkFA_L4X~a+mDOTO`vm^^6Jp?YJT%=IF^Uh~)M$#+#)j!|q6ddtTbl6I zQuGt#QyB+e8?Xb`e1L~8mAo6xC$ODd3%49#lgZvE#itMk{TL7R#`I(P(8(tettS#? z;9EUg9xjm$lP$O+^~NIO_~7bEIKOl1%XXYn36;XR!1jXR_RrjTLR^di2{>iIM{F^4 z#fvv6OWmBU)^O3Kd_=d6w=Vp_Ubul~G`bJfaNI3Ew8>IX^j1pd*1`Z^?zq<#Dy>1O zZXeV@BW}c9DL5GsZQf@sWb%n_^w=|JApH9pT0+ZG-QGxvLTx)ylqjIIN=BB_t7##2 z)TAH6JBPU^?T+9NXWSY$7^4Q;HA^cD1900LFNE1_ z{Uh2rH1+l25wQ1?2(|Y|rR9_0b-~i2Z@Li|??ma38d;T((2PEwq3R^8bPzp2SIM)TlFKaEJyz7JL)EyaTX3rQ<@Tu_%zmw2?E)@ z3DUac!LUaI?!kA~qR*DH2V;EurHKp~(cS{i4>`s2x9_tU7&q{gC8*PzyFiuiOw$fA z4ch=kl)w<;OMoZ0kO7;lgS2;`A<7nL?5VM&9S`$7nOqvCT?I;iLbnNZE?!Wu>Rq8j z{7+sLbc^s!15LkkAd7^*(m7dZD|ZNOjgvH~>f*oVG7Yu|1D%r%!L~`)P5Ke_y*zzq zvl(4`sgt$lcaU*KDHn9WT>3IJl(|$pE%M?95>*Gb zoN}`#j7F1}ZvxcTB{4xze`-@Ve;m8d2P@GkA2`s1kM3~%*H$F8)}Pqv2J!O5t|NDv zmq9;$iINRXN~<7Z@LJ)()6#%yzCPM=)WjXKc4_Ve{SAk1fJRZ9oap6}%pHQ+#%G!C zp(Twmt0_);&ez_2f^b;D(6uFQ&=8aZGG9u2e>0#yX5z$-@1H@d_b_A^C77P`_?R|x@teQ@ zT*C}mV5o(7sE8dF^5GDhbhdF{VEm4?2QB{{(KS7`f1%|LpFNBCm~BEstc&%0A&ckR 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 D0ECe@ literal 0 HcmV?d00001 diff --git a/sbt/bin/sbt.bat b/sbt/bin/sbt.bat new file mode 100644 index 0000000..b98f98b --- /dev/null +++ b/sbt/bin/sbt.bat @@ -0,0 +1,212 @@ +@REM SBT launcher script +@REM +@REM Environment: +@REM JAVA_HOME - location of a JDK home dir (mandatory) +@REM SBT_OPTS - JVM options (optional) +@REM Configuration: +@REM sbtconfig.txt found in the SBT_HOME. + +@REM ZOMG! We need delayed expansion to build up CFG_OPTS later +@setlocal enabledelayedexpansion + +@echo off +set SBT_HOME=%~dp0 +set SBT_ARGS= + +rem FIRST we load the config file of extra options. +set FN=%SBT_HOME%\..\conf\sbtconfig.txt +set CFG_OPTS= +FOR /F "tokens=* eol=# usebackq delims=" %%i IN ("%FN%") DO ( + set DO_NOT_REUSE_ME=%%i + rem ZOMG (Part #2) WE use !! here to delay the expansion of + rem CFG_OPTS, otherwise it remains "" for this loop. + set CFG_OPTS=!CFG_OPTS! !DO_NOT_REUSE_ME! +) + +rem poor man's jenv (which is not available on Windows) +IF DEFINED JAVA_HOMES ( + IF EXIST .java-version FOR /F %%A IN (.java-version) DO ( + SET JAVA_HOME=%JAVA_HOMES%\%%A + SET JDK_HOME=%JAVA_HOMES%\%%A + ) +) +rem must set PATH or wrong javac is used for java projects +IF DEFINED JAVA_HOME SET "PATH=%JAVA_HOME%\bin;%PATH%" + +rem users can set JAVA_OPTS via .jvmopts (sbt-extras style) +IF EXIST .jvmopts FOR /F %%A IN (.jvmopts) DO ( + SET _jvmopts_line=%%A + IF NOT "!_jvmopts_line:~0,1!"=="#" ( + SET JAVA_OPTS=%%A !JAVA_OPTS! + ) +) +rem We use the value of the JAVACMD environment variable if defined +set _JAVACMD=%JAVACMD% + +if "%_JAVACMD%"=="" ( + if not "%JAVA_HOME%"=="" ( + if exist "%JAVA_HOME%\bin\java.exe" set "_JAVACMD=%JAVA_HOME%\bin\java.exe" + ) +) + +if "%_JAVACMD%"=="" set _JAVACMD=java + +rem We use the value of the JAVA_OPTS environment variable if defined, rather than the config. +set _JAVA_OPTS=%JAVA_OPTS% +if "%_JAVA_OPTS%"=="" set _JAVA_OPTS=%CFG_OPTS% + +set INIT_SBT_VERSION=1.2.1 + +:args_loop +if "%~1" == "" goto args_end + +if "%~1" == "-jvm-debug" ( + set JVM_DEBUG=true + set /a JVM_DEBUG_PORT=5005 2>nul >nul +) else if "!JVM_DEBUG!" == "true" ( + set /a JVM_DEBUG_PORT=%1 2>nul >nul + if not "%~1" == "!JVM_DEBUG_PORT!" ( + set SBT_ARGS=!SBT_ARGS! %1 + ) +) else if /I "%~1" == "new" ( + set sbt_new=true + set SBT_ARGS=!SBT_ARGS! %1 +) else ( + set SBT_ARGS=!SBT_ARGS! %1 +) + +shift +goto args_loop +:args_end + +rem Confirm a user's intent if the current directory does not look like an sbt +rem top-level directory and the "new" command was not given. +if not exist build.sbt ( + if not exist project\ ( + if not defined sbt_new ( + echo [warn] Neither build.sbt nor a 'project' directory in the current directory: %CD% + setlocal +:confirm + echo c^) continue + echo q^) quit + + set /P reply=?^ + if /I "!reply!" == "c" ( + goto confirm_end + ) else if /I "!reply!" == "q" ( + exit /B 1 + ) + + goto confirm +:confirm_end + endlocal + ) + ) +) + +if defined JVM_DEBUG_PORT ( + set _JAVA_OPTS=!_JAVA_OPTS! -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=!JVM_DEBUG_PORT! +) + +call :process + +call :checkjava + +call :copyrt + +call :sync_preloaded + +call :run %SBT_ARGS% + +if ERRORLEVEL 1 goto error +goto end + +:run + +"%_JAVACMD%" %_JAVA_OPTS% %SBT_OPTS% -cp "%SBT_HOME%sbt-launch.jar" xsbt.boot.Boot %* +goto :eof + +:process +rem Parses x out of 1.x; for example 8 out of java version 1.8.0_xx +rem Otherwise, parses the major version; 9 out of java version 9-ea +set JAVA_VERSION=0 +for /f "tokens=3" %%g in ('"%_JAVACMD%" -Xms32M -Xmx32M -version 2^>^&1 ^| findstr /i version') do ( + set JAVA_VERSION=%%g +) +set JAVA_VERSION=%JAVA_VERSION:"=% +for /f "delims=.-_ tokens=1-2" %%v in ("%JAVA_VERSION%") do ( + if /I "%%v" EQU "1" ( + set JAVA_VERSION=%%w + ) else ( + set JAVA_VERSION=%%v + ) +) +exit /B 0 + +:checkjava +set required_version=6 +if /I %JAVA_VERSION% GEQ %required_version% ( + exit /B 0 +) +echo. +echo The Java Development Kit (JDK) installation you have is not up to date. +echo sbt requires at least version %required_version%+, you have +echo version %JAVA_VERSION% +echo. +echo Please go to http://www.oracle.com/technetwork/java/javase/downloads/ and download +echo a valid JDK and install before running sbt. +echo. +exit /B 1 + +:copyrt +if /I %JAVA_VERSION% GEQ 9 ( + set rtexport=!SBT_HOME!java9-rt-export.jar + + "%_JAVACMD%" %_JAVA_OPTS% %SBT_OPTS% -jar "!rtexport!" --rt-ext-dir > "%TEMP%.\rtext.txt" + set /p java9_ext= < "%TEMP%.\rtext.txt" + set java9_rt=!java9_ext!\rt.jar + + if not exist "!java9_rt!" ( + mkdir "!java9_ext!" + "%_JAVACMD%" %_JAVA_OPTS% %SBT_OPTS% -jar "!rtexport!" "!java9_rt!" + ) + set _JAVA_OPTS=!_JAVA_OPTS! -Dscala.ext.dirs="!java9_ext!" + + rem check to see if a GC has been set in the opts + echo !_JAVA_OPTS! | findstr /r "Use.*GC" >nul + if ERRORLEVEL 1 ( + rem don't have a GC set - revert to old GC + set _JAVA_OPTS=!_JAVA_OPTS! -XX:+UseParallelGC + ) +) +exit /B 0 + +:sync_preloaded +if "%INIT_SBT_VERSION%"=="" ( + rem FIXME: better %INIT_SBT_VERSION% detection + FOR /F "tokens=* USEBACKQ" %%F IN (`dir /b "%SBT_HOME%\..\lib\local-preloaded\org.scala-sbt\sbt" /B`) DO ( + SET INIT_SBT_VERSION=%%F + ) +) +set PRELOAD_SBT_JAR="%UserProfile%\.sbt\preloaded\org.scala-sbt\sbt\%INIT_SBT_VERSION%\jars\sbt.jar" +if /I %JAVA_VERSION% GEQ 8 ( + where robocopy >nul 2>nul + if %ERRORLEVEL% equ 0 ( + REM echo %PRELOAD_SBT_JAR% + if not exist %PRELOAD_SBT_JAR% ( + if exist "%SBT_HOME%\..\lib\local-preloaded\" ( + echo "about to robocopy" + robocopy "%SBT_HOME%\..\lib\local-preloaded" "%UserProfile%\.sbt\preloaded" /E + ) + ) + ) +) +exit /B 0 + +:error +@endlocal +exit /B 1 + +:end +@endlocal +exit /B 0 diff --git a/sbt/conf/sbtconfig.txt b/sbt/conf/sbtconfig.txt new file mode 100644 index 0000000..a4da43e --- /dev/null +++ b/sbt/conf/sbtconfig.txt @@ -0,0 +1,14 @@ +# Set the java args to high + +-Xmx512M + +-XX:MaxPermSize=256m + +-XX:ReservedCodeCacheSize=128m + + + +# Set the extra SBT options + +-Dsbt.log.format=true + diff --git a/sbt/conf/sbtopts b/sbt/conf/sbtopts new file mode 100644 index 0000000..f018465 --- /dev/null +++ b/sbt/conf/sbtopts @@ -0,0 +1,49 @@ +# ------------------------------------------------ # +# The SBT Configuration file. # +# ------------------------------------------------ # + + +# Disable ANSI color codes +# +#-no-colors + +# Starts sbt even if the current directory contains no sbt project. +# +-sbt-create + +# Path to global settings/plugins directory (default: ~/.sbt) +# +#-sbt-dir /etc/sbt + +# Path to shared boot directory (default: ~/.sbt/boot in 0.11 series) +# +#-sbt-boot ~/.sbt/boot + +# Path to local Ivy repository (default: ~/.ivy2) +# +#-ivy ~/.ivy2 + +# set memory options +# +#-mem + +# Use local caches for projects, no sharing. +# +#-no-share + +# Put SBT in offline mode. +# +#-offline + +# Sets the SBT version to use. +#-sbt-version 0.11.3 + +# Scala version (default: latest release) +# +#-scala-home +#-scala-version + +# java version (default: java from PATH, currently $(java -version |& grep version)) +# +#-java-home + diff --git a/src/main/scala/edu/knowitall/openie/OpenIE.scala b/src/main/scala/edu/knowitall/openie/OpenIE.scala index 10ae0c3..e140261 100644 --- a/src/main/scala/edu/knowitall/openie/OpenIE.scala +++ b/src/main/scala/edu/knowitall/openie/OpenIE.scala @@ -66,13 +66,6 @@ class OpenIE(parser: DependencyParser = new ClearParser(), srl: Srl = new ClearS val chunked = chunker(cleaned) map MorphaStemmer.lemmatizePostaggedToken val parsed = parser(cleaned) - // run extractors - val srlExtrs: Seq[SrlExtractionInstance] = - if (isTriples) srlie(parsed).flatMap(_.triplize()) - else srlie(parsed) - val relnounExtrs = relnoun(chunked) - val onreExtrs = MayIHelpYou.runMe(parsed).asScala.keys; - def convertSrl(inst: SrlExtractionInstance): Instance = { def offsets(part: SrlExtraction.MultiPart) = { var intervals = part.intervals @@ -175,22 +168,44 @@ class OpenIE(parser: DependencyParser = new ClearParser(), srl: Srl = new ClearS var totalExtrs = Seq[Instance]() + if (newSentences.size == 1) { + // run extractors + val srlExtrs: Seq[SrlExtractionInstance] = + if (isTriples) srlie(parsed).flatMap(_.triplize()) + else srlie(parsed) + val relnounExtrs = relnoun(chunked) + val onreExtrs = MayIHelpYou.runMe(parsed).asScala.keys; + + val extrs = (srlExtrs map convertSrl) ++ (relnounExtrs map convertRelnoun) ++ (onreExtrs map convertOnre) + + //System.err.println("Extrs: " + extrs) + totalExtrs = totalExtrs ++ extrs + } + else { for (newSentence <- newSentences) { + //System.err.println("New: " + newSentence) val cleaned = clean(newSentence) + //System.err.println("Cleaned: " + cleaned) val chunked = chunker(cleaned) map MorphaStemmer.lemmatizePostaggedToken + //System.err.println("Chunked: " + chunked) val parsed = parser(cleaned) + //System.err.println("Parsed: " + parsed) // run extractors val srlExtrs: Seq[SrlExtractionInstance] = if (isTriples) srlie(parsed).flatMap(_.triplize()) else srlie(parsed) + //System.err.println("srlExtrs: " + srlExtrs) val relnounExtrs = relnoun(chunked) + //System.err.println("relExtrs: " + relnounExtrs) val onreExtrs = MayIHelpYou.runMe(parsed).asScala.keys; + //System.err.println("onreExtrs: " + onreExtrs) val extrs = (srlExtrs map convertSrl) ++ (relnounExtrs map convertRelnoun) ++ (onreExtrs map convertOnre) + //System.err.println("Extrs: " + extrs) totalExtrs = totalExtrs ++ extrs - } + }} removeDuplicateExtractions(totalExtrs) } diff --git a/srlie/.gitignore b/srlie/.gitignore new file mode 100644 index 0000000..5d7a6ab --- /dev/null +++ b/srlie/.gitignore @@ -0,0 +1,5 @@ +.cache +.classpath +.project +.settings +target/ diff --git a/srlie/.travis.yml b/srlie/.travis.yml new file mode 100644 index 0000000..4fa0b7b --- /dev/null +++ b/srlie/.travis.yml @@ -0,0 +1,6 @@ +language: scala +scala: + - "2.10.3" +jdk: + - oraclejdk7 + - openjdk7 diff --git a/srlie/LICENSE b/srlie/LICENSE new file mode 100644 index 0000000..294b3f9 --- /dev/null +++ b/srlie/LICENSE @@ -0,0 +1,86 @@ +Open IE 4 Software License Agreement + +Open IE 4 Software +(C) 2011-2012, University of Washington. All rights reserved. +US patent number 7,877,343 and 12/970,155 patent pending + +The University of Washington (UW), Professor Oren Etzioni, Professor Mausam, +Michael Schmitz, (Developers) give permission for you and your laboratory +(University) to use Open IE 4. Open IE 4 is a system that extracts relational +triples from text. Open IE 4 is protected by a United States copyright and +patents. The National Science Foundation supported work on Open IE 4. Under +University of Washington's patents 7,877,343 (issued) and 12/970,155 (patent +pending), the UW grants to you the non-exclusive right to use patent claims +practiced by the University of Washington's Open IE 4 software solely for +non-commercial purposes and as long as you comply with the terms of this Open +IE 4 Software License Agreement. UW and the Developers allow you to copy and +modify Open IE 4 for non-commercial purposes, and to distribute modifications +through GitHub or directly to the University of Washington, on the following +conditions: + + +1. Open IE 4 is not used for any commercial purposes, or as part of a system +which has commercial purposes. + + +2. Any software derived from Open IE 4 must carry prominent notices stating that +you modified it along with the date modified. The derivative must also carry +prominent notices stating that it is released under this Open IE 4 Software +License Agreement + +If you wish to obtain Open IE 4 or to obtain any patent rights for any commercial +purposes, you will need to contact the University of Washington to see if +rights are available and to negotiate a commercial license and pay a fee. This +includes, but is not limited to, using Open IE 4 to provide services to outside +parties for a fee. In that case please contact: + + UW Center for Commercialization + University of Washington + 4311 11th Ave. NE, + Suite 500 Seattle, WA 98105-4608 + + Phone: (206) 543-3970 + Email: license@u.washington.edu + + +3. You retain in Open IE 4 and any modifications to Open IE 4, the copyright, +trademark, patent or other notices pertaining to Open IE 4 as provided by UW. + + +4. You provide the Developers with feedback on the use of the Open IE 4 software +in your research, and that the Developers and UW are permitted to use any +information you provide in making changes to the Open IE 4 software. All bug +reports and technical questions shall be sent to: afader@cs.washington.edu. +Modifications may be communicated through GitHub pull requests at: + + https://github.com/knowitall/ + + +5. You acknowledge that the Developers, UW and its licensees may develop +modifications to Open IE 4 that may be substantially similar to your +modifications of Open IE 4, and that the Developers, UW and its licensees shall +not be constrained in any way by you in UW's or its licensees' use or +management of such modifications. You acknowledge the right of the Developers +and UW to prepare and publish modifications to Open IE 4 that may be +substantially similar or functionally equivalent to your modifications and +improvements, and if you obtain patent protection for any modification or +improvement to Open IE 4 you agree not to allege or enjoin infringement of your +patent by the Developers, the UW or by any of UW's licensees obtaining +modifications or improvements to Open IE 4 from the University of Washington or +the Developers. + + +6. If utilization of the Open IE 4 software results in outcomes which will be +published, please specify the version of Open IE 4 you used and cite the UW +Developers. + + +7. Any risk associated with using the Open IE 4 software at your organization is +with you and your organization. Open IE 4 is experimental in nature and is made +available as a research courtesy "AS IS," without obligation by UW to provide +accompanying services or support. + + +UW AND THE AUTHORS EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES REGARDING THE +SOFTWARE, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES +PERTAINING TO MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. diff --git a/srlie/README.md b/srlie/README.md new file mode 100644 index 0000000..7c1e9d3 --- /dev/null +++ b/srlie/README.md @@ -0,0 +1,31 @@ +** **DEPRECATED!** ** Please see https://github.com/dair-iitd/OpenIE-standalone, which has combined multiple projects into a single project and maintains the latest version of Open IE (Open IE 5). It is based on another repository https://github.com/allenai/openie-standalone, which has an older version of Open IE. + +SRLIE +===== +SRLIE is a component of Open IE 4.x that automatically identifies n-ary extractions from English sentences. +SRLIE is designed for Web-scale information extraction, where target relations are not specified in advance. + +SRLIE constructs richer extractions than OLLIE. It builds extractions from Semantic Role Labelling (SRL) +SRL frames are not extractions themselves because they contain many frame arguments that are not considered +extraction arguments in Open IE. SRL also does not identify argument boundaries or expand relation verbs +into relation phrases. + +## Process + +SRLIE is composed of a layer of functions on the input sentence. + +1. First the sentences is processed by a dependency parser. +2. Next the dependency graph is run through a SRL system to produce SRL Frames. +3. Then the frames are sent through SRLIE to produce n-ary extractions. This involves filtering some SRL frames, determing argument boundaries, and constructing a relation phrase. + 1. Optionally the n-ary extractions can be sent through a conversion to produce triples. + 2. Optionally the n-ary extractions can be sent through a conversion to produce nested n-ary extractions. + +## Concurrency + +When operating at web scale, parallelism is essential. While the base SRLIE extractor is immutable and +thread safe, the underlying SRL system provided by ClearNLP is not threadsafe. +Version 1.0.3 onwards it is thread-safe. Works well with java-7-openjdk. + +## Citing SRLIE + +Janara Christensen, Mausam, Stephen Soderland, Oren Etzioni. "An Analysis of Open Information Extraction based on Semantic Role Labeling". International Conference on Knowledge Capture (KCAP). Banff, Alberta, Canada. June 2011. diff --git a/srlie/build.sbt b/srlie/build.sbt new file mode 100644 index 0000000..82f8995 --- /dev/null +++ b/srlie/build.sbt @@ -0,0 +1,72 @@ +import AssemblyKeys._ + +assemblySettings + +ReleaseSettings.defaults + +name := "srlie" + +organization := "edu.washington.cs.knowitall.srlie" + +crossScalaVersions := Seq("2.10.3") + +scalaVersion <<= crossScalaVersions { (vs: Seq[String]) => vs.head } + +resolvers += "Sonatype SNAPSHOTS" at "https://oss.sonatype.org/content/repositories/snapshots/" + +resolvers += "Release" at "https://oss.sonatype.org/service/local/repositories/releases/content/" + + +libraryDependencies ++= Seq( +"edu.washington.cs.knowitall.nlptools" %% "nlptools-srl-clear" % "2.4.5" , + "edu.washington.cs.knowitall.nlptools" %% "nlptools-conf-breeze" % "2.4.5", + "com.github.scopt" %% "scopt" % "2.1.0" cross CrossVersion.binaryMapped { + case "2.9.3" => "2.9.2" + case "2.10.2" => "2.10" + case x => x + }, + "org.slf4j" % "slf4j-api" % "1.7.3", + "org.scalaz" %% "scalaz-core" % "7.0.3" cross CrossVersion.binaryMapped { + case "2.9.3" => "2.9.2" + case "2.10.2" => "2.10" + case x => x + }, + "ch.qos.logback" % "logback-classic" % "1.0.13" % "test", + "ch.qos.logback" % "logback-core" % "1.0.13" % "test", + "junit" % "junit" % "4.11" % "test", + "org.specs2" % "specs2" % "1.12.3" % "test" cross CrossVersion.binaryMapped { + case "2.9.3" => "2.9.2" + case "2.10.2" => "2.10" + case x => x + }) + +mainClass in assembly := Some("edu.knowitall.srlie.SrlExtractor") + +scalacOptions ++= Seq("-unchecked", "-deprecation") + +licenses := Seq("Ollie Software License Agreement" -> url("https://raw.github.com/knowitall/ollie/master/LICENSE")) + +homepage := Some(url("https://github.com/knowitall/openie-srl")) + +publishMavenStyle := true + +publishTo <<= version { (v: String) => + val nexus = "https://oss.sonatype.org/" + if (v.trim.endsWith("SNAPSHOT")) + Some("snapshots" at nexus + "content/repositories/snapshots") + else + Some("releases" at nexus + "service/local/staging/deploy/maven2") +} + +pomExtra := ( + + https://github.com/knowitall/openie-srl + scm:git://github.com/knowitall/openie-srl.git + scm:git:git@github.com:knowitall/openie-srl.git + HEAD + + + + Michael Schmitz + + ) diff --git a/srlie/data/annotations-eval.txt b/srlie/data/annotations-eval.txt new file mode 100644 index 0000000..f117a5d --- /dev/null +++ b/srlie/data/annotations-eval.txt @@ -0,0 +1,3076 @@ +1 ($ 100 million issue of collateralized mortgage obligations; is being offered; by a Morgan Stanley group) $ 100 million issue of collateralized mortgage obligations is being offered by a Morgan Stanley group $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . +1 ($ 100 million issue of collateralized mortgage obligations; is being offered; in four classes) $ 100 million issue of collateralized mortgage obligations is being offered in four classes $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . +1 ($ 100 million issue of collateralized mortgage obligations; is being offered; by a Morgan Stanley group) $ 100 million issue of collateralized mortgage obligations is being offered by a Morgan Stanley group $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . +1 ($ 100 million issue of collateralized mortgage obligations; is being offered in; four classes) $ 100 million issue of collateralized mortgage obligations is being offered in four classes $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . +1 ($ 100 million issue of collateralized mortgage obligations; is being offered by; a Morgan Stanley group) $ 100 million issue of collateralized mortgage obligations is being offered by a Morgan Stanley group $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . +0 (collateralized mortgage obligations; is being offered in; four classes) collateralized mortgage obligations is being offered in four classes $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . +1 (an asteroid; be named for; Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor) an asteroid be named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (7939 Asphaug; is; an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz) 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (an asteroid; be named; for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor) an asteroid be named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (7939 Asphaug; is; an asteroid) 7939 Asphaug is an asteroid 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (Dr. Erik I. Asphaug; [is] recipient of; the 1998 H. C. Urey Prize) Dr. Erik I. Asphaug [is] recipient of the 1998 H. C. Urey Prize 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (an asteroid; be named for; Dr. Erik I. Asphaug) an asteroid be named for Dr. Erik I. Asphaug 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +0 (Dr. Erik I. Asphaug; be recipient of; the 1998 H. C. Urey Prize and a professor) Dr. Erik I. Asphaug be recipient of the 1998 H. C. Urey Prize and a professor 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (Dr. Erik I. Asphaug; [is] recipient of; the 1998 H. C. Urey Prize) Dr. Erik I. Asphaug [is] recipient of the 1998 H. C. Urey Prize 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (Dr. Erik I. Asphaug; [is] recipient of; the 1998 H. C. Urey Prize) Dr. Erik I. Asphaug [is] recipient of the 1998 H. C. Urey Prize 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . +1 (A collection of her art; was displayed at; an exhibition) A collection of her art was displayed at an exhibition A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . +1 (A collection of her art; was displayed by; supporters campaigning to release her) A collection of her art was displayed by supporters campaigning to release her A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . +1 (A collection of her art; was displayed; at an exhibition) A collection of her art was displayed at an exhibition A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . +1 (A collection of her art; was displayed; by supporters campaigning to release her) A collection of her art was displayed by supporters campaigning to release her A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . +0 (A collection of her art; was displayed; at an exhibition in Tehran by supporters) A collection of her art was displayed at an exhibition in Tehran by supporters A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . +1 (her art; was displayed at; an exhibition) her art was displayed at an exhibition A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . +0 (A collection of her art; was displayed; at an exhibition in Tehran by supporters) A collection of her art was displayed at an exhibition in Tehran by supporters A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . +1 (A myelinated axon 20 m; has; a conduction speed) A myelinated axon 20 m has a conduction speed A myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater . +0 (A myelinated axon 20 m in diameter; has faster; a conduction speed) A myelinated axon 20 m in diameter has faster a conduction speed A myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater . +1 (A myelinated axon; has; a conduction speed) A myelinated axon has a conduction speed A myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater . +0 (diameter; has; a conduction speed) diameter has a conduction speed A myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater . +0 (A myelinated axon 20 m in diameter; has faster; a conduction speed) A myelinated axon 20 m in diameter has faster a conduction speed A myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater . +1 (an embryo; be packaged with; a supply of nutrients) an embryo be packaged with a supply of nutrients A seed is an embryo packaged with a supply of nutrients inside a protective coat . +1 (A seed; is; an embryo packaged with a supply of nutrients inside a protective coat) A seed is an embryo packaged with a supply of nutrients inside a protective coat A seed is an embryo packaged with a supply of nutrients inside a protective coat . +1 (an embryo; be packaged; with a supply of nutrients) an embryo be packaged with a supply of nutrients A seed is an embryo packaged with a supply of nutrients inside a protective coat . +1 (A seed; is; an embryo) A seed is an embryo A seed is an embryo packaged with a supply of nutrients inside a protective coat . +0 (them; had; access which drew former President Nelson Mandela to plead with Achmat at his home) them had access which drew former President Nelson Mandela to plead with Achmat at his home Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (Achmat; to take; AIDS medications) Achmat to take AIDS medications Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (access; drew; former President Nelson Mandela) access drew former President Nelson Mandela Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (them; be access to; them) them be access to them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (them; be access; to them) them be access to them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (former President Nelson Mandela; to begin; drug therapy) former President Nelson Mandela to begin drug therapy Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (access to them; drew; former President Nelson Mandela; to plead with Achmat at his home) access to them drew former President Nelson Mandela; to plead with Achmat at his home Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (all; needed; them) all needed them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +1 (Achmat; publicly refused; to take AIDS medications until all who needed them had access to them) Achmat publicly refused to take AIDS medications until all who needed them had access to them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +1 (Achmat; publicly refused to take; AIDS medications) Achmat publicly refused to take AIDS medications Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (Achmat; publicly refused to take AIDS medications had; access to them , which drew former President Nelson Mandela) Achmat publicly refused to take AIDS medications had access to them , which drew former President Nelson Mandela Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +1 (Achmat; publicly refused to take; AIDS medications) Achmat publicly refused to take AIDS medications Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +1 (Achmat; publicly refused to take; AIDS medications) Achmat publicly refused to take AIDS medications Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (them; had access to; them) them had access to them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (them; drew; former President Nelson Mandela) them drew former President Nelson Mandela Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (all; needed; them) all needed them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +1 (Achmat; publicly refused to take; AIDS medications) Achmat publicly refused to take AIDS medications Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (access to them; drew; former President Nelson Mandela) access to them drew former President Nelson Mandela Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (former President Nelson Mandela; to begin; drug therapy) former President Nelson Mandela to begin drug therapy Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +1 (Achmat; publicly refused; to take AIDS medications until all who needed them had access to them) Achmat publicly refused to take AIDS medications until all who needed them had access to them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (Achmat; publicly refused to take AIDS medications had; access to them , which drew former President Nelson Mandela) Achmat publicly refused to take AIDS medications had access to them , which drew former President Nelson Mandela Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (access to them; drew former President Nelson Mandela; to plead with Achmat at his home) access to them drew former President Nelson Mandela to plead with Achmat at his home Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +0 (all; needed; them) all needed them Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . +1 (Action potentials; can therefore spread along; axons) Action potentials can therefore spread along axons Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +1 (a signal; be transmitting over; long distances) a signal be transmitting over long distances Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +1 (Action potentials; can therefore spread; along axons) Action potentials can therefore spread along axons Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +1 (a signal; be transmitting; over long distances) a signal be transmitting over long distances Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +1 (Action potentials; can spread; along axons) Action potentials can spread along axons Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +0 (Action potentials; making; them well suited for transmitting a signal over long distances) Action potentials making them well suited for transmitting a signal over long distances Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +1 (Action potentials; can spread; along axons) Action potentials can spread along axons Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +0 (Action potentials; making; them well suited for transmitting a signal over long distances) Action potentials making them well suited for transmitting a signal over long distances Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . +1 (he; was called back from; the loan) he was called back from the loan After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +0 (he; was called back on; 12) he was called back on 12 After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was called back in; March 2009) he was called back in March 2009 After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was called back; from the loan) he was called back from the loan After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +0 (he; was called back; on 12) he was called back on 12 After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was called back; in March 2009) he was called back in March 2009 After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was registered; as a CSKA player; on 12 March 2009) he was registered as a CSKA player; on 12 March 2009 After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +0 (CSKA; was called qualified; ) CSKA was called qualified After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was registered as; a CSKA player) he was registered as a CSKA player After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +0 (12 March 2009; was registered as; a CSKA player) 12 March 2009 was registered as a CSKA player After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (CSKA; qualified for; the round) CSKA qualified for the round After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was called; After CSKA qualified for the round of 16 of) he was called After CSKA qualified for the round of 16 of After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was called; back from the loan; After CSKA qualified for the round of 16 of) he was called back from the loan; After CSKA qualified for the round of 16 of After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was registered; on 12 March 2009) he was registered on 12 March 2009 After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was registered; as a CSKA player) he was registered as a CSKA player After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +0 (he; was called; back from the loan) he was called back from the loan After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +1 (he; was registered on; 12 March 2009) he was registered on 12 March 2009 After CSKA qualified for the round of 16 of the UEFA Cup 2008 09 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . +0 (the real estate agency; to tell; Jerry) the real estate agency to tell Jerry After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (someone; was looking for; him) someone was looking for him After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (someone; was looking; for him) someone was looking for him After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (the real estate agency; to tell; Jerry; that someone was looking for him) the real estate agency to tell Jerry; that someone was looking for him After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Susan; phones; the real estate agency; After Jim stops by) Susan phones the real estate agency; After Jim stops by After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Jerry; had quit; several days ago) Jerry had quit several days ago After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Susan; phones; the real estate agency) Susan phones the real estate agency After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Susan; phones the real estate agency to tell; Jerry) Susan phones the real estate agency to tell Jerry After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +0 (Jerry; had quit; several days) Jerry had quit several days After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Susan; phones; the real estate agency) Susan phones the real estate agency After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Susan; phones the real estate agency; After Jim stops by) Susan phones the real estate agency After Jim stops by After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Jerry; had quit; several days ago) Jerry had quit several days ago After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Susan; phones; the real estate agency) Susan phones the real estate agency After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +0 (the real estate agency; to tell Jerry; that someone was looking for him) the real estate agency to tell Jerry that someone was looking for him After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . +1 (Trento and its Italian-speaking province; were annexed after; World War) Trento and its Italian-speaking province were annexed after World War After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +1 (Trento and its Italian-speaking province; were annexed by; Italy) Trento and its Italian-speaking province were annexed by Italy After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +1 (Trento and its Italian-speaking province; were annexed; after World War) Trento and its Italian-speaking province were annexed after World War After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +1 (Trento and its Italian-speaking province; were annexed; by Italy) Trento and its Italian-speaking province were annexed by Italy After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +0 (Italian; speaking; ) Italian speaking After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +0 (the part of Tyrol; stretched south; ) the part of Tyrol stretched south After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +0 (the Alpine; were annexed by; Italy) the Alpine were annexed by Italy After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +1 (Tyrol; stretched south of; the Alpine) Tyrol stretched south of the Alpine After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +0 (World War I , Trento and its Italian-speaking province; along were annexed; by Italy) World War I , Trento and its Italian-speaking province along were annexed by Italy After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +0 (World War I , Trento and its Italian-speaking province; along were annexed; by Italy) World War I , Trento and its Italian-speaking province along were annexed by Italy After World War I , Trento and its Italian-speaking province , along with Bolzano and the part of Tyrol that stretched south of the Alpine watershed , were annexed by Italy . +0 (I; Did Get; Married) I Did Get Married After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (Madea; Goes; to Jail) Madea Goes to Jail After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (a star in a number of gospel; plays; for best-selling playwright Tyler Perry) a star in a number of gospel plays for best-selling playwright Tyler Perry After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged; in the early 2000s; as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion; After a hiatus from the entertainment industry) Riley re-emerged in the early 2000s; as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion; After a hiatus from the entertainment industry After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged in; the early 2000s) Riley re-emerged in the early 2000s After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged as; a star) Riley re-emerged as a star After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged after; a hiatus) Riley re-emerged after a hiatus After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (Madea 's Class Reunion; Goes to; Jail) Madea 's Class Reunion Goes to Jail After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (Madea; be Class Reunion of; Madea) Madea be Class Reunion of Madea After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (Madea; Goes to; Jail) Madea Goes to Jail After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged in; the early 2000s) Riley re-emerged in the early 2000s After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (Jail; Did; I) Jail Did I After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged; as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion) Riley re-emerged as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (Madea; Goes; to Jail) Madea Goes to Jail After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (a star in a number of gospel; plays; for best-selling playwright Tyler Perry) a star in a number of gospel plays for best-selling playwright Tyler Perry After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged; After a hiatus from the entertainment industry) Riley re-emerged After a hiatus from the entertainment industry After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged; in the early 2000s) Riley re-emerged in the early 2000s After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +0 (I; Did Get; Married) I Did Get Married After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? +1 (Riley; re-emerged after; a hiatus) Riley re-emerged after a hiatus After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +1 (Riley; re-emerged as; a star) Riley re-emerged as a star After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +1 (Riley; re-emerged in; the early 2000s) Riley re-emerged in the early 2000s After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +0 (Riley; re-emerged including; Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman) Riley re-emerged including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +1 (Riley; re-emerged; after a hiatus) Riley re-emerged after a hiatus After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +1 (Riley; re-emerged; as a star) Riley re-emerged as a star After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +1 (Riley; re-emerged; in the early 2000s) Riley re-emerged in the early 2000s After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +0 (Riley; re-emerged; including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman) Riley re-emerged including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? , and the film version of Diary of a Mad Black Woman . +1 (Rage; left after; the release of her album and a guest-appearance) Rage left after the release of her album and a guest-appearance After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Rage; left; Death Row Records and the music industry) Rage left Death Row Records and the music industry After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Death Row Records and the music industry; be left after; the release of her album and a guest-appearance) Death Row Records and the music industry be left after the release of her album and a guest-appearance After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Rage; left; after the release of her album and a guest-appearance) Rage left after the release of her album and a guest-appearance After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Death Row Records and the music industry; be left; after the release of her album and a guest-appearance) Death Row Records and the music industry be left after the release of her album and a guest-appearance After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +0 (Rage; left; Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel) Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Rage; left Death Row Records after; the release of her album and a guest-appearance) Rage left Death Row Records after the release of her album and a guest-appearance After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +0 (Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel; be left after; the release of her album and a guest-appearance) Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel be left after the release of her album and a guest-appearance After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Rage; left the music industry generally to focus on acting , appearing in an episode of Kenan & Kel after; the release of her album and a guest-appearance) Rage left the music industry generally to focus on acting , appearing in an episode of Kenan & Kel after the release of her album and a guest-appearance After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Rage; left; Death Row Records) Rage left Death Row Records After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . +1 (Drop Trio; Also was asked in; 2003) Drop Trio Also was asked in 2003 Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; Also was asked by; SugarHill Recording Studios) Drop Trio Also was asked by SugarHill Recording Studios Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (a song; be to record by; Destiny 's Child) a song be to record by Destiny 's Child Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; to record a song by; Destiny 's Child) Drop Trio to record a song by Destiny 's Child Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; to record; a song) Drop Trio to record a song Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +0 (Destiny; Child for; an upcoming compilation CD) Destiny Child for an upcoming compilation CD Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; Also was asked; in 2003) Drop Trio Also was asked in 2003 Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; Also was asked; by SugarHill Recording Studios) Drop Trio Also was asked by SugarHill Recording Studios Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (a song; be to record; by Destiny 's Child) a song be to record by Destiny 's Child Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; to record a song; by Destiny 's Child) Drop Trio to record a song by Destiny 's Child Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +0 (Destiny; Child; for an upcoming compilation CD) Destiny Child for an upcoming compilation CD Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; was asked; by SugarHill Recording Studios; to record a song by Destiny 's Child for an upcoming compilation CD) Drop Trio was asked by SugarHill Recording Studios; to record a song by Destiny 's Child for an upcoming compilation CD Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; to record; a song; for an upcoming compilation CD) Drop Trio to record a song; for an upcoming compilation CD Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; was asked by; SugarHill Recording Studios) Drop Trio was asked by SugarHill Recording Studios Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +0 (unreleased; was asked by; SugarHill Recording Studios) unreleased was asked by SugarHill Recording Studios Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (a song; Also to be record for; an upcoming compilation CD to be released by the studio) a song Also to be record for an upcoming compilation CD to be released by the studio Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (an upcoming compilation CD; to be released by; the studio) an upcoming compilation CD to be released by the studio Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (a song; Also to be record by; Destiny 's Child) a song Also to be record by Destiny 's Child Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (a song; Also to be record in; 2003) a song Also to be record in 2003 Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; was asked by; SugarHill Recording Studios) Drop Trio was asked by SugarHill Recording Studios Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; was asked; by SugarHill Recording Studios) Drop Trio was asked by SugarHill Recording Studios Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; was asked; to record a song by Destiny 's Child for an upcoming compilation CD) Drop Trio was asked to record a song by Destiny 's Child for an upcoming compilation CD Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (Drop Trio; to record a song; for an upcoming compilation CD) Drop Trio to record a song for an upcoming compilation CD Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . +1 (adaptive immunity; offers significant protection against; a wide range of pathogens) adaptive immunity offers significant protection against a wide range of pathogens Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (adaptive immunity; offers; significant protection) adaptive immunity offers significant protection Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (it; is; not fail-safe) it is not fail-safe Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (adaptive immunity; offers significant protection; against a wide range of pathogens) adaptive immunity offers significant protection against a wide range of pathogens Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (it; is not; fail-safe) it is not fail-safe Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (adaptive immunity; offers; significant protection against a wide range of pathogens) adaptive immunity offers significant protection against a wide range of pathogens Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +0 (adaptive immunity; offers significant protection against; a wide range) adaptive immunity offers significant protection against a wide range Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (adaptive immunity; offers; significant protection against a wide range of pathogens) adaptive immunity offers significant protection against a wide range of pathogens Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (it; is not; fail-safe) it is not fail-safe Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . +1 (such immigration; is a meaningful biological exchange between; populations) such immigration is a meaningful biological exchange between populations Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +1 (such immigration; is; a meaningful biological exchange) such immigration is a meaningful biological exchange Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +1 (these percentages; seem; small) these percentages seem small Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +1 (such immigration; is a meaningful biological exchange; between populations) such immigration is a meaningful biological exchange between populations Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +1 (such immigration; is; a meaningful biological exchange between populations over time) such immigration is a meaningful biological exchange between populations over time Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +0 (these percentages; is a meaningful biological exchange between populations over time may seem; ) these percentages is a meaningful biological exchange between populations over time may seem Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +0 (these percentages; may seem; small , such immigration) these percentages may seem small , such immigration Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +1 (such immigration; is; a meaningful biological exchange between populations over time) such immigration is a meaningful biological exchange between populations over time Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . +1 (Amoebozoans; include; slime molds) Amoebozoans include slime molds Amoebozoans include slime molds , gymnamoebas , and entamoebas . +1 (Amoebozoans; include; slime molds , gymnamoebas , and entamoebas) Amoebozoans include slime molds , gymnamoebas , and entamoebas Amoebozoans include slime molds , gymnamoebas , and entamoebas . +1 (Amoebozoans; include; slime molds , gymnamoebas , and entamoebas) Amoebozoans include slime molds , gymnamoebas , and entamoebas Amoebozoans include slime molds , gymnamoebas , and entamoebas . +1 (birth control pills; slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke among; nonsmokers) birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke among nonsmokers Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +0 (a woman; risk of; abnormal blood clotting , high blood pressure , heart attack , and stroke) a woman risk of abnormal blood clotting , high blood pressure , heart attack , and stroke Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +1 (birth control pills; slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke; among nonsmokers) birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke among nonsmokers Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +0 (a woman; risk; of abnormal blood clotting , high blood pressure , heart attack , and stroke) a woman risk of abnormal blood clotting , high blood pressure , heart attack , and stroke Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +1 (birth control pills; slightly raise; a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke; Among nonsmokers) birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke; Among nonsmokers Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +0 (birth control; slightly raise; a woman) birth control slightly raise a woman Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +1 (birth control pills; slightly raise a woman 's risk of abnormal blood clotting among; nonsmokers) birth control pills slightly raise a woman 's risk of abnormal blood clotting among nonsmokers Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +1 (birth control pills; slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke; Among nonsmokers) birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke Among nonsmokers Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +0 (birth control pills; slightly raise; a woman 's risk of abnormal blood clotting) birth control pills slightly raise a woman 's risk of abnormal blood clotting Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +0 (birth control pills; slightly raise; a woman 's risk of abnormal blood clotting) birth control pills slightly raise a woman 's risk of abnormal blood clotting Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +0 (a woman 's risk of abnormal blood clotting; be slightly raise among; nonsmokers) a woman 's risk of abnormal blood clotting be slightly raise among nonsmokers Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +0 (birth control pills; slightly raise; a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke) birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . +1 (76 %; have a favorable opinion of her; among professionals) 76 % have a favorable opinion of her among professionals Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +1 (76 %; have a favorable opinion of her among; professionals) 76 % have a favorable opinion of her among professionals Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +1 (62 %; approve of; her husband 's performance) 62 % approve of her husband 's performance Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +0 (62 %; approve; of her husband 's performance) 62 % approve of her husband 's performance Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +1 (76 %; have; a favorable opinion of her; Among professionals) 76 % have a favorable opinion of her; Among professionals Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +0 (76 %; have; a favorable opinion of her) 76 % have a favorable opinion of her Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +0 (76 %; have a favorable opinion of; her) 76 % have a favorable opinion of her Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +0 (62 %; approve of; her husband) 62 % approve of her husband Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +1 (76 %; have a favorable opinion of her; Among professionals) 76 % have a favorable opinion of her Among professionals Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +0 (62 %; approve; of her husband 's performance) 62 % approve of her husband 's performance Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +0 (76 %; have; a favorable opinion of her) 76 % have a favorable opinion of her Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . +0 (sponges; branch among; the extant taxa) sponges branch among the extant taxa Among the extant taxa , sponges branch from the base of both animal trees . +1 (sponges; branch from; the base of both animal trees) sponges branch from the base of both animal trees Among the extant taxa , sponges branch from the base of both animal trees . +0 (sponges; branch; among the extant taxa) sponges branch among the extant taxa Among the extant taxa , sponges branch from the base of both animal trees . +1 (sponges; branch; from the base of both animal trees) sponges branch from the base of both animal trees Among the extant taxa , sponges branch from the base of both animal trees . +1 (Amongst his victims; were the Pakistani pair of; Zaheer Abbas and Mushtaq Mohammad) Amongst his victims were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; whom dismissed for; Western Australia) he whom dismissed for Western Australia Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; whom dismissed in; a tour match) he whom dismissed in a tour match Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +1 (the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad; be Amongst his victims in; first-class cricket) the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad be Amongst his victims in first-class cricket Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +1 (Amongst his victims; were; the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad) Amongst his victims were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +1 (Amongst his victims; were the Pakistani pair; of Zaheer Abbas and Mushtaq Mohammad) Amongst his victims were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; whom dismissed; for Western Australia) he whom dismissed for Western Australia Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; whom dismissed; in a tour match) he whom dismissed in a tour match Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +1 (the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad; be Amongst his victims; in first-class cricket) the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad be Amongst his victims in first-class cricket Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (first-class cricket; were the Pakistani pair of; Zaheer Abbas) first-class cricket were the Pakistani pair of Zaheer Abbas Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; dismissed in; a tour match) he dismissed in a tour match Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; dismissed; in a tour match for Western Australia) he dismissed in a tour match for Western Australia Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (first-class cricket; were the Pakistani pair of; Zaheer Abbas) first-class cricket were the Pakistani pair of Zaheer Abbas Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (Amongst his victims in first-class cricket; were; the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad) Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; dismissed in; a tour match) he dismissed in a tour match Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; dismissed for; Western Australia) he dismissed for Western Australia Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +1 (the Pakistani pair of Zaheer Abbas; were amongst; his victims) the Pakistani pair of Zaheer Abbas were amongst his victims Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; dismissed against; the touring nation) he dismissed against the touring nation Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (Amongst his victims in first-class cricket; were; the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad) Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (he; dismissed; in a tour match for Western Australia) he dismissed in a tour match for Western Australia Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (first-class cricket; were the Pakistani pair of; Zaheer Abbas) first-class cricket were the Pakistani pair of Zaheer Abbas Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (first-class cricket; were the Pakistani pair of; Zaheer Abbas) first-class cricket were the Pakistani pair of Zaheer Abbas Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . +0 (Amuro; returned on; her own released on March 6 , 2003) Amuro returned on her own released on March 6 , 2003 Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +1 (Amuro; returned to; solo activities) Amuro returned to solo activities Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (her own; be released on; March 6 , 2003) her own be released on March 6 , 2003 Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (Amuro; returned; on her own released on March 6 , 2003) Amuro returned on her own released on March 6 , 2003 Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +1 (Amuro; returned; to solo activities) Amuro returned to solo activities Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (her own; be released; on March 6 , 2003) her own be released on March 6 , 2003 Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (Amuro; returned to solo activities with; the single '' Shine) Amuro returned to solo activities with the single '' Shine Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (Amuro; returned to solo; activities) Amuro returned to solo activities Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (Amuro; to solo activities on; her own) Amuro to solo activities on her own Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (Amuro; to solo; activities) Amuro to solo activities Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (Amuro; to solo activities with; the single '' Shine) Amuro to solo activities with the single '' Shine Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (activities; to be solo on; her own) activities to be solo on her own Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (activities; to be solo with; the single '' Shine) activities to be solo with the single '' Shine Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +1 (Amuro; returned to solo activities on; her own) Amuro returned to solo activities on her own Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +0 (the single '' Shine; be released on; March 6) the single '' Shine be released on March 6 Amuro returned to solo activities on her own with the single '' Shine More '' , released on March 6 , 2003 . +1 (An aqueous solution; is; one which water is the solvent) An aqueous solution is one which water is the solvent An aqueous solution is one in which water is the solvent . +0 (water; is; the solvent) water is the solvent An aqueous solution is one in which water is the solvent . +1 (An aqueous solution; is; one in which water is the solvent) An aqueous solution is one in which water is the solvent An aqueous solution is one in which water is the solvent . +0 (An aqueous solution; is one in; which) An aqueous solution is one in which An aqueous solution is one in which water is the solvent . +0 (An aqueous solution; is; one) An aqueous solution is one An aqueous solution is one in which water is the solvent . +0 (one; is; the solvent) one is the solvent An aqueous solution is one in which water is the solvent . +1 (An aqueous solution; is; one in which water is the solvent) An aqueous solution is one in which water is the solvent An aqueous solution is one in which water is the solvent . +0 (An aqueous solution; is one in; which) An aqueous solution is one in which An aqueous solution is one in which water is the solvent . +0 (An aqueous solution; is one in; which) An aqueous solution is one in which An aqueous solution is one in which water is the solvent . +0 (the Appropriations Committee leadership; turned back; efforts) the Appropriations Committee leadership turned back efforts And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- +1 (the proposed restrictions; added; by Sen. Warren Rudman -LRB- R.; first) the proposed restrictions added by Sen. Warren Rudman -LRB- R.; first And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +0 (the Appropriations Committee leadership; turned; back; efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction; on back-to-back roll calls) the Appropriations Committee leadership turned back; efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction; on back-to-back roll calls And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +1 (the Appropriations Committee leadership; turned back; efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction) the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +0 (efforts to weaken or strip the proposed restrictions; be first added by; Sen. Warren Rudman) efforts to weaken or strip the proposed restrictions be first added by Sen. Warren Rudman And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +1 (the Appropriations Committee leadership; turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction on; back-to-back roll calls) the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction on back-to-back roll calls And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +1 (efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction; be turned back on; back-to-back roll calls) efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction be turned back on back-to-back roll calls And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +0 (efforts; strip; the proposed restrictions) efforts strip the proposed restrictions And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +1 (Animal reproduction; takes; many forms) Animal reproduction takes many forms And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +1 (the Appropriations Committee leadership; turned back; efforts) the Appropriations Committee leadership turned back efforts And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +0 (the Appropriations Committee leadership; turned; efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction) the Appropriations Committee leadership turned efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +0 (the Appropriations Committee leadership; turned; on back-to-back roll calls) the Appropriations Committee leadership turned on back-to-back roll calls And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +0 (the Appropriations Committee leadership; turned; back) the Appropriations Committee leadership turned back And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +1 (the proposed restrictions; added; by Sen. Warren Rudman -LRB- R.) the proposed restrictions added by Sen. Warren Rudman -LRB- R. And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +0 (the proposed restrictions; added; first) the proposed restrictions added first And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Animal reproduction , however , takes many forms . +1 (Animal reproduction; however takes; many forms) Animal reproduction however takes many forms Animal reproduction , however , takes many forms . +0 (Another historian; wrote a report at; Auschwitz) Another historian wrote a report at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Another historian; wrote a report on; the gassing facilities) Another historian wrote a report on the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote a report on; a wider scale) Browning wrote a report on a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Browning; wrote a report on; the evidence) Browning wrote a report on the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Another historian; wrote; a report) Another historian wrote a report Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Browning; wrote; a report) Browning wrote a report Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Another historian; wrote a report in; the gassing facilities) Another historian wrote a report in the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote a report in; a wider scale) Browning wrote a report in a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote a report in; the evidence) Browning wrote a report in the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (a report; be wrote at; Auschwitz) a report be wrote at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (a report; be wrote on; a wider scale) a report be wrote on a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (a report; be wrote on; the evidence) a report be wrote on the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (a report; be wrote on; the gassing facilities) a report be wrote on the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Another historian; wrote a report; at Auschwitz) Another historian wrote a report at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Another historian; wrote a report; on the gassing facilities) Another historian wrote a report on the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote a report; on a wider scale) Browning wrote a report on a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Browning; wrote a report; on the evidence) Browning wrote a report on the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Another historian; wrote a report; in the gassing facilities) Another historian wrote a report in the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote a report; in a wider scale) Browning wrote a report in a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote a report; in the evidence) Browning wrote a report in the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (a report; be wrote; at Auschwitz) a report be wrote at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (a report; be wrote; on a wider scale) a report be wrote on a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (a report; be wrote; on the evidence) a report be wrote on the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (a report; be wrote; on the gassing facilities) a report be wrote on the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Browning; wrote; a report on the evidence for the extermination of the Jews on a wider scale) Browning wrote a report on the evidence for the extermination of the Jews on a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Another historian; wrote; a report on the gassing facilities; at Auschwitz) Another historian wrote a report on the gassing facilities; at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Browning; wrote on; the evidence) Browning wrote on the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Another historian; wrote on; the gassing facilities) Another historian wrote on the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote on; the gassing facilities) Browning wrote on the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Another historian; wrote at; Auschwitz) Another historian wrote at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Another historian; wrote on; the evidence) Another historian wrote on the evidence Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +0 (Browning; wrote at; Auschwitz) Browning wrote at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Browning; wrote; a report on the evidence for the extermination of the Jews on a wider scale) Browning wrote a report on the evidence for the extermination of the Jews on a wider scale Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Another historian; wrote a report on the gassing facilities; at Auschwitz) Another historian wrote a report on the gassing facilities at Auschwitz Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Another historian; wrote; a report on the gassing facilities) Another historian wrote a report on the gassing facilities Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . +1 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked Senator Panfilo Lacson to; the February 6 , 2005 Coup d' tat plot) Armed Forces of the Philippines chief of staff General Hermogenes Esperon linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked; Senator Panfilo Lacson) Armed Forces of the Philippines chief of staff General Hermogenes Esperon linked Senator Panfilo Lacson Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (Jr.; be the Philippines chief of; staff General Hermogenes Esperon) Jr. be the Philippines chief of staff General Hermogenes Esperon Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +1 (Senator Panfilo Lacson; be linked to; the February 6 , 2005 Coup d' tat plot) Senator Panfilo Lacson be linked to the February 6 , 2005 Coup d' tat plot Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (staff General Hermogenes Esperon; be the Philippines chief of; Jr.) staff General Hermogenes Esperon be the Philippines chief of Jr. Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +1 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked Senator Panfilo Lacson; to the February 6 , 2005 Coup d' tat plot) Armed Forces of the Philippines chief of staff General Hermogenes Esperon linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (Jr.; be the Philippines chief; of staff General Hermogenes Esperon) Jr. be the Philippines chief of staff General Hermogenes Esperon Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +1 (Senator Panfilo Lacson; be linked; to the February 6 , 2005 Coup d' tat plot) Senator Panfilo Lacson be linked to the February 6 , 2005 Coup d' tat plot Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (staff General Hermogenes Esperon; be the Philippines chief; of Jr.) staff General Hermogenes Esperon be the Philippines chief of Jr. Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (General Hermogenes Esperon; linked; Senator Panfilo Lacson) General Hermogenes Esperon linked Senator Panfilo Lacson Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (Jr.; linked Senator Panfilo Lacson to; the February 6) Jr. linked Senator Panfilo Lacson to the February 6 Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +1 (Senator Panfilo Lacson; be linked to; the February 6) Senator Panfilo Lacson be linked to the February 6 Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +1 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked Senator Panfilo Lacson to; the February 6) Armed Forces of the Philippines chief of staff General Hermogenes Esperon linked Senator Panfilo Lacson to the February 6 Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (Jr.; linked; Senator Panfilo Lacson) Jr. linked Senator Panfilo Lacson Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (Jr.; linked; Senator Panfilo Lacson) Jr. linked Senator Panfilo Lacson Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (General Hermogenes Esperon; linked; Senator Panfilo Lacson) General Hermogenes Esperon linked Senator Panfilo Lacson Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d' tat plot . +0 (MTM Entertainment Inc.; be as president of; a Los Angeles production company) MTM Entertainment Inc. be as president of a Los Angeles production company Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (MTM Entertainment Inc.; be company; of Los Angeles production) MTM Entertainment Inc. be company of Los Angeles production Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +0 (MTM Entertainment Inc.; be as president; of a Los Angeles production company) MTM Entertainment Inc. be as president of a Los Angeles production company Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (Arthur Price; abruptly quit as; president) Arthur Price abruptly quit as president Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (a Los Angeles production company; has fallen on; hard times) a Los Angeles production company has fallen on hard times Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (a Los Angeles production company; has fallen; on hard times) a Los Angeles production company has fallen on hard times Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (MTM Entertainment Inc.; [is] a production company [of]; Los Angeles) MTM Entertainment Inc. [is] a production company [of] Los Angeles Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (Arthur Price; abruptly quit; as president and chief executive officer of MTM Entertainment Inc) Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (Arthur Price; abruptly quit as; president and chief executive officer of MTM Entertainment Inc.) Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +0 (MTM Entertainment Inc.; be company of; Los Angeles production) MTM Entertainment Inc. be company of Los Angeles production Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +0 (MTM Entertainment Inc.; be president of; a Los Angeles production company) MTM Entertainment Inc. be president of a Los Angeles production company Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (Arthur Price; abruptly quit; as president and chief executive officer of MTM Entertainment Inc) Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (a Los Angeles production company; has fallen; on hard times) a Los Angeles production company has fallen on hard times Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (MTM Entertainment Inc.; [is] a production company [of]; Los Angeles) MTM Entertainment Inc. [is] a production company [of] Los Angeles Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (MTM Entertainment Inc.; [is] a production company [of]; Los Angeles) MTM Entertainment Inc. [is] a production company [of] Los Angeles Arthur Price abruptly quit as president and chief executive officer of MTM Entertainment Inc. , a Los Angeles production company that has fallen on hard times . +1 (he; led the invasion of the Philippines as; Commanding General of the newly formed Eighth Army) he led the invasion of the Philippines as Commanding General of the newly formed Eighth Army As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +1 (he; led; the invasion of the Philippines) he led the invasion of the Philippines As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +0 (he; be the invasion of; the Philippines) he be the invasion of the Philippines As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +1 (he; led the invasion of the Philippines; as Commanding General of the newly formed Eighth Army) he led the invasion of the Philippines as Commanding General of the newly formed Eighth Army As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +1 (the invasion of the Philippines; be led; as Commanding General of the newly formed Eighth Army) the invasion of the Philippines be led as Commanding General of the newly formed Eighth Army As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +0 (he; be the invasion; of the Philippines) he be the invasion of the Philippines As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +0 (he; clearing; the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol) he clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +1 (Commanding General of the newly formed Eighth Army; led; the invasion of the Philippines) Commanding General of the newly formed Eighth Army led the invasion of the Philippines As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +0 (the invasion of the Philippines; be led as; Commanding General of the newly formed Eighth Army) the invasion of the Philippines be led as Commanding General of the newly formed Eighth Army As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +0 (he; led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol as; Commanding General of the newly formed Eighth Army) he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol as Commanding General of the newly formed Eighth Army As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +1 (he; led the invasion of; the Philippines) he led the invasion of the Philippines As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +1 (Commanding General of the newly formed Eighth Army; led; the invasion of the Philippines) Commanding General of the newly formed Eighth Army led the invasion of the Philippines As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +0 (he; clearing; the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol) he clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . +1 (Vader 's manager Jim Cornette; got on; the ring apron) Vader 's manager Jim Cornette got on the ring apron As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . +1 (Vader 's manager Jim Cornette; to distract; him) Vader 's manager Jim Cornette to distract him As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . +1 (Jim Cornette; be manager of; Vader) Jim Cornette be manager of Vader As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . +1 (Vader 's manager Jim Cornette; got; on the ring apron) Vader 's manager Jim Cornette got on the ring apron As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . +1 (Jim Cornette; be manager; of Vader) Jim Cornette be manager of Vader As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . +0 (Jeff Bowden 's agreement with Florida State and Seminole Boosters; be a part in; Inc.) Jeff Bowden 's agreement with Florida State and Seminole Boosters be a part in Inc. As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +0 (Jeff Bowden 's agreement with Florida State and Seminole Boosters; be a part of; Inc.) Jeff Bowden 's agreement with Florida State and Seminole Boosters be a part of Inc. As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +0 (Jeff Bowden 's agreement with Florida State and Seminole Boosters; be a part; in Inc.) Jeff Bowden 's agreement with Florida State and Seminole Boosters be a part in Inc. As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +0 (Jeff Bowden 's agreement with Florida State and Seminole Boosters; be a part; of Inc.) Jeff Bowden 's agreement with Florida State and Seminole Boosters be a part of Inc. As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +1 (he; will receive; an $ 107,500; annually) he will receive an $ 107,500; annually As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +1 (he; will receive an $ 107,500 annually , or $ 537,000 total , through; August 2012) he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +1 (he; will receive an $ 107,500 annually , or $ 537,000 total , from; the Booster club) he will receive an $ 107,500 annually , or $ 537,000 total , from the Booster club As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +1 (he; will receive an $ 107,500 annually , or $ 537,000 total , as; a part of Jeff Bowden 's agreement) he will receive an $ 107,500 annually , or $ 537,000 total , as a part of Jeff Bowden 's agreement As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +1 (he; will receive; an $ 107,500) he will receive an $ 107,500 As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +1 (he; will receive an $ 107,500; annually) he will receive an $ 107,500 annually As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +1 (he; will receive; an $ 107,500) he will receive an $ 107,500 As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . +0 (n't enough; be early elimination from; the playoff race) n't enough be early elimination from the playoff race As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (the team; suffer; two 8-0 demolitions) the team suffer two 8-0 demolitions As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (early elimination; was; n't enough) early elimination was n't enough As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (n't enough; be early elimination; from the playoff race) n't enough be early elimination from the playoff race As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (July; saw; the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions; As if early elimination from the playoff race was n't enough) July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions; As if early elimination from the playoff race was n't enough As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (the team; suffer; two 8-0 demolitions; by Des Moines Menace and; in the last game of the season) the team suffer two 8-0 demolitions; by Des Moines Menace and; in the last game of the season As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (early elimination from the playoff race; was n't; enough) early elimination from the playoff race was n't enough As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (the team; suffer two 8-0 demolitions by; Des Moines Menace and in the last game of the season) the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (two 8-0 demolitions; be suffer by; Des Moines Menace and in the last game of the season) two 8-0 demolitions be suffer by Des Moines Menace and in the last game of the season As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (two 8-0 demolitions; be suffer in; Des Moines Menace and in the last game of the season) two 8-0 demolitions be suffer in Des Moines Menace and in the last game of the season As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (July; saw bringing to; an ignominious close) July saw bringing to an ignominious close As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (July; saw; the team) July saw the team As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (July; saw; the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions) July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (July; saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions; As if early elimination from the playoff race was n't enough) July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions As if early elimination from the playoff race was n't enough As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +0 (early elimination from the playoff race; was n't; enough) early elimination from the playoff race was n't enough As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (the team; suffer two 8-0 demolitions; by Des Moines Menace and) the team suffer two 8-0 demolitions by Des Moines Menace and As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (the team; suffer two 8-0 demolitions; in the last game of the season) the team suffer two 8-0 demolitions in the last game of the season As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St. Louis Lions , bringing a difficult freshman year to an ignominious close . +1 (the U.S.; ca n't `` assassinate; Colonel Gadhafi) the U.S. ca n't `` assassinate Colonel Gadhafi As it now stands , the U.S. can bomb Tripoli , but ca n't `` assassinate '' Colonel Gadhafi . +1 (the U.S.; can bomb; Tripoli) the U.S. can bomb Tripoli As it now stands , the U.S. can bomb Tripoli , but ca n't `` assassinate '' Colonel Gadhafi . +1 (the U.S.; ca n't assassinate; Colonel Gadhafi) the U.S. ca n't assassinate Colonel Gadhafi As it now stands , the U.S. can bomb Tripoli , but ca n't `` assassinate '' Colonel Gadhafi . +0 (it; stands; now) it stands now As it now stands , the U.S. can bomb Tripoli , but ca n't `` assassinate '' Colonel Gadhafi . +1 (the U.S.; ca n't assassinate; Colonel Gadhafi) the U.S. ca n't assassinate Colonel Gadhafi As it now stands , the U.S. can bomb Tripoli , but ca n't `` assassinate '' Colonel Gadhafi . +0 (it; stands; now) it stands now As it now stands , the U.S. can bomb Tripoli , but ca n't `` assassinate '' Colonel Gadhafi . +1 (they; played locally in; Southern California) they played locally in Southern California As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (they; played locally throughout; the winter of 2004 and the spring of 2005) they played locally throughout the winter of 2004 and the spring of 2005 As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +0 (tours; be upcoming without; the help of a booking agent) tours be upcoming without the help of a booking agent As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (they; played locally; in Southern California) they played locally in Southern California As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (they; played locally; throughout the winter of 2004 and the spring of 2005) they played locally throughout the winter of 2004 and the spring of 2005 As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +0 (tours; be upcoming; without the help of a booking agent) tours be upcoming without the help of a booking agent As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the band; struggled; to find support slots on upcoming tours without the help of a booking agent) the band struggled to find support slots on upcoming tours without the help of a booking agent As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the band; struggled to find; support slots on upcoming tours) the band struggled to find support slots on upcoming tours As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (they; played; locally; in Southern California; throughout the winter of 2004 and the spring of 2005; As the band struggled to find support slots on upcoming tours without the help of a booking agent) they played locally; in Southern California; throughout the winter of 2004 and the spring of 2005; As the band struggled to find support slots on upcoming tours without the help of a booking agent As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the band; struggled without; the help of a booking agent) the band struggled without the help of a booking agent As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the band; struggled to find; support slots) the band struggled to find support slots As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the band; struggled to find; support slots) the band struggled to find support slots As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (they; played; in Southern California) they played in Southern California As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +0 (they; played; As the band struggled to find support slots on upcoming tours without the help of a booking agent) they played As the band struggled to find support slots on upcoming tours without the help of a booking agent As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (they; played; throughout the winter of 2004 and the spring of 2005) they played throughout the winter of 2004 and the spring of 2005 As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (they; played; locally) they played locally As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the band; struggled; to find support slots on upcoming tours without the help of a booking agent) the band struggled to find support slots on upcoming tours without the help of a booking agent As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the band; struggled to find; support slots on upcoming tours) the band struggled to find support slots on upcoming tours As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . +1 (the trophoblast; thickens through; cell division) the trophoblast thickens through cell division As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +1 (it; extends; finger-like projections) it extends finger-like projections As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +1 (it; extends finger-like projections; into the surrounding maternal tissue) it extends finger-like projections into the surrounding maternal tissue As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +1 (the trophoblast; thickens; through cell division) the trophoblast thickens through cell division As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +1 (it; extends; finger-like projections; into the surrounding maternal tissue) it extends finger-like projections; into the surrounding maternal tissue As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +1 (the trophoblast; thickens; ) the trophoblast thickens As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +1 (it; extends finger-like projections into; the surrounding maternal tissue) it extends finger-like projections into the surrounding maternal tissue As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +1 (it; extends finger - like projections; into the surrounding maternal tissue) it extends finger - like projections into the surrounding maternal tissue As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . +0 (she; would be; better out of the Union than in it) she would be better out of the Union than in it At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (the South; should remain; in the Union) the South should remain in the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (the South; seek; equality with the North , but) the South seek equality with the North , but At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (Pike; said; the South should remain in the Union and seek equality with the North , but; At the Southern Commercial Convention of 1854) Pike said the South should remain in the Union and seek equality with the North , but; At the Southern Commercial Convention of 1854 At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (the South; would be better out of the Union than in it were forced; ) the South would be better out of the Union than in it were forced At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (the South; should remain in; the Union) the South should remain in the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (Pike; said of; the South) Pike said of the South At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (Pike; said at; the Southern Commercial Convention of 1854) Pike said at the Southern Commercial Convention of 1854 At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (the South; should seek; equality) the South should seek equality At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (Pike; said in; the Southern Commercial Convention of 1854) Pike said in the Southern Commercial Convention of 1854 At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (Pike; said to; the Southern Commercial Convention of 1854) Pike said to the Southern Commercial Convention of 1854 At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (the South; were forced into; an inferior status) the South were forced into an inferior status At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (the South; should remain in; the Union) the South should remain in the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (the South; seek; equality) the South seek equality At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (Pike; said; the South) Pike said the South At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (the South; were forced into; an inferior status) the South were forced into an inferior status At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (she; would be better out of; the Union) she would be better out of the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (Pike; said the South should remain in the Union and seek equality with the North , but; At the Southern Commercial Convention of 1854) Pike said the South should remain in the Union and seek equality with the North , but At the Southern Commercial Convention of 1854 At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (the South; should remain; in the Union) the South should remain in the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (the South; seek; equality with the North , but) the South seek equality with the North , but At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +1 (Pike; said; the South should remain in the Union and seek equality with the North , but) Pike said the South should remain in the Union and seek equality with the North , but At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (she; would be; better out of the Union than in it) she would be better out of the Union than in it At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . +0 (the South; were forced into; an inferior status) the South were forced into an inferior status At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +1 (the South; seek; equality) the South seek equality At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +1 (the South; seek equality with; the North) the South seek equality with the North At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +1 (the South; should remain in; the Union) the South should remain in the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +1 (equality; be seek with; the North) equality be seek with the North At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +0 (she; would be better out of; the Union) she would be better out of the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +0 (the South; said to; Pike) the South said to Pike At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +0 (the South; were forced; into an inferior status) the South were forced into an inferior status At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +1 (the South; seek equality; with the North) the South seek equality with the North At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +1 (the South; should remain; in the Union) the South should remain in the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +1 (equality; be seek; with the North) equality be seek with the North At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +0 (she; would be better out; of the Union) she would be better out of the Union At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +0 (the South; said; to Pike) the South said to Pike At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South '' were forced into an inferior status , she would be better out of the Union than in it . '' . +0 (gastrulation; be to control in; the sea anemone) gastrulation be to control in the sea anemone Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (gastrulation; be to control; in the sea anemone) gastrulation be to control in the sea anemone Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (whether - catenin; helps; to control gastrulation in the sea anemone Nematostella vectensis) whether - catenin helps to control gastrulation in the sea anemone Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (whether - catenin; helps to control; gastrulation; Nematostella vectensis) whether - catenin helps to control gastrulation; Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +1 (Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues; tested; whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis) Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (catenin; also helps to control gastrulation in; the sea anemone Nematostella vectensis) catenin also helps to control gastrulation in the sea anemone Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (catenin; also helps to control; gastrulation) catenin also helps to control gastrulation Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (gastrulation; to be control in; the sea anemone Nematostella vectensis) gastrulation to be control in the sea anemone Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (catenin; also helps to control; gastrulation) catenin also helps to control gastrulation Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +1 (Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues; tested; whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis) Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (whether - catenin; helps; to control gastrulation in the sea anemone Nematostella vectensis) whether - catenin helps to control gastrulation in the sea anemone Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (whether - catenin; helps to control gastrulation; Nematostella vectensis) whether - catenin helps to control gastrulation Nematostella vectensis Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +0 (whether - catenin; helps to control; gastrulation) whether - catenin helps to control gastrulation Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether - catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . +1 (Battaramulla; has always been an adjunct to; Kotte) Battaramulla has always been an adjunct to Kotte Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +1 (Kotte; lay on; the opposite side of the Diyawanna Oya) Kotte lay on the opposite side of the Diyawanna Oya Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +1 (Battaramulla; has always been an adjunct; to Kotte) Battaramulla has always been an adjunct to Kotte Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +1 (Kotte; lay; on the opposite side of the Diyawanna Oya) Kotte lay on the opposite side of the Diyawanna Oya Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +1 (Battaramulla; has been; an adjunct to Kotte; always) Battaramulla has been an adjunct to Kotte; always Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +1 (Kotte; lay on; the opposite side) Kotte lay on the opposite side Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +1 (Battaramulla; has been an adjunct to Kotte; always) Battaramulla has been an adjunct to Kotte always Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +1 (Battaramulla; has been; an adjunct to Kotte) Battaramulla has been an adjunct to Kotte Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . +0 (Bear; in mind; that such genomic differences) Bear in mind that such genomic differences Bear in mind that such genomic differences -- and whatever derived phenotypic traits they code for -- separate humans from other living apes . +0 (they; code for; separate humans) they code for separate humans Bear in mind that such genomic differences -- and whatever derived phenotypic traits they code for -- separate humans from other living apes . +0 (they; code; for separate humans) they code for separate humans Bear in mind that such genomic differences -- and whatever derived phenotypic traits they code for -- separate humans from other living apes . +0 (whatever derived phenotypic traits; code; for -- separate humans from other living apes) whatever derived phenotypic traits code for -- separate humans from other living apes Bear in mind that such genomic differences -- and whatever derived phenotypic traits they code for -- separate humans from other living apes . +0 (such genomic differences; derived; phenotypic traits) such genomic differences derived phenotypic traits Bear in mind that such genomic differences -- and whatever derived phenotypic traits they code for -- separate humans from other living apes . +0 (whatever derived phenotypic traits; code; for -- separate humans from other living apes) whatever derived phenotypic traits code for -- separate humans from other living apes Bear in mind that such genomic differences -- and whatever derived phenotypic traits they code for -- separate humans from other living apes . +1 (deer mice; must constantly generate; metabolic heat) deer mice must constantly generate metabolic heat Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (deer mice; lose rapidly; body heat) deer mice lose rapidly body heat Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (deer mice; lose body heat rapidly because of; the high surface-to-volume ratio that goes with small size) deer mice lose body heat rapidly because of the high surface-to-volume ratio that goes with small size Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (the high surface-to-volume ratio; goes with; small size) the high surface-to-volume ratio goes with small size Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (deer mice; lose body heat rapidly because; of the high surface-to-volume ratio that goes with small size) deer mice lose body heat rapidly because of the high surface-to-volume ratio that goes with small size Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (deer mice; must constantly generate metabolic heat to maintain; body temperature) deer mice must constantly generate metabolic heat to maintain body temperature Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (deer mice; lose; body heat) deer mice lose body heat Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +0 (body heat; must constantly generate; metabolic heat) body heat must constantly generate metabolic heat Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (the high surface-to-volume ratio; goes; with small size) the high surface-to-volume ratio goes with small size Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (deer mice; must constantly generate metabolic heat to maintain; body temperature) deer mice must constantly generate metabolic heat to maintain body temperature Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . +1 (Beecher; began; collecting fossils) Beecher began collecting fossils Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +0 (his family; to northwestern; Pennsylvania) his family to northwestern Pennsylvania Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (his family; moved; to northwestern Pennsylvania) his family moved to northwestern Pennsylvania Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began; collecting fossils from local sandstones and shales) Beecher began collecting fossils from local sandstones and shales Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began collecting; fossils; from local sandstones and shales; when his family moved to northwestern Pennsylvania) Beecher began collecting fossils; from local sandstones and shales; when his family moved to northwestern Pennsylvania Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (his family; moved to; northwestern Pennsylvania) his family moved to northwestern Pennsylvania Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began collecting fossils from; local sandstones and shales) Beecher began collecting fossils from local sandstones and shales Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began collecting; fossils) Beecher began collecting fossils Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (fossils; be collecting from; local sandstones and shales) fossils be collecting from local sandstones and shales Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (his family; moved to; northwestern Pennsylvania) his family moved to northwestern Pennsylvania Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began collecting; fossils) Beecher began collecting fossils Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (his family; moved; to northwestern Pennsylvania) his family moved to northwestern Pennsylvania Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +0 (Beecher; began collecting fossils; when his family moved to northwestern Pennsylvania) Beecher began collecting fossils when his family moved to northwestern Pennsylvania Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began; collecting fossils from local sandstones and shales) Beecher began collecting fossils from local sandstones and shales Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began collecting; fossils) Beecher began collecting fossils Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (Beecher; began collecting fossils; from local sandstones and shales) Beecher began collecting fossils from local sandstones and shales Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . +1 (orders; were up a nominal 5 %; before adjustment) orders were up a nominal 5 % before adjustment Before adjustment for inflation , the association said , orders were up a nominal 5 % . +1 (orders; were up a nominal 5 % before; adjustment) orders were up a nominal 5 % before adjustment Before adjustment for inflation , the association said , orders were up a nominal 5 % . +1 (orders; were; up a nominal 5 %) orders were up a nominal 5 % Before adjustment for inflation , the association said , orders were up a nominal 5 % . +1 (the association; said; orders were up a nominal 5 %) the association said orders were up a nominal 5 % Before adjustment for inflation , the association said , orders were up a nominal 5 % . +1 (orders; were up; a nominal 5 %) orders were up a nominal 5 % Before adjustment for inflation , the association said , orders were up a nominal 5 % . +1 (the association; said; orders were up a nominal 5 %) the association said orders were up a nominal 5 % Before adjustment for inflation , the association said , orders were up a nominal 5 % . +1 (orders; were; up a nominal 5 %) orders were up a nominal 5 % Before adjustment for inflation , the association said , orders were up a nominal 5 % . +1 (Both radial glia and astrocytes; can also act as; stem cells , generating new neurons and glia) Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can also act; as stem cells , generating new neurons and glia) Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can act; as stem cells) Both radial glia and astrocytes can act as stem cells Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can act as stem cells generating; new neurons and glia) Both radial glia and astrocytes can act as stem cells generating new neurons and glia Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can also act as; stem cells) Both radial glia and astrocytes can also act as stem cells Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can also act generating; new neurons and glia) Both radial glia and astrocytes can also act generating new neurons and glia Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can also act as; stem cells) Both radial glia and astrocytes can also act as stem cells Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can act; as stem cells) Both radial glia and astrocytes can act as stem cells Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Both radial glia and astrocytes; can act as stem cells generating; new neurons and glia) Both radial glia and astrocytes can act as stem cells generating new neurons and glia Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . +1 (Bruno DeGol; be chairman; of DeGol Brothers Lumber) Bruno DeGol be chairman of DeGol Brothers Lumber Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (Bruno DeGol; be a director; of this bank-holding company) Bruno DeGol be a director of this bank-holding company Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (DeGol Brothers Lumber; be chairman; of Gallitzin , Pa.) DeGol Brothers Lumber be chairman of Gallitzin , Pa. Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (the board; be expanding; to 11 members) the board be expanding to 11 members Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (Bruno DeGol; be chairman of; DeGol Brothers Lumber) Bruno DeGol be chairman of DeGol Brothers Lumber Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (Bruno DeGol; be a director of; this bank-holding company) Bruno DeGol be a director of this bank-holding company Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (Bruno DeGol; was named; a director of this bank-holding company) Bruno DeGol was named a director of this bank-holding company Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (DeGol Brothers Lumber; be chairman of; Gallitzin , Pa.) DeGol Brothers Lumber be chairman of Gallitzin , Pa. Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (the board; be expanding to; 11 members) the board be expanding to 11 members Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +0 (Pa; was named a director of; this bank-holding company) Pa was named a director of this bank-holding company Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (Bruno DeGol; [is] chairman of; DeGol Brothers Lumber) Bruno DeGol [is] chairman of DeGol Brothers Lumber Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +0 (DeGol Brothers Lumber; be chairman of; Gallitzin) DeGol Brothers Lumber be chairman of Gallitzin Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (Bruno DeGol; [is] chairman of; DeGol Brothers Lumber) Bruno DeGol [is] chairman of DeGol Brothers Lumber Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (Bruno DeGol; [is] chairman of; DeGol Brothers Lumber) Bruno DeGol [is] chairman of DeGol Brothers Lumber Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa. , was named a director of this bank-holding company , expanding the board to 11 members . +1 (this approach called reverse genetics; poses; a new challenge) this approach called reverse genetics poses a new challenge But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +0 (the phenotype; be determining from; the genotype) the phenotype be determining from the genotype But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +0 (the phenotype; be determining; from the genotype) the phenotype be determining from the genotype But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +0 (a new challenge; determining; the phenotype; from the genotype) a new challenge determining the phenotype; from the genotype But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +1 (this approach; called; reverse genetics) this approach called reverse genetics But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +1 (this approach , called reverse genetics; poses; a new challenge : determining the phenotype from the genotype) this approach , called reverse genetics poses a new challenge : determining the phenotype from the genotype But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +1 (this approach; poses; a new challenge) this approach poses a new challenge But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +1 (this approach , called reverse genetics; poses; a new challenge : determining the phenotype from the genotype) this approach , called reverse genetics poses a new challenge : determining the phenotype from the genotype But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +0 (a new challenge; determining; the phenotype) a new challenge determining the phenotype But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +0 (a new challenge; determining the phenotype; from the genotype) a new challenge determining the phenotype from the genotype But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +1 (this approach; called; reverse genetics) this approach called reverse genetics But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . +1 (the Roman general Manius Acilius Glabrio; advanced to; Amfissa) the Roman general Manius Acilius Glabrio advanced to Amfissa But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (the Roman general Manius Acilius Glabrio; seized; Lamia) the Roman general Manius Acilius Glabrio seized Lamia But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (he; besieged; the town) he besieged the town But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (Rome; to rule; the Greek cities) Rome to rule the Greek cities But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Aetolians; realized; Rome) the Aetolians realized Rome But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Aetolians; realized to; Rome) the Aetolians realized to Rome But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (Rome; realized to; the Aetolians) Rome realized to the Aetolians But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Aetolians; realized of; Rome) the Aetolians realized of Rome But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (the Roman general Manius Acilius Glabrio; advanced; to Amfissa) the Roman general Manius Acilius Glabrio advanced to Amfissa But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Aetolians; realized; to Rome) the Aetolians realized to Rome But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (Rome; realized; to the Aetolians) Rome realized to the Aetolians But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Aetolians; realized; of Rome) the Aetolians realized of Rome But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (he; conquered plain; the Crissaean; Amfissa) he conquered plain the Crissaean; Amfissa But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (Rome; was; to rule the Greek cities) Rome was to rule the Greek cities But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Roman general Manius Acilius Glabrio; seized; Lamia and advanced to Amfissa; when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help) the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa; when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (Antiochus III; be asked for; help) Antiochus III be asked for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (he; besieged the town in; 190 BC) he besieged the town in 190 BC But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (Rome; was to rule; the Greek cities) Rome was to rule the Greek cities But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (he; conquered; the Crissaean plain) he conquered the Crissaean plain But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (Rome; asked; Antiochus III; for help) Rome asked Antiochus III; for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (the Aetolians; asked Antiochus III the Great of Syria for; help) the Aetolians asked Antiochus III the Great of Syria for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (the Aetolians; asked; Antiochus III) the Aetolians asked Antiochus III But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (Rome; was to rule; the Greek cities) Rome was to rule the Greek cities But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (he; conquered; the Crissaean plain) he conquered the Crissaean plain But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Roman general Manius Acilius Glabrio; seized Lamia and advanced to Amfissa; when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help) the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Roman general Manius Acilius Glabrio; seized; Lamia and advanced to Amfissa) the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (Rome; was; to rule the Greek cities) Rome was to rule the Greek cities But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Aetolians; realized; that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help) the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (the Aetolians; realized; that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help) the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (Rome; asked; Antiochus III) Rome asked Antiochus III But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (Rome; asked Antiochus III; for help) Rome asked Antiochus III for help But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (he; conquered the Crissaean plain; Amfissa) he conquered the Crissaean plain Amfissa But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (he; conquered plain; the Crissaean) he conquered plain the Crissaean But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (he; besieged the town; BC) he besieged the town BC But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (he; besieged the town; in 190) he besieged the town in 190 But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +0 (he; besieged; the town; in 190; BC) he besieged the town; in 190; BC But when the Aetolians realized that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . +1 (the squadron; was operating by; January 27 , 1944) the squadron was operating by January 27 , 1944 By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; was operating from; an airfield at Cape Torokina on Bougainville and from here) the squadron was operating from an airfield at Cape Torokina on Bougainville and from here By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (part; be taking at; Rabaul , the Japanese naval base at Kavieng , New Ireland and against) part be taking at Rabaul , the Japanese naval base at Kavieng , New Ireland and against By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (part; be taking in; the air strikes) part be taking in the air strikes By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; was operating; by January 27 , 1944) the squadron was operating by January 27 , 1944 By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; was operating; from an airfield at Cape Torokina on Bougainville and from here) the squadron was operating from an airfield at Cape Torokina on Bougainville and from here By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (part; be taking; at Rabaul , the Japanese naval base at Kavieng , New Ireland and against) part be taking at Rabaul , the Japanese naval base at Kavieng , New Ireland and against By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (part; be taking; in the air strikes) part be taking in the air strikes By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; taking; part; in the air strikes against the Japanese garrison at Rabaul) the squadron taking part; in the air strikes against the Japanese garrison at Rabaul By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; was operating; By January 27 , 1944) the squadron was operating By January 27 , 1944 By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (the squadron; began taking part in; the air) the squadron began taking part in the air By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (1944 the squadron; was operating from; an airfield) 1944 the squadron was operating from an airfield By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (the squadron; began taking; part) the squadron began taking part By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (the squadron; be an airfield at; Cape Torokina) the squadron be an airfield at Cape Torokina By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (the squadron; be an airfield on; Bougainville) the squadron be an airfield on Bougainville By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (1944 the squadron; was operating by; January 27) 1944 the squadron was operating by January 27 By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (part; be taking in; the air) part be taking in the air By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (Rabaul; be the Japanese naval base at; Kavieng) Rabaul be the Japanese naval base at Kavieng By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; was operating from; an airfield) the squadron was operating from an airfield By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (the air; strikes against; the Japanese garrison) the air strikes against the Japanese garrison By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (here the squadron; began taking part in; the air) here the squadron began taking part in the air By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; taking part; in the air strikes against the Japanese garrison at Rabaul) the squadron taking part in the air strikes against the Japanese garrison at Rabaul By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (the squadron; was operating; By January 27 , 1944) the squadron was operating By January 27 , 1944 By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +0 (the squadron; taking; part) the squadron taking part By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . +1 (his birth; is commemorated by; a plaque) his birth is commemorated by a plaque Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (Manchester; is now the Wellington Inn in; 1692) Manchester is now the Wellington Inn in 1692 Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (The Wellington Inn; is; a major tourist attraction) The Wellington Inn is a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (his birth; is commemorated; by a plaque) his birth is commemorated by a plaque Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (Manchester; is now the Wellington Inn; in 1692) Manchester is now the Wellington Inn in 1692 Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (his birth; is commemorated; by a plaque in the bar area) his birth is commemorated by a plaque in the bar area Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (Byrom; was born; at what is now the Wellington Inn , Manchester , in 1692) Byrom was born at what is now the Wellington Inn , Manchester , in 1692 Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (Byrom; is commemorated by; a plaque) Byrom is commemorated by a plaque Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (his birth; was born at; a major tourist attraction) his birth was born at a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (The Wellington Inn; is now; a major tourist attraction) The Wellington Inn is now a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (Byrom; was born at; a major tourist attraction) Byrom was born at a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (Byrom; was born in; a major tourist attraction) Byrom was born in a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (Byrom; was born on; a major tourist attraction) Byrom was born on a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (his birth; was born in; a major tourist attraction) his birth was born in a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (his birth; was born on; a major tourist attraction) his birth was born on a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (Byrom; is now; the Wellington Inn) Byrom is now the Wellington Inn Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (The Wellington Inn; is now; a major tourist attraction) The Wellington Inn is now a major tourist attraction Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (Byrom; was born; at what is now the Wellington Inn , Manchester , in 1692) Byrom was born at what is now the Wellington Inn , Manchester , in 1692 Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +1 (his birth; is commemorated; by a plaque in the bar area) his birth is commemorated by a plaque in the bar area Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . +0 (its common stock dividend; be reinstated at; a `` modest level) its common stock dividend be reinstated at a `` modest level CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +0 (its common stock dividend; be reinstated in; this year) its common stock dividend be reinstated in this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +0 (its common stock dividend; be reinstated; at a `` modest level) its common stock dividend be reinstated at a `` modest level CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +0 (its common stock dividend; be reinstated; in this year) its common stock dividend be reinstated in this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (management; would recommend; to its board; today; that its common stock dividend be reinstated at a `` modest level '' later this year) management would recommend to its board; today; that its common stock dividend be reinstated at a `` modest level '' later this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (CMS ENERGY Corp; said; management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year) CMS ENERGY Corp said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +0 (its common stock dividend; be reinstated; at a `` modest level; later this year) its common stock dividend be reinstated at a `` modest level; later this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (management; would recommend to; its board) management would recommend to its board CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +0 (CMS ENERGY Corp.; said; management) CMS ENERGY Corp. said management CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +0 (management; would recommend to; its board today) management would recommend to its board today CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (CMS ENERGY Corp; said; management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year) CMS ENERGY Corp said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +0 (its common stock dividend; be reinstated; later this year) its common stock dividend be reinstated later this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (management; would recommend to its board; today) management would recommend to its board today CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (management; would recommend to its board; that its common stock dividend be reinstated at a `` modest level '' later this year) management would recommend to its board that its common stock dividend be reinstated at a `` modest level '' later this year CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (management; would recommend; to its board) management would recommend to its board CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a `` modest level '' later this year . +1 (Capillaries; are usually filled to; capacity) Capillaries are usually filled to capacity Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (blood; is diverted from; one destination) blood is diverted from one destination Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (the blood supply; varies at; many other sites) the blood supply varies at many other sites Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (the blood supply; varies over; time) the blood supply varies over time Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (Capillaries; are usually filled; to capacity) Capillaries are usually filled to capacity Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (blood; is diverted; from one destination) blood is diverted from one destination Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (the blood supply; varies; at many other sites) the blood supply varies at many other sites Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (the blood supply; varies; over time) the blood supply varies over time Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (Capillaries in the brain , heart , kidneys , and liver; are filled; to capacity; usually) Capillaries in the brain , heart , kidneys , and liver are filled to capacity; usually Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (the blood supply; varies; over time; as blood is diverted from one destination to another; at many other sites) the blood supply varies over time; as blood is diverted from one destination to another; at many other sites Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (Capillaries in the brain , heart , kidneys , and liver; are usually filled to; capacity) Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +0 (the blood supply; varies as; blood) the blood supply varies as blood Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +0 (heart; be Capillaries in; the brain) heart be Capillaries in the brain Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +0 (kidneys; be Capillaries in; the brain) kidneys be Capillaries in the brain Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +0 (liver; are usually filled to; capacity) liver are usually filled to capacity Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +0 (Capillaries in the brain , heart , kidneys , and liver; are filled to capacity; usually) Capillaries in the brain , heart , kidneys , and liver are filled to capacity usually Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (Capillaries in the brain , heart , kidneys , and liver; are filled; to capacity) Capillaries in the brain , heart , kidneys , and liver are filled to capacity Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (the blood supply; varies; as blood is diverted from one destination to another) the blood supply varies as blood is diverted from one destination to another Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . +1 (she; was kidnapped in; Baghdad) she was kidnapped in Baghdad Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +1 (she; was kidnapped; in Baghdad) she was kidnapped in Baghdad Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +1 (Carroll; became; an international cause c l bre; when she was kidnapped in Baghdad on January 7) Carroll became an international cause c l bre; when she was kidnapped in Baghdad on January 7 Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +1 (she; was kidnapped on; January 7 , 2006) she was kidnapped on January 7 , 2006 Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +1 (Carroll; became; an international cause c l bre) Carroll became an international cause c l bre Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +1 (Carroll; became; an international cause c l bre) Carroll became an international cause c l bre Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +1 (Carroll; became an international cause c l bre; when she was kidnapped in Baghdad on January 7) Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +1 (Carroll; became; an international cause c l bre) Carroll became an international cause c l bre Carroll became an international cause c l bre when she was kidnapped in Baghdad on January 7 , 2006 . +0 (he; looked from; the bark of an oak tree) he looked from the bark of an oak tree Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (he; looked through; a microscope) he looked through a microscope Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (Cell walls; were first seen by; Robert Hooke) Cell walls were first seen by Robert Hooke Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (he; looked to; the bark of an oak tree) he looked to the bark of an oak tree Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +0 (he; looked; from the bark of an oak tree) he looked from the bark of an oak tree Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (he; looked; through a microscope) he looked through a microscope Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (Cell walls; were first seen; by Robert Hooke) Cell walls were first seen by Robert Hooke Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (he; looked; to the bark of an oak tree) he looked to the bark of an oak tree Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (he; looked; through a microscope; at dead cells from the bark of an oak tree) he looked through a microscope; at dead cells from the bark of an oak tree Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (Cell walls; were seen; by Robert Hooke; in 1665; as he looked through a microscope at dead cells from the bark of an oak tree; first) Cell walls were seen by Robert Hooke; in 1665; as he looked through a microscope at dead cells from the bark of an oak tree; first Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (he; looked at; dead cells) he looked at dead cells Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +0 (Cell walls; were; first) Cell walls were first Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +0 (first; be seen in; 1665) first be seen in 1665 Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +0 (he; looked to; dead cells) he looked to dead cells Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +0 (first; be seen by; Robert Hooke) first be seen by Robert Hooke Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (Cell walls; were seen; by Robert Hooke) Cell walls were seen by Robert Hooke Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +0 (Cell walls; were seen; first) Cell walls were seen first Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (Cell walls; were seen; in 1665) Cell walls were seen in 1665 Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (Cell walls; were seen; as he looked through a microscope at dead cells from the bark of an oak tree) Cell walls were seen as he looked through a microscope at dead cells from the bark of an oak tree Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (he; looked; at dead cells from the bark of an oak tree) he looked at dead cells from the bark of an oak tree Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . +1 (Cephalopods; are the only molluscs with; a closed circulatory system which the blood remains separate from fluid in the body cavity) Cephalopods are the only molluscs with a closed circulatory system which the blood remains separate from fluid in the body cavity Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (the blood; remains separate from; fluid) the blood remains separate from fluid Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (the blood; remains separate in; the body cavity) the blood remains separate in the body cavity Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +0 (the blood; remains; separate) the blood remains separate Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Cephalopods; are the only molluscs; with a closed circulatory system which the blood remains separate from fluid in the body cavity) Cephalopods are the only molluscs with a closed circulatory system which the blood remains separate from fluid in the body cavity Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (the blood; remains separate; from fluid) the blood remains separate from fluid Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (the blood; remains separate; in the body cavity) the blood remains separate in the body cavity Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +0 (Cephalopods; are; the only molluscs) Cephalopods are the only molluscs Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Cephalopods; are; the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity) Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Cephalopods; are the only molluscs with; a closed circulatory system) Cephalopods are the only molluscs with a closed circulatory system Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Cephalopods; are the only molluscs with; a closed circulatory system in which the blood remains separate from fluid in the body cavity) Cephalopods are the only molluscs with a closed circulatory system in which the blood remains separate from fluid in the body cavity Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Cephalopods; are; the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity) Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Cephalopods; are the only molluscs with; a closed circulatory system) Cephalopods are the only molluscs with a closed circulatory system Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Cephalopods; are the only molluscs with; a closed circulatory system) Cephalopods are the only molluscs with a closed circulatory system Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . +1 (Certain species; play; a pivotal role) Certain species play a pivotal role Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; play a pivotal role in; community dynamics) Certain species play a pivotal role in community dynamics Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (a pivotal role; be play in; community dynamics) a pivotal role be play in community dynamics Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; be an especially large impact on; the structure of entire communities) Certain species be an especially large impact on the structure of entire communities Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; play a pivotal role; in community dynamics) Certain species play a pivotal role in community dynamics Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (a pivotal role; be play; in community dynamics) a pivotal role be play in community dynamics Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; be an especially large impact; on the structure of entire communities) Certain species be an especially large impact on the structure of entire communities Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (they; are; highly abundant) they are highly abundant Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (they; play; a pivotal role; in community dynamics) they play a pivotal role; in community dynamics Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; have; an especially large impact on the structure of entire communities) Certain species have an especially large impact on the structure of entire communities Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; have; an especially large impact) Certain species have an especially large impact Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; have an especially large impact on; the structure) Certain species have an especially large impact on the structure Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (they; play a pivotal role in; community dynamics) they play a pivotal role in community dynamics Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Certain species; have; an especially large impact on the structure of entire communities) Certain species have an especially large impact on the structure of entire communities Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (they; are; highly abundant) they are highly abundant Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (they; play; a pivotal role) they play a pivotal role Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (they; play a pivotal role; in community dynamics) they play a pivotal role in community dynamics Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . +1 (Chesler; taught one of the first Women 's Studies classes at; Richmond College) Chesler taught one of the first Women 's Studies classes at Richmond College Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (Chesler; taught one of the first Women 's Studies classes during; the 1969-1970 school year) Chesler taught one of the first Women 's Studies classes during the 1969-1970 school year Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (Chesler; taught; one of the first Women 's Studies classes) Chesler taught one of the first Women 's Studies classes Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (one of the first Women 's Studies classes; be taught at; Richmond College) one of the first Women 's Studies classes be taught at Richmond College Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (one of the first Women 's Studies classes; be taught during; the 1969-1970 school year) one of the first Women 's Studies classes be taught during the 1969-1970 school year Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (Chesler; taught one of the first Women 's Studies classes; at Richmond College) Chesler taught one of the first Women 's Studies classes at Richmond College Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (Chesler; taught one of the first Women 's Studies classes; during the 1969-1970 school year) Chesler taught one of the first Women 's Studies classes during the 1969-1970 school year Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (one of the first Women 's Studies classes; be taught; at Richmond College) one of the first Women 's Studies classes be taught at Richmond College Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (one of the first Women 's Studies classes; be taught; during the 1969-1970 school year) one of the first Women 's Studies classes be taught during the 1969-1970 school year Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (Chesler; taught; one of the first Women 's Studies classes; at Richmond College in New York City; during the 1969-1970 school year) Chesler taught one of the first Women 's Studies classes; at Richmond College in New York City; during the 1969-1970 school year Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +0 (Chesler; taught one of; the first Women) Chesler taught one of the first Women Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +1 (Chesler; taught one of the first Women 's Studies classes; at Richmond College in New York City) Chesler taught one of the first Women 's Studies classes at Richmond College in New York City Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . +0 (Christie; made a splash in; Austen) Christie made a splash in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +1 (Christie; made a splash with; her extraordinary performance) Christie made a splash with her extraordinary performance Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Austen; be a modern twist on; Austen) Austen be a modern twist on Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +1 (Christie; made; a splash) Christie made a splash Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (a splash; be made in; Austen) a splash be made in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +1 (a splash; be made with; her extraordinary performance) a splash be made with her extraordinary performance Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Christie; made a splash; in Austen) Christie made a splash in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +1 (Christie; made a splash; with her extraordinary performance) Christie made a splash with her extraordinary performance Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Austen; be a modern twist; on Austen) Austen be a modern twist on Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (a splash; be made; in Austen) a splash be made in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +1 (a splash; be made; with her extraordinary performance) a splash be made with her extraordinary performance Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 ('s critically; acclaimed; miniseries Lost) 's critically acclaimed miniseries Lost Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Austen; [is] a modern twist on; Austen) Austen [is] a modern twist on Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (ITV 's critically acclaimed miniseries; Lost; in Austen) ITV 's critically acclaimed miniseries Lost in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Jane Bennet; acclaimed miniseries Lost in; Austen) Jane Bennet acclaimed miniseries Lost in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Jane Bennet; acclaimed; miniseries Lost) Jane Bennet acclaimed miniseries Lost Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (miniseries Lost; be acclaimed in; Austen) miniseries Lost be acclaimed in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Austen; be a modern twist on; Austen 's Pride) Austen be a modern twist on Austen 's Pride Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (ITV 's critically acclaimed miniseries; Lost; in Austen) ITV 's critically acclaimed miniseries Lost in Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Austen; [is] a modern twist on; Austen) Austen [is] a modern twist on Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +0 (Austen; [is] a modern twist on; Austen) Austen [is] a modern twist on Austen Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . +1 (Clarcor; be a maker; of packaging and filtration products) Clarcor be a maker of packaging and filtration products Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (the two companies; could n't agree; on terms of a definitive agreement) the two companies could n't agree on terms of a definitive agreement Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (Clarcor; be a maker of; packaging and filtration products) Clarcor be a maker of packaging and filtration products Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (the two companies; could n't agree on; terms of a definitive agreement) the two companies could n't agree on terms of a definitive agreement Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +0 (a maker; said; the two companies) a maker said the two companies Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (the two companies; could n't agree on; terms) the two companies could n't agree on terms Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (Clarcor; said; the two companies could n't agree on terms of a definitive agreement) Clarcor said the two companies could n't agree on terms of a definitive agreement Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (Clarcor; [is] a maker of; packaging and filtration products) Clarcor [is] a maker of packaging and filtration products Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (Clarcor; said; the two companies could n't agree on terms of a definitive agreement) Clarcor said the two companies could n't agree on terms of a definitive agreement Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (Clarcor; [is] a maker of; packaging and filtration products) Clarcor [is] a maker of packaging and filtration products Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (Clarcor; [is] a maker of; packaging and filtration products) Clarcor [is] a maker of packaging and filtration products Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . +1 (Coca-Cola Enterprises; blamed the lower volume on; its soft-drink prices which were about 3 % higher in the third quarter) Coca-Cola Enterprises blamed the lower volume on its soft-drink prices which were about 3 % higher in the third quarter Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +0 (Coca-Cola Enterprises; blamed; the lower volume) Coca-Cola Enterprises blamed the lower volume Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +1 (the lower volume; be blamed on; its soft-drink prices which were about 3 % higher in the third quarter) the lower volume be blamed on its soft-drink prices which were about 3 % higher in the third quarter Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +1 (Coca-Cola Enterprises; blamed the lower volume; on its soft-drink prices which were about 3 % higher in the third quarter) Coca-Cola Enterprises blamed the lower volume on its soft-drink prices which were about 3 % higher in the third quarter Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +1 (the lower volume; be blamed; on its soft-drink prices which were about 3 % higher in the third quarter) the lower volume be blamed on its soft-drink prices which were about 3 % higher in the third quarter Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +0 (the lower volume on its soft-drink prices; were; about 3 % higher; in the third quarter) the lower volume on its soft-drink prices were about 3 % higher; in the third quarter Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +1 (Coca-Cola Enterprises; blamed; the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter; on its soft-drink prices) Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter; on its soft-drink prices Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +0 (its soft-drink prices; were about; 3 %) its soft-drink prices were about 3 % Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +0 (the lower volume on its soft-drink prices; were; about 3 % higher) the lower volume on its soft-drink prices were about 3 % higher Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +0 (the lower volume on its soft-drink prices; were about 3 % higher; in the third quarter) the lower volume on its soft-drink prices were about 3 % higher in the third quarter Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +1 (Coca-Cola Enterprises; blamed; the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter) Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +0 (Coca-Cola Enterprises; blamed; on its soft-drink prices) Coca-Cola Enterprises blamed on its soft-drink prices Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . +0 (a phenomenon; Collectively called; cohesion) a phenomenon Collectively called cohesion Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +1 (the hydrogen bonds; hold together; the substance) the hydrogen bonds hold together the substance Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +1 (a phenomenon; called; cohesion) a phenomenon called cohesion Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +1 (the hydrogen bonds; Collectively hold together; the substance) the hydrogen bonds Collectively hold together the substance Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +0 (the hydrogen bonds; Collectively hold the substance together; a phenomenon called cohesion) the hydrogen bonds Collectively hold the substance together a phenomenon called cohesion Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +0 (the hydrogen bonds; Collectively hold together a phenomenon called cohesion; the substance) the hydrogen bonds Collectively hold together a phenomenon called cohesion the substance Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +1 (the hydrogen bonds; hold; the substance) the hydrogen bonds hold the substance Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +1 (the hydrogen bonds; Collectively hold together; the substance) the hydrogen bonds Collectively hold together the substance Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +1 (a phenomenon; called; cohesion) a phenomenon called cohesion Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . +0 (the transfer of organic matter; be Consider to; herbivores) the transfer of organic matter be Consider to herbivores Consider the transfer of organic matter from primary producers to herbivores , the primary consumers . +0 (the transfer of organic matter; be Consider; to herbivores) the transfer of organic matter be Consider to herbivores Consider the transfer of organic matter from primary producers to herbivores , the primary consumers . +0 (part; be the capital of; Puerto Rico) part be the capital of Puerto Rico Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +1 (Cordero; was born; Federico Arturo Cordero Salguero) Cordero was born Federico Arturo Cordero Salguero Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +0 (Cordero; be Federico Arturo Cordero Salguero in; R o Piedras) Cordero be Federico Arturo Cordero Salguero in R o Piedras Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +1 (Federico Arturo Cordero Salguero; was born in; R o Piedras) Federico Arturo Cordero Salguero was born in R o Piedras Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +0 (part; be the capital; of Puerto Rico) part be the capital of Puerto Rico Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +0 (Cordero; be Federico Arturo Cordero Salguero; in R o Piedras) Cordero be Federico Arturo Cordero Salguero in R o Piedras Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +1 (Federico Arturo Cordero Salguero; was born; in R o Piedras) Federico Arturo Cordero Salguero was born in R o Piedras Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +1 (Cordero; was born; Federico Arturo Cordero Salguero; in R o Piedras) Cordero was born Federico Arturo Cordero Salguero; in R o Piedras Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +0 (Cordero; was born Federico Arturo Cordero Salguero in; R) Cordero was born Federico Arturo Cordero Salguero in R Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +0 (Cordero; was born Federico Arturo Cordero Salguero at; R) Cordero was born Federico Arturo Cordero Salguero at R Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +0 (Cordero; was born Federico Arturo Cordero Salguero on; R) Cordero was born Federico Arturo Cordero Salguero on R Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +1 (the San Juan; be the capital of; Puerto Rico) the San Juan be the capital of Puerto Rico Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +1 (Cordero; was born; in R o Piedras) Cordero was born in R o Piedras Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +0 (a town; is now; part) a town is now part Cordero was born Federico Arturo Cordero Salguero in R o Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . +1 (Cordis; sold its pacemaker operations two years ago; to Telectronics Holding Ltd. of Australia) Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (its pacemaker operations; be sold two years ago; to Telectronics Holding Ltd. of Australia) its pacemaker operations be sold two years ago to Telectronics Holding Ltd. of Australia Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (Cordis; sold its pacemaker operations two years ago to; Telectronics Holding Ltd. of Australia) Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (Cordis; sold two years ago; its pacemaker operations) Cordis sold two years ago its pacemaker operations Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (its pacemaker operations; be sold two years ago to; Telectronics Holding Ltd. of Australia) its pacemaker operations be sold two years ago to Telectronics Holding Ltd. of Australia Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (Cordis; sold; its pacemaker operations; two years ago; to Telectronics Holding Ltd. of Australia) Cordis sold its pacemaker operations; two years ago; to Telectronics Holding Ltd. of Australia Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (Cordis; sold; its pacemaker operations) Cordis sold its pacemaker operations Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (Cordis; sold its pacemaker operations; to Telectronics Holding Ltd. of Australia) Cordis sold its pacemaker operations to Telectronics Holding Ltd. of Australia Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (Cordis; sold; its pacemaker operations) Cordis sold its pacemaker operations Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (Cordis; sold its pacemaker operations; two years ago) Cordis sold its pacemaker operations two years ago Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . +1 (ShareData; Currently has; about 4.1 million common shares outstanding) ShareData Currently has about 4.1 million common shares outstanding Currently , ShareData has about 4.1 million common shares outstanding . +1 (ShareData; has; about 4.1 million common shares outstanding; Currently) ShareData has about 4.1 million common shares outstanding; Currently Currently , ShareData has about 4.1 million common shares outstanding . +0 (ShareData; has about; 4.1 million common shares) ShareData has about 4.1 million common shares Currently , ShareData has about 4.1 million common shares outstanding . +1 (ShareData; has; about 4.1 million common shares outstanding) ShareData has about 4.1 million common shares outstanding Currently , ShareData has about 4.1 million common shares outstanding . +1 (ShareData; has about 4.1 million common shares outstanding; Currently) ShareData has about 4.1 million common shares outstanding Currently Currently , ShareData has about 4.1 million common shares outstanding . +0 (Nebraska , United States; be eleven townships in; Thurston County) Nebraska , United States be eleven townships in Thurston County Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +1 (Thurston County; be eleven townships in; Nebraska , United States) Thurston County be eleven townships in Nebraska , United States Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +0 (Dawes Township; is; one of eleven townships) Dawes Township is one of eleven townships Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +0 (Nebraska , United States; be eleven townships; in Thurston County) Nebraska , United States be eleven townships in Thurston County Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +1 (Thurston County; be eleven townships; in Nebraska , United States) Thurston County be eleven townships in Nebraska , United States Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +0 (Dawes Township; is one of; eleven townships) Dawes Township is one of eleven townships Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +1 (Dawes Township; is; one of eleven townships in Thurston County , Nebraska , United States) Dawes Township is one of eleven townships in Thurston County , Nebraska , United States Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +0 (Dawes Township; is one of; eleven townships) Dawes Township is one of eleven townships Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +1 (Dawes Township; be eleven townships in; Thurston County) Dawes Township be eleven townships in Thurston County Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +0 (Thurston County; be eleven townships in; United States) Thurston County be eleven townships in United States Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +1 (Dawes Township; is; one of eleven townships in Thurston County , Nebraska , United States) Dawes Township is one of eleven townships in Thurston County , Nebraska , United States Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +0 (Dawes Township; is one of; eleven townships) Dawes Township is one of eleven townships Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +0 (Dawes Township; is one of; eleven townships) Dawes Township is one of eleven townships Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . +1 (Dell Curry; is the father of; Stephen Curry) Dell Curry is the father of Stephen Curry Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Stephen Curry; played basketball at; Davidson College) Stephen Curry played basketball at Davidson College Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (basketball; be played at; Davidson College) basketball be played at Davidson College Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Stephen Curry; played; basketball) Stephen Curry played basketball Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Stephen Curry; was chosen 7th overall by; the Golden State Warriors) Stephen Curry was chosen 7th overall by the Golden State Warriors Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Dell Curry; is; the father of Stephen Curry) Dell Curry is the father of Stephen Curry Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Dell Curry; is the father; of Stephen Curry) Dell Curry is the father of Stephen Curry Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Stephen Curry; played basketball; at Davidson College) Stephen Curry played basketball at Davidson College Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (basketball; be played; at Davidson College) basketball be played at Davidson College Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Stephen Curry; was chosen 7th overall; by the Golden State Warriors) Stephen Curry was chosen 7th overall by the Golden State Warriors Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Davidson; was chosen; 7th overall) Davidson was chosen 7th overall Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Stephen Curry; played; basketball; at Davidson College in Davidson , North Carolina) Stephen Curry played basketball; at Davidson College in Davidson , North Carolina Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Dell Curry; is overall; the father of Stephen Curry) Dell Curry is overall the father of Stephen Curry Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +0 (Dell Curry; was chosen; ) Dell Curry was chosen Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +0 (Dell Curry; was chosen 7th overall by; the Golden State Warriors) Dell Curry was chosen 7th overall by the Golden State Warriors Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +0 (Dell Curry; was chosen; 7th overall) Dell Curry was chosen 7th overall Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +0 (Dell Curry; was chosen 7th overall in; the 2009 NBA Draft) Dell Curry was chosen 7th overall in the 2009 NBA Draft Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +0 (North Carolina; be Davidson College in; Davidson) North Carolina be Davidson College in Davidson Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Stephen Curry; played basketball; at Davidson College in Davidson , North Carolina) Stephen Curry played basketball at Davidson College in Davidson , North Carolina Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +1 (Dell Curry; is overall; the father of Stephen Curry) Dell Curry is overall the father of Stephen Curry Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . +0 (Denis C. Smith; was named; for this chemicals concern) Denis C. Smith was named for this chemicals concern Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . +1 (Denis C. Smith; was named; to the new post of vice president of world-wide advanced materials operations) Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . +0 (new; post; of vice president of world-wide advanced materials operations) new post of vice president of world-wide advanced materials operations Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . +0 (Denis C. Smith; was named for; this chemicals concern) Denis C. Smith was named for this chemicals concern Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . +1 (Denis C. Smith; was named to; the new post of vice president of world-wide advanced materials operations) Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . +0 (new; post of; vice president of world-wide advanced materials operations) new post of vice president of world-wide advanced materials operations Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . +1 (Denis C. Smith; was named to; the new post) Denis C. Smith was named to the new post Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . +1 (Dhoni; completed his 4,000 runs in; ODIs) Dhoni completed his 4,000 runs in ODIs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (Dhoni; completed; his 4,000 runs) Dhoni completed his 4,000 runs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +0 (R. Premadasa Stadium; be Colombo on; Saturday) R. Premadasa Stadium be Colombo on Saturday Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (his 4,000 runs; be completed in; ODIs) his 4,000 runs be completed in ODIs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (Dhoni; completed his 4,000 runs; in ODIs) Dhoni completed his 4,000 runs in ODIs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +0 (R. Premadasa Stadium; be Colombo; on Saturday) R. Premadasa Stadium be Colombo on Saturday Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (his 4,000 runs; be completed; in ODIs) his 4,000 runs be completed in ODIs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (he; was; on 4; during his innings of 23) he was on 4; during his innings of 23 Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday; completed; his 4,000 runs in ODIs) Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday completed his 4,000 runs in ODIs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (he; was on; 4) he was on 4 Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +0 (he; was during; his innings of 23) he was during his innings of 23 Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (he; was at; R. Premadasa Stadium) he was at R. Premadasa Stadium Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +0 (Colombo; completed; his 4,000 runs) Colombo completed his 4,000 runs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (he; was on; 4) he was on 4 Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday; completed; his 4,000 runs in ODIs) Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday completed his 4,000 runs in ODIs Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (he; was; on 4) he was on 4 Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (he; was on 4; during his innings of 23) he was on 4 during his innings of 23 Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R. Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . +1 (Differentiated cells; generally do not divide in; culture) Differentiated cells generally do not divide in culture Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +1 (Differentiated cells; generally do not divide; in culture) Differentiated cells generally do not divide in culture Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +1 (Differentiated cells from animals; generally do not divide; in culture) Differentiated cells from animals generally do not divide in culture Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +1 (Differentiated cells from animals; generally do not divide develop; into the multiple cell types of a new organism) Differentiated cells from animals generally do not divide develop into the multiple cell types of a new organism Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +0 (animals; generally do not divide in; culture) animals generally do not divide in culture Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +0 (culture; develop into; the multiple cell types) culture develop into the multiple cell types Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +1 (Differentiated cells from animals; generally do not divide; in culture) Differentiated cells from animals generally do not divide in culture Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +1 (Differentiated cells from animals; generally do not divide develop; into the multiple cell types of a new organism) Differentiated cells from animals generally do not divide develop into the multiple cell types of a new organism Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . +1 (Prudential-Bache Securities; to reduce; its 1989 and 1990 earnings estimates) Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . +0 (the company; earnings for; the quarter) the company earnings for the quarter Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . +0 (the company; earnings; for the quarter) the company earnings for the quarter Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . +1 (Disappointment with the company 's earnings for the quarter; led; Prudential-Bache Securities; to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report) Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities; to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . +0 (the quarter; led; Prudential-Bache Securities) the quarter led Prudential-Bache Securities Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . +1 (Disappointment with the company 's earnings for the quarter; led Prudential - Bache Securities; to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report) Disappointment with the company 's earnings for the quarter led Prudential - Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . +1 (Disappointment with the company 's earnings for the quarter; led; Prudential-Bache Securities) Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . +1 (Dominion Textile Inc. holders; adopted a shareholder-rights plan at; the annual meeting) Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . +1 (Dominion Textile Inc. holders; adopted; a shareholder-rights plan) Dominion Textile Inc. holders adopted a shareholder-rights plan Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . +1 (a shareholder-rights plan; be adopted at; the annual meeting) a shareholder-rights plan be adopted at the annual meeting Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . +1 (Dominion Textile Inc. holders; adopted a shareholder-rights plan; at the annual meeting) Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . +1 (a shareholder-rights plan; be adopted; at the annual meeting) a shareholder-rights plan be adopted at the annual meeting Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . +0 (he; had during; his freshman year) he had during his freshman year During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (he; is considered one of the greatest freshmen seasons in; NCAA Division I-A history) he is considered one of the greatest freshmen seasons in NCAA Division I-A history During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (the Buckeyes; be to lead to; a national championship) the Buckeyes be to lead to a national championship During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (one of the greatest freshmen seasons; is considered in; NCAA Division I-A history) one of the greatest freshmen seasons is considered in NCAA Division I-A history During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (he; had; during his freshman year) he had during his freshman year During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (he; is considered one of the greatest freshmen seasons; in NCAA Division I-A history) he is considered one of the greatest freshmen seasons in NCAA Division I-A history During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (the Buckeyes; be to lead; to a national championship) the Buckeyes be to lead to a national championship During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (one of the greatest freshmen seasons; is considered; in NCAA Division I-A history) one of the greatest freshmen seasons is considered in NCAA Division I-A history During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; had; what is considered one of the greatest freshmen seasons in NCAA Division I-A history; During his freshman year at Ohio State University) he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history; During his freshman year at Ohio State University During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; helped; to lead the Buckeyes to a national championship; During his freshman year at Ohio State University) he helped to lead the Buckeyes to a national championship; During his freshman year at Ohio State University During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; helped to lead the Buckeyes to; a national championship) he helped to lead the Buckeyes to a national championship During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (the Buckeyes; to lead to be; a national championship) the Buckeyes to lead to be a national championship During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; helped to lead; the Buckeyes) he helped to lead the Buckeyes During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (he; is considered one of; the greatest freshmen seasons) he is considered one of the greatest freshmen seasons During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (the greatest freshmen seasons; helped to lead; the Buckeyes) the greatest freshmen seasons helped to lead the Buckeyes During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; had; what is considered one of the greatest freshmen seasons in NCAA Division I-A history) he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; had what is considered one of the greatest freshmen seasons in NCAA Division I - A history; During his freshman year at Ohio State University) he had what is considered one of the greatest freshmen seasons in NCAA Division I - A history During his freshman year at Ohio State University During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; helped to lead the Buckeyes to a national championship; During his freshman year at Ohio State University) he helped to lead the Buckeyes to a national championship During his freshman year at Ohio State University During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +1 (he; helped; to lead the Buckeyes to a national championship) he helped to lead the Buckeyes to a national championship During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . +0 (he; was involved 57 below; the Berlin Wall) he was involved 57 below the Berlin Wall During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved 57 during; his time) he was involved 57 during his time During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved; 57) he was involved 57 During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (57; was involved below; the Berlin Wall) 57 was involved below the Berlin Wall During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (57; was involved during; his time) 57 was involved during his time During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (57; was involved in; the building of the 145 m long '' Tunnel) 57 was involved in the building of the 145 m long '' Tunnel During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved 57 of; the 145 m long '' Tunnel) he was involved 57 of the 145 m long '' Tunnel During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved 57; below the Berlin Wall) he was involved 57 below the Berlin Wall During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved 57; during his time) he was involved 57 during his time During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (the Berlin Wall; was the escape route; of 57 people) the Berlin Wall was the escape route of 57 people During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (57; was involved; below the Berlin Wall) 57 was involved below the Berlin Wall During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (57; was involved; during his time) 57 was involved during his time During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (57; was involved; in the building of the 145 m long '' Tunnel) 57 was involved in the building of the 145 m long '' Tunnel During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved 57; of the 145 m long '' Tunnel) he was involved 57 of the 145 m long '' Tunnel During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved in; the building) he was involved in the building During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (which; was the escape route of; 57 people) which was the escape route of 57 people During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +1 (he; was involved; in the building of the 145 m long; During his time as a student in Berlin) he was involved in the building of the 145 m long; During his time as a student in Berlin During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved in; the building of the 145 m) he was involved in the building of the 145 m During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (the Berlin Wall; was; the escape route) the Berlin Wall was the escape route During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (the Berlin Wall; was the escape route of; 57 people) the Berlin Wall was the escape route of 57 people During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (the Berlin Wall; was the escape route of 57 people from; East Berlin) the Berlin Wall was the escape route of 57 people from East Berlin During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved during; his time) he was involved during his time During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved of; the 145 m) he was involved of the 145 m During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (the Berlin Wall; was the escape route of 57 people to; the West) the Berlin Wall was the escape route of 57 people to the West During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved below; the Berlin Wall) he was involved below the Berlin Wall During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved in the building of the 145 m long; During his time as a student in Berlin) he was involved in the building of the 145 m long During his time as a student in Berlin During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (he; was involved; in the building of the 145 m long) he was involved in the building of the 145 m long During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (which; was the escape route of; 57 people) which was the escape route of 57 people During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (which; was the escape route of; 57 people) which was the escape route of 57 people During his time as a student in Berlin , he was involved in the building of the 145 m long '' Tunnel 57 '' below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . +0 (it; appeared during; the period) it appeared during the period During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . +0 (it; appeared to; Flemming) it appeared to Flemming During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . +0 (it; appeared; during the period) it appeared during the period During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . +0 (it; appeared; to Flemming) it appeared to Flemming During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . +0 (it; appeared; to Flemming; During the period between one cell division and the next) it appeared to Flemming; During the period between one cell division and the next During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . +0 (it; appeared; During the period between one cell division and the next) it appeared During the period between one cell division and the next During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . +0 (Each note; is being offered at; maturity) Each note is being offered at maturity Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +0 (an 8 % yield; be representing to; maturity) an 8 % yield be representing to maturity Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +0 (Each note; is being offered; at maturity) Each note is being offered at maturity Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +0 (an 8 % yield; be representing; to maturity) an 8 % yield be representing to maturity Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +1 (Each note; is being offered; at $ 308.32 per $ 1,000 principal amount; at maturity; representing an 8 % yield to maturity) Each note is being offered at $ 308.32 per $ 1,000 principal amount; at maturity; representing an 8 % yield to maturity Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +1 (Each note; is being offered at; $ 308.32) Each note is being offered at $ 308.32 Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +1 (Each note; is being offered; at $ 308.32 per $ 1,000 principal amount) Each note is being offered at $ 308.32 per $ 1,000 principal amount Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +0 (Each note; is being offered; representing an 8 % yield to maturity) Each note is being offered representing an 8 % yield to maturity Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . +1 (Cordis; be a maker; of medical devices) Cordis be a maker of medical devices Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (felony and misdemeanor charges; be related; to the pacemakers) felony and misdemeanor charges be related to the pacemakers Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +0 (Cordis; agreed; in this year) Cordis agreed in this year Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; be a maker of; medical devices) Cordis be a maker of medical devices Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (felony and misdemeanor charges; be related to; the pacemakers) felony and misdemeanor charges be related to the pacemakers Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +0 (Cordis; agreed in; this year) Cordis agreed in this year Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (a maker; agreed to plead guilty to; felony and misdemeanor charges) a maker agreed to plead guilty to felony and misdemeanor charges Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (felony and misdemeanor charges; related; to the pacemakers) felony and misdemeanor charges related to the pacemakers Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed to plead; guilty; to felony and misdemeanor charges) Cordis agreed to plead guilty; to felony and misdemeanor charges Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed to to pay; the government; about $ 5.7 million in fines and other costs) Cordis agreed to to pay the government; about $ 5.7 million in fines and other costs Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; [is] a maker of; medical devices) Cordis [is] a maker of medical devices Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed; to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs; Earlier this year) Cordis agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs; Earlier this year Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs; Earlier this year) Cordis agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs Earlier this year Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed; to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs) Cordis agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed to plead; guilty) Cordis agreed to plead guilty Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed to plead guilty; to felony and misdemeanor charges) Cordis agreed to plead guilty to felony and misdemeanor charges Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed to to pay; the government) Cordis agreed to to pay the government Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; agreed to to pay the government; about $ 5.7 million in fines and other costs) Cordis agreed to to pay the government about $ 5.7 million in fines and other costs Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (felony and misdemeanor charges; related; to the pacemakers) felony and misdemeanor charges related to the pacemakers Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; [is] a maker of; medical devices) Cordis [is] a maker of medical devices Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +1 (Cordis; [is] a maker of; medical devices) Cordis [is] a maker of medical devices Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . +0 (A.P. Green; told; the partnership it is n't for sale) A.P. Green told the partnership it is n't for sale East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . +0 (East Rock Partners; said to; A.P. Green) East Rock Partners said to A.P. Green East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . +0 (A.P. Green; said to; East Rock Partners) A.P. Green said to East Rock Partners East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . +0 (East Rock Partners; said; to A.P. Green) East Rock Partners said to A.P. Green East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . +0 (A.P. Green; said; to East Rock Partners) A.P. Green said to East Rock Partners East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . +0 (it; be a bid; for the company) it be a bid for the company East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . +0 (Conservative Party; be member for; Carleton) Conservative Party be member for Carleton Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +0 (Carleton; be member for; Conservative Party) Carleton be member for Conservative Party Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Progressive; be Conservative Party member for; Carleton) Progressive be Conservative Party member for Carleton Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +0 (Conservative Party; be member; for Carleton) Conservative Party be member for Carleton Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +0 (Carleton; be member; for Conservative Party) Carleton be member for Conservative Party Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Progressive; be Conservative Party member; for Carleton) Progressive be Conservative Party member for Carleton Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Edison Stairs; was elected; as the Progressive Conservative Party member for Carleton; in 1960) Edison Stairs was elected as the Progressive Conservative Party member for Carleton; in 1960 Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Edison Stairs; was elected as; the Progressive Conservative Party member) Edison Stairs was elected as the Progressive Conservative Party member Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +0 (Progressive Conservative Party; be member for; Carleton) Progressive Conservative Party be member for Carleton Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +0 (1960; be the Progressive Conservative Party member in; 1963) 1960 be the Progressive Conservative Party member in 1963 Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Edison Stairs; was elected as; the Progressive Conservative Party member) Edison Stairs was elected as the Progressive Conservative Party member Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Edison Stairs; was elected; as the Progressive Conservative Party member for Carleton) Edison Stairs was elected as the Progressive Conservative Party member for Carleton Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Edison Stairs; was elected as the Progressive Conservative Party member for Carleton; in 1960) Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 Edison Stairs was elected as the Progressive Conservative Party member for Carleton in 1960 , 1963 , and 1967 , sitting as a member of the Official Opposition . +1 (Electromagnetic energy; travels in; rhythmic waves analogous) Electromagnetic energy travels in rhythmic waves analogous Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . +1 (Electromagnetic energy; travels; in rhythmic waves analogous) Electromagnetic energy travels in rhythmic waves analogous Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . +1 (a pebble; be dropping; into a pond) a pebble be dropping into a pond Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . +0 (energy; travels; in rhythmic waves analogous to those) energy travels in rhythmic waves analogous to those Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . +0 (those; created; ) those created Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . +0 (a pebble; be dropping into; a pond) a pebble be dropping into a pond Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . +0 (energy; travels; in rhythmic waves analogous to those) energy travels in rhythmic waves analogous to those Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . +1 (prices; Elsewhere surged for; a second day) prices Elsewhere surged for a second day Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; Elsewhere surged in; Frankfurt) prices Elsewhere surged in Frankfurt Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +0 (prices; closed in; Zurich , Stockholm and Amsterdam) prices closed in Zurich , Stockholm and Amsterdam Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; were broadly lower in; Milan , Paris and Brussels) prices were broadly lower in Milan , Paris and Brussels Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; Elsewhere surged; for a second day) prices Elsewhere surged for a second day Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; Elsewhere surged; in Frankfurt) prices Elsewhere surged in Frankfurt Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +0 (prices; closed; in Zurich , Stockholm and Amsterdam) prices closed in Zurich , Stockholm and Amsterdam Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; were broadly lower; in Milan , Paris and Brussels) prices were broadly lower in Milan , Paris and Brussels Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; were; broadly lower; in Milan , Paris and Brussels) prices were broadly lower; in Milan , Paris and Brussels Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; surged; for a second day in Frankfurt; Elsewhere) prices surged for a second day in Frankfurt; Elsewhere Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; closed higher; in Zurich , Stockholm and Amsterdam; Elsewhere) prices closed higher in Zurich , Stockholm and Amsterdam; Elsewhere Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +0 (Frankfurt; were broadly lower in; Milan , Paris and Brussels) Frankfurt were broadly lower in Milan , Paris and Brussels Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +0 (a second day; closed higher in; Zurich , Stockholm and Amsterdam) a second day closed higher in Zurich , Stockholm and Amsterdam Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; surged for; a second day) prices surged for a second day Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; surged; for a second day in Frankfurt) prices surged for a second day in Frankfurt Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; closed higher; in Zurich , Stockholm and Amsterdam) prices closed higher in Zurich , Stockholm and Amsterdam Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; surged; Elsewhere) prices surged Elsewhere Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; closed higher; Elsewhere) prices closed higher Elsewhere Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (prices; were; broadly lower) prices were broadly lower Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . +1 (operating profit; declined 35 %; from $ 25.2 million , or 31 cents) operating profit declined 35 % from $ 25.2 million , or 31 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (operating profit; declined 35 %; to $ 16.4 million , or 21 cents) operating profit declined 35 % to $ 16.4 million , or 21 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +0 (35 %; be declined; from $ 25.2 million , or 31 cents) 35 % be declined from $ 25.2 million , or 31 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +0 (35 %; be declined; to $ 16.4 million , or 21 cents) 35 % be declined to $ 16.4 million , or 21 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (operating profit; declined 35 % from; $ 25.2 million , or 31 cents) operating profit declined 35 % from $ 25.2 million , or 31 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (operating profit; declined 35 % to; $ 16.4 million , or 21 cents) operating profit declined 35 % to $ 16.4 million , or 21 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (operating profit; declined; 35 %) operating profit declined 35 % Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +0 (35 %; be declined from; $ 25.2 million , or 31 cents) 35 % be declined from $ 25.2 million , or 31 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +0 (35 %; be declined to; $ 16.4 million , or 21 cents) 35 % be declined to $ 16.4 million , or 21 cents Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (operating profit; declined; 35 %; to $ 16.4 million , or 21 cents a share; from $ 25.2 million , or 31 cents a share) operating profit declined 35 %; to $ 16.4 million , or 21 cents a share; from $ 25.2 million , or 31 cents a share Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (operating profit; declined 35 %; to $ 16.4 million , or 21 cents a share) operating profit declined 35 % to $ 16.4 million , or 21 cents a share Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (operating profit; declined 35 %; from $ 25.2 million , or 31 cents a share) operating profit declined 35 % from $ 25.2 million , or 31 cents a share Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . +1 (Trebinje; be the city in; entity Republika Srpska) Trebinje be the city in entity Republika Srpska FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (Trebinje; be the city of; entity Republika Srpska) Trebinje be the city of entity Republika Srpska FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (Trebinje; be the city; in entity Republika Srpska) Trebinje be the city in entity Republika Srpska FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (Trebinje; be the city; of entity Republika Srpska) Trebinje be the city of entity Republika Srpska FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is a football club from; the city) FK Leotar is a football club from the city FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is; a football club from the city of Trebinje) FK Leotar is a football club from the city of Trebinje FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is a football club from; the city) FK Leotar is a football club from the city FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is a football club from; the city of Trebinje) FK Leotar is a football club from the city of Trebinje FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is; a football club) FK Leotar is a football club FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is; a football club from the city of Trebinje) FK Leotar is a football club from the city of Trebinje FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is a football club from; the city) FK Leotar is a football club from the city FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (FK Leotar; is a football club from; the city) FK Leotar is a football club from the city FK Leotar is a football club from the city of Trebinje , entity Republika Srpska , of country Bosnia and Herzegovina . +1 (Imperial Cup Corp.; a closely held maker of; paper cups) Imperial Cup Corp. a closely held maker of paper cups Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (it; completed; the previously announced purchase of Imperial Cup Corp.) it completed the previously announced purchase of Imperial Cup Corp. Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +0 (a closely held maker of paper cups; the previously announced purchase of; Imperial Cup Corp.) a closely held maker of paper cups the previously announced purchase of Imperial Cup Corp. Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (Imperial Cup Corp.; a closely held maker; of paper cups) Imperial Cup Corp. a closely held maker of paper cups Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +0 (a closely held maker of paper cups; the previously announced purchase; of Imperial Cup Corp.) a closely held maker of paper cups the previously announced purchase of Imperial Cup Corp. Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (a closely held maker of paper cups; based; in Kenton) a closely held maker of paper cups based in Kenton Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (it; completed; the previously announced purchase of Imperial Cup Corp) it completed the previously announced purchase of Imperial Cup Corp Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (Federal Paper Board Co.; said; it completed the previously announced purchase of Imperial Cup Corp) Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +0 (Imperial Cup Corp.; be a closely held maker of; paper cups based in Kenton , Ohio) Imperial Cup Corp. be a closely held maker of paper cups based in Kenton , Ohio Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (paper cups; be based in; Kenton) paper cups be based in Kenton Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (Kenton; be based in; Ohio) Kenton be based in Ohio Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (it; completed the previously announced purchase of; Imperial Cup Corp.) it completed the previously announced purchase of Imperial Cup Corp. Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +0 (Federal Paper Board Co.; said; it) Federal Paper Board Co. said it Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (Federal Paper Board Co.; said; it completed the previously announced purchase of Imperial Cup Corp) Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (a closely held maker of paper cups; based; in Kenton) a closely held maker of paper cups based in Kenton Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +1 (it; completed; the previously announced purchase of Imperial Cup Corp) it completed the previously announced purchase of Imperial Cup Corp Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . +0 (a foreign molecule; be; present) a foreign molecule be present First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . +0 (a foreign molecule; must be; present that can bind specifically to the antigen receptor of the T cell; First) a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell; First First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . +1 (a foreign molecule; First must be; present) a foreign molecule First must be present First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . +0 (present; can bind specifically to; the antigen receptor) present can bind specifically to the antigen receptor First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . +1 (a foreign molecule; must be; present) a foreign molecule must be present First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . +0 (a foreign molecule; must be present that can bind specifically to the antigen receptor of the T cell; First) a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell First First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . +0 (a foreign molecule; must be; present that can bind specifically to the antigen receptor of the T cell) a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . +0 (million additional shares; will be offered; in concurrent international offerings) million additional shares will be offered in concurrent international offerings Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +0 (million shares; will be offered; in the U.S.) million shares will be offered in the U.S. Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +0 (million additional shares; will be offered in; concurrent international offerings) million additional shares will be offered in concurrent international offerings Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +0 (million shares; will be offered in; the U.S.) million shares will be offered in the U.S. Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (Five million shares; will be offered; in the U.S.) Five million shares will be offered in the U.S. Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (3.4 million additional shares; will be offered; ) 3.4 million additional shares will be offered Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (3.4 million additional shares; will will be offered in; concurrent international offerings) 3.4 million additional shares will will be offered in concurrent international offerings Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (Five million shares; will be offered will in; the U.S.) Five million shares will be offered will in the U.S. Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +0 (Five million shares; will will be offered in; concurrent international offerings) Five million shares will will be offered in concurrent international offerings Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +0 (3.4 million additional shares; will be offered will in; the U.S.) 3.4 million additional shares will be offered will in the U.S. Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (Five million shares; will be offered in; the U.S.) Five million shares will be offered in the U.S. Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (3.4 million additional shares; will be offered in; concurrent international offerings) 3.4 million additional shares will be offered in concurrent international offerings Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (Five million shares; will be offered; in the U.S.) Five million shares will be offered in the U.S. Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . +1 (Flagellated sperm; swim through; a film of water) Flagellated sperm swim through a film of water Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +1 (Flagellated sperm; swim toward; eggs) Flagellated sperm swim toward eggs Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +0 (the archegonia; be entering to; chemical attractants) the archegonia be entering to chemical attractants Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +1 (Flagellated sperm; swim; through a film of water) Flagellated sperm swim through a film of water Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +1 (Flagellated sperm; swim; toward eggs) Flagellated sperm swim toward eggs Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +0 (the archegonia; be entering; to chemical attractants) the archegonia be entering to chemical attractants Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +0 (Flagellated sperm; swim; through a film of water toward eggs) Flagellated sperm swim through a film of water toward eggs Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +1 (Flagellated sperm; swim entering; the archegonia; in response to chemical attractants) Flagellated sperm swim entering the archegonia; in response to chemical attractants Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +0 (Flagellated sperm swim; entering the archegonia in; response) Flagellated sperm swim entering the archegonia in response Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +0 (the archegonia; be entering in; response) the archegonia be entering in response Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +0 (Flagellated sperm; swim; through a film of water toward eggs) Flagellated sperm swim through a film of water toward eggs Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +1 (Flagellated sperm; swim entering; the archegonia) Flagellated sperm swim entering the archegonia Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +0 (Flagellated sperm; swim entering the archegonia; in response to chemical attractants) Flagellated sperm swim entering the archegonia in response to chemical attractants Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . +1 (Florio Fiorini; managing director of; Geneva-based Sasea) Florio Fiorini managing director of Geneva-based Sasea Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the investors; would pay; a symbolic one lira) the investors would pay a symbolic one lira Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the investors; would pay only a symbolic one lira for; the station) the investors would pay only a symbolic one lira for the station Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (a symbolic one lira; would be pay for; the station) a symbolic one lira would be pay for the station Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (Florio Fiorini; managing director; of Geneva-based Sasea) Florio Fiorini managing director of Geneva-based Sasea Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the investors; would pay only a symbolic one lira; for the station) the investors would pay only a symbolic one lira for the station Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (a symbolic one lira; would be pay; for the station) a symbolic one lira would be pay for the station Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the capital; will enable; the company to continue operating) the capital will enable the company to continue operating Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (we; have agreed; to raise the capital) we have agreed to raise the capital Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (we; have agreed to raise; the capital that will enable the company to continue operating) we have agreed to raise the capital that will enable the company to continue operating Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the investors; would pay; only a symbolic one lira; for the station) the investors would pay only a symbolic one lira; for the station Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (Florio Fiorini; said; the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital) Florio Fiorini said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +0 (the company; to continue; ) the company to continue Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +0 (the company; to continue operating; ) the company to continue operating Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (we; have agreed to raise; the capital that will enable the company to continue operating) we have agreed to raise the capital that will enable the company to continue operating Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (Florio Fiorini; be managing director of; Geneva-based Sasea) Florio Fiorini be managing director of Geneva-based Sasea Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the investors; would pay only; a symbolic one lira) the investors would pay only a symbolic one lira Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +0 (managing director; said; the investors) managing director said the investors Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (we; have agreed to raise; the capital) we have agreed to raise the capital Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +0 (the capital; will enable; the company) the capital will enable the company Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (Florio Fiorini; said; the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital) Florio Fiorini said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the capital; will enable; the company to continue operating) the capital will enable the company to continue operating Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (the investors; would pay; only a symbolic one lira) the investors would pay only a symbolic one lira Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (we; have agreed to raise; the capital that will enable the company to continue operating) we have agreed to raise the capital that will enable the company to continue operating Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (we; have agreed; to raise the capital) we have agreed to raise the capital Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , `` but we have agreed to raise the capital that will enable the company to continue operating . +1 (postzygotic isolation; is influenced by; at least 26 chromosome segments) postzygotic isolation is influenced by at least 26 chromosome segments For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility; fly; Drosophila pseudoobscura results) hybrid sterility fly Drosophila pseudoobscura results For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility; fly Drosophila pseudoobscura results for; example) hybrid sterility fly Drosophila pseudoobscura results for example For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility; fly Drosophila pseudoobscura results from; gene interactions) hybrid sterility fly Drosophila pseudoobscura results from gene interactions For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +1 (postzygotic isolation; is influenced; by at least 26 chromosome segments) postzygotic isolation is influenced by at least 26 chromosome segments For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility; fly Drosophila pseudoobscura results; for example) hybrid sterility fly Drosophila pseudoobscura results for example For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility; fly Drosophila pseudoobscura results; from gene interactions) hybrid sterility fly Drosophila pseudoobscura results from gene interactions For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (the sunflower hybrid zone; discussed; earlier) the sunflower hybrid zone discussed earlier For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility between two subspecies of the fruit; is influenced; by at least 26 chromosome segments) hybrid sterility between two subspecies of the fruit is influenced by at least 26 chromosome segments For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility; pseudoobscura results from gene interactions among; at least four loci) hybrid sterility pseudoobscura results from gene interactions among at least four loci For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility; pseudoobscura; results) hybrid sterility pseudoobscura results For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (results; be pseudoobscura among; at least four loci) results be pseudoobscura among at least four loci For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (postzygotic isolation; be hybrid sterility between; two subspecies of the fruit fly Drosophila) postzygotic isolation be hybrid sterility between two subspecies of the fruit fly Drosophila For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (postzygotic isolation; be hybrid sterility for; example) postzygotic isolation be hybrid sterility for example For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (the sunflower hybrid zone; discussed earlier is influenced by; at least 26 chromosome segments) the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (the sunflower hybrid zone; discussed; earlier) the sunflower hybrid zone discussed earlier For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (hybrid sterility between two subspecies of the fruit; is influenced; by at least 26 chromosome segments) hybrid sterility between two subspecies of the fruit is influenced by at least 26 chromosome segments For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . +0 (you; learned for; example) you learned for example For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +1 (nervous reflexes; stimulate; the release of saliva) nervous reflexes stimulate the release of saliva For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +1 (a bolus of food; reaches; the pharynx) a bolus of food reaches the pharynx For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +1 (food; enters; the oral cavity) food enters the oral cavity For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (you; learned; for example) you learned for example For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (food; enters; the oral cavity and orchestrate swallowing) food enters the oral cavity and orchestrate swallowing For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (you; learned earlier; the release of saliva when food enters the oral cavity and orchestrate) you learned earlier the release of saliva when food enters the oral cavity and orchestrate For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (nervous reflexes; stimulate; ) nervous reflexes stimulate For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (the oral cavity and orchestrate; swallowing; ) the oral cavity and orchestrate swallowing For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (food; enters; the oral cavity and orchestrate swallowing) food enters the oral cavity and orchestrate swallowing For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +1 (that nervous reflexes; earlier stimulate; the release of saliva) that nervous reflexes earlier stimulate the release of saliva For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (food; enters; the oral cavity and orchestrate swallowing) food enters the oral cavity and orchestrate swallowing For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (earlier that nervous reflexes; stimulate the release of; saliva) earlier that nervous reflexes stimulate the release of saliva For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +1 (food; reaches; the pharynx) food reaches the pharynx For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (you; learned earlier; that nervous reflexes) you learned earlier that nervous reflexes For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (you; learned earlier; the release of saliva when food enters the oral cavity and orchestrate) you learned earlier the release of saliva when food enters the oral cavity and orchestrate For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +0 (food; enters; the oral cavity and orchestrate swallowing) food enters the oral cavity and orchestrate swallowing For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . +1 (Hatch; worked as; an Attorney) Hatch worked as an Attorney For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +0 (Hatch; worked at; law) Hatch worked at law For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked for; fourteen years) Hatch worked for fourteen years For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked in; law) Hatch worked in law For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked; as an Attorney) Hatch worked as an Attorney For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +0 (Hatch; worked; at law) Hatch worked at law For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked; for fourteen years) Hatch worked for fourteen years For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked; in law) Hatch worked in law For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked; as an Attorney at law in Pittsburgh and Utah; For fourteen years) Hatch worked as an Attorney at law in Pittsburgh and Utah; For fourteen years For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked; as an Attorney at law in Pittsburgh and Utah) Hatch worked as an Attorney at law in Pittsburgh and Utah For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +1 (Hatch; worked as an Attorney at law in Pittsburgh and Utah; For fourteen years) Hatch worked as an Attorney at law in Pittsburgh and Utah For fourteen years For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . +0 (the average daily rate of energy consumption; is times BMR for; most terrestrial animals) the average daily rate of energy consumption is times BMR for most terrestrial animals For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +0 (times BMR; be the average daily rate of; energy consumption) times BMR be the average daily rate of energy consumption For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +0 (the average daily rate of energy consumption; is; times BMR) the average daily rate of energy consumption is times BMR For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +0 (the average daily rate of energy consumption; is times BMR; for most terrestrial animals) the average daily rate of energy consumption is times BMR for most terrestrial animals For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +0 (times BMR; be the average daily rate; of energy consumption) times BMR be the average daily rate of energy consumption For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +1 (the average daily rate of energy consumption; is; 2 to 4 times BMR) the average daily rate of energy consumption is 2 to 4 times BMR For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +1 (the average daily rate of energy consumption; is; 2 to 4 times BMR) the average daily rate of energy consumption is 2 to 4 times BMR For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +1 (the average daily rate of energy consumption; is 2 to 4 times BMR for; most terrestrial animals) the average daily rate of energy consumption is 2 to 4 times BMR for most terrestrial animals For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +1 (2 to 4 times BMR; be the average daily rate of; energy consumption) 2 to 4 times BMR be the average daily rate of energy consumption For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +0 (energy consumption; is 2 to; 4 times BMR) energy consumption is 2 to 4 times BMR For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +1 (the average daily rate of energy consumption; is; 2 to 4 times BMR) the average daily rate of energy consumption is 2 to 4 times BMR For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . +1 (the mining company; posted a 40 % drop in profit for; the nine months) the mining company posted a 40 % drop in profit for the nine months For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted a 40 % drop in profit from; $ 50.6 million , or 52 cents) the mining company posted a 40 % drop in profit from $ 50.6 million , or 52 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted a 40 % drop in profit to; $ 30.1 million , or 31 cents) the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted; a 40 % drop) the mining company posted a 40 % drop For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (a 40 % drop; be posted for; the nine months) a 40 % drop be posted for the nine months For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (a 40 % drop; be posted from; $ 50.6 million , or 52 cents) a 40 % drop be posted from $ 50.6 million , or 52 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (a 40 % drop; be posted on; a 6 % rise) a 40 % drop be posted on a 6 % rise For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (a 40 % drop; be posted to; $ 30.1 million , or 31 cents) a 40 % drop be posted to $ 30.1 million , or 31 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted a 40 % drop in profit; for the nine months) the mining company posted a 40 % drop in profit for the nine months For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted a 40 % drop in profit; from $ 50.6 million , or 52 cents) the mining company posted a 40 % drop in profit from $ 50.6 million , or 52 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted a 40 % drop in profit; to $ 30.1 million , or 31 cents) the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (a 40 % drop; be posted; for the nine months) a 40 % drop be posted for the nine months For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (a 40 % drop; be posted; from $ 50.6 million , or 52 cents) a 40 % drop be posted from $ 50.6 million , or 52 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (a 40 % drop; be posted; on a 6 % rise) a 40 % drop be posted on a 6 % rise For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (a 40 % drop; be posted; to $ 30.1 million , or 31 cents) a 40 % drop be posted to $ 30.1 million , or 31 cents For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted; a 40 % drop in profit; For the nine months) the mining company posted a 40 % drop in profit; For the nine months For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (the mining company; posted a 40 % drop in profit on; a 6 % rise) the mining company posted a 40 % drop in profit on a 6 % rise For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +0 (the mining company; posted a 40 % drop in profit in; a 6 % rise) the mining company posted a 40 % drop in profit in a 6 % rise For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted a 40 % drop in profit; For the nine months) the mining company posted a 40 % drop in profit For the nine months For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (the mining company; posted; a 40 % drop in profit) the mining company posted a 40 % drop in profit For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . +1 (owners; should return; the cars) owners should return the cars Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (owners; should return the cars to; dealers) owners should return the cars to dealers Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (the cars; should be return to; dealers) the cars should be return to dealers Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (owners; should return the cars; to dealers) owners should return the cars to dealers Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (the cars; should be return; to dealers) the cars should be return to dealers Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (owners; should return; the cars; to dealers) owners should return the cars; to dealers Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (Ford; said; owners should return the cars to dealers so the windshields can be removed and securely reinstalled) Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (the windshields; can be removed; ) the windshields can be removed Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +0 (the windshields; securely reinstalled; ) the windshields securely reinstalled Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +0 (Ford; said of; owners) Ford said of owners Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +0 (Ford; said; owners) Ford said owners Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (Ford; said; owners should return the cars to dealers so the windshields can be removed and securely reinstalled) Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . +1 (Functional brain imaging; has been applied to; the study of human cognition , consciousness , and emotion) Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . +1 (Functional brain imaging; has been applied; to the study of human cognition , consciousness , and emotion) Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . +1 (Functional brain imaging; has been applied to; the study of human cognition) Functional brain imaging has been applied to the study of human cognition Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . +0 (consciousness; be the study of; human cognition) consciousness be the study of human cognition Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . +1 (Functional brain imaging; has been applied to; the study) Functional brain imaging has been applied to the study Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . +1 (paleontologists; Furthermore have found; fossils of dinosaurs) paleontologists Furthermore have found fossils of dinosaurs Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (milder; be the climate in; these areas) milder be the climate in these areas Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (paleontologists; Furthermore have found fossils of dinosaurs in; both Antarctica and the Arctic) paleontologists Furthermore have found fossils of dinosaurs in both Antarctica and the Arctic Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (it; was; cool) it was cool Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (the climate; was; milder) the climate was milder Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (fossils of dinosaurs; Furthermore have found in; both Antarctica and the Arctic) fossils of dinosaurs Furthermore have found in both Antarctica and the Arctic Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (it; is; today) it is today Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (a high body temperature; be maintaining through; ectothermy) a high body temperature be maintaining through ectothermy Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (milder; be the climate; in these areas) milder be the climate in these areas Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (paleontologists; Furthermore have found fossils of dinosaurs; in both Antarctica and the Arctic) paleontologists Furthermore have found fossils of dinosaurs in both Antarctica and the Arctic Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (fossils of dinosaurs; Furthermore have found; in both Antarctica and the Arctic) fossils of dinosaurs Furthermore have found in both Antarctica and the Arctic Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (a high body temperature; be maintaining; through ectothermy) a high body temperature be maintaining through ectothermy Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (small dinosaurs; may have had; difficulty maintaining a high body temperature through ectothermy) small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (it; was; cool enough that small dinosaurs may have had difficulty; when dinosaurs existed than it is today) it was cool enough that small dinosaurs may have had difficulty; when dinosaurs existed than it is today Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (paleontologists; have found; fossils of dinosaurs; in both Antarctica and the Arctic) paleontologists have found fossils of dinosaurs; in both Antarctica and the Arctic Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (dinosaurs; was cool enough that small dinosaurs may have had difficulty existed; ) dinosaurs was cool enough that small dinosaurs may have had difficulty existed Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (the climate in these areas; was cool enough that small dinosaurs may have had difficulty was; ) the climate in these areas was cool enough that small dinosaurs may have had difficulty was Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (small dinosaurs; may have had; difficulty) small dinosaurs may have had difficulty Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (the climate; was; milder when dinosaurs existed than it is today , it was cool) the climate was milder when dinosaurs existed than it is today , it was cool Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (it; was enough; cool) it was enough cool Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (milder when dinosaurs existed than it is today , it was cool; be the climate in; these areas) milder when dinosaurs existed than it is today , it was cool be the climate in these areas Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (paleontologists; have found fossils of; dinosaurs) paleontologists have found fossils of dinosaurs Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (these areas; was; milder) these areas was milder Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (small dinosaurs; may have had; difficulty) small dinosaurs may have had difficulty Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (dinosaurs; existed than; it) dinosaurs existed than it Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (it; was; cool enough that small dinosaurs may have had difficulty) it was cool enough that small dinosaurs may have had difficulty Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (paleontologists; have found fossils of dinosaurs; in both Antarctica and the Arctic) paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (small dinosaurs; may have had; difficulty maintaining a high body temperature through ectothermy) small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (paleontologists; have found; fossils of dinosaurs) paleontologists have found fossils of dinosaurs Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +0 (it; was cool enough that small dinosaurs may have had difficulty; when dinosaurs existed than it is today) it was cool enough that small dinosaurs may have had difficulty when dinosaurs existed than it is today Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic ; although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . +1 (Field; leaps forward with; new stem cell advances) Field leaps forward with new stem cell advances G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224 -1225 . +0 (G. Vogel and C. Holden; Science; 318:1224 -1225) G. Vogel and C. Holden Science 318:1224 -1225 G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224 -1225 . +1 (Field; leaps forward; with new stem cell advances) Field leaps forward with new stem cell advances G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224 -1225 . +0 (G. Vogel and C. Holden; leaps; forward) G. Vogel and C. Holden leaps forward G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224 -1225 . +0 (G. Vogel and C. Holden; leaps forward with; new stem cell advances Science 318:1224 -1225) G. Vogel and C. Holden leaps forward with new stem cell advances Science 318:1224 -1225 G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224 -1225 . +0 (G. Vogel and C. Holden; leaps; forward) G. Vogel and C. Holden leaps forward G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224 -1225 . +1 (GDP; is the total value; of a nation 's output of goods and services) GDP is the total value of a nation 's output of goods and services GDP is the total value of a nation 's output of goods and services . +0 (a nation; output; of goods and services) a nation output of goods and services GDP is the total value of a nation 's output of goods and services . +1 (GDP; is the total value of; a nation 's output of goods and services) GDP is the total value of a nation 's output of goods and services GDP is the total value of a nation 's output of goods and services . +1 (GDP; is; the total value of a nation 's output of goods and services) GDP is the total value of a nation 's output of goods and services GDP is the total value of a nation 's output of goods and services . +0 (a nation; output of; goods and services) a nation output of goods and services GDP is the total value of a nation 's output of goods and services . +0 (GDP; is the total value of; a nation) GDP is the total value of a nation GDP is the total value of a nation 's output of goods and services . +0 (GDP; is the total value of; a nation) GDP is the total value of a nation GDP is the total value of a nation 's output of goods and services . +1 (GDP; is the total value of; a nation 's output of goods) GDP is the total value of a nation 's output of goods GDP is the total value of a nation 's output of goods and services . +1 (GDP; is; the total value of a nation 's output of goods) GDP is the total value of a nation 's output of goods GDP is the total value of a nation 's output of goods and services . +0 (GDP; is the total value of; a nation) GDP is the total value of a nation GDP is the total value of a nation 's output of goods and services . +0 (GDP; is the total value of; a nation) GDP is the total value of a nation GDP is the total value of a nation 's output of goods and services . +0 (Will Smith; be released in; January 2002) Will Smith be released in January 2002 Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (Will Smith; be released on; Columbia Records) Will Smith be released on Columbia Records Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (Greatest Hits; is a Best of; compilation album) Greatest Hits is a Best of compilation album Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +1 (Greatest Hits; is; a Best of compilation album) Greatest Hits is a Best of compilation album Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (Will Smith; be released; in January 2002) Will Smith be released in January 2002 Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (Will Smith; be released; on Columbia Records) Will Smith be released on Columbia Records Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (Greatest Hits; is a Best; of compilation album) Greatest Hits is a Best of compilation album Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (Will Smith; released in; January 2002) Will Smith released in January 2002 Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +1 (Greatest Hits; is; a Best of compilation album by Will Smith) Greatest Hits is a Best of compilation album by Will Smith Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +1 (a Best of compilation album; released in; January 2002) a Best of compilation album released in January 2002 Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +1 (a Best of compilation album; released on; Columbia Records) a Best of compilation album released on Columbia Records Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +1 (Greatest Hits; is a Best of compilation album by; Will Smith) Greatest Hits is a Best of compilation album by Will Smith Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +1 (a Best of compilation album; released; January 2002) a Best of compilation album released January 2002 Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (a Best of compilation album; be released in; Columbia Records) a Best of compilation album be released in Columbia Records Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +1 (Greatest Hits; is; a Best of compilation album by Will Smith) Greatest Hits is a Best of compilation album by Will Smith Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . +0 (Guillermo Billinghurst; was overthrown on in; a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party) Guillermo Billinghurst was overthrown on in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (a military coup; be headed by; colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party) a military coup be headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +0 (Guillermo Billinghurst; was overthrown on; in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party) Guillermo Billinghurst was overthrown on in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (a military coup; be headed; by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party) a military coup be headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (a military coup; headed; by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party) a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (Guillermo Billinghurst; was overthrown; on February 4; in a military coup) Guillermo Billinghurst was overthrown on February 4; in a military coup Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (Guillermo Billinghurst; was overthrown in; a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado) Guillermo Billinghurst was overthrown in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (Guillermo Billinghurst; was overthrown on; February 4 , 1914) Guillermo Billinghurst was overthrown on February 4 , 1914 Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (a military coup; be headed by; colonel Oscar R. Benavides , Javier and Manuel Prado) a military coup be headed by colonel Oscar R. Benavides , Javier and Manuel Prado Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (Guillermo Billinghurst; was overthrown on; February 4 , 1914) Guillermo Billinghurst was overthrown on February 4 , 1914 Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (Guillermo Billinghurst; was overthrown; on February 4) Guillermo Billinghurst was overthrown on February 4 Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (Guillermo Billinghurst; was overthrown; in a military coup) Guillermo Billinghurst was overthrown in a military coup Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (a military coup; headed; by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party) a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . +1 (it; would fill; a gap) it would fill a gap Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; is particularly interested in; Tesoro 's refinery) it is particularly interested in Tesoro 's refinery Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +0 (it; is; interested) it is interested Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (about 800 retail gas stations; be owns by; Harken) about 800 retail gas stations be owns by Harken Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; is particularly interested; in Tesoro 's refinery) it is particularly interested in Tesoro 's refinery Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (about 800 retail gas stations; be owns; by Harken) about 800 retail gas stations be owns by Harken Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; would fill; a gap in its business) it would fill a gap in its business Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; is; particularly interested in Tesoro 's refinery; because it would fill a gap in its business) it is particularly interested in Tesoro 's refinery; because it would fill a gap in its business Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (Harken; has said; it is particularly interested in Tesoro 's refinery) Harken has said it is particularly interested in Tesoro 's refinery Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +0 (Harken; has said it is particularly interested in Tesoro 's refinery owns; ) Harken has said it is particularly interested in Tesoro 's refinery owns Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +0 (it; is particularly; interested) it is particularly interested Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (Harken; owns about; 800 retail gas stations) Harken owns about 800 retail gas stations Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; is particularly interested in; Tesoro) it is particularly interested in Tesoro Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; would fill a gap in; its business) it would fill a gap in its business Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +0 (Harken; has said; it) Harken has said it Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; is; particularly interested in Tesoro 's refinery) it is particularly interested in Tesoro 's refinery Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (Harken; has said; it is particularly interested in Tesoro 's refinery) Harken has said it is particularly interested in Tesoro 's refinery Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; would fill; a gap in its business) it would fill a gap in its business Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (it; is particularly interested in Tesoro 's refinery; because it would fill a gap in its business) it is particularly interested in Tesoro 's refinery because it would fill a gap in its business Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . +1 (Rexford Tugwell; be planner of; New Deal brain trust) Rexford Tugwell be planner of New Deal brain trust Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (trust planner Rexford Tugwell; be brain of; New Deal) trust planner Rexford Tugwell be brain of New Deal Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (Rexford Tugwell; be planner for; New Deal brain trust) Rexford Tugwell be planner for New Deal brain trust Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (trust planner Rexford Tugwell; be brain for; New Deal) trust planner Rexford Tugwell be brain for New Deal Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; collaborate in; the design of post-war modern Puerto Rico) he collaborate in the design of post-war modern Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; to move to; Puerto Rico) he to move to Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (Rexford Tugwell; be planner; of New Deal brain trust) Rexford Tugwell be planner of New Deal brain trust Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (trust planner Rexford Tugwell; be brain; of New Deal) trust planner Rexford Tugwell be brain of New Deal Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (Rexford Tugwell; be planner; for New Deal brain trust) Rexford Tugwell be planner for New Deal brain trust Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (trust planner Rexford Tugwell; be brain; for New Deal) trust planner Rexford Tugwell be brain for New Deal Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; collaborate; in the design of post-war modern Puerto Rico) he collaborate in the design of post-war modern Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; to move; to Puerto Rico) he to move to Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (Puerto Rico; collaborate in; the design) Puerto Rico collaborate in the design Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; to collaborate; in the design of post-war modern Puerto Rico) he to collaborate in the design of post-war modern Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; was invited; to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico) he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; was invited to move; to Puerto Rico; in 1944) he was invited to move to Puerto Rico; in 1944 Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (Rexford Tugwell; [is] met planner [of]; New Deal brain trust) Rexford Tugwell [is] met planner [of] New Deal brain trust Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; to collaborate in; the design of post-war modern Puerto Rico) he to collaborate in the design of post-war modern Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; to move in; 1944) he to move in 1944 Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; was invited; to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico) he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; was invited to move; to Puerto Rico) he was invited to move to Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; to collaborate; in the design of post-war modern Puerto Rico) he to collaborate in the design of post-war modern Puerto Rico Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (he; was invited to move to Puerto Rico; in 1944) he was invited to move to Puerto Rico in 1944 Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (Rexford Tugwell; [is] met planner [of]; New Deal brain trust) Rexford Tugwell [is] met planner [of] New Deal brain trust Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +0 (Rexford Tugwell; [is] met planner [of]; New Deal brain trust) Rexford Tugwell [is] met planner [of] New Deal brain trust Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . +1 (He; also scored; the second and decisive try) He also scored the second and decisive try He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (Tigers; retained; the cup) Tigers retained the cup He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (Tigers; retained the cup in; the following year) Tigers retained the cup in the following year He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (Tigers; retained the cup; in the following year) Tigers retained the cup in the following year He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (Tigers; retained; the cup; the following year) Tigers retained the cup; the following year He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (He; also scored; the second and decisive try against Munster; when Tigers retained the cup the following year) He also scored the second and decisive try against Munster; when Tigers retained the cup the following year He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (Tigers; retained the cup; the following year) Tigers retained the cup the following year He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (He; also scored; the second and decisive try against Munster) He also scored the second and decisive try against Munster He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (He; also scored the second and decisive try against Munster; when Tigers retained the cup the following year) He also scored the second and decisive try against Munster when Tigers retained the cup the following year He also scored the second and decisive try against Munster when Tigers retained the cup the following year . +1 (He; was elected a member of the Alabama House of Representatives in; 1826) He was elected a member of the Alabama House of Representatives in 1826 He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; be a member of; the Alabama House of Representatives) He be a member of the Alabama House of Representatives He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; to practice; law) He to practice law He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; was elected; a member of the Alabama House of Representatives) He was elected a member of the Alabama House of Representatives He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; to practice law in; Montgomery) He to practice law in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (law; be to practice in; Montgomery) law be to practice in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (a member of the Alabama House of Representatives; was elected in; 1826) a member of the Alabama House of Representatives was elected in 1826 He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; was elected a member of the Alabama House of Representatives; in 1826) He was elected a member of the Alabama House of Representatives in 1826 He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; be a member; of the Alabama House of Representatives) He be a member of the Alabama House of Representatives He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; to practice law; in Montgomery) He to practice law in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (law; be to practice; in Montgomery) law be to practice in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (a member of the Alabama House of Representatives; was elected; in 1826) a member of the Alabama House of Representatives was elected in 1826 He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began; to practice law in Montgomery) He began to practice law in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began to practice; law; in Montgomery) He began to practice law; in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; was elected; a member of the Alabama House of Representatives; in 1826) He was elected a member of the Alabama House of Representatives; in 1826 He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began to practice law in; Montgomery) He began to practice law in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began to practice; law) He began to practice law He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +0 (He; was elected a member of the Alabama House of Representatives until; 1828) He was elected a member of the Alabama House of Representatives until 1828 He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (law; to be practice in; Montgomery) law to be practice in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +0 (law; was elected a member of; the Alabama House) law was elected a member of the Alabama House He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began to practice; law) He began to practice law He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began; to practice law in Montgomery) He began to practice law in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began to practice law; in Montgomery) He began to practice law in Montgomery He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; began to practice; law) He began to practice law He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . +1 (He; came in; 1980) He came in 1980 He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; came to; Tehran) He came to Tehran He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (traditional arrangements; be studying under; Mohammad Reza Lotfi and his brother Pashang) traditional arrangements be studying under Mohammad Reza Lotfi and his brother Pashang He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +0 (1980; came to; He) 1980 came to He He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; came; in 1980) He came in 1980 He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; came; to Tehran) He came to Tehran He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (traditional arrangements; be studying; under Mohammad Reza Lotfi and his brother Pashang) traditional arrangements be studying under Mohammad Reza Lotfi and his brother Pashang He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +0 (1980; came; to He) 1980 came to He He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; came; to Tehran; in 1980) He came to Tehran; in 1980 He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; continued; studying traditional arrangements under Mohammad Reza Lotfi and his brother) He continued studying traditional arrangements under Mohammad Reza Lotfi and his brother He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; continued studying; traditional arrangements; under Mohammad Reza Lotfi and his brother) He continued studying traditional arrangements; under Mohammad Reza Lotfi and his brother He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +0 (He; came continued to; Tehran) He came continued to Tehran He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +0 (He; came continued in; 1980) He came continued in 1980 He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (traditional arrangements; continued studying under; Mohammad Reza Lotfi and his brother Pashang) traditional arrangements continued studying under Mohammad Reza Lotfi and his brother Pashang He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; continued studying; traditional arrangements) He continued studying traditional arrangements He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; continued studying traditional arrangements under; Mohammad Reza Lotfi and his brother Pashang) He continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +0 (1980; came continued to; He) 1980 came continued to He He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +0 (Tehran; continued studying; traditional arrangements) Tehran continued studying traditional arrangements He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; continued; studying traditional arrangements under Mohammad Reza Lotfi and his brother) He continued studying traditional arrangements under Mohammad Reza Lotfi and his brother He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; continued studying traditional arrangements; under Mohammad Reza Lotfi and his brother) He continued studying traditional arrangements under Mohammad Reza Lotfi and his brother He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; continued studying; traditional arrangements) He continued studying traditional arrangements He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . +1 (He; captured; the Parthian capital) He captured the Parthian capital He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +0 (downriver; be sailing to; the Persian Gulf) downriver be sailing to the Persian Gulf He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +0 (downriver; be sailing; to the Persian Gulf) downriver be sailing to the Persian Gulf He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +1 (He; captured; the Parthian capital; before sailing downriver to the Persian Gulf) He captured the Parthian capital; before sailing downriver to the Persian Gulf He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +1 (He; captured the Parthian capital before sailing; downriver; to the Persian Gulf) He captured the Parthian capital before sailing downriver; to the Persian Gulf He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +1 (He; captured the Parthian capital; before sailing downriver to the Persian Gulf) He captured the Parthian capital before sailing downriver to the Persian Gulf He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +1 (He; captured the Parthian capital before sailing downriver; to the Persian Gulf) He captured the Parthian capital before sailing downriver to the Persian Gulf He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +1 (He; captured the Parthian capital before sailing; downriver) He captured the Parthian capital before sailing downriver He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . +1 (He; completed his move for; an undisclosed fee) He completed his move for an undisclosed fee He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +0 (He; completed his move on; 4) He completed his move on 4 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move on; a two-year deal) He completed his move on a two-year deal He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move to; Premier League side Fulham) He completed his move to Premier League side Fulham He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed; his move) He completed his move He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (his move; be completed for; an undisclosed fee) his move be completed for an undisclosed fee He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +0 (his move; be completed on; 4) his move be completed on 4 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (his move; be completed on; a two-year deal) his move be completed on a two-year deal He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (his move; be completed to; Premier League side Fulham) his move be completed to Premier League side Fulham He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move in; June 2008) He completed his move in June 2008 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move; for an undisclosed fee) He completed his move for an undisclosed fee He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +0 (He; completed his move; on 4) He completed his move on 4 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move; on a two-year deal) He completed his move on a two-year deal He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move; to Premier League side Fulham) He completed his move to Premier League side Fulham He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (his move; be completed; for an undisclosed fee) his move be completed for an undisclosed fee He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +0 (his move; be completed; on 4) his move be completed on 4 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (his move; be completed; on a two-year deal) his move be completed on a two-year deal He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (his move; be completed; to Premier League side Fulham) his move be completed to Premier League side Fulham He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move; in June 2008) He completed his move in June 2008 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move to Premier League side Fulham on 4 June 2008 for; an undisclosed fee) He completed his move to Premier League side Fulham on 4 June 2008 for an undisclosed fee He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move to Premier League side Fulham on 4 June 2008 on; a two-year deal) He completed his move to Premier League side Fulham on 4 June 2008 on a two-year deal He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed; his move to Premier League side Fulham; on 4 June 2008) He completed his move to Premier League side Fulham; on 4 June 2008 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed his move to Premier League side Fulham; on 4 June 2008) He completed his move to Premier League side Fulham on 4 June 2008 He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; completed; his move to Premier League side Fulham) He completed his move to Premier League side Fulham He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . +1 (He; was interred in; Lakeside Cemetery) He was interred in Lakeside Cemetery He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died in; Washington , D.C.) He died in Washington , D.C. He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; was interred; in Lakeside Cemetery) He was interred in Lakeside Cemetery He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died; in Washington , D.C.) He died in Washington , D.C. He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died; in Washington; on April 10 , 1907) He died in Washington; on April 10 , 1907 He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; was interred; in Lakeside Cemetery in Bryant Pond) He was interred in Lakeside Cemetery in Bryant Pond He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died in; Washington) He died in Washington He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died on; April 10 , 1907) He died on April 10 , 1907 He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +0 (He; died; Washington) He died Washington He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +0 (D.C.; was interred in; Lakeside Cemetery) D.C. was interred in Lakeside Cemetery He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died in; Washington) He died in Washington He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died; in Washington) He died in Washington He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; died; on April 10 , 1907) He died on April 10 , 1907 He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; was interred; in Lakeside Cemetery in Bryant Pond) He was interred in Lakeside Cemetery in Bryant Pond He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . +1 (He; has made; frequent trips) He has made frequent trips He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +0 (He; also met in; Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris) He also met in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; also met with; Lao and Vietnamese leaders) He also met with Lao and Vietnamese leaders He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; has made frequent trips to; Laos and Vietnam) He has made frequent trips to Laos and Vietnam He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +0 (frequent trips; has made to; Laos and Vietnam) frequent trips has made to Laos and Vietnam He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +0 (He; also met; in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris) He also met in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; also met; with Lao and Vietnamese leaders) He also met with Lao and Vietnamese leaders He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; has made frequent trips; to Laos and Vietnam) He has made frequent trips to Laos and Vietnam He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +0 (frequent trips; has made; to Laos and Vietnam) frequent trips has made to Laos and Vietnam He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; also met; with Lao and Vietnamese leaders; in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris) He also met with Lao and Vietnamese leaders; in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; has made; frequent trips to Laos and Vietnam) He has made frequent trips to Laos and Vietnam He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; has made trips; to Laos and Vietnam; frequent) He has made trips to Laos and Vietnam; frequent He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; has also met with; Lao and Vietnamese leaders) He has also met with Lao and Vietnamese leaders He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +0 (frequent trips; also met with; Lao) frequent trips also met with Lao He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; also met with Lao and Vietnamese leaders; in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris) He also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; has made; frequent trips to Laos and Vietnam) He has made frequent trips to Laos and Vietnam He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; has made trips; to Laos and Vietnam) He has made trips to Laos and Vietnam He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +0 (He; has made trips to Laos and Vietnam; frequent) He has made trips to Laos and Vietnam frequent He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . +1 (He; increases the board; to seven) He increases the board to seven He increases the board to seven . +1 (He; increases the board to; seven) He increases the board to seven He increases the board to seven . +1 (He; increases; the board) He increases the board He increases the board to seven . +1 (He; increases; the board; to seven) He increases the board; to seven He increases the board to seven . +1 (He; played eleven seasons as; an outfielder) He played eleven seasons as an outfielder He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (He; played eleven seasons in; the majors) He played eleven seasons in the majors He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (He; played; eleven seasons) He played eleven seasons He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (eleven seasons; be played as; an outfielder) eleven seasons be played as an outfielder He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (eleven seasons; be played in; the majors) eleven seasons be played in the majors He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (He; played eleven seasons; as an outfielder) He played eleven seasons as an outfielder He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (He; played eleven seasons; in the majors) He played eleven seasons in the majors He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (eleven seasons; be played; as an outfielder) eleven seasons be played as an outfielder He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (eleven seasons; be played; in the majors) eleven seasons be played in the majors He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (He; played; eleven seasons; in the majors) He played eleven seasons; in the majors He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +0 (Cleveland Indians; be an outfielder for; the Milwaukee Braves) Cleveland Indians be an outfielder for the Milwaukee Braves He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +0 (Houston Astros; be an outfielder for; the Milwaukee Braves) Houston Astros be an outfielder for the Milwaukee Braves He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +0 (Washington Senators; be an outfielder for; the Milwaukee Braves) Washington Senators be an outfielder for the Milwaukee Braves He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . +1 (He; reached the third round at; the U.S. Open) He reached the third round at the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (he; lost to; Thai Paradorn Srichaphan) he lost to Thai Paradorn Srichaphan He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (He; reached; the third round) He reached the third round He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (the third round; be reached at; the U.S. Open) the third round be reached at the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +0 (he; lost at; Thai Paradorn Srichaphan) he lost at Thai Paradorn Srichaphan He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (He; reached the third round; at the U.S. Open) He reached the third round at the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (he; lost; to Thai Paradorn Srichaphan) he lost to Thai Paradorn Srichaphan He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (the third round; be reached; at the U.S. Open) the third round be reached at the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +0 (he; lost; at Thai Paradorn Srichaphan) he lost at Thai Paradorn Srichaphan He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (he; lost; to Thai Paradorn Srichaphan; after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round; the U.S. Open) he lost to Thai Paradorn Srichaphan; after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round; the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (He; reached; the third round at the U.S. Open) He reached the third round at the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +0 (he; lost to Thai; Paradorn Srichaphan) he lost to Thai Paradorn Srichaphan He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +0 (countryman Tommy Robredo; be defeating in; the first round and Italian Davide Sanguinetti) countryman Tommy Robredo be defeating in the first round and Italian Davide Sanguinetti He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +0 (he; to Thai; Paradorn Srichaphan) he to Thai Paradorn Srichaphan He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (countryman Tommy Robredo; be defeating in; the second round) countryman Tommy Robredo be defeating in the second round He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +0 (he; lost to Thai Paradorn Srichaphan; the U.S. Open) he lost to Thai Paradorn Srichaphan the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (he; lost to Thai Paradorn Srichaphan; after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round) he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (He; reached; the third round at the U.S. Open) He reached the third round at the U.S. Open He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . +1 (He; replaced in; the lead role of Melchior Gabor) He replaced in the lead role of Melchior Gabor He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (He; replaced on; May 23) He replaced on May 23 He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (He; replaced; 2008) He replaced 2008 He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (He; replaced; Jonathan Groff) He replaced Jonathan Groff He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (2008; be replaced in; the lead role of Melchior Gabor) 2008 be replaced in the lead role of Melchior Gabor He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (2008; be replaced on; May 23) 2008 be replaced on May 23 He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (Jonathan Groff; be replaced in; the lead role of Melchior Gabor) Jonathan Groff be replaced in the lead role of Melchior Gabor He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (Jonathan Groff; be replaced on; May 23) Jonathan Groff be replaced on May 23 He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (He; replaced; in the lead role of Melchior Gabor) He replaced in the lead role of Melchior Gabor He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (He; replaced; on May 23) He replaced on May 23 He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (2008; be replaced; in the lead role of Melchior Gabor) 2008 be replaced in the lead role of Melchior Gabor He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (2008; be replaced; on May 23) 2008 be replaced on May 23 He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (Jonathan Groff; be replaced; in the lead role of Melchior Gabor) Jonathan Groff be replaced in the lead role of Melchior Gabor He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (Jonathan Groff; be replaced; on May 23) Jonathan Groff be replaced on May 23 He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (He; replaced Jonathan Groff in; the Broadway production of the musical Spring Awakening) He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (Jonathan Groff; be replaced in; the Broadway production of the musical Spring Awakening) Jonathan Groff be replaced in the Broadway production of the musical Spring Awakening He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +1 (He; replaced Jonathan Groff in; the lead role of Melchior Gabor) He replaced Jonathan Groff in the lead role of Melchior Gabor He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (He; replaced; Jonathan Groff; in the Broadway production of the musical Spring) He replaced Jonathan Groff; in the Broadway production of the musical Spring He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (He; replaced Jonathan Groff; in the Broadway production of the musical Spring) He replaced Jonathan Groff in the Broadway production of the musical Spring He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . +0 (He; was; able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America) He was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (governors; were; young men) governors were young men He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (all new leaders; be to appoint for; this land most of the people he appointed as governors were young men) all new leaders be to appoint for this land most of the people he appointed as governors were young men He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (He; to appoint; all new leaders) He to appoint all new leaders He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (all new leaders; be to appoint; for this land most of the people he appointed as governors were young men) all new leaders be to appoint for this land most of the people he appointed as governors were young men He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (the rare Japanese; had gained; some education in Europe or America) the rare Japanese had gained some education in Europe or America He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (others; were; the rare Japanese) others were the rare Japanese He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (the people; appointed; as governors were young men) the people appointed as governors were young men He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (most of the people; were; his friends , like Matsukata Masayoshi) most of the people were his friends , like Matsukata Masayoshi He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (He; to appoint; all new leaders; for this land) He to appoint all new leaders; for this land He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (He; were his friends , like Matsukata Masayoshi was; then) He were his friends , like Matsukata Masayoshi was then He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (governors; were his friends , like Matsukata Masayoshi were; ) governors were his friends , like Matsukata Masayoshi were He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (his friends , like Matsukata Masayoshi , and others; were; the rare Japanese) his friends , like Matsukata Masayoshi , and others were the rare Japanese He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (he; appointed as; governors) he appointed as governors He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (most of the people; were; young men) most of the people were young men He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (He; then was; able) He then was able He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (He; to appoint; all new leaders most of the people he appointed as governors were young men) He to appoint all new leaders most of the people he appointed as governors were young men He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (the rare Japanese; were his friends like; Matsukata Masayoshi) the rare Japanese were his friends like Matsukata Masayoshi He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (some; were; his friends) some were his friends He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (the rare Japanese; had gained some education in; Europe or America) the rare Japanese had gained some education in Europe or America He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (others; were; the rare Japanese) others were the rare Japanese He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (he; appointed as; governors) he appointed as governors He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (the rare Japanese; had gained; some education in Europe or America) the rare Japanese had gained some education in Europe or America He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (others; were; the rare Japanese) others were the rare Japanese He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (the people; appointed; as governors were young men) the people appointed as governors were young men He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (most of the people; were; his friends , like Matsukata Masayoshi) most of the people were his friends , like Matsukata Masayoshi He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (He; to appoint all new leaders; for this land) He to appoint all new leaders for this land He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +0 (He; were his friends , like Matsukata Masayoshi was; then) He were his friends , like Matsukata Masayoshi was then He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . +1 (he; does n't believe; in the religion of Islam) he does n't believe in the religion of Islam He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (we; are; all afraid of him) we are all afraid of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (He; threatens; us) He threatens us He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (he; does n't believe in; the religion of Islam) he does n't believe in the religion of Islam He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (we; does n't believe in; the religion of Islam) we does n't believe in the religion of Islam He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (He; are afraid does of; him) He are afraid does of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (we; are afraid does of; him) we are afraid does of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (He; threatens does; us) He threatens does us He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (he; are afraid does of; him) he are afraid does of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (he; threatens does; us) he threatens does us He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (we; threatens does; us) we threatens does us He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +0 (he; does n't believe in; the religion) he does n't believe in the religion He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (He; threatens; us) He threatens us He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (we; are all afraid of; him) we are all afraid of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (he; does n't believe; in the religion of Islam) he does n't believe in the religion of Islam He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (we; are; all afraid of him) we are all afraid of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (He; threatens; us) He threatens us He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . +1 (he; does n't believe in; the religion of Islam) he does n't believe in the religion of Islam He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . '' . +0 (us and we; are all afraid of; him) us and we are all afraid of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . '' . +1 (he; does n't believe; in the religion of Islam) he does n't believe in the religion of Islam He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . '' . +0 (us and we; are all afraid; of him) us and we are all afraid of him He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . '' . +1 (He; was a producer on; several Australian television series) He was a producer on several Australian television series He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . +1 (He; was; a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide) He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . +1 (He; was a producer; on several Australian television series) He was a producer on several Australian television series He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . +1 (He; was; a producer) He was a producer He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . +1 (He; was; a producer on several Australian television series for Crawford Productions including soap opera) He was a producer on several Australian television series for Crawford Productions including soap opera He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . +1 (He; was; a producer on several Australian television series for Crawford Productions including soap opera) He was a producer on several Australian television series for Crawford Productions including soap opera He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . +1 (He; was also featured in; cover articles) He was also featured in cover articles He was also featured in cover articles for TV Guide and Instinct . +1 (He; was also featured; in cover articles) He was also featured in cover articles He was also featured in cover articles for TV Guide and Instinct . +1 (He; was featured; in cover articles for TV Guide and Instinct) He was featured in cover articles for TV Guide and Instinct He was also featured in cover articles for TV Guide and Instinct . +1 (He; was featured; in cover articles for TV Guide and Instinct) He was featured in cover articles for TV Guide and Instinct He was also featured in cover articles for TV Guide and Instinct . +0 (He; was descended from; Mecklenburg) He was descended from Mecklenburg He was descended from the B low family , an old aristocratic family from Mecklenburg . +1 (He; was descended from; the B low family) He was descended from the B low family He was descended from the B low family , an old aristocratic family from Mecklenburg . +0 (He; was descended; from Mecklenburg) He was descended from Mecklenburg He was descended from the B low family , an old aristocratic family from Mecklenburg . +1 (He; was descended; from the B low family) He was descended from the B low family He was descended from the B low family , an old aristocratic family from Mecklenburg . +1 (the B low family; [is] an old aristocratic family from; Mecklenburg) the B low family [is] an old aristocratic family from Mecklenburg He was descended from the B low family , an old aristocratic family from Mecklenburg . +0 (He; was descended an old aristocratic family from Mecklenburg from; the B low family) He was descended an old aristocratic family from Mecklenburg from the B low family He was descended from the B low family , an old aristocratic family from Mecklenburg . +0 (He; was descended; an old aristocratic family) He was descended an old aristocratic family He was descended from the B low family , an old aristocratic family from Mecklenburg . +1 (the B low family; [is] an old aristocratic family from; Mecklenburg) the B low family [is] an old aristocratic family from Mecklenburg He was descended from the B low family , an old aristocratic family from Mecklenburg . +1 (the B low family; [is] an old aristocratic family from; Mecklenburg) the B low family [is] an old aristocratic family from Mecklenburg He was descended from the B low family , an old aristocratic family from Mecklenburg . +1 (He; remain; chairman) He remain chairman He will remain chairman . +1 (He; will remain; chairman) He will remain chairman He will remain chairman . +1 (He; will remain; chairman) He will remain chairman He will remain chairman . +1 (He; will remain; chairman) He will remain chairman He will remain chairman . +1 (He; will remain; chairman) He will remain chairman He will remain chairman . +1 (He; will succeed; Arthur E. Himebaugh) He will succeed Arthur E. Himebaugh He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . +1 (He; will succeed; Arthur E. Himebaugh; as general manager Feb. 1) He will succeed Arthur E. Himebaugh; as general manager Feb. 1 He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . +0 (Mr. Himebaugh; retires; ) Mr. Himebaugh retires He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . +1 (He; will succeed Arthur E. Himebaugh as; general manager) He will succeed Arthur E. Himebaugh as general manager He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . +1 (Arthur E. Himebaugh; will be succeed as; general manager) Arthur E. Himebaugh will be succeed as general manager He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . +0 (He; will succeed Arthur E. Himebaugh; as general manager Feb. 1) He will succeed Arthur E. Himebaugh as general manager Feb. 1 He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . +1 (His regiments; had been decimated in; earlier fighting) His regiments had been decimated in earlier fighting His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (Dean; personally led; tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T) Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (tank-killer teams; be armed with; the newly-arrived 3.5-inch rocket launchers) tank-killer teams be armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (His regiments; had been decimated; in earlier fighting) His regiments had been decimated in earlier fighting His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (tank-killer teams; be armed; with the newly-arrived 3.5-inch rocket launchers) tank-killer teams be armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (tank-killer teams; armed; with the newly-arrived 3.5-inch rocket launchers) tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers; to destroy; the attacking North Korean T - 34 tanks) tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (Dean; personally led; tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers) Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (tank-killer teams; armed with; the newly-arrived 3.5-inch rocket launchers) tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +0 (Dean; be armed with; the newly-arrived 3.5-inch rocket launchers) Dean be armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +0 (tank-killer teams; armed to destroy; the attacking North Korean T) tank-killer teams armed to destroy the attacking North Korean T His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (Dean; personally led; tank-killer teams) Dean personally led tank-killer teams His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers; to destroy; the attacking North Korean T - 34 tanks) tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (Dean; personally led; tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers) Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (tank-killer teams; armed; with the newly-arrived 3.5-inch rocket launchers) tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . +1 (he; was hit on; September 1) he was hit on September 1 His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (he; was hit on; the hand) he was hit on the hand His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (C.J. Wilson; be pitcher of; Texas Rangers) C.J. Wilson be pitcher of Texas Rangers His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (he; was hit by; Texas Rangers pitcher C.J. Wilson) he was hit by Texas Rangers pitcher C.J. Wilson His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (C.J. Wilson; be pitcher for; Texas Rangers) C.J. Wilson be pitcher for Texas Rangers His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (he; was hit; on September 1) he was hit on September 1 His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (he; was hit; on the hand) he was hit on the hand His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (C.J. Wilson; be pitcher; of Texas Rangers) C.J. Wilson be pitcher of Texas Rangers His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (he; was hit; by Texas Rangers pitcher C.J. Wilson) he was hit by Texas Rangers pitcher C.J. Wilson His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (C.J. Wilson; be pitcher; for Texas Rangers) C.J. Wilson be pitcher for Texas Rangers His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (His season; was cut; short) His season was cut short His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (C.J. Wilson; [is] pitcher [of]; Texas Rangers) C.J. Wilson [is] pitcher [of] Texas Rangers His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (His season; was cut; short; when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson) His season was cut short; when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (His season; was cut; short) His season was cut short His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +0 (His season; was cut; when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson) His season was cut when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (C.J. Wilson; [is] pitcher [of]; Texas Rangers) C.J. Wilson [is] pitcher [of] Texas Rangers His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (C.J. Wilson; [is] pitcher [of]; Texas Rangers) C.J. Wilson [is] pitcher [of] Texas Rangers His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . +1 (His suspicions; were confirmed in; 1935) His suspicions were confirmed in 1935 His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (the American scientist Wendell Stanley; crystallized; the infectious particle now known as tobacco mosaic virus) the American scientist Wendell Stanley crystallized the infectious particle now known as tobacco mosaic virus His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (the infectious particle; be now known as; tobacco mosaic virus) the infectious particle be now known as tobacco mosaic virus His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (His suspicions; were confirmed; in 1935) His suspicions were confirmed in 1935 His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (the infectious particle; be now known; as tobacco mosaic virus) the infectious particle be now known as tobacco mosaic virus His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (the American scientist; crystallized; the infectious particle , now known as tobacco mosaic virus) the American scientist crystallized the infectious particle , now known as tobacco mosaic virus His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (His suspicions; were confirmed; in 1935; when the American scientist Wendell Stanley crystallized the infectious particle) His suspicions were confirmed in 1935; when the American scientist Wendell Stanley crystallized the infectious particle His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (the American scientist Wendell Stanley; crystallized; the infectious particle) the American scientist Wendell Stanley crystallized the infectious particle His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (His suspicions; were confirmed; when the American scientist Wendell Stanley crystallized the infectious particle) His suspicions were confirmed when the American scientist Wendell Stanley crystallized the infectious particle His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (the American scientist; crystallized; the infectious particle , now known as tobacco mosaic virus) the American scientist crystallized the infectious particle , now known as tobacco mosaic virus His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . +1 (archaea; However share; many aspects of the mechanisms of gene expression with eukaryotes , as well as a few) archaea However share many aspects of the mechanisms of gene expression with eukaryotes , as well as a few However , archaea share many aspects of the mechanisms of gene expression with eukaryotes , as well as a few with bacteria . +0 (National League president Chub Feeney; told; him) National League president Chub Feeney told him However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (Chub Feeney; be president of; National League) Chub Feeney be president of National League However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (Chub Feeney; be president for; National League) Chub Feeney be president for National League However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (financial interest; be to own in; their club) financial interest be to own in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (managers; to own; financial interest) managers to own financial interest However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (Chub Feeney; be president; of National League) Chub Feeney be president of National League However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (Chub Feeney; be president; for National League) Chub Feeney be president for National League However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (financial interest; be to own; in their club) financial interest be to own in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (he; only ran the team for; one game) he only ran the team for one game However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (managers; are not allowed to own; financial interest) managers are not allowed to own financial interest However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (managers; to own; financial interest in their club) managers to own financial interest in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (National League president Chub Feeney; told; him; that managers are not allowed to own financial interest in their club) National League president Chub Feeney told him; that managers are not allowed to own financial interest in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (Chub Feeney; [is] president [of]; National League) Chub Feeney [is] president [of] National League However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (he; only ran; the team; before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club) he only ran the team; before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (managers; are not allowed; ) managers are not allowed However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (he; However only ran; the team) he However only ran the team However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (National League president Chub Feeney; told him; that managers are not allowed to own financial interest in their club) National League president Chub Feeney told him that managers are not allowed to own financial interest in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (he; only ran the team; before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club) he only ran the team before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (he; only ran; the team) he only ran the team However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (Chub Feeney; [is] president [of]; National League) Chub Feeney [is] president [of] National League However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (managers; to own; financial interest in their club) managers to own financial interest in their club However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +1 (Chub Feeney; [is] president [of]; National League) Chub Feeney [is] president [of] National League However , he only ran the team for one game before National League president Chub Feeney told him that managers are not allowed to own financial interest in their club . +0 (it; contains at; the time of death) it contains at the time of death However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +1 (the carbon-14; However slowly decays into; another element) the carbon-14 However slowly decays into another element However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +0 (it; contains; at the time of death) it contains at the time of death However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +1 (the carbon-14; However slowly decays; into another element) the carbon-14 However slowly decays into another element However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +1 (the carbon-14 that it contains at the time of death; slowly decays; into another element) the carbon-14 that it contains at the time of death slowly decays into another element However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +0 (it; that contains at; the time of death) it that contains at the time of death However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +0 (it; contains at; the time) it contains at the time However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +0 (death; slowly decays into; another element) death slowly decays into another element However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +1 (the carbon-14 that it contains at the time of death; slowly decays; into another element) the carbon-14 that it contains at the time of death slowly decays into another element However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . +0 (he; is not captured home to; the plantation) he is not captured home to the plantation However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +1 (his father; However betrays; his whereabouts) his father However betrays his whereabouts However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +0 (he; is not captured home; to the plantation) he is not captured home to the plantation However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +1 (his father; betrays; his whereabouts) his father betrays his whereabouts However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +0 (his son; will die; ) his son will die However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +0 (he; is not captured; home) he is not captured home However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +1 (his father; betrays; his whereabouts) his father betrays his whereabouts However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +0 (his father; betrays his whereabouts fearing; that his son will die if he is not captured and returned home to the plantation) his father betrays his whereabouts fearing that his son will die if he is not captured and returned home to the plantation However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +0 (his father; betrays his whereabouts fearing; that his son will die if he is not captured and returned home to the plantation) his father betrays his whereabouts fearing that his son will die if he is not captured and returned home to the plantation However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +1 (his father; betrays; his whereabouts) his father betrays his whereabouts However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . +0 (government; operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in; the Wellington region of New Zealand s North Island) government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Petone; be a suburb of; the city of Lower Hutt) Petone be a suburb of the city of Lower Hutt Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (government; operated; Hutt Park Railway) government operated Hutt Park Railway Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Wellington; be region of; New Zealand s North Island) Wellington be region of New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (New Zealand s North Island; be region in; Wellington) New Zealand s North Island be region in Wellington Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (New Zealand s North Island; be region of; Wellington) New Zealand s North Island be region of Wellington Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Wellington; be region in; New Zealand s North Island) Wellington be region in New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Hutt Park Railway; be operated in; the Wellington region of New Zealand s North Island) Hutt Park Railway be operated in the Wellington region of New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (government; operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt; in the Wellington region of New Zealand s North Island) government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Petone; be a suburb; of the city of Lower Hutt) Petone be a suburb of the city of Lower Hutt Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Wellington; be region; of New Zealand s North Island) Wellington be region of New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (New Zealand s North Island; be region; in Wellington) New Zealand s North Island be region in Wellington Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (New Zealand s North Island; be region; of Wellington) New Zealand s North Island be region of Wellington Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Wellington; be region; in New Zealand s North Island) Wellington be region in New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Hutt Park Railway; be operated; in the Wellington region of New Zealand s North Island) Hutt Park Railway be operated in the Wellington region of New Zealand s North Island Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (government; operated; Hutt Park Railway; in Petone) government operated Hutt Park Railway; in Petone Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Hutt Park railway station; was; on the privately owned but government operated Hutt Park Railway in Petone) Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (government; operated Hutt Park Railway in; Petone) government operated Hutt Park Railway in Petone Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Wellington; be region of; New Zealand) Wellington be region of New Zealand Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Wellington; be region in; New Zealand) Wellington be region in New Zealand Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Hutt Park Railway; be operated in; Petone) Hutt Park Railway be operated in Petone Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Petone; be a suburb of the city of Lower Hutt in; the Wellington region of New Zealand) Petone be a suburb of the city of Lower Hutt in the Wellington region of New Zealand Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (New Zealand; be region in; Wellington) New Zealand be region in Wellington Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (the privately owned but government; operated; Hutt Park Railway) the privately owned but government operated Hutt Park Railway Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (Hutt Park railway station; was on; the privately owned but government) Hutt Park railway station was on the privately owned but government Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (Hutt Park railway station; was; on the privately owned but government operated Hutt Park Railway in Petone) Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +1 (government; operated Hutt Park Railway; in Petone) government operated Hutt Park Railway in Petone Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . +0 (she; be confirmed; by the Senate) she be confirmed by the Senate If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (she; is nominated; by President Bush) she is nominated by President Bush If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (C. Everett Koop; be rattled alike; on a range of health issues) C. Everett Koop be rattled alike on a range of health issues If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (C. Everett Koop; be rattled alike; with his outspoken views) C. Everett Koop be rattled alike with his outspoken views If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (she; be confirmed by; the Senate) she be confirmed by the Senate If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (she; is nominated by; President Bush) she is nominated by President Bush If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (C. Everett Koop; be rattled alike on; a range of health issues) C. Everett Koop be rattled alike on a range of health issues If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (C. Everett Koop; be rattled alike with; his outspoken views) C. Everett Koop be rattled alike with his outspoken views If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (C. Everett Koop; rattled alike; liberals and conservatives) C. Everett Koop rattled alike liberals and conservatives If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (she; confirmed; by the Senate) she confirmed by the Senate If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (Dr. Novello; would succeed; C. Everett Koop) Dr. Novello would succeed C. Everett Koop If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (C. Everett Koop; rattled conservatives alike with; his outspoken views) C. Everett Koop rattled conservatives alike with his outspoken views If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (C. Everett Koop; rattled liberals alike with; his outspoken views) C. Everett Koop rattled liberals alike with his outspoken views If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (liberals and conservatives; be rattled alike with; his outspoken views) liberals and conservatives be rattled alike with his outspoken views If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (C. Everett Koop; rattled; liberals and conservatives) C. Everett Koop rattled liberals and conservatives If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (C. Everett Koop; rattled alike; liberals and conservatives) C. Everett Koop rattled alike liberals and conservatives If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +0 (she; confirmed; by the Senate) she confirmed by the Senate If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . +1 (the Australian Black Swan; was introduced in; 1864) the Australian Black Swan was introduced in 1864 In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (the Australian Black Swan; was introduced to; New Zealand) the Australian Black Swan was introduced to New Zealand In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (populations; are now common on; larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands) populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (the Australian Black Swan; was introduced; in 1864) the Australian Black Swan was introduced in 1864 In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (the Australian Black Swan; was introduced; to New Zealand) the Australian Black Swan was introduced to New Zealand In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (populations; are now common; on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands) populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (populations; are; now; common on larger coastal or inland lakes) populations are now; common on larger coastal or inland lakes In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (the Australian Black Swan; was introduced; to New Zealand; as an ornamental waterfowl; In 1864) the Australian Black Swan was introduced to New Zealand; as an ornamental waterfowl; In 1864 In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (the Australian Black Swan; was introduced as; an ornamental waterfowl) the Australian Black Swan was introduced as an ornamental waterfowl In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (populations; are now common on; larger coastal or inland lakes) populations are now common on larger coastal or inland lakes In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (populations; are now common on; larger coastal or inland lakes) populations are now common on larger coastal or inland lakes In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (the Australian Black Swan; was introduced to New Zealand; In 1864) the Australian Black Swan was introduced to New Zealand In 1864 In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (the Australian Black Swan; was introduced to New Zealand; as an ornamental waterfowl) the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +0 (populations; are common on larger coastal or inland lakes; now) populations are common on larger coastal or inland lakes now In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +1 (populations; are; common on larger coastal or inland lakes) populations are common on larger coastal or inland lakes In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . +0 (She; 's a Whore , Inspector of; Police) She 's a Whore , Inspector of Police In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +1 (he; was; a co-founder member) he was a co-founder member In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (She; 's; a Whore , Inspector of Police) She 's a Whore , Inspector of Police In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (the Roost and Okano; be Ruling at; the Arts) the Roost and Okano be Ruling at the Arts In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (the Roost and Okano; be Ruling in; The Three Arrows) the Roost and Okano be Ruling in The Three Arrows In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (She; 's a Whore , Inspector; of Police) She 's a Whore , Inspector of Police In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (the Roost and Okano; be Ruling; at the Arts) the Roost and Okano be Ruling at the Arts In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (the Roost and Okano; be Ruling; in The Three Arrows) the Roost and Okano be Ruling in The Three Arrows In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (a Whore , Inspector of Police; in Ruling; the Roost and Okano) a Whore , Inspector of Police in Ruling the Roost and Okano In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (Sir Ian McKellen and Edward Petherbridge; playing; Vasques; in ' Tis Pity) Sir Ian McKellen and Edward Petherbridge playing Vasques; in ' Tis Pity In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +1 (he; was; a co-founder member; In 1972) he was a co-founder member; In 1972 In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (Vasques; be playing in; Tis Pity) Vasques be playing in Tis Pity In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (he; was; a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore) he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore with; Sir Ian McKellen and Edward Petherbridge , of the democratically run) he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore with Sir Ian McKellen and Edward Petherbridge , of the democratically run In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (She; 's; a Whore) She 's a Whore In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +1 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore in; 1972) he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore in 1972 In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (a Whore; was a co-founder member with; Sir Ian McKellen and Edward Petherbridge , of the democratically run) a Whore was a co-founder member with Sir Ian McKellen and Edward Petherbridge , of the democratically run In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +1 (a Whore; was a co-founder member in; 1972) a Whore was a co-founder member in 1972 In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore of; 1972) he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore of 1972 In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (She; 's; a Whore , Inspector) She 's a Whore , Inspector In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (a Whore , Inspector of Police; in Ruling; the Roost and Okano) a Whore , Inspector of Police in Ruling the Roost and Okano In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +0 (Sir Ian McKellen and Edward Petherbridge; playing Vasques; in ' Tis Pity) Sir Ian McKellen and Edward Petherbridge playing Vasques in ' Tis Pity In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +1 (he; was a co-founder member; In 1972) he was a co-founder member In 1972 In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . +1 (the band; reached a wider audience in; 1997) the band reached a wider audience in 1997 In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . +1 (a wider audience; be reached in; 1997) a wider audience be reached in 1997 In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . +1 (the band; reached a wider audience; in 1997) the band reached a wider audience in 1997 In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . +1 (a wider audience; be reached; in 1997) a wider audience be reached in 1997 In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . +1 (Greyston Bakery; moved in; 2004) Greyston Bakery moved in 2004 In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Greyston Bakery; moved to; a larger facility designed by Maya Lin to accommodate growth) Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (a larger facility; be designed by; Maya Lin) a larger facility be designed by Maya Lin In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Greyston Bakery; moved; in 2004) Greyston Bakery moved in 2004 In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Greyston Bakery; moved; to a larger facility designed by Maya Lin to accommodate growth) Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (a larger facility; be designed; by Maya Lin) a larger facility be designed by Maya Lin In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Greyston Bakery; moved; to a larger facility; In 2004) Greyston Bakery moved to a larger facility; In 2004 In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Greyston Bakery; moved to; a larger facility) Greyston Bakery moved to a larger facility In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Greyston Bakery; moved to a larger facility; In 2004) Greyston Bakery moved to a larger facility In 2004 In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Greyston Bakery; moved; to a larger facility) Greyston Bakery moved to a larger facility In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . +1 (Gruner + Jahr; exited the U.S. magazine business in; 2005) Gruner + Jahr exited the U.S. magazine business in 2005 In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (Gruner + Jahr; exited; the U.S. magazine business) Gruner + Jahr exited the U.S. magazine business In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (its women 's magazine portfolio; be selling to; Mansueto Ventures) its women 's magazine portfolio be selling to Mansueto Ventures In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (Gruner + Jahr; exited the U.S. magazine business; in 2005) Gruner + Jahr exited the U.S. magazine business in 2005 In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (its women 's magazine portfolio; be selling; to Mansueto Ventures) its women 's magazine portfolio be selling to Mansueto Ventures In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +0 (Gruner + Jahr; exited the U.S. magazine business selling; its women 's magazine portfolio; to the Meredith Corporation; to Mansueto Ventures) Gruner + Jahr exited the U.S. magazine business selling its women 's magazine portfolio; to the Meredith Corporation; to Mansueto Ventures In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (Gruner + Jahr; exited; the U.S. magazine business; In 2005) Gruner + Jahr exited the U.S. magazine business; In 2005 In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +0 (its women 's magazine portfolio; be selling to; the Meredith Corporation and its business magazine portfolio) its women 's magazine portfolio be selling to the Meredith Corporation and its business magazine portfolio In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (the U.S. magazine business; be exited in; 2005) the U.S. magazine business be exited in 2005 In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +0 (Gruner + Jahr; exited the U.S. magazine business selling its women 's magazine portfolio to; the Meredith Corporation and its business magazine portfolio) Gruner + Jahr exited the U.S. magazine business selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (Gruner + Jahr; exited the U.S. magazine business selling; its women 's magazine portfolio) Gruner + Jahr exited the U.S. magazine business selling its women 's magazine portfolio In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (Gruner + Jahr; exited the U.S. magazine business selling its women 's magazine portfolio; to the Meredith Corporation) Gruner + Jahr exited the U.S. magazine business selling its women 's magazine portfolio to the Meredith Corporation In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +0 (Gruner + Jahr; exited the U.S. magazine business selling its women 's magazine portfolio; to Mansueto Ventures) Gruner + Jahr exited the U.S. magazine business selling its women 's magazine portfolio to Mansueto Ventures In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (Gruner + Jahr; exited the U.S. magazine business; In 2005) Gruner + Jahr exited the U.S. magazine business In 2005 In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (Gruner + Jahr; exited the U.S. magazine business selling; its women 's magazine portfolio) Gruner + Jahr exited the U.S. magazine business selling its women 's magazine portfolio In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . +1 (the airline; launched codeshare flights from; Shanghai) the airline launched codeshare flights from Shanghai In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights in; 2005) the airline launched codeshare flights in 2005 In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights to; Germany) the airline launched codeshare flights to Germany In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights with; Lufthansa) the airline launched codeshare flights with Lufthansa In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched; codeshare flights) the airline launched codeshare flights In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched from; Shanghai) codeshare flights be launched from Shanghai In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched in; 2005) codeshare flights be launched in 2005 In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched to; Germany) codeshare flights be launched to Germany In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched with; Lufthansa) codeshare flights be launched with Lufthansa In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights; from Shanghai) the airline launched codeshare flights from Shanghai In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights; in 2005) the airline launched codeshare flights in 2005 In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights; to Germany) the airline launched codeshare flights to Germany In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights; with Lufthansa) the airline launched codeshare flights with Lufthansa In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched; from Shanghai) codeshare flights be launched from Shanghai In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched; in 2005) codeshare flights be launched in 2005 In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched; to Germany) codeshare flights be launched to Germany In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (codeshare flights; be launched; with Lufthansa) codeshare flights be launched with Lufthansa In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +0 (the airline; launched; codeshare flights with Lufthansa; from Shanghai; In 2005) the airline launched codeshare flights with Lufthansa; from Shanghai; In 2005 In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights with Lufthansa to; Germany) the airline launched codeshare flights with Lufthansa to Germany In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights with Lufthansa from; Shanghai) the airline launched codeshare flights with Lufthansa from Shanghai In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights with Lufthansa in; 2005) the airline launched codeshare flights with Lufthansa in 2005 In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched; codeshare flights with Lufthansa) the airline launched codeshare flights with Lufthansa In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights with Lufthansa; from Shanghai) the airline launched codeshare flights with Lufthansa from Shanghai In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (the airline; launched codeshare flights with Lufthansa; In 2005) the airline launched codeshare flights with Lufthansa In 2005 In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . +1 (he; returned once again in; 2008) he returned once again in 2008 In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +0 (he; returned once again to; 2008) he returned once again to 2008 In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; to perform as; a part of a two-hander) he to perform as a part of a two-hander In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; to perform with; John Robins) he to perform with John Robins In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; returned once again; in 2008) he returned once again in 2008 In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +0 (he; returned once again; to 2008) he returned once again to 2008 In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; to perform; as a part of a two-hander) he to perform as a part of a two-hander In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; to perform; with John Robins) he to perform with John Robins In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; returned; once again; to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator; In 2008) he returned once again; to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator; In 2008 In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +0 (he; to perform; ) he to perform In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; returned once again to perform as; a part of a two-hander) he returned once again to perform as a part of a two-hander In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; returned; In 2008) he returned In 2008 In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; returned; to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator) he returned to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (he; returned; once again) he returned once again In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . +1 (Lenin; dispatched Stalin in; May 1918) Lenin dispatched Stalin in May 1918 In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Lenin; dispatched Stalin to; the city of Tsaritsyn) Lenin dispatched Stalin to the city of Tsaritsyn In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Lenin; dispatched; Stalin) Lenin dispatched Stalin In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Stalin; be dispatched in; May 1918) Stalin be dispatched in May 1918 In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Stalin; be dispatched to; the city of Tsaritsyn) Stalin be dispatched to the city of Tsaritsyn In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Lenin; dispatched Stalin; in May 1918) Lenin dispatched Stalin in May 1918 In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Lenin; dispatched Stalin; to the city of Tsaritsyn) Lenin dispatched Stalin to the city of Tsaritsyn In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Stalin; be dispatched; in May 1918) Stalin be dispatched in May 1918 In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Stalin; be dispatched; to the city of Tsaritsyn) Stalin be dispatched to the city of Tsaritsyn In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Lenin; dispatched; Stalin; to the city of Tsaritsyn; In May 1918) Lenin dispatched Stalin; to the city of Tsaritsyn; In May 1918 In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (Lenin; dispatched Stalin; In May 1918) Lenin dispatched Stalin In May 1918 In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . +1 (the number of jobless; rose 0.1 % from; the previous month) the number of jobless rose 0.1 % from the previous month In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 % in; September) the number of jobless rose 0.1 % in September In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 % on; a seasonally adjusted basis) the number of jobless rose 0.1 % on a seasonally adjusted basis In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (the number of jobless; rose 0.1 % to; million) the number of jobless rose 0.1 % to million In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose; 0.1 %) the number of jobless rose 0.1 % In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose from; the previous month) 0.1 % be rose from the previous month In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose in; September) 0.1 % be rose in September In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 %; from the previous month) the number of jobless rose 0.1 % from the previous month In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 %; in September) the number of jobless rose 0.1 % in September In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 %; on a seasonally adjusted basis) the number of jobless rose 0.1 % on a seasonally adjusted basis In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (the number of jobless; rose 0.1 %; to million) the number of jobless rose 0.1 % to million In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose; from the previous month) 0.1 % be rose from the previous month In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose; in September) 0.1 % be rose in September In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose; on a seasonally adjusted basis) 0.1 % be rose on a seasonally adjusted basis In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose; to million) 0.1 % be rose to million In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose on; a seasonally adjusted basis) 0.1 % be rose on a seasonally adjusted basis In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose to; million) 0.1 % be rose to million In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose; 0.1 %; from the previous month; to 2.5 million; In September) the number of jobless rose 0.1 %; from the previous month; to 2.5 million; In September In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 % to; 2.5 million) the number of jobless rose 0.1 % to 2.5 million In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +0 (0.1 %; be rose to; 2.5 million) 0.1 % be rose to 2.5 million In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (jobless; rose; 0.1 %) jobless rose 0.1 % In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 %; In September) the number of jobless rose 0.1 % In September In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (the number of jobless; rose 0.1 %; to 2.5 million) the number of jobless rose 0.1 % to 2.5 million In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . +1 (Blue Water High; is aired in; South Africa) Blue Water High is aired in South Africa In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired on; Go) Blue Water High is aired on Go In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +0 (the local satellite system; be DSTV on; channel 123) the local satellite system be DSTV on channel 123 In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired; in South Africa) Blue Water High is aired in South Africa In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired; on Go) Blue Water High is aired on Go In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +0 (the local satellite system; be DSTV; on channel 123) the local satellite system be DSTV on channel 123 In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired; twice a week; on Go; In South Africa) Blue Water High is aired twice a week; on Go; In South Africa In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired twice on; Go) Blue Water High is aired twice on Go In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired twice on; the local satellite system) Blue Water High is aired twice on the local satellite system In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired twice in; South Africa) Blue Water High is aired twice in South Africa In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired twice a week on; Go) Blue Water High is aired twice a week on Go In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired; In South Africa) Blue Water High is aired In South Africa In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +1 (Blue Water High; is aired; twice a week) Blue Water High is aired twice a week In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . +0 (it; was incorrectly indicated; in Thursday 's edition) it was incorrectly indicated in Thursday 's edition In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (the union; had paid a fee; to former House Speaker Jim Wright) the union had paid a fee to former House Speaker Jim Wright In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (a fee; had paid; to former House Speaker Jim Wright) a fee had paid to former House Speaker Jim Wright In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (it; was incorrectly indicated in; Thursday 's edition) it was incorrectly indicated in Thursday 's edition In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (the union; had paid; a fee) the union had paid a fee In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (the union; had paid a fee to; former House Speaker Jim Wright) the union had paid a fee to former House Speaker Jim Wright In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (a fee; had paid to; former House Speaker Jim Wright) a fee had paid to former House Speaker Jim Wright In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (the union; had paid; a fee; to former House Speaker Jim Wright) the union had paid a fee; to former House Speaker Jim Wright In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (it; was incorrectly indicated; In Thursday 's edition) it was incorrectly indicated In Thursday 's edition In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (it; was incorrectly indicated; that the union had paid a fee to former House Speaker Jim Wright) it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (it; was incorrectly indicated; that the union had paid a fee to former House Speaker Jim Wright; In Thursday 's edition) it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright; In Thursday 's edition In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . +0 (shareholder Max Grill of New York; charged in; a separate complaint also filed in federal court here) shareholder Max Grill of New York charged in a separate complaint also filed in federal court here In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (shareholder Max Grill of New York; charged with; breach of fiduciary duty) shareholder Max Grill of New York charged with breach of fiduciary duty In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (a separate complaint; be also filed here in; federal court) a separate complaint be also filed here in federal court In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (shareholder Max Grill of New York; squandering; the company 's assets) shareholder Max Grill of New York squandering the company 's assets In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (Imperial , its top executives and directors; be charged in; a separate complaint also filed in federal court here) Imperial , its top executives and directors be charged in a separate complaint also filed in federal court here In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (Imperial , its top executives and directors; be charged with; breach of fiduciary duty) Imperial , its top executives and directors be charged with breach of fiduciary duty In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (shareholder Max Grill of New York; charged; in a separate complaint also filed in federal court here) shareholder Max Grill of New York charged in a separate complaint also filed in federal court here In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (shareholder Max Grill of New York; charged; with breach of fiduciary duty) shareholder Max Grill of New York charged with breach of fiduciary duty In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (a separate complaint; be also filed here; in federal court) a separate complaint be also filed here in federal court In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (Imperial , its top executives and directors; be charged; in a separate complaint also filed in federal court here) Imperial , its top executives and directors be charged in a separate complaint also filed in federal court here In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (Imperial , its top executives and directors; be charged; with breach of fiduciary duty) Imperial , its top executives and directors be charged with breach of fiduciary duty In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (Imperial; squandering; the company 's assets) Imperial squandering the company 's assets In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (a separate complaint; filed; in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets) a separate complaint filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (shareholder Max Grill of New York; charged; Imperial; with breach of fiduciary duty; In a separate complaint) shareholder Max Grill of New York charged Imperial; with breach of fiduciary duty; In a separate complaint In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (shareholder Max Grill of New York; charged Imperial , its top executives and directors with; breach of fiduciary duty) shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (shareholder Max Grill of New York; charged Imperial , its top executives and directors in; a separate complaint also filed in federal court) shareholder Max Grill of New York charged Imperial , its top executives and directors in a separate complaint also filed in federal court In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (Imperial; be charged with; breach of fiduciary duty) Imperial be charged with breach of fiduciary duty In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (shareholder Max Grill of New York; charged; Imperial) shareholder Max Grill of New York charged Imperial In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (a separate complaint; be also filed in; federal court) a separate complaint be also filed in federal court In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (Imperial; be charged in; a separate complaint also filed in federal court) Imperial be charged in a separate complaint also filed in federal court In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (New York; charged; Imperial) New York charged Imperial In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (shareholder Max Grill of New York; charged; Imperial) shareholder Max Grill of New York charged Imperial In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (shareholder Max Grill of New York; charged Imperial; In a separate complaint) shareholder Max Grill of New York charged Imperial In a separate complaint In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +1 (shareholder Max Grill of New York; charged Imperial; with breach of fiduciary duty) shareholder Max Grill of New York charged Imperial with breach of fiduciary duty In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (Imperial; squandering; the company 's assets) Imperial squandering the company 's assets In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (a separate complaint; filed; in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets) a separate complaint filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . +0 (their kidneys; have; small glomeruli or lack glomeruli) their kidneys have small glomeruli or lack glomeruli In addition , their kidneys have small glomeruli or lack glomeruli entirely . +0 (their kidneys; have in; addition) their kidneys have in addition In addition , their kidneys have small glomeruli or lack glomeruli entirely . +0 (their kidneys; have; in addition) their kidneys have in addition In addition , their kidneys have small glomeruli or lack glomeruli entirely . +0 (their kidneys; have; small glomeruli or lack glomeruli entirely) their kidneys have small glomeruli or lack glomeruli entirely In addition , their kidneys have small glomeruli or lack glomeruli entirely . +0 (their kidneys; have small glomeruli or lack glomeruli entirely in; addition) their kidneys have small glomeruli or lack glomeruli entirely in addition In addition , their kidneys have small glomeruli or lack glomeruli entirely . +0 (their kidneys; have; small glomeruli or lack glomeruli entirely) their kidneys have small glomeruli or lack glomeruli entirely In addition , their kidneys have small glomeruli or lack glomeruli entirely . +1 (researchers; transformed the differentiated cells into; ES cells) researchers transformed the differentiated cells into ES cells In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed; the differentiated cells) researchers transformed the differentiated cells In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (the differentiated cells; be transformed into; ES cells) the differentiated cells be transformed into ES cells In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed the differentiated cells; into ES cells) researchers transformed the differentiated cells into ES cells In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (the differentiated cells; be transformed; into ES cells) the differentiated cells be transformed into ES cells In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +0 (researchers; transformed the differentiated cells by using; retroviruses; to introduce extra cloned copies of four) researchers transformed the differentiated cells by using retroviruses; to introduce extra cloned copies of four In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed; the differentiated cells; into ES cells; by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes; In all these cases) researchers transformed the differentiated cells; into ES cells; by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes; In all these cases In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed the differentiated cells in; these cases) researchers transformed the differentiated cells in these cases In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (the differentiated cells; be transformed in; these cases) the differentiated cells be transformed in these cases In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed the differentiated cells; In all these cases) researchers transformed the differentiated cells In all these cases In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed the differentiated cells; by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes) researchers transformed the differentiated cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed the differentiated cells by using; retroviruses) researchers transformed the differentiated cells by using retroviruses In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +1 (researchers; transformed the differentiated cells by using retroviruses; to introduce extra cloned copies of four) researchers transformed the differentiated cells by using retroviruses to introduce extra cloned copies of four In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four '' stem cell '' master regulatory genes . +0 (the potentially fatal disease botulism; is caused in; another example) the potentially fatal disease botulism is caused in another example In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused including; improperly canned meat , seafood , and vegetables) the potentially fatal disease botulism is caused including improperly canned meat , seafood , and vegetables In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (an exotoxin; secreted by; the gram-positive bacterium Clostridium botulinum) an exotoxin secreted by the gram-positive bacterium Clostridium botulinum In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (it; ferments; various foods) it ferments various foods In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (the potentially fatal disease botulism; is caused by; botulinum toxin) the potentially fatal disease botulism is caused by botulinum toxin In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused; in another example) the potentially fatal disease botulism is caused in another example In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused; including improperly canned meat , seafood , and vegetables) the potentially fatal disease botulism is caused including improperly canned meat , seafood , and vegetables In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (an exotoxin; secreted; by the gram-positive bacterium Clostridium botulinum) an exotoxin secreted by the gram-positive bacterium Clostridium botulinum In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (the potentially fatal disease botulism; is caused; by botulinum toxin) the potentially fatal disease botulism is caused by botulinum toxin In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (it; ferments; various foods , including improperly canned meat , seafood , and vegetables) it ferments various foods , including improperly canned meat , seafood , and vegetables In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (an exotoxin; secreted; by the gram-positive bacterium) an exotoxin secreted by the gram-positive bacterium In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused; an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables) the potentially fatal disease botulism is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused vegetables by; botulinum toxin) the potentially fatal disease botulism is caused vegetables by botulinum toxin In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , by; botulinum toxin) the potentially fatal disease botulism is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , by botulinum toxin In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused vegetables in; another example) the potentially fatal disease botulism is caused vegetables in another example In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (the potentially fatal disease botulism; is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , in; another example) the potentially fatal disease botulism is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , in another example In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (seafood; be various foods including; canned meat) seafood be various foods including canned meat In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (an exotoxin; secreted; by the gram-positive bacterium) an exotoxin secreted by the gram-positive bacterium In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +1 (it; ferments; various foods , including improperly canned meat , seafood , and vegetables) it ferments various foods , including improperly canned meat , seafood , and vegetables In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . +0 (they; gain; most of their heat) they gain most of their heat In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +1 (they; gain most of their heat from; external sources) they gain most of their heat from external sources In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +0 (amphibians , lizards , snakes , turtles , many fishes , and most invertebrates; are mainly ectothermic in; contrast) amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic in contrast In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +1 (most of their heat; be gain from; external sources) most of their heat be gain from external sources In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +1 (they; gain most of their heat; from external sources) they gain most of their heat from external sources In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +0 (amphibians , lizards , snakes , turtles , many fishes , and most invertebrates; are mainly ectothermic; in contrast) amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic in contrast In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +1 (most of their heat; be gain; from external sources) most of their heat be gain from external sources In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +1 (they; gain; most of their heat; from external sources) they gain most of their heat; from external sources In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +1 (amphibians , lizards , snakes , turtles , many fishes , and most invertebrates; are mainly; ectothermic) amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +0 (they; gain most of; their heat) they gain most of their heat In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +1 (amphibians , lizards , snakes , turtles , many fishes , and most invertebrates; are mainly; ectothermic) amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . +0 (the right hemisphere; appears in; contrast) the right hemisphere appears in contrast In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . +0 (the right hemisphere; appears; in contrast) the right hemisphere appears in contrast In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . +0 (the right hemisphere; appears to be; dominant) the right hemisphere appears to be dominant In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . +0 (the right hemisphere; appears; ) the right hemisphere appears In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . +0 (the right hemisphere; appears to be dominant in; the recognition) the right hemisphere appears to be dominant in the recognition In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . +0 (the right hemisphere; appears to be; dominant) the right hemisphere appears to be dominant In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . +1 (a brief electrical pulse applied to a solution; creates temporary holes in; electroporation) a brief electrical pulse applied to a solution creates temporary holes in electroporation In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse applied to a solution; creates temporary holes in; their plasma membranes which DNA can enter) a brief electrical pulse applied to a solution creates temporary holes in their plasma membranes which DNA can enter In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse applied to a solution; creates; temporary holes) a brief electrical pulse applied to a solution creates temporary holes In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse; be applied to; a solution containing cells) a brief electrical pulse be applied to a solution containing cells In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a solution; containing; cells) a solution containing cells In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse applied to a solution; creates temporary holes; in electroporation) a brief electrical pulse applied to a solution creates temporary holes in electroporation In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse applied to a solution; creates temporary holes; in their plasma membranes which DNA can enter) a brief electrical pulse applied to a solution creates temporary holes in their plasma membranes which DNA can enter In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse; be applied; to a solution containing cells) a brief electrical pulse be applied to a solution containing cells In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse; applied; to a solution) a brief electrical pulse applied to a solution In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse applied to a solution; creates; temporary holes; In electroporation) a brief electrical pulse applied to a solution creates temporary holes; In electroporation In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +0 (DNA; can enter; ) DNA can enter In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse; applied in; electroporation) a brief electrical pulse applied in electroporation In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +0 (a solution containing cells; creates temporary holes in; their plasma membranes) a solution containing cells creates temporary holes in their plasma membranes In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse; applied to; a solution containing cells) a brief electrical pulse applied to a solution containing cells In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +1 (a brief electrical pulse; applied; to a solution) a brief electrical pulse applied to a solution In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +0 (a brief electrical pulse applied to a solution; creates temporary holes; In electroporation) a brief electrical pulse applied to a solution creates temporary holes In electroporation In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . +0 (Mr. Miller; said; in response) Mr. Miller said in response In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +1 (the company; is no longer looking; for an equity investor) the company is no longer looking for an equity investor In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (Mr. Miller; said; to response) Mr. Miller said to response In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (response; said; to Mr. Miller) response said to Mr. Miller In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (Mr. Miller; said in; response) Mr. Miller said in response In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +1 (the company; is no longer looking for; an equity investor) the company is no longer looking for an equity investor In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (Mr. Miller; said to; response) Mr. Miller said to response In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (response; said to; Mr. Miller) response said to Mr. Miller In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +1 (the company; is looking; for an equity investor; no longer) the company is looking for an equity investor; no longer In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +1 (Mr. Miller; said; the company is no longer looking for an equity investor; In response to questions after the annual meeting) Mr. Miller said the company is no longer looking for an equity investor; In response to questions after the annual meeting In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (Mr. Miller; said after; the annual meeting) Mr. Miller said after the annual meeting In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (Mr. Miller; said; response) Mr. Miller said response In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (Mr. Miller; said; the company) Mr. Miller said the company In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (Mr. Miller; said the company is no longer looking for an equity investor; In response to questions after the annual meeting) Mr. Miller said the company is no longer looking for an equity investor In response to questions after the annual meeting In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +1 (Mr. Miller; said; the company is no longer looking for an equity investor) Mr. Miller said the company is no longer looking for an equity investor In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (the company; is looking for an equity investor; no longer) the company is looking for an equity investor no longer In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (the company; is looking; for an equity investor) the company is looking for an equity investor In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . +0 (DNA analyses; have shown in; the case of naked mole rats) DNA analyses have shown in the case of naked mole rats In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . +0 (DNA analyses; have shown; in the case of naked mole rats) DNA analyses have shown in the case of naked mole rats In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . +0 (all the individuals in a colony; are closely; related) all the individuals in a colony are closely related In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . +1 (DNA analyses; have shown; that all the individuals in a colony are closely related; In the case of naked mole rats) DNA analyses have shown that all the individuals in a colony are closely related; In the case of naked mole rats In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . +0 (all the individuals in a colony; are closely; related) all the individuals in a colony are closely related In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . +0 (DNA analyses; have shown that all the individuals in a colony are closely related; In the case of naked mole rats) DNA analyses have shown that all the individuals in a colony are closely related In the case of naked mole rats In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . +1 (DNA analyses; have shown; that all the individuals in a colony are closely related) DNA analyses have shown that all the individuals in a colony are closely related In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . +1 (aquatic animals; to be very efficient in; gas exchange) aquatic animals to be very efficient in gas exchange In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (adaptations; have evolved in; the context of these challenges) adaptations have evolved in the context of these challenges In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +0 (aquatic animals; be; efficient) aquatic animals be efficient In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (aquatic animals; to be very efficient; in gas exchange) aquatic animals to be very efficient in gas exchange In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (adaptations; have evolved; in the context of these challenges) adaptations have evolved in the context of these challenges In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (most aquatic animals; to be; very efficient in gas exchange) most aquatic animals to be very efficient in gas exchange In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (that; enable; most aquatic animals; to be very efficient in gas exchange) that enable most aquatic animals; to be very efficient in gas exchange In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (adaptations; have evolved; that enable most aquatic animals to be very efficient in gas exchange; In the context of these challenges) adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange; In the context of these challenges In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +0 (adaptations; have evolved that enable most aquatic animals to be very efficient in gas exchange in; the context of these challenges) adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange in the context of these challenges In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +0 (adaptations; have evolved that enable most aquatic animals to be very efficient in gas exchange; In the context of these challenges) adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange In the context of these challenges In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (most aquatic animals; to be; very efficient in gas exchange) most aquatic animals to be very efficient in gas exchange In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (adaptations; have evolved; that enable most aquatic animals to be very efficient in gas exchange) adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (that; enable; most aquatic animals) that enable most aquatic animals In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (that; enable most aquatic animals; to be very efficient in gas exchange) that enable most aquatic animals to be very efficient in gas exchange In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . +1 (workers; would receive; a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year) workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (workers; would receive in; the second year) workers would receive in the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (a 3 % wage boost and a 3 % bonus; be followed without; a bonus) a 3 % wage boost and a 3 % bonus be followed without a bonus In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (a 3 % wage boost and a 3 % bonus; be followed by; a 3 % increase) a 3 % wage boost and a 3 % bonus be followed by a 3 % increase In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year; would be receive in; the second year) a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year would be receive in the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (a 3 % increase; followed without; a bonus) a 3 % increase followed without a bonus In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (workers; would receive; in the second year) workers would receive in the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (a 3 % wage boost and a 3 % bonus; be followed; without a bonus) a 3 % wage boost and a 3 % bonus be followed without a bonus In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (a 3 % wage boost and a 3 % bonus; be followed; by a 3 % increase) a 3 % wage boost and a 3 % bonus be followed by a 3 % increase In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year; would be receive; in the second year) a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year would be receive in the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (a 3 % increase; followed; without a bonus) a 3 % increase followed without a bonus In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (workers; would receive; a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year; In the second year) workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year; In the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (a 3 % wage boost and a 3 % bonus; followed; by a 3 % increase without a bonus in the third year) a 3 % wage boost and a 3 % bonus followed by a 3 % increase without a bonus in the third year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (workers; would receive a 3 % bonus in; the second year) workers would receive a 3 % bonus in the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (workers; would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year in; the second year) workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year in the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (workers; would receive; a 3 % wage boost) workers would receive a 3 % wage boost In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (a 3 % wage boost and a 3 % bonus; followed; by a 3 % increase without a bonus in the third year) a 3 % wage boost and a 3 % bonus followed by a 3 % increase without a bonus in the third year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +0 (workers; would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year; In the second year) workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year In the second year In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . +1 (Interspec Inc.; reported a net loss of $ 2.4 million for; the fiscal third quarter ended Aug. 31) Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +0 (Interspec Inc.; reported; a net loss of $) Interspec Inc. reported a net loss of $ Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +0 (a net loss of $; be reported for; the fiscal third quarter ended Aug. 31) a net loss of $ be reported for the fiscal third quarter ended Aug. 31 Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (the fiscal third quarter; be ended in; Aug. 31) the fiscal third quarter be ended in Aug. 31 Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (Interspec Inc.; reported a net loss of $ 2.4 million; for the fiscal third quarter ended Aug. 31) Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +0 (a net loss of $; be reported; for the fiscal third quarter ended Aug. 31) a net loss of $ be reported for the fiscal third quarter ended Aug. 31 Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (the fiscal third quarter; be ended; in Aug. 31) the fiscal third quarter be ended in Aug. 31 Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (the fiscal third quarter; ended; Aug) the fiscal third quarter ended Aug Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (Interspec Inc.; reported; a net loss of $ 2.4 million) Interspec Inc. reported a net loss of $ 2.4 million Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (Interspec Inc.; reported a net loss of; $ 2.4 million) Interspec Inc. reported a net loss of $ 2.4 million Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (Interspec Inc; reported; a net loss of $ 2.4 million for the fiscal third quarter) Interspec Inc reported a net loss of $ 2.4 million for the fiscal third quarter Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (the fiscal third quarter; ended; Aug) the fiscal third quarter ended Aug Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . +1 (neither side; be satisfies; by a distinction) neither side be satisfies by a distinction It is a distinction that satisfies neither side in the debate . +1 (It; is; a distinction that satisfies neither side in the debate) It is a distinction that satisfies neither side in the debate It is a distinction that satisfies neither side in the debate . +1 (neither side; be satisfies by; a distinction) neither side be satisfies by a distinction It is a distinction that satisfies neither side in the debate . +1 (It; is; a distinction) It is a distinction It is a distinction that satisfies neither side in the debate . +0 (It; is a distinction that; satisfies) It is a distinction that satisfies It is a distinction that satisfies neither side in the debate . +0 (It; is a distinction that; satisfies) It is a distinction that satisfies It is a distinction that satisfies neither side in the debate . +0 (It; is a distinction that; satisfies) It is a distinction that satisfies It is a distinction that satisfies neither side in the debate . +1 (such features; reflect; evolutionary relationships) such features reflect evolutionary relationships It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . +0 (It; is; important) It is important It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . +1 (features; result from; common ancestry) features result from common ancestry It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . +1 (features; result; from common ancestry) features result from common ancestry It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . +1 (only such features; reflect; evolutionary relationships) only such features reflect evolutionary relationships It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . +0 (It; is important to focus on; features) It is important to focus on features It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . +0 (It; is the presence; of internal and external `` enemies) It is the presence of internal and external `` enemies It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +1 (the presence of internal and external `` enemies; justifies the need; for a large , active army) the presence of internal and external `` enemies justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (Mikhail Gorbachev 's Soviet Union; to supply; with bullets) Mikhail Gorbachev 's Soviet Union to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +1 (the need; be justifies; by the presence of internal and external `` enemies) the need be justifies by the presence of internal and external `` enemies It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +1 (the presence of internal and external `` enemies; justifies the need for; a large , active army) the presence of internal and external `` enemies justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (It; is; the presence of internal and external `` enemies which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets) It is the presence of internal and external `` enemies which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (Mikhail Gorbachev 's Soviet Union; to supply with; bullets) Mikhail Gorbachev 's Soviet Union to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +1 (the need; be justifies by; the presence of internal and external `` enemies) the need be justifies by the presence of internal and external `` enemies It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +1 (internal and external `` enemies; justifies the need for; a large , active army) internal and external `` enemies justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (Mikhail Gorbachev 's Soviet Union; continues to supply; with bullets) Mikhail Gorbachev 's Soviet Union continues to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (a large , active army; continues; to supply with bullets) a large , active army continues to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +1 (the presence of internal and external `` enemies; justifies; the need for a large , active army) the presence of internal and external `` enemies justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (It; is; the presence of internal and external `` enemies '' which justifies the need for a large , active army) It is the presence of internal and external `` enemies '' which justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (It; is the presence of; internal and external `` enemies) It is the presence of internal and external `` enemies It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (Mikhail Gorbachev 's Soviet Union; continues to supply with; bullets) Mikhail Gorbachev 's Soviet Union continues to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (It; is; the presence of internal and external `` enemies which justifies the need for a large , active army) It is the presence of internal and external `` enemies which justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (Mikhail Gorbachev 's Soviet Union; continues to supply; with bullets) Mikhail Gorbachev 's Soviet Union continues to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +1 (the presence of internal and external `` enemies; justifies; the need for a large , active army) the presence of internal and external `` enemies justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (a large , active army; continues; to supply with bullets) a large , active army continues to supply with bullets It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (It; is; the presence of internal and external `` enemies '' which justifies the need for a large , active army) It is the presence of internal and external `` enemies '' which justifies the need for a large , active army It is the presence of internal and external `` enemies '' which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . +0 (It; takes encouragement from; one of the schoolboys) It takes encouragement from one of the schoolboys It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (he; carries on for; the sake of Grace) he carries on for the sake of Grace It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (It; takes; encouragement) It takes encouragement It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (David; to contemplate life without; his wife) David to contemplate life without his wife It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (life; be to contemplate without; his wife) life be to contemplate without his wife It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (It; takes encouragement; from one of the schoolboys) It takes encouragement from one of the schoolboys It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (he; carries on; for the sake of Grace) he carries on for the sake of Grace It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (David; to contemplate life; without his wife) David to contemplate life without his wife It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (life; be to contemplate; without his wife) life be to contemplate without his wife It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (David; to contemplate; life) David to contemplate life It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (It; to persuade; David; to contemplate life without his wife) It to persuade David; to contemplate life without his wife It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (life; to be contemplate without; his wife) life to be contemplate without his wife It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (It; takes encouragement to persuade; David) It takes encouragement to persuade David It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (It; takes encouragement from; one) It takes encouragement from one It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (he; carries on for; the sake) he carries on for the sake It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (David; to contemplate; life) David to contemplate life It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (It; to persuade; David) It to persuade David It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +0 (It; to persuade David; to contemplate life without his wife) It to persuade David to contemplate life without his wife It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . +1 (Italy 's unemployment rate; rose; from 11.9 %) Italy 's unemployment rate rose from 11.9 % Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; rose; to 12 % of the labor force) Italy 's unemployment rate rose to 12 % of the labor force Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; rose from; 11.9 %) Italy 's unemployment rate rose from 11.9 % Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; rose to; 12 % of the labor force) Italy 's unemployment rate rose to 12 % of the labor force Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; rose; to 12 % of the labor force; in July; from 11.9 % in April) Italy 's unemployment rate rose to 12 % of the labor force; in July; from 11.9 % in April Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; was; up from 11.7 % a year earlier) Italy 's unemployment rate was up from 11.7 % a year earlier Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; rose in; July) Italy 's unemployment rate rose in July Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +0 (Italy 's unemployment rate; rose in; April) Italy 's unemployment rate rose in April Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +0 ('s unemployment rate; rose to; 12 %) 's unemployment rate rose to 12 % Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +0 (11.9 %; was up from; 11.7 %) 11.9 % was up from 11.7 % Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; was; up from 11.7 % a year earlier) Italy 's unemployment rate was up from 11.7 % a year earlier Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; rose; in July) Italy 's unemployment rate rose in July Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (Italy 's unemployment rate; rose; from 11.9 % in April) Italy 's unemployment rate rose from 11.9 % in April Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . +1 (the provision; be initially drafted by; Mr. Gray) the provision be initially drafted by Mr. Gray Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (a claim; be to insert by; the Philippines) a claim be to insert by the Philippines Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Mr. Inouye; has strong ties to; the sugar industry) Mr. Inouye has strong ties to the sugar industry Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (Mr. Inouye; is; able) Mr. Inouye is able Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (strong ties; be has by; Mr. Inouye) strong ties be has by Mr. Inouye Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (Mr. Inouye; to insert; a claim) Mr. Inouye to insert a claim Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (the provision; be initially drafted; by Mr. Gray) the provision be initially drafted by Mr. Gray Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (a claim; be to insert; by the Philippines) a claim be to insert by the Philippines Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Mr. Inouye; has strong ties; to the sugar industry) Mr. Inouye has strong ties to the sugar industry Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (strong ties; be has; by Mr. Inouye) strong ties be has by Mr. Inouye Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (Mr. Inouye; to insert; a claim by the Philippines) Mr. Inouye to insert a claim by the Philippines Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Mr. Inouye; has; strong ties to the sugar industry) Mr. Inouye has strong ties to the sugar industry Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (the greater question; is; whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines) the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (the provision; drafted; by Mr. Gray; initially) the provision drafted by Mr. Gray; initially Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (its lobbyist; to abandon; the provision initially drafted by Mr. Gray) its lobbyist to abandon the provision initially drafted by Mr. Gray Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Jamaica; has apparently instructed; its lobbyist; to abandon the provision) Jamaica has apparently instructed its lobbyist; to abandon the provision Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Jamaica , wary; has apparently instructed; its lobbyist to abandon the provision) Jamaica , wary has apparently instructed its lobbyist to abandon the provision Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (a claim; to be insert by; the Philippines) a claim to be insert by the Philippines Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (the greater question; is whether; Mr. Inouye) the greater question is whether Mr. Inouye Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Jamaica; has apparently instructed; its lobbyist) Jamaica has apparently instructed its lobbyist Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Mr. Inouye; has; strong ties to the sugar industry) Mr. Inouye has strong ties to the sugar industry Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (Mr. Inouye; to insert; a claim by the Philippines) Mr. Inouye to insert a claim by the Philippines Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (the greater question; is; whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines) the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Jamaica; has apparently instructed its lobbyist; to abandon the provision) Jamaica has apparently instructed its lobbyist to abandon the provision Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (the provision; drafted; by Mr. Gray) the provision drafted by Mr. Gray Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (its lobbyist; to abandon; the provision initially drafted by Mr. Gray) its lobbyist to abandon the provision initially drafted by Mr. Gray Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Jamaica; has apparently instructed; its lobbyist) Jamaica has apparently instructed its lobbyist Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +0 (the provision; drafted; initially) the provision drafted initially Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . +1 (Ji-an; is a township near; Hualien City) Ji-an is a township near Hualien City Ji-an , Hualien , is a township near Hualien City , Taiwan . +1 (Hualien City; is a township near; Taiwan) Hualien City is a township near Taiwan Ji-an , Hualien , is a township near Hualien City , Taiwan . +1 (Ji-an; is; a township) Ji-an is a township Ji-an , Hualien , is a township near Hualien City , Taiwan . +1 (Ji-an; is a township; near Hualien City) Ji-an is a township near Hualien City Ji-an , Hualien , is a township near Hualien City , Taiwan . +1 (Hualien City; is a township; near Taiwan) Hualien City is a township near Taiwan Ji-an , Hualien , is a township near Hualien City , Taiwan . +1 (Hualien; is; a township near Hualien City) Hualien is a township near Hualien City Ji-an , Hualien , is a township near Hualien City , Taiwan . +1 (Hualien; is; a township near Hualien City) Hualien is a township near Hualien City Ji-an , Hualien , is a township near Hualien City , Taiwan . +0 (the government alleged; who was the `` captain; of organized crime) the government alleged who was the `` captain of organized crime Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (Joseph Lombardo; be numerous defendants; in the government 's sweeping racketeering suit) Joseph Lombardo be numerous defendants in the government 's sweeping racketeering suit Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (the government alleged; who was the `` captain of; organized crime) the government alleged who was the `` captain of organized crime Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +1 (Joseph Lombardo; was; one of numerous defendants) Joseph Lombardo was one of numerous defendants Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (the government alleged; was; the `` captain '' of organized crime) the government alleged was the `` captain '' of organized crime Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (Joseph Lombardo; be numerous defendants in; the government 's sweeping racketeering suit) Joseph Lombardo be numerous defendants in the government 's sweeping racketeering suit Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (Joseph Lombardo; alleged; was the `` captain '' of organized crime in Chicago) Joseph Lombardo alleged was the `` captain '' of organized crime in Chicago Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +1 (Joseph Lombardo; was; one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters) Joseph Lombardo was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (Joseph Lombardo; was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters was; ) Joseph Lombardo was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters was Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +1 (organized crime; was one of; numerous defendants) organized crime was one of numerous defendants Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (the government; alleged was; the `` captain) the government alleged was the `` captain Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +1 (Joseph Lombardo; was; one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters) Joseph Lombardo was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +0 (Joseph Lombardo; alleged; was the `` captain '' of organized crime in Chicago) Joseph Lombardo alleged was the `` captain '' of organized crime in Chicago Joseph Lombardo , who the government alleged was the `` captain '' of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . +1 (Junge; was then traded to; the Philadelphia Phillies) Junge was then traded to the Philadelphia Phillies Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was originally drafted by; the Los Angeles Dodgers) Junge was originally drafted by the Los Angeles Dodgers Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was then traded; to the Philadelphia Phillies) Junge was then traded to the Philadelphia Phillies Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was originally drafted; by the Los Angeles Dodgers) Junge was originally drafted by the Los Angeles Dodgers Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was drafted; by the Los Angeles Dodgers; originally) Junge was drafted by the Los Angeles Dodgers; originally Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was traded; to the Philadelphia Phillies; in; then) Junge was traded to the Philadelphia Phillies; in; then Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was originally drafted in; the 1999 amateur draft) Junge was originally drafted in the 1999 amateur draft Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was then traded in to; the Philadelphia Phillies) Junge was then traded in to the Philadelphia Phillies Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +0 (the Los Angeles Dodgers; was then traded to; the Philadelphia Phillies) the Los Angeles Dodgers was then traded to the Philadelphia Phillies Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was drafted; by the Los Angeles Dodgers) Junge was drafted by the Los Angeles Dodgers Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Junge; was traded; to the Philadelphia Phillies) Junge was traded to the Philadelphia Phillies Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +0 (Junge; was drafted; originally) Junge was drafted originally Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +0 (Junge; was traded to the Philadelphia Phillies; then) Junge was traded to the Philadelphia Phillies then Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +0 (Junge; was traded to the Philadelphia Phillies; in) Junge was traded to the Philadelphia Phillies in Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . +1 (Lakitelek; is a large village in; B cs-Kiskun county) Lakitelek is a large village in B cs-Kiskun county Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Lakitelek; is a large village in; the Southern Great Plain region of southern Hungary) Lakitelek is a large village in the Southern Great Plain region of southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Southern Great Plain; be region of; southern Hungary) Southern Great Plain be region of southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +0 (southern Hungary; be region in; Southern Great Plain) southern Hungary be region in Southern Great Plain Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +0 (southern Hungary; be region of; Southern Great Plain) southern Hungary be region of Southern Great Plain Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Southern Great Plain; be region in; southern Hungary) Southern Great Plain be region in southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (B cs-Kiskun county; be the Southern Great Plain region of; southern Hungary) B cs-Kiskun county be the Southern Great Plain region of southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Lakitelek; is; a large village) Lakitelek is a large village Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Lakitelek; is a large village; in B cs-Kiskun county) Lakitelek is a large village in B cs-Kiskun county Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Lakitelek; is a large village; in the Southern Great Plain region of southern Hungary) Lakitelek is a large village in the Southern Great Plain region of southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Southern Great Plain; be region; of southern Hungary) Southern Great Plain be region of southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +0 (southern Hungary; be region; in Southern Great Plain) southern Hungary be region in Southern Great Plain Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +0 (southern Hungary; be region; of Southern Great Plain) southern Hungary be region of Southern Great Plain Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Southern Great Plain; be region; in southern Hungary) Southern Great Plain be region in southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (B cs-Kiskun county; be the Southern Great Plain region; of southern Hungary) B cs-Kiskun county be the Southern Great Plain region of southern Hungary Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Lakitelek; is; a large village in B cs-Kiskun county) Lakitelek is a large village in B cs-Kiskun county Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (Lakitelek; is; a large village in B cs-Kiskun county) Lakitelek is a large village in B cs-Kiskun county Lakitelek is a large village in B cs-Kiskun county , in the Southern Great Plain region of southern Hungary . +1 (the filtering activities of freshwater; bivalves purify; the waters of streams , rivers , and lakes) the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +0 (Land snails; play a key role in nutrient cycling for; example) Land snails play a key role in nutrient cycling for example Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +0 (Land snails; play a key role in nutrient cycling; for example) Land snails play a key role in nutrient cycling for example Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (Land snails; play; a key role in nutrient cycling) Land snails play a key role in nutrient cycling Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (the filtering activities of freshwater bivalves; purify; the waters of streams , rivers , and lakes) the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (Land snails; play; a key role) Land snails play a key role Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (the filtering activities of freshwater bivalves; purify; the waters of streams) the filtering activities of freshwater bivalves purify the waters of streams Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +0 (lakes; be the filtering activities of; freshwater bivalves) lakes be the filtering activities of freshwater bivalves Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +0 (rivers; be the waters of; streams) rivers be the waters of streams Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (Land snails; play a key role in; nutrient cycling) Land snails play a key role in nutrient cycling Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (freshwater bivalves; purify; the waters) freshwater bivalves purify the waters Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (the filtering activities of freshwater bivalves; purify; the waters of streams , rivers , and lakes) the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +1 (Land snails; play; a key role in nutrient cycling) Land snails play a key role in nutrient cycling Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . +0 (we; Later will also examine in; this chapter) we Later will also examine in this chapter Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +1 (the other organisms; are part of; an individual 's environment) the other organisms are part of an individual 's environment Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (we; Later will also examine; in this chapter) we Later will also examine in this chapter Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +1 (the other organisms; are part; of an individual 's environment) the other organisms are part of an individual 's environment Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (the other organisms; are part of; an individual) the other organisms are part of an individual Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (that; are part of; an individual) that are part of an individual Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +1 (the other organisms; are; part of an individual 's environment) the other organisms are part of an individual 's environment Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +1 (we; will also examine; how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth; Later in this chapter) we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth; Later in this chapter Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (we; Later in this chapter will also examine; factors) we Later in this chapter will also examine factors Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +1 (the other organisms; are; part of an individual 's environment) the other organisms are part of an individual 's environment Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +1 (we; will also examine; how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth) we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (we; will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth; Later in this chapter) we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth Later in this chapter Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (that; are part of; an individual) that are part of an individual Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (that; are part of; an individual) that are part of an individual Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . +0 (him; kisses; him) him kisses him Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +0 (him; to forget about; her) him to forget about her Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; to brood upon; Lenneth and Platina) Lucian to brood upon Lenneth and Platina Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +0 (him; to forget; about her) him to forget about her Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; to brood; upon Lenneth and Platina) Lucian to brood upon Lenneth and Platina Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; continues; to brood upon Lenneth and Platina) Lucian continues to brood upon Lenneth and Platina Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; continues to brood; upon Lenneth and Platina) Lucian continues to brood upon Lenneth and Platina Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lenneth; tells; him; to forget about her) Lenneth tells him; to forget about her Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (he; departs; ) he departs Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; continues to; brood) Lucian continues to brood Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +0 (Lenneth; tells him to forget about; her and kisses) Lenneth tells him to forget about her and kisses Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +0 (Lenneth; to forget about; her and kisses) Lenneth to forget about her and kisses Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lenneth; tells; him) Lenneth tells him Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; continues to; brood) Lucian continues to brood Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lenneth; tells; him) Lenneth tells him Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lenneth; tells; him) Lenneth tells him Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; continues; to brood upon Lenneth and Platina) Lucian continues to brood upon Lenneth and Platina Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lucian; continues to brood; upon Lenneth and Platina) Lucian continues to brood upon Lenneth and Platina Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lenneth; tells him; to forget about her) Lenneth tells him to forget about her Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . +1 (Lorenzo R. Stone House; is a historic house at; 218 South Street) Lorenzo R. Stone House is a historic house at 218 South Street Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . +1 (Lorenzo R. Stone House; is; a historic house) Lorenzo R. Stone House is a historic house Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . +1 (Lorenzo R. Stone House; is a historic house; at 218 South Street) Lorenzo R. Stone House is a historic house at 218 South Street Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . +1 (Lorenzo R. Stone House; is; a historic house at 218 South Street in Southbridge) Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . +1 (Lorenzo R. Stone House; is; a historic house at 218 South Street in Southbridge) Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . +1 (Lowery; was elected Mayor in; a special election) Lowery was elected Mayor in a special election Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected Mayor on; Feburay 6th) Lowery was elected Mayor on Feburay 6th Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected; Mayor) Lowery was elected Mayor Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Mayor; was elected in; a special election) Mayor was elected in a special election Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Mayor; was elected on; Feburay 6th) Mayor was elected on Feburay 6th Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; to fill; the unexpired term of James Eagan) Lowery to fill the unexpired term of James Eagan Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected Mayor; in a special election) Lowery was elected Mayor in a special election Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected Mayor; on Feburay 6th) Lowery was elected Mayor on Feburay 6th Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Mayor; was elected; in a special election) Mayor was elected in a special election Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Mayor; was elected; on Feburay 6th) Mayor was elected on Feburay 6th Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected; Mayor; on Feburay 6; th 2001; in a special election) Lowery was elected Mayor; on Feburay 6; th 2001; in a special election Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected in; a special election to fill the unexpired term of James Eagan) Lowery was elected in a special election to fill the unexpired term of James Eagan Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected Mayor on; Feburay 6th 2001) Lowery was elected Mayor on Feburay 6th 2001 Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected Mayor; on Feburay 6) Lowery was elected Mayor on Feburay 6 Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Lowery; was elected Mayor; th 2001) Lowery was elected Mayor th 2001 Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . +1 (Macromolecules; be translocated through; the phloem) Macromolecules be translocated through the phloem Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (Macromolecules translocated through the phloem; include; proteins and various types of RNA) Macromolecules translocated through the phloem include proteins and various types of RNA Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (proteins and various types of RNA; enter the sieve tubes through; plasmodesmata) proteins and various types of RNA enter the sieve tubes through plasmodesmata Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (Macromolecules; be translocated; through the phloem) Macromolecules be translocated through the phloem Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (proteins and various types of RNA; enter the sieve tubes; through plasmodesmata) proteins and various types of RNA enter the sieve tubes through plasmodesmata Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (various types of RNA; enter; the sieve tubes) various types of RNA enter the sieve tubes Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +0 (Macromolecules; translocated; ) Macromolecules translocated Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +0 (the phloem; include; proteins) the phloem include proteins Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (RNA; enter the sieve tubes through; plasmodesmata) RNA enter the sieve tubes through plasmodesmata Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (various types of RNA; enter; the sieve tubes) various types of RNA enter the sieve tubes Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . +1 (the 15-year debentures; can be redeemed after; Nov. 30 , 1992) the 15-year debentures can be redeemed after Nov. 30 , 1992 Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; can be redeemed at; the company 's option) the 15-year debentures can be redeemed at the company 's option Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; can be redeemed under; certain conditions) the 15-year debentures can be redeemed under certain conditions Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; are convertible before; maturity) the 15-year debentures are convertible before maturity Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; can be redeemed; after Nov. 30 , 1992) the 15-year debentures can be redeemed after Nov. 30 , 1992 Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; can be redeemed; at the company 's option) the 15-year debentures can be redeemed at the company 's option Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; can be redeemed; under certain conditions) the 15-year debentures can be redeemed under certain conditions Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; are convertible; before maturity) the 15-year debentures are convertible before maturity Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +0 (the 15-year debentures; are; convertible; before maturity) the 15-year debentures are convertible; before maturity Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (Mark; said; the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992) Mark said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (the 15-year debentures; can be redeemed; ) the 15-year debentures can be redeemed Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +0 (C$ 12.50; can be redeemed at; the company) C$ 12.50 can be redeemed at the company Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +0 (Mark; said; the 15-year debentures) Mark said the 15-year debentures Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +0 (the 15-year debentures; are; convertible) the 15-year debentures are convertible Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (Mark; said; the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992) Mark said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . +1 (Matter; is made up of; elements) Matter is made up of elements Matter is made up of elements . +1 (Matter; is made up; of elements) Matter is made up of elements Matter is made up of elements . +0 (the Golden Horde; pillaged Bulgaria as; a Byzantine ally) the Golden Horde pillaged Bulgaria as a Byzantine ally Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +0 (the Golden Horde; pillaged Bulgaria in; 1274) the Golden Horde pillaged Bulgaria in 1274 Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Bulgaria; be pillaged as; a Byzantine ally) Bulgaria be pillaged as a Byzantine ally Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Bulgaria; be pillaged in; 1274) Bulgaria be pillaged in 1274 Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +0 (the Golden Horde; pillaged; Bulgaria) the Golden Horde pillaged Bulgaria Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (his illegitimate daughter Euphrosyne; be marrying to; Nogai Khan of the Golden Horde) his illegitimate daughter Euphrosyne be marrying to Nogai Khan of the Golden Horde Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +0 (the Golden Horde; pillaged Bulgaria; as a Byzantine ally) the Golden Horde pillaged Bulgaria as a Byzantine ally Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +0 (the Golden Horde; pillaged Bulgaria; in 1274) the Golden Horde pillaged Bulgaria in 1274 Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Bulgaria; be pillaged; as a Byzantine ally) Bulgaria be pillaged as a Byzantine ally Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Bulgaria; be pillaged; in 1274) Bulgaria be pillaged in 1274 Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (his illegitimate daughter Euphrosyne; be marrying; to Nogai Khan of the Golden Horde) his illegitimate daughter Euphrosyne be marrying to Nogai Khan of the Golden Horde Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Nogai Khan of the Golden Horde; pillaged; Bulgaria; as a Byzantine ally in 1274) Nogai Khan of the Golden Horde pillaged Bulgaria; as a Byzantine ally in 1274 Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +0 (Michael VIII; struck; back) Michael VIII struck back Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Michael VIII; struck by marrying; his illegitimate daughter; to Nogai Khan of the Golden Horde) Michael VIII struck by marrying his illegitimate daughter; to Nogai Khan of the Golden Horde Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Nogai Khan of the Golden Horde; pillaged Bulgaria as; a Byzantine ally) Nogai Khan of the Golden Horde pillaged Bulgaria as a Byzantine ally Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +0 (Michael VIII; struck; back) Michael VIII struck back Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Nogai Khan of the Golden Horde; pillaged Bulgaria; as a Byzantine ally in 1274) Nogai Khan of the Golden Horde pillaged Bulgaria as a Byzantine ally in 1274 Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Nogai Khan of the Golden Horde; pillaged; Bulgaria) Nogai Khan of the Golden Horde pillaged Bulgaria Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Michael VIII; struck by marrying his illegitimate daughter; to Nogai Khan of the Golden Horde) Michael VIII struck by marrying his illegitimate daughter to Nogai Khan of the Golden Horde Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +1 (Michael VIII; struck by marrying; his illegitimate daughter) Michael VIII struck by marrying his illegitimate daughter Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . +0 (Valley National , of Phoenix , Ariz.; to make; substantial further provisions) Valley National , of Phoenix , Ariz. to make substantial further provisions Moody 's said it expects Valley National , of Phoenix , Ariz. , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . +0 (Valley National , of Phoenix , Ariz.; to make substantial further provisions against; its real-estate portfolio) Valley National , of Phoenix , Ariz. to make substantial further provisions against its real-estate portfolio Moody 's said it expects Valley National , of Phoenix , Ariz. , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . +0 (substantial further provisions; be to make against; its real-estate portfolio) substantial further provisions be to make against its real-estate portfolio Moody 's said it expects Valley National , of Phoenix , Ariz. , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . +1 (it; to suffer from; the high cost of carrying nonperforming assets , and from high loan-loss provisions) it to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions Moody 's said it expects Valley National , of Phoenix , Ariz. , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . +0 (Valley National , of Phoenix , Ariz.; to make substantial further provisions; against its real-estate portfolio) Valley National , of Phoenix , Ariz. to make substantial further provisions against its real-estate portfolio Moody 's said it expects Valley National , of Phoenix , Ariz. , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . +0 (substantial further provisions; be to make; against its real-estate portfolio) substantial further provisions be to make against its real-estate portfolio Moody 's said it expects Valley National , of Phoenix , Ariz. , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . +1 (it; to suffer; from the high cost of carrying nonperforming assets , and from high loan-loss provisions) it to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions Moody 's said it expects Valley National , of Phoenix , Ariz. , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . +1 (Maberly; More recently teamed up with; a London area music producer) Maberly More recently teamed up with a London area music producer More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (several of her own songs; be to record for; a new EP) several of her own songs be to record for a new EP More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; More recently teamed up; with a London area music producer) Maberly More recently teamed up with a London area music producer More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (several of her own songs; be to record; for a new EP) several of her own songs be to record for a new EP More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; to record; several of her own songs; for a new EP) Maberly to record several of her own songs; for a new EP More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; teamed up; with a London area music producer; to record several of her own songs for a new EP; More recently) Maberly teamed up with a London area music producer; to record several of her own songs for a new EP; More recently More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; teamed up; with a London area music producer) Maberly teamed up with a London area music producer More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; to record several of her own songs; for a new EP) Maberly to record several of her own songs for a new EP More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; teamed up with a London area music producer; More recently) Maberly teamed up with a London area music producer More recently More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; teamed up with a London area music producer; to record several of her own songs for a new EP) Maberly teamed up with a London area music producer to record several of her own songs for a new EP More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +1 (Maberly; to record; several of her own songs) Maberly to record several of her own songs More recently , Maberly teamed up with a London area music producer to record several of her own songs for a new EP . +0 (Most coastal scyphozoans; go during; their life cycle) Most coastal scyphozoans go during their life cycle Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +1 (Most coastal scyphozoans; go through; a stage) Most coastal scyphozoans go through a stage Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +0 (Most coastal scyphozoans; go; during their life cycle) Most coastal scyphozoans go during their life cycle Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +1 (Most coastal scyphozoans; go; through a stage) Most coastal scyphozoans go through a stage Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +1 (those that live in the open ocean; generally lack altogether; the polyp stage) those that live in the open ocean generally lack altogether the polyp stage Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +0 (those; generally lack altogether the polyp stage live; in the open ocean) those generally lack altogether the polyp stage live in the open ocean Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +1 (Most coastal scyphozoans; go; through a stage as small polyps; during their life cycle) Most coastal scyphozoans go through a stage as small polyps; during their life cycle Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +0 (Most coastal scyphozoans; go as; small polyps) Most coastal scyphozoans go as small polyps Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +0 (the open ocean; generally lack; the polyp stage) the open ocean generally lack the polyp stage Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +0 (those; live in; the open ocean) those live in the open ocean Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +1 (Most coastal scyphozoans; go; through a stage as small polyps) Most coastal scyphozoans go through a stage as small polyps Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +1 (those that live in the open ocean; generally lack altogether; the polyp stage) those that live in the open ocean generally lack altogether the polyp stage Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +0 (those; generally lack altogether the polyp stage live; in the open ocean) those generally lack altogether the polyp stage live in the open ocean Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +1 (Most coastal scyphozoans; go through a stage as small polyps; during their life cycle) Most coastal scyphozoans go through a stage as small polyps during their life cycle Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . +0 (Mr. Allday 's appointment; is subject; by the Senate) Mr. Allday 's appointment is subject by the Senate Mr. Allday 's appointment is subject to confirmation by the Senate . +1 (Mr. Allday 's appointment; is subject; to confirmation) Mr. Allday 's appointment is subject to confirmation Mr. Allday 's appointment is subject to confirmation by the Senate . +0 (Mr. Allday 's appointment; is subject by; the Senate) Mr. Allday 's appointment is subject by the Senate Mr. Allday 's appointment is subject to confirmation by the Senate . +1 (Mr. Allday 's appointment; is subject to; confirmation) Mr. Allday 's appointment is subject to confirmation Mr. Allday 's appointment is subject to confirmation by the Senate . +0 (Mr. Allday 's appointment; is; subject) Mr. Allday 's appointment is subject Mr. Allday 's appointment is subject to confirmation by the Senate . +0 (Mr. Allday 's appointment; is; subject to confirmation by the Senate) Mr. Allday 's appointment is subject to confirmation by the Senate Mr. Allday 's appointment is subject to confirmation by the Senate . +1 ('s appointment; is subject to; confirmation) 's appointment is subject to confirmation Mr. Allday 's appointment is subject to confirmation by the Senate . +0 (Mr. Allday 's appointment; is; subject to confirmation by the Senate) Mr. Allday 's appointment is subject to confirmation by the Senate Mr. Allday 's appointment is subject to confirmation by the Senate . +1 (he; to name; a new group president) he to name a new group president Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; expects; to name a new group president to head that operation following the Nov. 8 board meeting) he expects to name a new group president to head that operation following the Nov. 8 board meeting Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; expects to name; a new group president; following the Nov) he expects to name a new group president; following the Nov Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (Mr. Bailey; said; he expects to name a new group president to head that operation following the Nov. 8 board meeting) Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; expects to name; a new group president to head that operation) he expects to name a new group president to head that operation Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (a new group president to head that operation; to be name following; the Nov. 8 board meeting) a new group president to head that operation to be name following the Nov. 8 board meeting Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; expects to name a new group president to head that operation following; the Nov. 8 board meeting) he expects to name a new group president to head that operation following the Nov. 8 board meeting Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; to name a new group president to head that operation following; the Nov. 8 board meeting) he to name a new group president to head that operation following the Nov. 8 board meeting Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; expects to name; a new group president) he expects to name a new group president Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +0 (Mr. Bailey; said; he) Mr. Bailey said he Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (Mr. Bailey; said; he expects to name a new group president to head that operation following the Nov. 8 board meeting) Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; expects; to name a new group president to head that operation following the Nov. 8 board meeting) he expects to name a new group president to head that operation following the Nov. 8 board meeting Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +0 (he; expects to name a new group president; following the Nov) he expects to name a new group president following the Nov Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +1 (he; expects to name; a new group president) he expects to name a new group president Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . +0 (he; is prohibited as; Navigation Mixte chairman) he is prohibited as Navigation Mixte chairman Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +1 (he; is prohibited by; takeover regulations) he is prohibited by takeover regulations Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +0 (he; is prohibited; as Navigation Mixte chairman) he is prohibited as Navigation Mixte chairman Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +1 (he; is prohibited; by takeover regulations) he is prohibited by takeover regulations Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +1 (he; is prohibited; by takeover regulations; from organizing his own defense or doing anything besides managing current company business) he is prohibited by takeover regulations; from organizing his own defense or doing anything besides managing current company business Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +0 (he; from organizing; his own defense) he from organizing his own defense Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +0 (he; doing; anything) he doing anything Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +1 (Mr. Fournier; said; that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business) Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +1 (Mr. Fournier; said; that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business) Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +0 (he; doing; anything) he doing anything Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +1 (he; is prohibited; from organizing his own defense or doing anything besides managing current company business) he is prohibited from organizing his own defense or doing anything besides managing current company business Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +0 (he; from organizing; his own defense) he from organizing his own defense Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . +1 (Mr. Hollander 's High Technology Holding Co. of Stamford , Conn.; acquired most of its stake in; an $ 11-a-share tender offer) Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. acquired most of its stake in an $ 11-a-share tender offer Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Newport; be a maker of; electronic-measuring devices) Newport be a maker of electronic-measuring devices Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Mr. Hollander 's High Technology Holding Co. of Stamford , Conn.; acquired; most of its stake) Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. acquired most of its stake Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +0 (a maker of electronic-measuring devices; be an $ 11-a-share tender offer for; Newport) a maker of electronic-measuring devices be an $ 11-a-share tender offer for Newport Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (most of its stake; be acquired in; an $ 11-a-share tender offer) most of its stake be acquired in an $ 11-a-share tender offer Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Mr. Hollander 's High Technology Holding Co. of Stamford , Conn.; acquired most of its stake; in an $ 11-a-share tender offer) Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. acquired most of its stake in an $ 11-a-share tender offer Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Newport; be a maker; of electronic-measuring devices) Newport be a maker of electronic-measuring devices Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +0 (a maker of electronic-measuring devices; be an $ 11-a-share tender offer; for Newport) a maker of electronic-measuring devices be an $ 11-a-share tender offer for Newport Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (most of its stake; be acquired; in an $ 11-a-share tender offer) most of its stake be acquired in an $ 11-a-share tender offer Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +0 (Conn; acquired most of; its stake) Conn acquired most of its stake Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +0 (electronic; measuring; devices) electronic measuring devices Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Newport; [is] a maker of; electronic-measuring devices) Newport [is] a maker of electronic-measuring devices Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Mr. Hollander 's High Technology Holding Co. of Stamford; acquired; most of its stake; last August; in an $ 11-a-share tender offer for Newport) Mr. Hollander 's High Technology Holding Co. of Stamford acquired most of its stake; last August; in an $ 11-a-share tender offer for Newport Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +0 (Conn; acquired; most of its stake) Conn acquired most of its stake Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +0 (Conn; acquired most of its stake in; an $ 11-a-share tender offer) Conn acquired most of its stake in an $ 11-a-share tender offer Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Mr. Hollander 's High Technology Holding Co. of Stamford; acquired most of its stake; in an $ 11-a-share tender offer for Newport) Mr. Hollander 's High Technology Holding Co. of Stamford acquired most of its stake in an $ 11-a-share tender offer for Newport Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Mr. Hollander 's High Technology Holding Co. of Stamford; acquired most of its stake; last August) Mr. Hollander 's High Technology Holding Co. of Stamford acquired most of its stake last August Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Mr. Hollander 's High Technology Holding Co. of Stamford; acquired; most of its stake) Mr. Hollander 's High Technology Holding Co. of Stamford acquired most of its stake Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +0 (electronic; measuring; devices) electronic measuring devices Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Newport; [is] a maker of; electronic-measuring devices) Newport [is] a maker of electronic-measuring devices Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Newport; [is] a maker of; electronic-measuring devices) Newport [is] a maker of electronic-measuring devices Mr. Hollander 's High Technology Holding Co. of Stamford , Conn. , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . +1 (Mrs. Coleman; is; the Maidenform strategist) Mrs. Coleman is the Maidenform strategist Mrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist . +1 (Mrs. Coleman; declined; to be interviewed) Mrs. Coleman declined to be interviewed Mrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist . +0 (Mrs. Coleman; is the Maidenform strategist to be interviewed; ) Mrs. Coleman is the Maidenform strategist to be interviewed Mrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist . +0 (73; is; the Maidenform strategist) 73 is the Maidenform strategist Mrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist . +1 (Mrs. Coleman; declined; to be interviewed) Mrs. Coleman declined to be interviewed Mrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist . +1 (Nero; was born; Francesco Sparanero) Nero was born Francesco Sparanero Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +0 (Nero; be Francesco Sparanero in; San Prospero) Nero be Francesco Sparanero in San Prospero Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +1 (Francesco Sparanero; was born in; San Prospero) Francesco Sparanero was born in San Prospero Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +1 (Nero; grew up in; Bedonia and in Milan) Nero grew up in Bedonia and in Milan Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +0 (Nero; be Francesco Sparanero; in San Prospero) Nero be Francesco Sparanero in San Prospero Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +1 (Francesco Sparanero; was born; in San Prospero) Francesco Sparanero was born in San Prospero Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +1 (Nero; grew up; in Bedonia and in Milan) Nero grew up in Bedonia and in Milan Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +0 (Nero; was born; Francesco Sparanero in San Prospero , Emilia-Romagna) Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +0 (San Prospero; grew up in; Bedonia) San Prospero grew up in Bedonia Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +0 (Nero; was born; Francesco Sparanero in San Prospero , Emilia-Romagna) Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . +0 (Net proceeds; are expected; close) Net proceeds are expected close Net proceeds from the offering are expected to be close to $ 200 million . +0 (Net proceeds from the offering; are expected; ) Net proceeds from the offering are expected Net proceeds from the offering are expected to be close to $ 200 million . +1 (Net proceeds from the offering; are expected to be; close to $ 200 million) Net proceeds from the offering are expected to be close to $ 200 million Net proceeds from the offering are expected to be close to $ 200 million . +0 (the offering; are expected to be close to; $ 200 million) the offering are expected to be close to $ 200 million Net proceeds from the offering are expected to be close to $ 200 million . +1 (Net proceeds from the offering; are expected to be; close to $ 200 million) Net proceeds from the offering are expected to be close to $ 200 million Net proceeds from the offering are expected to be close to $ 200 million . +1 (we; Next must choose; a method inferring phylogeny from these homologous characters) we Next must choose a method inferring phylogeny from these homologous characters Next we must choose a method of inferring phylogeny from these homologous characters . +1 (we; must choose; a method of inferring phylogeny from these homologous characters; Next) we must choose a method of inferring phylogeny from these homologous characters; Next Next we must choose a method of inferring phylogeny from these homologous characters . +1 (we; must choose; a method inferring phylogeny from these homologous characters) we must choose a method inferring phylogeny from these homologous characters Next we must choose a method of inferring phylogeny from these homologous characters . +1 (phylogeny; be inferring from; these homologous characters) phylogeny be inferring from these homologous characters Next we must choose a method of inferring phylogeny from these homologous characters . +1 (we; must choose; a method) we must choose a method Next we must choose a method of inferring phylogeny from these homologous characters . +0 (we; must choose a method of inferring phylogeny from these homologous characters; Next) we must choose a method of inferring phylogeny from these homologous characters Next Next we must choose a method of inferring phylogeny from these homologous characters . +1 (we; must choose; a method of inferring phylogeny from these homologous characters) we must choose a method of inferring phylogeny from these homologous characters Next we must choose a method of inferring phylogeny from these homologous characters . +1 (North Luffenham; is a village in; Rutland) North Luffenham is a village in Rutland North Luffenham is a village in Rutland , in the East Midlands of England . +1 (North Luffenham; is a village in; the East Midlands of England) North Luffenham is a village in the East Midlands of England North Luffenham is a village in Rutland , in the East Midlands of England . +1 (North Luffenham; is; a village) North Luffenham is a village North Luffenham is a village in Rutland , in the East Midlands of England . +1 (North Luffenham; is a village; in Rutland) North Luffenham is a village in Rutland North Luffenham is a village in Rutland , in the East Midlands of England . +1 (North Luffenham; is a village; in the East Midlands of England) North Luffenham is a village in the East Midlands of England North Luffenham is a village in Rutland , in the East Midlands of England . +1 (North Luffenham; is; a village in Rutland) North Luffenham is a village in Rutland North Luffenham is a village in Rutland , in the East Midlands of England . +1 (North Luffenham; is; a village in Rutland) North Luffenham is a village in Rutland North Luffenham is a village in Rutland , in the East Midlands of England . +1 (genes; are cloned in; plasmids) genes are cloned in plasmids Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (you; Now 've learned about; restriction enzymes and DNA ligase) you Now 've learned about restriction enzymes and DNA ligase Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (genes; are cloned; in plasmids) genes are cloned in plasmids Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (you; Now 've learned; about restriction enzymes and DNA ligase) you Now 've learned about restriction enzymes and DNA ligase Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (you; 've learned; about restriction enzymes and DNA ligase) you 've learned about restriction enzymes and DNA ligase Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (we; can see; how genes are cloned in plasmids; Now that you 've learned about restriction enzymes and DNA ligase) we can see how genes are cloned in plasmids; Now that you 've learned about restriction enzymes and DNA ligase Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (you; 've learned about; restriction enzymes) you 've learned about restriction enzymes Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (you; 've learned; about restriction enzymes and DNA ligase) you 've learned about restriction enzymes and DNA ligase Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +0 (we; can see how genes are cloned in plasmids; Now that you 've learned about restriction enzymes and DNA ligase) we can see how genes are cloned in plasmids Now that you 've learned about restriction enzymes and DNA ligase Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (we; can see; how genes are cloned in plasmids) we can see how genes are cloned in plasmids Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . +1 (the band; Now performed their first live show at; their hometown Poulton-Le-Fylde) the band Now performed their first live show at their hometown Poulton-Le-Fylde Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed their first live show in; May 2006) the band Now performed their first live show in May 2006 Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed their first live show in; nearly two decades) the band Now performed their first live show in nearly two decades Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed their first live show with; Ian Butterworth on guitar and Roger Wikeley) the band Now performed their first live show with Ian Butterworth on guitar and Roger Wikeley Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed; their first live show) the band Now performed their first live show Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (May 2006; be followed by; dates) May 2006 be followed by dates Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed at; their hometown Poulton-Le-Fylde) their first live show be Now performed at their hometown Poulton-Le-Fylde Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed in; May 2006) their first live show be Now performed in May 2006 Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed in; nearly two decades) their first live show be Now performed in nearly two decades Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed with; Ian Butterworth on guitar and Roger Wikeley) their first live show be Now performed with Ian Butterworth on guitar and Roger Wikeley Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed their first live show; at their hometown Poulton-Le-Fylde) the band Now performed their first live show at their hometown Poulton-Le-Fylde Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed their first live show; in May 2006) the band Now performed their first live show in May 2006 Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed their first live show; in nearly two decades) the band Now performed their first live show in nearly two decades Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; Now performed their first live show; with Ian Butterworth on guitar and Roger Wikeley) the band Now performed their first live show with Ian Butterworth on guitar and Roger Wikeley Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (May 2006; be followed; by dates) May 2006 be followed by dates Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed; at their hometown Poulton-Le-Fylde) their first live show be Now performed at their hometown Poulton-Le-Fylde Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed; in May 2006) their first live show be Now performed in May 2006 Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed; in nearly two decades) their first live show be Now performed in nearly two decades Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (their first live show; be Now performed; with Ian Butterworth on guitar and Roger Wikeley) their first live show be Now performed with Ian Butterworth on guitar and Roger Wikeley Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (Roger Wikeley on bass and keyboards; performed; their first live show; in nearly two decades; at their hometown; in May 2006) Roger Wikeley on bass and keyboards performed their first live show; in nearly two decades; at their hometown; in May 2006 Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (Roger Wikeley on bass and; performed their first live show keyboards; ) Roger Wikeley on bass and performed their first live show keyboards Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (their first live show; be Now with Ian Butterworth on guitar Roger Wikeley bass keyboards the band performed in; nearly two decades) their first live show be Now with Ian Butterworth on guitar Roger Wikeley bass keyboards the band performed in nearly two decades Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (their first live show; be Now with Ian Butterworth on guitar Roger Wikeley bass keyboards the band performed in; May 2006) their first live show be Now with Ian Butterworth on guitar Roger Wikeley bass keyboards the band performed in May 2006 Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (the band; performed their first live show in nearly; two decades) the band performed their first live show in nearly two decades Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (Roger Wikeley; keyboards; the band) Roger Wikeley keyboards the band Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (Roger Wikeley on bass and keyboards; performed their first live show; in May 2006) Roger Wikeley on bass and keyboards performed their first live show in May 2006 Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (Roger Wikeley on bass and keyboards; performed their first live show; in nearly two decades) Roger Wikeley on bass and keyboards performed their first live show in nearly two decades Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (Roger Wikeley on bass and keyboards; performed; their first live show) Roger Wikeley on bass and keyboards performed their first live show Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +0 (Roger Wikeley on bass and keyboards; performed their first live show; at their hometown) Roger Wikeley on bass and keyboards performed their first live show at their hometown Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . +1 (Prince Kitashirakawa; married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji on; April 29 , 1909) Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji on April 29 , 1909 On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Princess Kane-no-Miya Fusako; be the seventh daughter of; Emperor Meiji) Princess Kane-no-Miya Fusako be the seventh daughter of Emperor Meiji On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Prince Kitashirakawa; married; Princess Kane-no-Miya Fusako) Prince Kitashirakawa married Princess Kane-no-Miya Fusako On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Princess Kane-no-Miya Fusako; be married on; April 29 , 1909) Princess Kane-no-Miya Fusako be married on April 29 , 1909 On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Prince Kitashirakawa; married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji; on April 29 , 1909) Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji on April 29 , 1909 On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Princess Kane-no-Miya Fusako; be the seventh daughter; of Emperor Meiji) Princess Kane-no-Miya Fusako be the seventh daughter of Emperor Meiji On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Princess Kane-no-Miya Fusako; be married; on April 29 , 1909) Princess Kane-no-Miya Fusako be married on April 29 , 1909 On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Princess Kane-no-Miya Fusako; [is] the seventh daughter of; Emperor Meiji) Princess Kane-no-Miya Fusako [is] the seventh daughter of Emperor Meiji On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Prince Kitashirakawa; married; Princess Kane-no-Miya Fusako; On April 29) Prince Kitashirakawa married Princess Kane-no-Miya Fusako; On April 29 On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Prince Kitashirakawa; married Princess Kane - no - Miya Fusako; On April 29) Prince Kitashirakawa married Princess Kane - no - Miya Fusako On April 29 On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Princess Kane-no-Miya Fusako; [is] the seventh daughter of; Emperor Meiji) Princess Kane-no-Miya Fusako [is] the seventh daughter of Emperor Meiji On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +1 (Princess Kane-no-Miya Fusako; [is] the seventh daughter of; Emperor Meiji) Princess Kane-no-Miya Fusako [is] the seventh daughter of Emperor Meiji On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . +0 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday on; December 10) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday on December 10 On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had; three tackles) he had three tackles On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (three tackles; be had on; December 10) three tackles be had on December 10 On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; be three tackles including; 1.5 sacks) he be three tackles including 1.5 sacks On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (an 11-yard sack of Brady; be sharing with; defensive tackle Vonnie Holliday) an 11-yard sack of Brady be sharing with defensive tackle Vonnie Holliday On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +0 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday; on December 10) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday on December 10 On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (three tackles; be had; on December 10) three tackles be had on December 10 On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; be three tackles; including 1.5 sacks) he be three tackles including 1.5 sacks On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (an 11-yard sack of Brady; be sharing; with defensive tackle Vonnie Holliday) an 11-yard sack of Brady be sharing with defensive tackle Vonnie Holliday On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling; quarterback Tom Brady; for a five-yard loss) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady; for a five-yard loss On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had; three tackles including 1.5 sacks for a total of 10.5 yards in losses; On December 10 against the New England Patriots) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses; On December 10 against the New England Patriots On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (quarterback Tom Brady; be tackling for; a five-yard loss) quarterback Tom Brady be tackling for a five-yard loss On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady for; a five-yard loss) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady for a five-yard loss On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses on; December 10) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses on December 10 On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling; quarterback Tom Brady) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing an 11-yard sack of Brady with; defensive tackle Vonnie Holliday) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing; an 11-yard sack of Brady) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing an 11-yard sack of Brady On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had; three tackles including 1.5 sacks for a total of 10.5 yards in losses) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses; On December 10 against the New England Patriots) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses On December 10 against the New England Patriots On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling; quarterback Tom Brady) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady; for a five-yard loss) he had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady for a five-yard loss On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . +1 (he; was traded as; a minor-leaguer) he was traded as a minor-leaguer On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +1 (he; was traded on; December 5 , 1984) he was traded on December 5 , 1984 On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +0 (he; was traded with; Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo) he was traded with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +1 (he; was traded by; the New York Yankees) he was traded by the New York Yankees On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +1 (he; was traded; as a minor-leaguer) he was traded as a minor-leaguer On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +1 (he; was traded; on December 5 , 1984) he was traded on December 5 , 1984 On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +0 (he; was traded; with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo) he was traded with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +1 (he; was traded; by the New York Yankees) he was traded by the New York Yankees On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +0 (he; was traded; by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo; for Rickey Henderson , Bert Bradley , and cash; On December 5 , 1984) he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo; for Rickey Henderson , Bert Bradley , and cash; On December 5 , 1984 On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +1 (he; was traded to; the Oakland Athletics) he was traded to the Oakland Athletics On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +0 (he; was traded for; Rickey Henderson , Bert Bradley , and cash) he was traded for Rickey Henderson , Bert Bradley , and cash On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +1 (he; was traded; On December 5 , 1984) he was traded On December 5 , 1984 On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +0 (he; was traded; by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo) he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +0 (he; was traded; for Rickey Henderson , Bert Bradley , and cash) he was traded for Rickey Henderson , Bert Bradley , and cash On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . +0 (Hezbollah; transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev in; exchange for Samir Kuntar and four other Hezbollah members) Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev in exchange for Samir Kuntar and four other Hezbollah members On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (Hezbollah; transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev on; July 16 2008) Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (Hezbollah; transferred; the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev) Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (exchange for Samir Kuntar and four other Hezbollah members; be captured by; Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians) exchange for Samir Kuntar and four other Hezbollah members be captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev; be transferred in; exchange for Samir Kuntar and four other Hezbollah members) the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev be transferred in exchange for Samir Kuntar and four other Hezbollah members On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev; be transferred on; July 16 2008) the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev be transferred on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev; in exchange for Samir Kuntar and four other Hezbollah members) Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev in exchange for Samir Kuntar and four other Hezbollah members On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (Hezbollah; transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev; on July 16 2008) Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (exchange for Samir Kuntar and four other Hezbollah members; be captured; by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians) exchange for Samir Kuntar and four other Hezbollah members be captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev; be transferred; in exchange for Samir Kuntar and four other Hezbollah members) the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev be transferred in exchange for Samir Kuntar and four other Hezbollah members On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev; be transferred; on July 16 2008) the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev be transferred on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (four other Hezbollah members; captured; by Israel; during the 2006 Lebanon War) four other Hezbollah members captured by Israel; during the 2006 Lebanon War On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (Hezbollah; transferred; the coffins of captured Israeli soldiers; in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians; On July 16) Hezbollah transferred the coffins of captured Israeli soldiers; in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians; On July 16 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; be members during; the 2006 Lebanon War) Hezbollah be members during the 2006 Lebanon War On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange) Hezbollah transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in exchange On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in; exchange) Hezbollah transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in exchange On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange) Hezbollah transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in exchange On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers) Hezbollah transferred Eldad Regev as well as the remains 199 Lebanese Palestinians the coffins of captured Israeli soldiers On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange) the coffins of captured Israeli soldiers be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in exchange On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Ehud Goldwasser and Eldad Regev; be transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in; exchange) Ehud Goldwasser and Eldad Regev be transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in exchange On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers) Hezbollah transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians the coffins of captured Israeli soldiers On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (the coffins of captured Israeli soldiers; be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange) the coffins of captured Israeli soldiers be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in exchange On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians; Ehud Goldwasser and Eldad Regev) Hezbollah transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians Ehud Goldwasser and Eldad Regev On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008) Hezbollah transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on; July 16 2008) Hezbollah transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (other; be Hezbollah members during; the 2006 Lebanon War) other be Hezbollah members during the 2006 Lebanon War On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on; July 16 2008) Hezbollah transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Ehud Goldwasser and Eldad Regev; be transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on; July 16 2008) Ehud Goldwasser and Eldad Regev be transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008) the coffins of captured Israeli soldiers be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (the coffins of captured Israeli soldiers; be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on; July 16 2008) the coffins of captured Israeli soldiers be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on July 16 2008 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (Hezbollah; transferred; the coffins) Hezbollah transferred the coffins On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (four other Hezbollah members; captured; by Israel) four other Hezbollah members captured by Israel On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (four other Hezbollah members; captured; during the 2006 Lebanon War) four other Hezbollah members captured during the 2006 Lebanon War On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (Hezbollah; transferred the coffins of captured Israeli soldiers; On July 16) Hezbollah transferred the coffins of captured Israeli soldiers On July 16 On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +0 (Hezbollah; transferred the coffins of captured Israeli soldiers; in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians) Hezbollah transferred the coffins of captured Israeli soldiers in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (Hezbollah; transferred; the coffins of captured Israeli soldiers) Hezbollah transferred the coffins of captured Israeli soldiers On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . +1 (the Reds; trailing 13-0 in; the ninth inning) the Reds trailing 13-0 in the ninth inning On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing the first place St. Louis Cardinals at Crosley Field on; June 10) the Reds were playing the first place St. Louis Cardinals at Crosley Field on June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; trailing; 13-0) the Reds trailing 13-0 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing the first place; St. Louis Cardinals) the Reds were playing the first place St. Louis Cardinals On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (13-0; be trailing in; the ninth inning) 13-0 be trailing in the ninth inning On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (St. Louis Cardinals; were playing the first place on; June 10) St. Louis Cardinals were playing the first place on June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (Manager Bill McKechnie; called; on Nuxhall) Manager Bill McKechnie called on Nuxhall On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; trailing 13-0; in the ninth inning) the Reds trailing 13-0 in the ninth inning On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing the first place St. Louis Cardinals at Crosley Field; on June 10) the Reds were playing the first place St. Louis Cardinals at Crosley Field on June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (13-0; be trailing; in the ninth inning) 13-0 be trailing in the ninth inning On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (St. Louis Cardinals; were playing the first place; on June 10) St. Louis Cardinals were playing the first place on June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (Manager Bill McKechnie; called; to enter the game) Manager Bill McKechnie called to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (Manager Bill McKechnie; called to enter; the game) Manager Bill McKechnie called to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; trailing; 13-0; in the ninth inning; when Manager Bill McKechnie called on Nuxhall to enter the game) the Reds trailing 13-0; in the ninth inning; when Manager Bill McKechnie called on Nuxhall to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing; the first place; at Crosley Field; On June 10) the Reds were playing the first place; at Crosley Field; On June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (Manager Bill McKechnie; called on; Nuxhall) Manager Bill McKechnie called on Nuxhall On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (Manager Bill McKechnie; to enter; the game) Manager Bill McKechnie to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (Manager Bill McKechnie; called to enter; the game) Manager Bill McKechnie called to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (the Reds; were playing; the first place St . Louis Cardinals) the Reds were playing the first place St . Louis Cardinals On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (the first place St . Louis Cardinals; were playing at; Crosley Field) the first place St . Louis Cardinals were playing at Crosley Field On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing the first place St . Louis Cardinals at; Crosley Field) the Reds were playing the first place St . Louis Cardinals at Crosley Field On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (the first place St . Louis Cardinals; were playing on; June 10) the first place St . Louis Cardinals were playing on June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were trailing 13-0 in; the ninth inning) the Reds were trailing 13-0 in the ninth inning On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were trailing; 13-0) the Reds were trailing 13-0 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (13-0; were trailing in; the ninth inning) 13-0 were trailing in the ninth inning On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing the first place St . Louis Cardinals on; June 10) the Reds were playing the first place St . Louis Cardinals on June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (Manager Bill McKechnie; called on; Nuxhall) Manager Bill McKechnie called on Nuxhall On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing; the first place) the Reds were playing the first place On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing the first place; On June 10) the Reds were playing the first place On June 10 On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; trailing 13-0; when Manager Bill McKechnie called on Nuxhall to enter the game) the Reds trailing 13-0 when Manager Bill McKechnie called on Nuxhall to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing the first place; at Crosley Field) the Reds were playing the first place at Crosley Field On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (Manager Bill McKechnie; called; to enter the game) Manager Bill McKechnie called to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +0 (Manager Bill McKechnie; called to enter; the game) Manager Bill McKechnie called to enter the game On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (the Reds; were playing; the first place) the Reds were playing the first place On June 10 , the Reds were playing the first place St. Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . +1 (he; married; natural resources attorney Susan Daggett) he married natural resources attorney Susan Daggett On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +0 (Susan Daggett; [is] married natural attorney [of]; resources) Susan Daggett [is] married natural attorney [of] resources On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (he; married; natural resources attorney Susan Daggett; in Marianna; On October 26 , 1997) he married natural resources attorney Susan Daggett; in Marianna; On October 26 , 1997 On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (he; married natural resources attorney Susan Daggett in; Marianna) he married natural resources attorney Susan Daggett in Marianna On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (natural resources attorney Susan Daggett; be married in; Marianna) natural resources attorney Susan Daggett be married in Marianna On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (he; married natural resources attorney Susan Daggett on; October 26 , 1997) he married natural resources attorney Susan Daggett on October 26 , 1997 On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (natural resources attorney Susan Daggett; be married on; October 26 , 1997) natural resources attorney Susan Daggett be married on October 26 , 1997 On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (he; married natural resources attorney Susan Daggett; Marianna) he married natural resources attorney Susan Daggett Marianna On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (he; married natural resources attorney Susan Daggett; On October 26 , 1997) he married natural resources attorney Susan Daggett On October 26 , 1997 On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +1 (he; married natural resources attorney Susan Daggett; in Marianna) he married natural resources attorney Susan Daggett in Marianna On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +0 (Susan Daggett; [is] married natural attorney [of]; resources) Susan Daggett [is] married natural attorney [of] resources On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +0 (Susan Daggett; [is] married natural attorney [of]; resources) Susan Daggett [is] married natural attorney [of] resources On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . +0 (we; can not fully explain a higher level of order on; the one hand) we can not fully explain a higher level of order on the one hand On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (a higher level of order; can be not fully explain on; the one hand) a higher level of order can be not fully explain on the one hand On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (it; be breaking down into; its parts) it be breaking down into its parts On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (we; can not fully explain a higher level of order; on the one hand) we can not fully explain a higher level of order on the one hand On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (a higher level of order; can be not fully explain; on the one hand) a higher level of order can be not fully explain on the one hand On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (it; be breaking down; into its parts) it be breaking down into its parts On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (we; can not fully explain; a higher level of order) we can not fully explain a higher level of order On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (we; can not fully explain; a higher level of order) we can not fully explain a higher level of order On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (it; be breaking into; its parts) it be breaking into its parts On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (we; can not fully explain; a higher level) we can not fully explain a higher level On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (we; can not fully explain; a higher level of order) we can not fully explain a higher level of order On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . +0 (U.S. household; be products; of Colgate) U.S. household be products of Colgate Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 (Operating profit; include such well-known brands; as Colgate toothpaste and Fab laundry detergent) Operating profit include such well-known brands as Colgate toothpaste and Fab laundry detergent Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 (U.S. household; be products of; Colgate) U.S. household be products of Colgate Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 (Operating profit; include such well-known brands as; Colgate toothpaste and Fab laundry detergent) Operating profit include such well-known brands as Colgate toothpaste and Fab laundry detergent Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 (Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 %; said; ) Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % said Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +1 (Operating profit at Colgate 's U.S. household products and personal care businesses; jumped; more than 40 %) Operating profit at Colgate 's U.S. household products and personal care businesses jumped more than 40 % Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 (personal care businesses; jumped more than 40 % include; ) personal care businesses jumped more than 40 % include Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 (Operating profit; jumped; than 40 %) Operating profit jumped than 40 % Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 (Colgate toothpaste; jumped more than; 40 %) Colgate toothpaste jumped more than 40 % Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +0 ('s U.S. household products and personal care businesses; include such well-known brands as; Colgate toothpaste) 's U.S. household products and personal care businesses include such well-known brands as Colgate toothpaste Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +1 (Operating profit at Colgate 's U.S. household products and personal care businesses; jumped; more than 40 %) Operating profit at Colgate 's U.S. household products and personal care businesses jumped more than 40 % Operating profit at Colgate 's U.S. household products and personal care businesses , which include such well-known brands as Colgate toothpaste and Fab laundry detergent , jumped more than 40 % , the company said . +1 (Pharyngeal slits; function as; suspension-feeding devices) Pharyngeal slits function as suspension-feeding devices Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates . +1 (Pharyngeal slits; function; as suspension-feeding devices) Pharyngeal slits function as suspension-feeding devices Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates . +1 (Pharyngeal slits; function; as suspension-feeding devices in many invertebrate chordates) Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates . +1 (Pharyngeal slits; function; as suspension-feeding devices in many invertebrate chordates) Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates . +1 (Plouzan; is a commune in; the Finist re department) Plouzan is a commune in the Finist re department Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Finist re; be department in; Bretagne) Finist re be department in Bretagne Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Plouzan; is; a commune) Plouzan is a commune Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Plouzan; is a commune; in the Finist re department) Plouzan is a commune in the Finist re department Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Finist re; be department; in Bretagne) Finist re be department in Bretagne Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Plouzan; is; a commune in the Finist re department in Bretagne in northwestern France) Plouzan is a commune in the Finist re department in Bretagne in northwestern France Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Plouzan; is a commune in; northwestern France) Plouzan is a commune in northwestern France Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Plouzan; is; a commune in the Finist re department in Bretagne in northwestern France) Plouzan is a commune in the Finist re department in Bretagne in northwestern France Plouzan is a commune in the Finist re department in Bretagne in northwestern France . +1 (Populations of all species; have; the potential to expand greatly when resources are abundant) Populations of all species have the potential to expand greatly when resources are abundant Populations of all species have the potential to expand greatly when resources are abundant . +1 (Populations of all species; have; the potential to expand greatly) Populations of all species have the potential to expand greatly Populations of all species have the potential to expand greatly when resources are abundant . +1 (Populations of all species; have; the potential) Populations of all species have the potential Populations of all species have the potential to expand greatly when resources are abundant . +1 (Populations of all species; have; the potential to expand greatly) Populations of all species have the potential to expand greatly Populations of all species have the potential to expand greatly when resources are abundant . +1 (M and N phenotypes; Rather are exhibited by; heterozygotes) M and N phenotypes Rather are exhibited by heterozygotes Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +1 (M and N phenotypes; Rather are exhibited; by heterozygotes) M and N phenotypes Rather are exhibited by heterozygotes Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +1 (both molecules; are; present) both molecules are present Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +1 (both M and N phenotypes; are exhibited; by heterozygotes; since both molecules are present) both M and N phenotypes are exhibited by heterozygotes; since both molecules are present Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +1 (both M and N phenotypes; are exhibited by; heterozygotes) both M and N phenotypes are exhibited by heterozygotes Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +1 (both M and N phenotypes; are exhibited; by heterozygotes) both M and N phenotypes are exhibited by heterozygotes Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +1 (both M and N phenotypes; are exhibited; since both molecules are present) both M and N phenotypes are exhibited since both molecules are present Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +1 (both molecules; are; present) both molecules are present Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . +0 (the original paper; be Read in; Inquiry) the original paper be Read in Inquiry Read and analyze the original paper in Inquiry in Action : Interpreting Scientific Papers . +0 (the original paper; be Read; in Inquiry) the original paper be Read in Inquiry Read and analyze the original paper in Inquiry in Action : Interpreting Scientific Papers . +0 (the original paper; be analyze in; Inquiry) the original paper be analyze in Inquiry Read and analyze the original paper in Inquiry in Action : Interpreting Scientific Papers . +1 (the complete oxidation of a mole of glucose; releases 686 kcal of energy under; standard conditions) the complete oxidation of a mole of glucose releases 686 kcal of energy under standard conditions Recall that the complete oxidation of a mole of glucose releases 686 kcal of energy under standard conditions . +1 (the complete oxidation of a mole of glucose; releases; 686 kcal of energy) the complete oxidation of a mole of glucose releases 686 kcal of energy Recall that the complete oxidation of a mole of glucose releases 686 kcal of energy under standard conditions . +1 (the complete oxidation of a mole of glucose; releases 686 kcal of energy; under standard conditions) the complete oxidation of a mole of glucose releases 686 kcal of energy under standard conditions Recall that the complete oxidation of a mole of glucose releases 686 kcal of energy under standard conditions . +1 (primates; have; a large brain and short jaws) primates have a large brain and short jaws Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . +1 (primates; have a large brain and short jaws giving; them; a flat face) primates have a large brain and short jaws giving them; a flat face Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . +1 (primates; have a large brain and short jaws giving them; a flat face) primates have a large brain and short jaws giving them a flat face Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . +0 (primates; have a large brain and short jaws giving; them) primates have a large brain and short jaws giving them Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . +0 (primates; have short jaws giving them; a flat face) primates have short jaws giving them a flat face Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . +0 (primates; have a large brain giving them; a flat face) primates have a large brain giving them a flat face Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . +1 (Researchers; placed identical samples of organic material -- litter on; the ground) Researchers placed identical samples of organic material -- litter on the ground Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (Researchers; placed; identical samples of organic material) Researchers placed identical samples of organic material Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (identical samples of organic material; be placed on; the ground) identical samples of organic material be placed on the ground Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (Researchers; placed identical samples of organic material -- litter; on the ground) Researchers placed identical samples of organic material -- litter on the ground Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (identical samples of organic material; be placed; on the ground) identical samples of organic material be placed on the ground Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (Researchers with the Canadian Forest Service; placed; identical samples of organic material; on the ground) Researchers with the Canadian Forest Service placed identical samples of organic material; on the ground Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (Researchers; placed identical samples of organic material -- litter -- on; the ground) Researchers placed identical samples of organic material -- litter -- on the ground Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (the Canadian Forest Service; placed; identical samples) the Canadian Forest Service placed identical samples Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (Researchers with the Canadian Forest Service; placed; identical samples of organic material) Researchers with the Canadian Forest Service placed identical samples of organic material Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (Researchers with the Canadian Forest Service; placed identical samples of organic material; on the ground) Researchers with the Canadian Forest Service placed identical samples of organic material on the ground Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . +1 (Revenue; dropped; 5.4 %) Revenue dropped 5.4 % Revenue dropped 5.4 % to $ 3.48 billion from $ 3.68 billion . +1 (Revenue; dropped; 5.4 %; to $ 3.48 billion; from $ 3.68 billion) Revenue dropped 5.4 %; to $ 3.48 billion; from $ 3.68 billion Revenue dropped 5.4 % to $ 3.48 billion from $ 3.68 billion . +1 (Revenue; dropped 5.4 %; to $ 3.48 billion) Revenue dropped 5.4 % to $ 3.48 billion Revenue dropped 5.4 % to $ 3.48 billion from $ 3.68 billion . +1 (Revenue; dropped 5.4 %; from $ 3.68 billion) Revenue dropped 5.4 % from $ 3.68 billion Revenue dropped 5.4 % to $ 3.48 billion from $ 3.68 billion . +1 (Barry Wright Corp; be latest acquisition; of the company) Barry Wright Corp be latest acquisition of the company Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . +0 (a similar turnaround; be to guide; at the company 's latest acquisition) a similar turnaround be to guide at the company 's latest acquisition Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . +1 (Applied Power Inc.; be transforming; into a feisty player) Applied Power Inc. be transforming into a feisty player Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . +1 (Barry Wright Corp; be latest acquisition of; the company) Barry Wright Corp be latest acquisition of the company Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . +0 (a similar turnaround; be to guide at; the company 's latest acquisition) a similar turnaround be to guide at the company 's latest acquisition Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . +1 (Applied Power Inc.; be transforming into; a feisty player) Applied Power Inc. be transforming into a feisty player Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . +1 (the root; depends on; the shoot) the root depends on the shoot Root apical meristems also produce auxin , although the root depends on the shoot for much of its auxin . +1 (the root; depends; on the shoot) the root depends on the shoot Root apical meristems also produce auxin , although the root depends on the shoot for much of its auxin . +0 (Bogan 's Birmingham Busters , before moving to Los Angeles , California; be jazz group of; her son) Bogan 's Birmingham Busters , before moving to Los Angeles , California be jazz group of her son She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . +0 (her son 's jazz group; be managing shortly before; her death) her son 's jazz group be managing shortly before her death She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . +0 (Bogan 's Birmingham Busters , before moving to Los Angeles , California; be jazz group; of her son) Bogan 's Birmingham Busters , before moving to Los Angeles , California be jazz group of her son She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . +0 (her son 's jazz group; be managing shortly; before her death) her son 's jazz group be managing shortly before her death She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . +0 (She; has also served; on acquired immune deficiency syndrome) She has also served on acquired immune deficiency syndrome She has also served on several task forces on acquired immune deficiency syndrome . +1 (She; has also served; on several task forces) She has also served on several task forces She has also served on several task forces on acquired immune deficiency syndrome . +0 (She; has also served on; acquired immune deficiency syndrome) She has also served on acquired immune deficiency syndrome She has also served on several task forces on acquired immune deficiency syndrome . +1 (She; has also served on; several task forces) She has also served on several task forces She has also served on several task forces on acquired immune deficiency syndrome . +0 (they; founded with; her husband) they founded with her husband She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +1 (She; has practiced; law) She has practiced law She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (PLC; be law with; Boult , Cummings , Conners & Berry) PLC be law with Boult , Cummings , Conners & Berry She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (Boult , Cummings , Conners & Berry; be PLC in; Nashville ; Cunningham , Mitchell , Hicks & McMillan) Boult , Cummings , Conners & Berry be PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (She; has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan in; Clarksville) She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville Cunningham , Mitchell , Hicks & McMillan in; Clarksville She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (the Clarksville firm; be her husband in; McMillan and McMillan) the Clarksville firm be her husband in McMillan and McMillan She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +1 (law; has practiced in; Clarksville) law has practiced in Clarksville She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (they; founded; with her husband) they founded with her husband She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (PLC; be law; with Boult , Cummings , Conners & Berry) PLC be law with Boult , Cummings , Conners & Berry She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (Boult , Cummings , Conners & Berry; be PLC; in Nashville ; Cunningham , Mitchell , Hicks & McMillan) Boult , Cummings , Conners & Berry be PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +0 (the Clarksville firm; be her husband; in McMillan and McMillan) the Clarksville firm be her husband in McMillan and McMillan She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +1 (law; has practiced; in Clarksville) law has practiced in Clarksville She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville ; Cunningham , Mitchell , Hicks & McMillan , in Clarksville ; and with her husband in McMillan and McMillan , the Clarksville firm they founded . +1 (She; would n't give; figures) She would n't give figures She said Wheeler Group was profitable but would n't give figures . +0 (Wheeler Group; was; profitable) Wheeler Group was profitable She said Wheeler Group was profitable but would n't give figures . +1 (She; was born in; Berkeley , California) She was born in Berkeley , California She was born April 3 , 1951 in Berkeley , California . +1 (She; was born; in Berkeley , California) She was born in Berkeley , California She was born April 3 , 1951 in Berkeley , California . +1 (Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam in; a case that threatens a popular advertising industry practice) Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +1 (Singer Bette Midler; won; a $ 400,000 federal court jury verdict) Singer Bette Midler won a $ 400,000 federal court jury verdict Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +1 (a $ 400,000 federal court jury verdict; be won in; a case that threatens a popular advertising industry practice) a $ 400,000 federal court jury verdict be won in a case that threatens a popular advertising industry practice Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +0 (Singer Bette Midler; be a $ 400,000 federal court jury verdict against; Young & Rubicam) Singer Bette Midler be a $ 400,000 federal court jury verdict against Young & Rubicam Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +0 (Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam; a case that threatens a popular advertising industry practice) Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam a case that threatens a popular advertising industry practice Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +1 (a popular advertising industry practice using `` sound-alike '' performers to tout products; be threatens by; a case) a popular advertising industry practice using `` sound-alike '' performers to tout products be threatens by a case Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +1 (Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam; in a case that threatens a popular advertising industry practice) Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +1 (a $ 400,000 federal court jury verdict; be won; in a case that threatens a popular advertising industry practice) a $ 400,000 federal court jury verdict be won in a case that threatens a popular advertising industry practice Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +0 (Singer Bette Midler; be a $ 400,000 federal court jury verdict; against Young & Rubicam) Singer Bette Midler be a $ 400,000 federal court jury verdict against Young & Rubicam Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +1 (a popular advertising industry practice using `` sound-alike '' performers to tout products; be threatens; by a case) a popular advertising industry practice using `` sound-alike '' performers to tout products be threatens by a case Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using `` sound-alike '' performers to tout products . +1 (Social Security benefits; will rise; 4.7 %) Social Security benefits will rise 4.7 % Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . +1 (the market 's strong reaction; reflects; a general uneasiness) the market 's strong reaction reflects a general uneasiness Some dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar . +0 (the market 's strong reaction; be a general uneasiness about; the dollar) the market 's strong reaction be a general uneasiness about the dollar Some dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar . +1 (the market; strong reaction to; Wall Street) the market strong reaction to Wall Street Some dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar . +0 (the market 's strong reaction; be a general uneasiness; about the dollar) the market 's strong reaction be a general uneasiness about the dollar Some dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar . +1 (the market; strong reaction; to Wall Street) the market strong reaction to Wall Street Some dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar . +1 (Sony Columbia Acquisition Corp.; be formed; for the Columbia deal) Sony Columbia Acquisition Corp. be formed for the Columbia deal Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +1 (Sony Columbia Acquisition Corp.; be ownership; of the movie studio) Sony Columbia Acquisition Corp. be ownership of the movie studio Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +0 (a spokesman; said; to Sony Columbia Acquisition Corp.) a spokesman said to Sony Columbia Acquisition Corp. Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +0 (Sony Columbia Acquisition Corp.; said; to a spokesman) Sony Columbia Acquisition Corp. said to a spokesman Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +1 (Sony Columbia Acquisition Corp.; will formally take; ownership of the movie studio) Sony Columbia Acquisition Corp. will formally take ownership of the movie studio Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +1 (Sony Columbia Acquisition Corp.; be formed for; the Columbia deal) Sony Columbia Acquisition Corp. be formed for the Columbia deal Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +1 (Sony Columbia Acquisition Corp.; be ownership of; the movie studio) Sony Columbia Acquisition Corp. be ownership of the movie studio Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +0 (a spokesman; said to; Sony Columbia Acquisition Corp.) a spokesman said to Sony Columbia Acquisition Corp. Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +0 (Sony Columbia Acquisition Corp.; said to; a spokesman) Sony Columbia Acquisition Corp. said to a spokesman Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . +0 (Source C. S. Henry et al; be The inheritance of; mating songs) Source C. S. Henry et al be The inheritance of mating songs Source C. S. Henry et al . , The inheritance of mating songs in two cryptic , sibling lacewing species , Genetica 116 :269 -289 . +0 (Genetica; 116; :269 -289) Genetica 116 :269 -289 Source C. S. Henry et al . , The inheritance of mating songs in two cryptic , sibling lacewing species , Genetica 116 :269 -289 . +0 (Source C. S. Henry et al; sibling; lacewing species) Source C. S. Henry et al sibling lacewing species Source C. S. Henry et al . , The inheritance of mating songs in two cryptic , sibling lacewing species , Genetica 116 :269 -289 . +0 (Source C. S. Henry et al; be The inheritance; of mating songs) Source C. S. Henry et al be The inheritance of mating songs Source C. S. Henry et al . , The inheritance of mating songs in two cryptic , sibling lacewing species , Genetica 116 :269 -289 . +0 (Nebraska , United States; be thirty-one townships in; Custer County) Nebraska , United States be thirty-one townships in Custer County Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . +1 (Custer County; be thirty-one townships in; Nebraska , United States) Custer County be thirty-one townships in Nebraska , United States Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . +0 (Nebraska , United States; be thirty-one townships; in Custer County) Nebraska , United States be thirty-one townships in Custer County Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . +1 (Custer County; be thirty-one townships; in Nebraska , United States) Custer County be thirty-one townships in Nebraska , United States Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . +0 (them; to make; use of a steady energy supply) them to make use of a steady energy supply Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . +1 (They; have; many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein) They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . +1 (Such fibers; are specialized in; ways that enable them to make use of a steady energy supply) Such fibers are specialized in ways that enable them to make use of a steady energy supply Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . +0 (them; be use of; a steady energy supply) them be use of a steady energy supply Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . +1 (Such fibers; are specialized; in ways that enable them to make use of a steady energy supply) Such fibers are specialized in ways that enable them to make use of a steady energy supply Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . +0 (them; be use; of a steady energy supply) them be use of a steady energy supply Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . +0 (us; be Tell about; spending restraint) us be Tell about spending restraint Tell us about spending restraint . +0 (us; be Tell; about spending restraint) us be Tell about spending restraint Tell us about spending restraint . +1 (Terry L. Haines; was elected to; the new position of vice president , North American sales , of this plastics concern) Terry L. Haines was elected to the new position of vice president , North American sales , of this plastics concern Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . +1 (Terry L. Haines; be formerly general manager of; Canadian operations) Terry L. Haines be formerly general manager of Canadian operations Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . +0 (North American sales; be vice president of; this plastics concern) North American sales be vice president of this plastics concern Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . +1 (Terry L. Haines; was elected; to the new position of vice president , North American sales , of this plastics concern) Terry L. Haines was elected to the new position of vice president , North American sales , of this plastics concern Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . +1 (Terry L. Haines; be formerly general manager; of Canadian operations) Terry L. Haines be formerly general manager of Canadian operations Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . +0 (North American sales; be vice president; of this plastics concern) North American sales be vice president of this plastics concern Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . +1 (The Breitling watchmaking company; was founded in; Saint-Imier) The Breitling watchmaking company was founded in Saint-Imier The Breitling watchmaking company was founded in Saint-Imier , but moved to Grenchen , Canton of Solothurn . +1 (The Breitling watchmaking company; moved to; Grenchen , Canton of Solothurn) The Breitling watchmaking company moved to Grenchen , Canton of Solothurn The Breitling watchmaking company was founded in Saint-Imier , but moved to Grenchen , Canton of Solothurn . +1 (The Breitling watchmaking company; was founded; in Saint-Imier) The Breitling watchmaking company was founded in Saint-Imier The Breitling watchmaking company was founded in Saint-Imier , but moved to Grenchen , Canton of Solothurn . +1 (The Breitling watchmaking company; moved; to Grenchen , Canton of Solothurn) The Breitling watchmaking company moved to Grenchen , Canton of Solothurn The Breitling watchmaking company was founded in Saint-Imier , but moved to Grenchen , Canton of Solothurn . +1 (The Cancer Genome Atlas; is another example of; systems biology) The Cancer Genome Atlas is another example of systems biology The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . +1 (a large group of interacting genes and gene products; are analyzed together in; another example of systems biology) a large group of interacting genes and gene products are analyzed together in another example of systems biology The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . +0 (large; be group of; interacting genes and gene products) large be group of interacting genes and gene products The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . +1 (The Cancer Genome Atlas; is; another example of systems biology which a large group of interacting genes and gene products are analyzed together) The Cancer Genome Atlas is another example of systems biology which a large group of interacting genes and gene products are analyzed together The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . +1 (The Cancer Genome Atlas; is another example; of systems biology) The Cancer Genome Atlas is another example of systems biology The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . +1 (a large group of interacting genes and gene products; are analyzed together; in another example of systems biology) a large group of interacting genes and gene products are analyzed together in another example of systems biology The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . +0 (large; be group; of interacting genes and gene products) large be group of interacting genes and gene products The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . +1 (The Commodore 64 and 128; be mainly used; for children 's educational software and games) The Commodore 64 and 128 be mainly used for children 's educational software and games The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . +1 (The Commodore 64 and 128; be mainly used for; children 's educational software and games) The Commodore 64 and 128 be mainly used for children 's educational software and games The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . +1 (The Commodore 64 and 128; had surprised; market researchers) The Commodore 64 and 128 had surprised market researchers The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . +0 (other low-profit personal computers; even now operate as fast; several times) other low-profit personal computers even now operate as fast several times The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . +1 (other low-profit personal computers; have; more memory) other low-profit personal computers have more memory The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . +1 (SirsiDynix; was formed in; June 2005) SirsiDynix was formed in June 2005 The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . +1 (The Dynix corporation; was founded in; 1983) The Dynix corporation was founded in 1983 The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . +1 (SirsiDynix; was formed by; the merger of the Sirsi and Dynix corporations) SirsiDynix was formed by the merger of the Sirsi and Dynix corporations The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . +1 (SirsiDynix; was formed; in June 2005) SirsiDynix was formed in June 2005 The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . +1 (The Dynix corporation; was founded; in 1983) The Dynix corporation was founded in 1983 The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . +1 (SirsiDynix; was formed; by the merger of the Sirsi and Dynix corporations) SirsiDynix was formed by the merger of the Sirsi and Dynix corporations The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . +1 (The Edward C. Peters House; be also known as; Ivy Hall) The Edward C. Peters House be also known as Ivy Hall The Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia . +1 (The Edward C. Peters House; is; a Queen Anne style house) The Edward C. Peters House is a Queen Anne style house The Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia . +1 (The Edward C. Peters House; be also known; as Ivy Hall) The Edward C. Peters House be also known as Ivy Hall The Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia . +1 (an indoor arena; be located at; the corner of Mount Royal and St. Urbain Street) an indoor arena be located at the corner of Mount Royal and St. Urbain Street The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (an indoor arena; be located in; Montreal , Canada) an indoor arena be located in Montreal , Canada The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (The Mount Royal Arena; was an indoor arena at; the corner of Mount Royal and St. Urbain Street) The Mount Royal Arena was an indoor arena at the corner of Mount Royal and St. Urbain Street The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (The Mount Royal Arena; was an indoor arena in; Montreal , Canada) The Mount Royal Arena was an indoor arena in Montreal , Canada The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (The Mount Royal Arena; was; an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street) The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (an indoor arena; be located; at the corner of Mount Royal and St. Urbain Street) an indoor arena be located at the corner of Mount Royal and St. Urbain Street The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (an indoor arena; be located; in Montreal , Canada) an indoor arena be located in Montreal , Canada The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (The Mount Royal Arena; was an indoor arena; at the corner of Mount Royal and St. Urbain Street) The Mount Royal Arena was an indoor arena at the corner of Mount Royal and St. Urbain Street The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (The Mount Royal Arena; was an indoor arena; in Montreal , Canada) The Mount Royal Arena was an indoor arena in Montreal , Canada The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St. Urbain Street . +1 (The Notre Dame Academy and Convent; is located at; 3501 State Street) The Notre Dame Academy and Convent is located at 3501 State Street The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . +1 (The Notre Dame Academy and Convent; is located on; the north end of Omaha , Nebraska) The Notre Dame Academy and Convent is located on the north end of Omaha , Nebraska The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . +1 (The Notre Dame Academy and Convent; is located in; the north end of Omaha , Nebraska) The Notre Dame Academy and Convent is located in the north end of Omaha , Nebraska The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . +1 (The Notre Dame Academy and Convent; is located; at 3501 State Street) The Notre Dame Academy and Convent is located at 3501 State Street The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . +1 (The Notre Dame Academy and Convent; is located; on the north end of Omaha , Nebraska) The Notre Dame Academy and Convent is located on the north end of Omaha , Nebraska The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . +1 (The Notre Dame Academy and Convent; is located; in the north end of Omaha , Nebraska) The Notre Dame Academy and Convent is located in the north end of Omaha , Nebraska The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . +1 (it; added $ 121 million; for losses on loans and for real estate owned) it added $ 121 million for losses on loans and for real estate owned The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . +1 (it; added $ 121 million; to its allowance) it added $ 121 million to its allowance The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . +0 (The Phoenix-based holding company; said; of it) The Phoenix-based holding company said of it The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . +1 (it; added $ 121 million for; losses on loans and for real estate owned) it added $ 121 million for losses on loans and for real estate owned The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . +1 (it; added $ 121 million to; its allowance) it added $ 121 million to its allowance The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . +0 (The Phoenix-based holding company; said of; it) The Phoenix-based holding company said of it The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . +0 (The Skeleton King; later merged Dark One with; the demon) The Skeleton King later merged Dark One with the demon The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . +0 (The Skeleton King; later merged; Dark One) The Skeleton King later merged Dark One The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . +1 (him; decapitated by; the Hyperforce) him decapitated by the Hyperforce The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . +0 (Dark One; be later merged with; the demon) Dark One be later merged with the demon The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . +0 (The Skeleton King; later merged Dark One; with the demon) The Skeleton King later merged Dark One with the demon The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . +1 (him; decapitated; by the Hyperforce) him decapitated by the Hyperforce The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . +0 (Dark One; be later merged; with the demon) Dark One be later merged with the demon The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . +1 (a song; be written by; the Dave Matthews Band) a song be written by the Dave Matthews Band The Space Between is a song written by the Dave Matthews Band . +1 (The Space Between; is; a song written by the Dave Matthews Band) The Space Between is a song written by the Dave Matthews Band The Space Between is a song written by the Dave Matthews Band . +1 (a song; be written; by the Dave Matthews Band) a song be written by the Dave Matthews Band The Space Between is a song written by the Dave Matthews Band . +1 (The announcement; follows; a sharper $ 2.2 billion decline) The announcement follows a sharper $ 2.2 billion decline The announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion . +0 (The announcement; be a sharper $ 2.2 billion decline in; September) The announcement be a sharper $ 2.2 billion decline in September The announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion . +0 (The announcement; be a sharper $ 2.2 billion decline in; the country 's foreign reserves) The announcement be a sharper $ 2.2 billion decline in the country 's foreign reserves The announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion . +0 (The announcement; be a sharper $ 2.2 billion decline; in September) The announcement be a sharper $ 2.2 billion decline in September The announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion . +0 (The announcement; be a sharper $ 2.2 billion decline; in the country 's foreign reserves) The announcement be a sharper $ 2.2 billion decline in the country 's foreign reserves The announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion . +1 (The band; began recording demos at; The Gallows Studio) The band began recording demos at The Gallows Studio The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (The band; began recording demos for; their next album) The band began recording demos for their next album The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (The band; began; recording demos) The band began recording demos The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (recording demos; be began at; The Gallows Studio) recording demos be began at The Gallows Studio The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (recording demos; be began for; their next album) recording demos be began for their next album The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (The band; began recording demos in; The Gallows Studio) The band began recording demos in The Gallows Studio The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (The band; began recording demos; at The Gallows Studio) The band began recording demos at The Gallows Studio The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (The band; began recording demos; for their next album) The band began recording demos for their next album The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (recording demos; be began; at The Gallows Studio) recording demos be began at The Gallows Studio The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (recording demos; be began; for their next album) recording demos be began for their next album The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (The band; began recording demos; in The Gallows Studio) The band began recording demos in The Gallows Studio The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . +1 (The board; expanded to; 17 seats) The board expanded to 17 seats The board expanded to 17 seats . +1 (The board; expanded; to 17 seats) The board expanded to 17 seats The board expanded to 17 seats . +1 (The body of an arthropod; is completely covered by; the cuticle) The body of an arthropod is completely covered by the cuticle The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . +1 (an exoskeleton; be constructed from; layers of protein and the polysaccharide chitin) an exoskeleton be constructed from layers of protein and the polysaccharide chitin The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . +1 (The body of an arthropod; is completely covered; by the cuticle) The body of an arthropod is completely covered by the cuticle The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . +1 (an exoskeleton; be constructed; from layers of protein and the polysaccharide chitin) an exoskeleton be constructed from layers of protein and the polysaccharide chitin The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . +1 (spare grilles; left around from; the fourth generation Volkswagen Passat) spare grilles left around from the fourth generation Volkswagen Passat The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (spare grilles; left around in; 1997) spare grilles left around in 1997 The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +1 (The car; has had; two revisions) The car has had two revisions The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (The car; has had two revisions in; China) The car has had two revisions in China The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +1 (The car; has had two revisions since; its inception) The car has had two revisions since its inception The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +1 (the first facelift; borrowed; spare grilles) the first facelift borrowed spare grilles The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (two revisions; has had in; China) two revisions has had in China The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (two revisions; has had since; its inception) two revisions has had since its inception The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (the first facelift; borrowed to; spare grilles) the first facelift borrowed to spare grilles The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (spare grilles; left around; 1997) spare grilles left around 1997 The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (spare grilles; borrowed to; the first facelift) spare grilles borrowed to the first facelift The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +1 (spare grilles; left around; from the fourth generation Volkswagen Passat) spare grilles left around from the fourth generation Volkswagen Passat The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (spare grilles; left around; in 1997) spare grilles left around in 1997 The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (The car; has had two revisions; in China) The car has had two revisions in China The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +1 (The car; has had two revisions; since its inception) The car has had two revisions since its inception The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (two revisions; has had; in China) two revisions has had in China The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (two revisions; has had; since its inception) two revisions has had since its inception The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (the first facelift; borrowed; to spare grilles) the first facelift borrowed to spare grilles The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (spare grilles; left; around 1997) spare grilles left around 1997 The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +0 (spare grilles; borrowed; to the first facelift) spare grilles borrowed to the first facelift The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . +1 (monthly prepayments; be assuming; at 1.3 % of the original balance) monthly prepayments be assuming at 1.3 % of the original balance The certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance . +1 (The certificates; have; an estimated average life of 1.8 years) The certificates have an estimated average life of 1.8 years The certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance . +1 (monthly prepayments; be assuming at; 1.3 % of the original balance) monthly prepayments be assuming at 1.3 % of the original balance The certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance . +0 (The coldest temperature; be ever recorded in; the city) The coldest temperature be ever recorded in the city The coldest temperature ever recorded in the city was - 40 F , on January 17 , 1982 , also known as Cold Sunday . +0 (40 F; also known as; Cold Sunday) 40 F also known as Cold Sunday The coldest temperature ever recorded in the city was - 40 F , on January 17 , 1982 , also known as Cold Sunday . +1 (The coldest temperature ever recorded in the city; be also known as; Cold Sunday) The coldest temperature ever recorded in the city be also known as Cold Sunday The coldest temperature ever recorded in the city was - 40 F , on January 17 , 1982 , also known as Cold Sunday . +0 (The coldest temperature; be ever recorded; in the city) The coldest temperature be ever recorded in the city The coldest temperature ever recorded in the city was - 40 F , on January 17 , 1982 , also known as Cold Sunday . +0 (40 F; also known; as Cold Sunday) 40 F also known as Cold Sunday The coldest temperature ever recorded in the city was - 40 F , on January 17 , 1982 , also known as Cold Sunday . +1 (The coldest temperature ever recorded in the city; be also known; as Cold Sunday) The coldest temperature ever recorded in the city be also known as Cold Sunday The coldest temperature ever recorded in the city was - 40 F , on January 17 , 1982 , also known as Cold Sunday . +1 (The companies; are followed by; at least three analysts) The companies are followed by at least three analysts The companies are followed by at least three analysts , and had a minimum five-cent change in actual earnings per share . +1 (The companies; are followed; by at least three analysts) The companies are followed by at least three analysts The companies are followed by at least three analysts , and had a minimum five-cent change in actual earnings per share . +0 (the restructuring; to have; any impact , adverse) the restructuring to have any impact , adverse The company said the restructuring is n't expected to have any impact , adverse or otherwise , on its financial results . +1 (The continuing debate; exemplifies; one of this textbook 's recurring ideas) The continuing debate exemplifies one of this textbook 's recurring ideas The continuing debate about GMOs in agriculture exemplifies one of this textbook 's recurring ideas : the relationship of science and technology to society . +1 (garlic mustard; suppresses; growth of native trees) garlic mustard suppresses growth of native trees The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . +1 (The data; support; the hypothesis) The data support the hypothesis The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . +0 (mutualistic associations; be disrupts by; a way) mutualistic associations be disrupts by a way The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . +0 (mutualistic associations; be disrupts; by a way) mutualistic associations be disrupts by a way The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . +1 (The discovery and early study of cells; progressed during; the 1600s) The discovery and early study of cells progressed during the 1600s The discovery and early study of cells progressed with the invention of microscopes in 1590 and their refinement during the 1600s . +1 (The discovery and early study of cells; progressed with; the invention of microscopes) The discovery and early study of cells progressed with the invention of microscopes The discovery and early study of cells progressed with the invention of microscopes in 1590 and their refinement during the 1600s . +1 (The discovery and early study of cells; progressed; during the 1600s) The discovery and early study of cells progressed during the 1600s The discovery and early study of cells progressed with the invention of microscopes in 1590 and their refinement during the 1600s . +1 (The discovery and early study of cells; progressed; with the invention of microscopes) The discovery and early study of cells progressed with the invention of microscopes The discovery and early study of cells progressed with the invention of microscopes in 1590 and their refinement during the 1600s . +1 (The disease; kills; corals) The disease kills corals The disease kills corals by causing their tissue to slough off in a band from the base to the tip of the branches . +1 (The episode; be directed by; David Grossman) The episode be directed by David Grossman The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . +1 (The episode; was written by; Kevin Murphy and Kevin Etten) The episode was written by Kevin Murphy and Kevin Etten The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . +1 (The episode; be directed; by David Grossman) The episode be directed by David Grossman The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . +1 (The episode; was written; by Kevin Murphy and Kevin Etten) The episode was written by Kevin Murphy and Kevin Etten The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . +1 (The failure; was the deadliest aspect; of the quake) The failure was the deadliest aspect of the quake The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (the freeway segment; be known; as the Cypress structure) the freeway segment be known as the Cypress structure The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (the deadliest aspect of the quake; be The failure; in Oakland of the freeway segment) the deadliest aspect of the quake be The failure in Oakland of the freeway segment The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (The failure; was the deadliest aspect of; the quake) The failure was the deadliest aspect of the quake The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (the freeway segment; be known as; the Cypress structure) the freeway segment be known as the Cypress structure The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (the deadliest aspect of the quake; be The failure in; Oakland of the freeway segment) the deadliest aspect of the quake be The failure in Oakland of the freeway segment The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (The failure; was; the deadliest aspect of the quake) The failure was the deadliest aspect of the quake The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (officials; were; hopeful) officials were hopeful The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . +1 (comparable sequences; be to align from; the species being studied) comparable sequences be to align from the species being studied The first step after sequencing the molecules is to align comparable sequences from the species being studied . +0 (The first step; to align; comparable sequences) The first step to align comparable sequences The first step after sequencing the molecules is to align comparable sequences from the species being studied . +0 (The first step; to align comparable sequences from; the species being studied) The first step to align comparable sequences from the species being studied The first step after sequencing the molecules is to align comparable sequences from the species being studied . +1 (comparable sequences; be to align; from the species being studied) comparable sequences be to align from the species being studied The first step after sequencing the molecules is to align comparable sequences from the species being studied . +0 (The first step; to align comparable sequences; from the species being studied) The first step to align comparable sequences from the species being studied The first step after sequencing the molecules is to align comparable sequences from the species being studied . +1 (its efforts; be begun in; 1989) its efforts be begun in 1989 The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . +1 (its efforts begun in 1989; have led to; the introduction of bills) its efforts begun in 1989 have led to the introduction of bills The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . +0 (evenhanded procedures; affecting; all kinds of taxpayers) evenhanded procedures affecting all kinds of taxpayers The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . +1 (its efforts; be begun; in 1989) its efforts be begun in 1989 The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . +1 (its efforts begun in 1989; have led; to the introduction of bills) its efforts begun in 1989 have led to the introduction of bills The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . +1 (The incidence of malaria; was greatly diminished in; the 1960s) The incidence of malaria was greatly diminished in the 1960s The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . +1 (The incidence of malaria; was greatly diminished by; insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans) The incidence of malaria was greatly diminished by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . +0 (insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs; killed; Plasmodium) insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs killed Plasmodium The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . +1 (The incidence of malaria; was greatly diminished; in the 1960s) The incidence of malaria was greatly diminished in the 1960s The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . +1 (The incidence of malaria; was greatly diminished; by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans) The incidence of malaria was greatly diminished by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . +1 (The index which uses a base of 1981 as 100; was calculated in; September) The index which uses a base of 1981 as 100 was calculated in September The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . +1 (The index; uses a base of 1981 as; 100) The index uses a base of 1981 as 100 The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . +1 (a base of 1981; be uses by; The index) a base of 1981 be uses by The index The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . +1 (The index which uses a base of 1981 as 100; was calculated; in September) The index which uses a base of 1981 as 100 was calculated in September The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . +1 (The index; uses a base of 1981; as 100) The index uses a base of 1981 as 100 The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . +1 (a base of 1981; be uses; by The index) a base of 1981 be uses by The index The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . +1 (The issue 's smooth absorption; eased; fears) The issue 's smooth absorption eased fears The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . +0 (supply; would overwhelm; demand) supply would overwhelm demand The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . +1 (The metal products concern; currently has; million common shares outstanding) The metal products concern currently has million common shares outstanding The metal products concern currently has 7.2 million common shares outstanding . +1 (The nation 's largest software company; earned; $ 9.6 million , or five cents) The nation 's largest software company earned $ 9.6 million , or five cents The nation 's largest software company earned $ 9.6 million , or five cents a share , compared with $ 28 million , or 16 cents a share , a year earlier . +1 (The normal allele; codes for; a membrane protein) The normal allele codes for a membrane protein The normal allele for this gene codes for a membrane protein that functions in the transport of chloride ions between certain cells and the extracellular fluid . +0 (functions; ions between; certain cells and the extracellular fluid) functions ions between certain cells and the extracellular fluid The normal allele for this gene codes for a membrane protein that functions in the transport of chloride ions between certain cells and the extracellular fluid . +1 (The normal allele; codes; for a membrane protein) The normal allele codes for a membrane protein The normal allele for this gene codes for a membrane protein that functions in the transport of chloride ions between certain cells and the extracellular fluid . +0 (functions; ions; between certain cells and the extracellular fluid) functions ions between certain cells and the extracellular fluid The normal allele for this gene codes for a membrane protein that functions in the transport of chloride ions between certain cells and the extracellular fluid . +0 (old; be fossils of; eukaryotic organisms) old be fossils of eukaryotic organisms The oldest widely accepted fossils of eukaryotic organisms are about 2.1 billion years old . +0 (old; be fossils; of eukaryotic organisms) old be fossils of eukaryotic organisms The oldest widely accepted fossils of eukaryotic organisms are about 2.1 billion years old . +0 (the nervous system; dedicated; pathways) the nervous system dedicated pathways The other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways . +1 (The other major communication and control system; is; the nervous system that transmit signals along dedicated pathways) The other major communication and control system is the nervous system that transmit signals along dedicated pathways The other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways . +1 (a plant; inherits a viral infection from; a parent) a plant inherits a viral infection from a parent The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +1 (a plant; inherits; a viral infection) a plant inherits a viral infection The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +1 (vertical transmission which a plant inherits a viral infection from a parent; be The other route of; viral infection) vertical transmission which a plant inherits a viral infection from a parent be The other route of viral infection The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +1 (The other route of viral infection; is; vertical transmission which a plant inherits a viral infection from a parent) The other route of viral infection is vertical transmission which a plant inherits a viral infection from a parent The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +1 (a viral infection; be inherits by; vertical transmission) a viral infection be inherits by vertical transmission The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +1 (a plant; inherits a viral infection; from a parent) a plant inherits a viral infection from a parent The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +1 (vertical transmission which a plant inherits a viral infection from a parent; be The other route; of viral infection) vertical transmission which a plant inherits a viral infection from a parent be The other route of viral infection The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +1 (a viral infection; be inherits; by vertical transmission) a viral infection be inherits by vertical transmission The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . +0 (Cheat '' and; Drunk; Girl) Cheat '' and Drunk Girl The song has two demo working titles : '' Cheat '' and '' Drunk Girl '' , which leaked on the internet in November 2007 . +1 (The song; has; two demo working titles) The song has two demo working titles The song has two demo working titles : '' Cheat '' and '' Drunk Girl '' , which leaked on the internet in November 2007 . +0 (Girl; be leaked on; the internet) Girl be leaked on the internet The song has two demo working titles : '' Cheat '' and '' Drunk Girl '' , which leaked on the internet in November 2007 . +0 (two demo; working; titles) two demo working titles The song has two demo working titles : '' Cheat '' and '' Drunk Girl '' , which leaked on the internet in November 2007 . +0 (Girl; be leaked; on the internet) Girl be leaked on the internet The song has two demo working titles : '' Cheat '' and '' Drunk Girl '' , which leaked on the internet in November 2007 . +1 (The song; was recorded in; 2003) The song was recorded in 2003 The song was recorded in 2003 , and was supposed to be included on her third album '' Still '' , eventually released under the title '' More '' . +1 (The song; was recorded; in 2003) The song was recorded in 2003 The song was recorded in 2003 , and was supposed to be included on her third album '' Still '' , eventually released under the title '' More '' . +1 (a sensory cell or organ , as well as the subcellular structure; interacts directly with; stimuli) a sensory cell or organ , as well as the subcellular structure interacts directly with stimuli The term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli . +1 (The term sensory receptor; to describe; a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli) The term sensory receptor to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli The term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli . +1 (a sensory cell or organ , as well as the subcellular structure; interacts directly; with stimuli) a sensory cell or organ , as well as the subcellular structure interacts directly with stimuli The term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli . +0 (it; would drop its opposition; to foreign ownership) it would drop its opposition to foreign ownership The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . +0 (Ciba-Geigy and Chiron; are successful; with their lower bid) Ciba-Geigy and Chiron are successful with their lower bid The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . +0 (its opposition; would be drop; to foreign ownership) its opposition would be drop to foreign ownership The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . +0 (it; would drop; its opposition) it would drop its opposition The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . +0 (it; would drop its opposition to; foreign ownership) it would drop its opposition to foreign ownership The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . +0 (Ciba-Geigy and Chiron; are successful with; their lower bid) Ciba-Geigy and Chiron are successful with their lower bid The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . +0 (its opposition; would be drop to; foreign ownership) its opposition would be drop to foreign ownership The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . +1 (The upper layers of the soil which plants absorb nearly all of the water and minerals; contain; a wide range of living organisms) The upper layers of the soil which plants absorb nearly all of the water and minerals contain a wide range of living organisms The upper layers of the soil , from which plants absorb nearly all of the water and minerals they require , contain a wide range of living organisms that interact with each other and with the physical environment . +1 (living organisms; interact with; each other and with the physical environment) living organisms interact with each other and with the physical environment The upper layers of the soil , from which plants absorb nearly all of the water and minerals they require , contain a wide range of living organisms that interact with each other and with the physical environment . +1 (living organisms; interact; with each other and with the physical environment) living organisms interact with each other and with the physical environment The upper layers of the soil , from which plants absorb nearly all of the water and minerals they require , contain a wide range of living organisms that interact with each other and with the physical environment . +1 (a second , higher flask; containing; the `` atmosphere) a second , higher flask containing the `` atmosphere The water was heated so that some vaporized and moved into a second , higher flask containing the `` atmosphere '' -- a mixture of gases . +1 (zygomycetes; be fungi in; the phylum Zygomycota) zygomycetes be fungi in the phylum Zygomycota There are approximately 1,000 known species of zygomycetes , fungi in the phylum Zygomycota . +0 (fungi; be approximately 1,000 known species of; zygomycetes) fungi be approximately 1,000 known species of zygomycetes There are approximately 1,000 known species of zygomycetes , fungi in the phylum Zygomycota . +1 (zygomycetes; be fungi; in the phylum Zygomycota) zygomycetes be fungi in the phylum Zygomycota There are approximately 1,000 known species of zygomycetes , fungi in the phylum Zygomycota . +0 (fungi; be approximately 1,000 known species; of zygomycetes) fungi be approximately 1,000 known species of zygomycetes There are approximately 1,000 known species of zygomycetes , fungi in the phylum Zygomycota . +1 (scientists and the public; Therefore must assess; the possible benefits of transgenic products) scientists and the public Therefore must assess the possible benefits of transgenic products Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . +0 (scientists and the public; Therefore must assess the possible benefits of transgenic products versus the risks that society is willing to take on; a case-by-case basis) scientists and the public Therefore must assess the possible benefits of transgenic products versus the risks that society is willing to take on a case-by-case basis Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . +1 (the possible benefits of transgenic products; Therefore must be assess on; a case-by-case basis) the possible benefits of transgenic products Therefore must be assess on a case-by-case basis Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . +0 (society; is; willing) society is willing Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . +0 (scientists and the public; Therefore must assess the possible benefits of transgenic products versus the risks that society is willing to take; on a case-by-case basis) scientists and the public Therefore must assess the possible benefits of transgenic products versus the risks that society is willing to take on a case-by-case basis Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . +1 (the possible benefits of transgenic products; Therefore must be assess; on a case-by-case basis) the possible benefits of transgenic products Therefore must be assess on a case-by-case basis Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . +1 (They; formed in; the late 1950s) They formed in the late 1950s They formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey . +1 (They; formed; in the late 1950s) They formed in the late 1950s They formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey . +1 (They; headlined in; late 2006) They headlined in late 2006 They headlined in late 2006 with Saosin and Bleeding Through as supporters . +0 (They; headlined with; Saosin and Bleeding) They headlined with Saosin and Bleeding They headlined in late 2006 with Saosin and Bleeding Through as supporters . +1 (They; headlined; in late 2006) They headlined in late 2006 They headlined in late 2006 with Saosin and Bleeding Through as supporters . +0 (They; headlined; with Saosin and Bleeding) They headlined with Saosin and Bleeding They headlined in late 2006 with Saosin and Bleeding Through as supporters . +1 (They; merely collect; campaign contributions) They merely collect campaign contributions They merely collect campaign contributions from developers that help keep them in office . +1 (They; merely collect campaign contributions from; developers that help keep them in office) They merely collect campaign contributions from developers that help keep them in office They merely collect campaign contributions from developers that help keep them in office . +1 (them; be keep in; office) them be keep in office They merely collect campaign contributions from developers that help keep them in office . +1 (They; merely collect campaign contributions; from developers that help keep them in office) They merely collect campaign contributions from developers that help keep them in office They merely collect campaign contributions from developers that help keep them in office . +1 (them; be keep; in office) them be keep in office They merely collect campaign contributions from developers that help keep them in office . +0 (a freely mating population; will give; rise) a freely mating population will give rise This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +0 (a freely mating population; will give rise over; many generations) a freely mating population will give rise over many generations This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +1 (a freely mating population; will give rise to; a uniform population of individuals) a freely mating population will give rise to a uniform population of individuals This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +0 (rise; will be give over; many generations) rise will be give over many generations This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +0 (rise; will be give to; a uniform population of individuals) rise will be give to a uniform population of individuals This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +0 (a freely mating population; will give rise; over many generations) a freely mating population will give rise over many generations This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +1 (a freely mating population; will give rise; to a uniform population of individuals) a freely mating population will give rise to a uniform population of individuals This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +0 (rise; will be give; over many generations) rise will be give over many generations This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +0 (rise; will be give; to a uniform population of individuals) rise will be give to a uniform population of individuals This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . +1 (This method; to produce; cloned animals) This method to produce cloned animals This method is used to produce cloned animals whose nuclear genes are identical to those of the animal supplying the nucleus . +0 (it; would take Ford; at the current sales pace) it would take Ford at the current sales pace This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +1 (Scorpio sales; plummeted; in This year) Scorpio sales plummeted in This year This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +0 (Ford; would be take; at the current sales pace) Ford would be take at the current sales pace This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +0 (it; to sell; off the current Scorpio inventory of about 4,600 cars) it to sell off the current Scorpio inventory of about 4,600 cars This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +0 (it; would take; Ford) it would take Ford This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +0 (it; would take Ford at; the current sales pace) it would take Ford at the current sales pace This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +1 (Scorpio sales; plummeted in; This year) Scorpio sales plummeted in This year This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +0 (Ford; would be take at; the current sales pace) Ford would be take at the current sales pace This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +0 (it; to sell off; the current Scorpio inventory of about 4,600 cars) it to sell off the current Scorpio inventory of about 4,600 cars This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . +1 (the phloem; Thus can serve; a nerve-like function) the phloem Thus can serve a nerve-like function Thus , the phloem can serve a nerve-like function , allowing for swift electrical communication between widely separated organs . +1 (an animal; must obtain; two types of organic precursors) an animal must obtain two types of organic precursors To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . +1 (an animal; must obtain two types of organic precursors from; its food) an animal must obtain two types of organic precursors from its food To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . +1 (two types of organic precursors; must be obtain from; its food) two types of organic precursors must be obtain from its food To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . +0 (it; maintain; itself) it maintain itself To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . +1 (an animal; must obtain two types of organic precursors; from its food) an animal must obtain two types of organic precursors from its food To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . +1 (two types of organic precursors; must be obtain; from its food) two types of organic precursors must be obtain from its food To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . +1 (Turner; also starred in; the film) Turner also starred in the film Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . +1 (a new girlfriend; portayed by; VS Brodie) a new girlfriend portayed by VS Brodie Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . +1 (Turner; also starred; in the film) Turner also starred in the film Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . +1 (a new girlfriend; portayed; by VS Brodie) a new girlfriend portayed by VS Brodie Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . +1 (Umbriatico; is a comune in; Calabria , southern Italy) Umbriatico is a comune in Calabria , southern Italy Umbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy . +1 (Umbriatico; is a comune in; the province of Crotone) Umbriatico is a comune in the province of Crotone Umbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy . +1 (Umbriatico; is; a comune and town) Umbriatico is a comune and town Umbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy . +1 (Umbriatico; is a comune; in Calabria , southern Italy) Umbriatico is a comune in Calabria , southern Italy Umbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy . +1 (Umbriatico; is a comune; in the province of Crotone) Umbriatico is a comune in the province of Crotone Umbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy . +1 (New York-based Hallwood Group Inc.; would replace; Equitec) New York-based Hallwood Group Inc. would replace Equitec Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . +1 (New York-based Hallwood Group Inc.; would replace Equitec as the newly formed master limited partnership 's general partner and manager under; the proposal) New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager under the proposal Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . +0 (a financially troubled real-estate syndicator; be the proposal by; Equitec) a financially troubled real-estate syndicator be the proposal by Equitec Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . +1 (Equitec; would be replace under; the proposal) Equitec would be replace under the proposal Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . +1 (New York-based Hallwood Group Inc.; would replace Equitec as the newly formed master limited partnership 's general partner and manager; under the proposal) New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager under the proposal Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . +0 (a financially troubled real-estate syndicator; be the proposal; by Equitec) a financially troubled real-estate syndicator be the proposal by Equitec Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . +1 (Equitec; would be replace; under the proposal) Equitec would be replace under the proposal Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . +0 (he and his students; spent; several decades) he and his students spent several decades Using glass-walled observation hives , he and his students spent several decades observing these bees . +1 (he; was hosted by; an anti-Nazi Protestant family whose children had been required to join the Hitler Youth) he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . +0 (whose children; had been required in; an anti-Nazi Protestant family) whose children had been required in an anti-Nazi Protestant family Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . +1 (whose children; to join; the Hitler Youth) whose children to join the Hitler Youth Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . +1 (he; was hosted; by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth) he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . +0 (whose children; had been required; in an anti-Nazi Protestant family) whose children had been required in an anti-Nazi Protestant family Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . +1 (urea; be an organic compound present in; the urine of animals) urea be an organic compound present in the urine of animals W hler was astonished to find that instead he had made urea , an organic compound present in the urine of animals . +1 (he; instead had made; urea) he instead had made urea W hler was astonished to find that instead he had made urea , an organic compound present in the urine of animals . +1 (urea; be an organic compound present; in the urine of animals) urea be an organic compound present in the urine of animals W hler was astonished to find that instead he had made urea , an organic compound present in the urine of animals . +0 (its technology group; be president of; a new position) its technology group be president of a new position W. Ed Tyler , 37 years old , a senior vice president at this printing concern , was elected president of its technology group , a new position . +0 (its technology group; be president; of a new position) its technology group be president of a new position W. Ed Tyler , 37 years old , a senior vice president at this printing concern , was elected president of its technology group , a new position . +1 (WKY; operated from; the Skirvin Hotel) WKY operated from the Skirvin Hotel WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . +1 (WKY; operated; from the Skirvin Hotel) WKY operated from the Skirvin Hotel WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . +1 (Connor; to serve as; the Deputy Secretary) Connor to serve as the Deputy Secretary When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Connor; to serve in; the office of the Texas Secretary of State) Connor to serve in the office of the Texas Secretary of State When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Rick Perry; became Governor in; January 2001) Rick Perry became Governor in January 2001 When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Rick Perry; became Governor of; Texas) Rick Perry became Governor of Texas When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Rick Perry; became; Governor of Texas) Rick Perry became Governor of Texas When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Connor; to serve; as the Deputy Secretary) Connor to serve as the Deputy Secretary When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Connor; to serve; in the office of the Texas Secretary of State) Connor to serve in the office of the Texas Secretary of State When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Rick Perry; became Governor; in January 2001) Rick Perry became Governor in January 2001 When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (Rick Perry; became Governor; of Texas) Rick Perry became Governor of Texas When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . +1 (the company; be lower-than-forecast sales; of Easy Eggs) the company be lower-than-forecast sales of Easy Eggs When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . +1 (this month; be lower-than-forecast sales; of Easy Eggs) this month be lower-than-forecast sales of Easy Eggs When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . +1 (the company; announced; lower-than-forecast sales of Easy Eggs) the company announced lower-than-forecast sales of Easy Eggs When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . +1 (the stock; dropped; nearly 19 %) the stock dropped nearly 19 % When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . +0 (this month; announced; lower-than-forecast sales of Easy Eggs) this month announced lower-than-forecast sales of Easy Eggs When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . +1 (the company; be lower-than-forecast sales of; Easy Eggs) the company be lower-than-forecast sales of Easy Eggs When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . +1 (this month; be lower-than-forecast sales of; Easy Eggs) this month be lower-than-forecast sales of Easy Eggs When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . +0 (water molecules; to cross; the epithelium) water molecules to cross the epithelium When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . +0 (the kidneys; are conserving; water) the kidneys are conserving water When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . +1 (Strachan; entered the World Gurning competition at; Egremont Crab Fair) Strachan entered the World Gurning competition at Egremont Crab Fair While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . +1 (Strachan; entered; the World Gurning competition) Strachan entered the World Gurning competition While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . +1 (an item; be filming in; 2002) an item be filming in 2002 While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . +1 (Strachan; entered the World Gurning competition; at Egremont Crab Fair) Strachan entered the World Gurning competition at Egremont Crab Fair While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . +1 (an item; be filming; in 2002) an item be filming in 2002 While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . +0 (he; completed at; the Canadian Forces Command and Staff College) he completed at the Canadian Forces Command and Staff College While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (he; received a Master of Arts in; war studies) he received a Master of Arts in war studies While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (he; completed; degree) he completed degree While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (he; completed; the year-long course) he completed the year-long course While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (he; received; a Master of Arts) he received a Master of Arts While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (a Master of Arts; be received in; war studies) a Master of Arts be received in war studies While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (degree; be completed at; the Canadian Forces Command and Staff College) degree be completed at the Canadian Forces Command and Staff College While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (the year-long course; be completed at; the Canadian Forces Command and Staff College) the year-long course be completed at the Canadian Forces Command and Staff College While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (he; be a Master of; Arts) he be a Master of Arts While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +0 (he; be degree from; Royal Military College of Canada) he be degree from Royal Military College of Canada While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +0 (he; completed; at the Canadian Forces Command and Staff College) he completed at the Canadian Forces Command and Staff College While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (he; received a Master of Arts; in war studies) he received a Master of Arts in war studies While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (a Master of Arts; be received; in war studies) a Master of Arts be received in war studies While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (degree; be completed; at the Canadian Forces Command and Staff College) degree be completed at the Canadian Forces Command and Staff College While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (the year-long course; be completed; at the Canadian Forces Command and Staff College) the year-long course be completed at the Canadian Forces Command and Staff College While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +1 (he; be a Master; of Arts) he be a Master of Arts While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +0 (he; be degree; from Royal Military College of Canada) he be degree from Royal Military College of Canada While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . +0 (researchers; had with; a large genome) researchers had with a large genome With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . +1 (researchers; to carry out; several rounds of DNA cutting , cloning , and physical mapping) researchers to carry out several rounds of DNA cutting , cloning , and physical mapping With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . +0 (researchers; had; with a large genome) researchers had with a large genome With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . +1 (researchers; to carry; out several rounds of DNA cutting , cloning , and physical mapping) researchers to carry out several rounds of DNA cutting , cloning , and physical mapping With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . +1 (Jacob F. `` Jake '' Horton; be the senior vice president of; Gulf Power) Jacob F. `` Jake '' Horton be the senior vice president of Gulf Power Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +1 (the grand jury; has asked; numerous questions) the grand jury has asked numerous questions Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (the senior vice president of Gulf Power; has asked numerous questions about; Jacob F. `` Jake '' Horton) the senior vice president of Gulf Power has asked numerous questions about Jacob F. `` Jake '' Horton Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (Gulf Power; died in; April) Gulf Power died in April Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (Gulf Power; died in; the plane crash) Gulf Power died in the plane crash Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (numerous questions; has asked about; Jacob F. `` Jake '' Horton) numerous questions has asked about Jacob F. `` Jake '' Horton Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +1 (Jacob F. `` Jake '' Horton; be the senior vice president; of Gulf Power) Jacob F. `` Jake '' Horton be the senior vice president of Gulf Power Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (the senior vice president of Gulf Power; has asked numerous questions; about Jacob F. `` Jake '' Horton) the senior vice president of Gulf Power has asked numerous questions about Jacob F. `` Jake '' Horton Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (Gulf Power; died; in April) Gulf Power died in April Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (Gulf Power; died; in the plane crash) Gulf Power died in the plane crash Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +0 (numerous questions; has asked; about Jacob F. `` Jake '' Horton) numerous questions has asked about Jacob F. `` Jake '' Horton Witnesses have said the grand jury has asked numerous questions about Jacob F. `` Jake '' Horton , the senior vice president of Gulf Power who died in the plane crash in April . +1 (he; met again; Beatrice) he met again Beatrice Years after his marriage to Gemma , he met Beatrice again . +0 (it; appears; for the short term) it appears for the short term `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (it; what means; over the long run) it what means over the long run `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (that gold; has risen so; over the past week) that gold has risen so over the past week `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (he; said; of I) he said of I `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (he; said; to I) he said to I `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (I; said; to he) I said to he `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (it; appears for; the short term) it appears for the short term `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (it; what means over; the long run) it what means over the long run `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (that gold; has risen so over; the past week) that gold has risen so over the past week `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (he; said of; I) he said of I `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (he; said to; I) he said to I `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (I; said to; he) I said to he `` I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , '' he said . +0 (The obligation; is; unwarranted) The obligation is unwarranted `` The obligation is totally unwarranted , '' the statement said . +1 (I; read a sign; in the usual pronunciation of the name) I read a sign in the usual pronunciation of the name `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . +0 (Tivoli Motel; read a sign; in the usual pronunciation of the name) Tivoli Motel read a sign in the usual pronunciation of the name `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . +1 (a sign; be read; in the usual pronunciation of the name) a sign be read in the usual pronunciation of the name `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . +1 (I; read a sign in; the usual pronunciation of the name) I read a sign in the usual pronunciation of the name `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . +0 (Tivoli Motel; read a sign in; the usual pronunciation of the name) Tivoli Motel read a sign in the usual pronunciation of the name `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . +1 (I; read; a sign) I read a sign `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . +0 (Tivoli Motel; read; a sign) Tivoli Motel read a sign `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . +1 (a sign; be read in; the usual pronunciation of the name) a sign be read in the usual pronunciation of the name `` Tivoli Motel , '' I read a sign in the usual pronunciation of the name as we whoosh through . diff --git a/srlie/data/annotations-training.txt b/srlie/data/annotations-training.txt new file mode 100644 index 0000000..d880018 --- /dev/null +++ b/srlie/data/annotations-training.txt @@ -0,0 +1,1235 @@ +0 (24< ;/D> reported; unaudited financial results for its fourth quarter) 24< ;/D> reported unaudited financial results for its fourth quarter 24< ;/D> ; /PRNewswire-FirstCall/ -- Broadcom Corporation today reported unaudited financial results for its fourth quarter and year ended December 31 , 2007 . +1 (year; ended; December 31 , 2007) year ended December 31 , 2007 24< ;/D> ; /PRNewswire-FirstCall/ -- Broadcom Corporation today reported unaudited financial results for its fourth quarter and year ended December 31 , 2007 . +0 (24< :/D> reported; unaudited financial results for its fourth quarter) 24< :/D> reported unaudited financial results for its fourth quarter 24< ;/D> ; /PRNewswire-FirstCall/ -- Broadcom Corporation today reported unaudited financial results for its fourth quarter and year ended December 31 , 2007 . +0 (24< :/D> reported unaudited financial results for its fourth quarter; today) 24< :/D> reported unaudited financial results for its fourth quarter today 24< ;/D> ; /PRNewswire-FirstCall/ -- Broadcom Corporation today reported unaudited financial results for its fourth quarter and year ended December 31 , 2007 . +1 (agoLOS ANGELES - Sean Young; has entered rehabilitation for alcohol abuse; following a weekend outburst) agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst 7 minutes agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst in which she was heckling from the audience at the . +0 (a weekend outburst; was heckling from the audience; at the) a weekend outburst was heckling from the audience at the 7 minutes agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst in which she was heckling from the audience at the . +1 (agoLOS ANGELES - Sean Young; has entered; rehabilitation for alcohol abuse) agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse 7 minutes agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst in which she was heckling from the audience at the . +0 (a weekend outburst; was heckling; from the audience) a weekend outburst was heckling from the audience 7 minutes agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst in which she was heckling from the audience at the . +1 (the parties here by; submit; to the exclusive jurisdiction of the English courts in relation to any dispute) the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of them . +0 (any dispute; arising; out of them) any dispute arising out of them 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of them . +1 (7These Terms and Conditions and any relevant Order; are governed; by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute) 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of them . +1 (A memorial service; will be at 2 pm; Tuesday) A memorial service will be at 2 pm Tuesday A memorial service will be at 2 pm Tuesday at Evergreen Funeral Home Chapel of Peace , 1830 E. Fountain Blvd . +1 (A memorial service; will be at 2 pm; at Evergreen Funeral Home Chapel of Peace) A memorial service will be at 2 pm at Evergreen Funeral Home Chapel of Peace A memorial service will be at 2 pm Tuesday at Evergreen Funeral Home Chapel of Peace , 1830 E. Fountain Blvd . +1 (A memorial service; will be; at 2 pm) A memorial service will be at 2 pm A memorial service will be at 2 pm Tuesday at Evergreen Funeral Home Chapel of Peace , 1830 E. Fountain Blvd . +1 (A source familiar with the negotiations; told; the Baltimore Sun) A source familiar with the negotiations told the Baltimore Sun A source familiar with the negotiations told the Baltimore Sun a potential deal is being held up on the Orioles ' end and unspecified complex issues still need to be resolved for the trade to go through . +1 (A source familiar with the negotiations; told the Baltimore Sun; a potential deal is being held up on the Orioles ' end and unspecified complex issues still need to be resolved for the trade) A source familiar with the negotiations told the Baltimore Sun a potential deal is being held up on the Orioles ' end and unspecified complex issues still need to be resolved for the trade A source familiar with the negotiations told the Baltimore Sun a potential deal is being held up on the Orioles ' end and unspecified complex issues still need to be resolved for the trade to go through . +1 (a potential deal; is being held up; on the Orioles ' end and unspecified complex issues) a potential deal is being held up on the Orioles ' end and unspecified complex issues A source familiar with the negotiations told the Baltimore Sun a potential deal is being held up on the Orioles ' end and unspecified complex issues still need to be resolved for the trade to go through . +1 (Tracey Bateman; is; the award-winning author of more than twenty-five books , including Defiant Heart , the First in the Westeard Hearts series) Tracey Bateman is the award-winning author of more than twenty-five books , including Defiant Heart , the First in the Westeard Hearts series ABOUT THE AUTHOR : Tracey Bateman is the award-winning author of more than twenty-five books , including Defiant Heart , the First in the Westeard Hearts series . +0 (award; winning; author of more than twenty-five books , including Defiant Heart , the First in the Westeard Hearts series) award winning author of more than twenty-five books , including Defiant Heart , the First in the Westeard Hearts series ABOUT THE AUTHOR : Tracey Bateman is the award-winning author of more than twenty-five books , including Defiant Heart , the First in the Westeard Hearts series . +1 (Tracey Bateman; is the award-winning author of; more than twenty-five books) Tracey Bateman is the award-winning author of more than twenty-five books ABOUT THE AUTHOR : Tracey Bateman is the award-winning author of more than twenty-five books , including Defiant Heart , the First in the Westeard Hearts series . +1 (Alfred Nobel; invented; dynamite) Alfred Nobel invented dynamite Alfred Nobel invented dynamite and established the Nobel Prizes , which are given out annually on December 10 in the Konserthuset . +1 (Alfred Nobel; established; the Nobel Prizes) Alfred Nobel established the Nobel Prizes Alfred Nobel invented dynamite and established the Nobel Prizes , which are given out annually on December 10 in the Konserthuset . +1 (the Nobel Prizes; are given out; annually) the Nobel Prizes are given out annually Alfred Nobel invented dynamite and established the Nobel Prizes , which are given out annually on December 10 in the Konserthuset . +1 (the Nobel Prizes; are given out; on December 10) the Nobel Prizes are given out on December 10 Alfred Nobel invented dynamite and established the Nobel Prizes , which are given out annually on December 10 in the Konserthuset . +1 (the Nobel Prizes; are given out; in the Konserthuset) the Nobel Prizes are given out in the Konserthuset Alfred Nobel invented dynamite and established the Nobel Prizes , which are given out annually on December 10 in the Konserthuset . +1 (Carolina; win; the Stanley Cup) Carolina win the Stanley Cup All Mark Recchi did was help Carolina win the Stanley Cup . +0 (All Mark Recchi; did; ) All Mark Recchi did All Mark Recchi did was help Carolina win the Stanley Cup . +1 (All computers; have; access to the Internet) All computers have access to the Internet All computers have access to the Internet through a connection in Atlanta . +1 (Jesus; was leaving; Jericho) Jesus was leaving Jericho Also , Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho whereas Luke suggests that a blind man was healed as the Lord came near to the city . +1 (Jesus; was leaving Jericho; whereas Luke suggests that a blind man was healed) Jesus was leaving Jericho whereas Luke suggests that a blind man was healed Also , Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho whereas Luke suggests that a blind man was healed as the Lord came near to the city . +1 (Luke; suggests; that a blind man was healed as the Lord came near to the city) Luke suggests that a blind man was healed as the Lord came near to the city Also , Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho whereas Luke suggests that a blind man was healed as the Lord came near to the city . +1 (Matthew and Mark; indicate; that the blind men were healed as Jesus was leaving Jericho) Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho Also , Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho whereas Luke suggests that a blind man was healed as the Lord came near to the city . +1 (the blind men; were healed; ) the blind men were healed Also , Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho whereas Luke suggests that a blind man was healed as the Lord came near to the city . +0 (a blind man; was healed; as the Lord came near to the city) a blind man was healed as the Lord came near to the city Also , Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho whereas Luke suggests that a blind man was healed as the Lord came near to the city . +0 (the Lord; came; near to the city) the Lord came near to the city Also , Matthew and Mark indicate that the blind men were healed as Jesus was leaving Jericho whereas Luke suggests that a blind man was healed as the Lord came near to the city . +1 (the states; are; Kansas , Nebraska , Iowa , New Mexico , Texas , Louisiana , Oklahoma , Colorado , Montana , North Dakota , South Dakota , Utah and Wyoming) the states are Kansas , Nebraska , Iowa , New Mexico , Texas , Louisiana , Oklahoma , Colorado , Montana , North Dakota , South Dakota , Utah and Wyoming And the states are Kansas , Nebraska , Iowa , New Mexico , Texas , Louisiana , Oklahoma , Colorado , Montana , North Dakota , South Dakota , Utah and Wyoming . +1 (Andrew; spent; last night) Andrew spent last night Andrew spent last night at Kyle 's house , and came home this morning sick . +1 (Andrew; spent; at Kyle 's house) Andrew spent at Kyle 's house Andrew spent last night at Kyle 's house , and came home this morning sick . +1 (Andrew; came; home) Andrew came home Andrew spent last night at Kyle 's house , and came home this morning sick . +1 (Andrew; came; this morning) Andrew came this morning Andrew spent last night at Kyle 's house , and came home this morning sick . +1 (Andrew; came; sick) Andrew came sick Andrew spent last night at Kyle 's house , and came home this morning sick . +1 (Anti-Zionism; is not; anti-Semitism) Anti-Zionism is not anti-Semitism Anti-Zionism is not anti-Semitism ; Weltner goes out of his way to assure people that his issue is with Zionism rather than with Jews . +1 (Weltner; goes; out of his way) Weltner goes out of his way Anti-Zionism is not anti-Semitism ; Weltner goes out of his way to assure people that his issue is with Zionism rather than with Jews . +1 (Im; As typing; this article) Im As typing this article As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (I; need to coordinate interviews; ahead of time) I need to coordinate interviews ahead of time As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (I; need; to coordinate interviews ahead of time) I need to coordinate interviews ahead of time As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (Ive; received; an email that I need to coordinate interviews ahead of time) Ive received an email that I need to coordinate interviews ahead of time As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (Im; typing; this article) Im typing this article As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (I; need to coordinate; interviews; ahead of time) I need to coordinate interviews; ahead of time As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +1 (Peter; betrayed; Jesus) Peter betrayed Jesus As sure as Peter betrayed Jesus , in my ambivalence and ignorance I betrayed Him too . +0 (I; As sure betrayed too; Him) I As sure betrayed too Him As sure as Peter betrayed Jesus , in my ambivalence and ignorance I betrayed Him too . +0 (I; As sure betrayed too Him; in my ambivalence and ignorance) I As sure betrayed too Him in my ambivalence and ignorance As sure as Peter betrayed Jesus , in my ambivalence and ignorance I betrayed Him too . +1 (the Colts; beat; the Jaguars) the Colts beat the Jaguars Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +0 (the Colts; beat putting them; in a hurry) the Colts beat putting them in a hurry Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +0 (the Colts; beat putting them; almost all the time) the Colts beat putting them almost all the time Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +0 (the Colts; beat the Jaguars putting; them) the Colts beat the Jaguars putting them Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +1 (the Colts; beat the Jaguars putting them; in a hurry) the Colts beat the Jaguars putting them in a hurry Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +0 (the Colts; beat the Jaguars putting them; almost all the time) the Colts beat the Jaguars putting them almost all the time Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +1 (Azureus; is; open source and a superb engine) Azureus is open source and a superb engine Azureus is open source and a superb engine . +1 (Azureus; is; open source) Azureus is open source Azureus is open source and a superb engine . +1 (Jews , Christians , and Muslims; find; faith , freedom , and joy on the Sabbath / Christopher D. Ringwald) Jews , Christians , and Muslims find faith , freedom , and joy on the Sabbath / Christopher D. Ringwald BL595.S9 R56 2007 Eden Stacks 3rd Floor A day apart : how Jews , Christians , and Muslims find faith , freedom , and joy on the Sabbath / Christopher D. Ringwald . +1 (Christ; is; the Door) Christ is the Door Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +1 (we; open; to greener pastures) we open to greener pastures Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +0 (we; open; it) we open it Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +0 (we; open it; to greener pastures) we open it to greener pastures Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +0 (we; can shut out; the pain of our past) we can shut out the pain of our past Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +1 (Bextra; outweighed Bextra; today) Bextra outweighed Bextra today Bextra outweighed Bextra from the market today have or not . +0 (nine or 10 a month since soldiers; returned; from Iraq) nine or 10 a month since soldiers returned from Iraq Blackhart said she does n't know why numbers were up in April but added that the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq . +1 (Blackhart; added; that the nursery is seeing more military parents than usual) Blackhart added that the nursery is seeing more military parents than usual Blackhart said she does n't know why numbers were up in April but added that the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq . +1 (the nursery; is seeing; more military parents than usual -- nine or 10 a month since soldiers returned from Iraq) the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq Blackhart said she does n't know why numbers were up in April but added that the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq . +1 (Blackhart; said; she does n't know why numbers were up in April) Blackhart said she does n't know why numbers were up in April Blackhart said she does n't know why numbers were up in April but added that the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq . +1 (she; does n't know; why numbers were up in April) she does n't know why numbers were up in April Blackhart said she does n't know why numbers were up in April but added that the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq . +0 (numbers; were; up) numbers were up Blackhart said she does n't know why numbers were up in April but added that the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq . +1 (numbers; were up; in April) numbers were up in April Blackhart said she does n't know why numbers were up in April but added that the nursery is seeing more military parents than usual -- nine or 10 a month since soldiers returned from Iraq . +1 (Bob Marley; died; in 1981) Bob Marley died in 1981 Bob Marley died in 1981 at 36 . +1 (Bob Marley; died; at 36) Bob Marley died at 36 Bob Marley died in 1981 at 36 . +1 (50,000 British personnel; ruled; over 90 million Indians) 50,000 British personnel ruled over 90 million Indians Britain ruled India and , by the time Victoria came to the throne of England in 1837 , 50,000 British personnel ruled over 90 million Indians . +1 (Britain; ruled; India) Britain ruled India Britain ruled India and , by the time Victoria came to the throne of England in 1837 , 50,000 British personnel ruled over 90 million Indians . +1 (Victoria; came; to the throne of England) Victoria came to the throne of England Britain ruled India and , by the time Victoria came to the throne of England in 1837 , 50,000 British personnel ruled over 90 million Indians . +1 (Victoria; came; in 1837) Victoria came in 1837 Britain ruled India and , by the time Victoria came to the throne of England in 1837 , 50,000 British personnel ruled over 90 million Indians . +1 (the Jews; rejected; Jesus , God Incarnate , and so the Gentiles would be welcomed as the people of God) the Jews rejected Jesus , God Incarnate , and so the Gentiles would be welcomed as the people of God But , the Jews rejected Jesus , God Incarnate , and so the Gentiles would be welcomed as the people of God . +1 (the Gentiles; would be welcomed; as the people of God) the Gentiles would be welcomed as the people of God But , the Jews rejected Jesus , God Incarnate , and so the Gentiles would be welcomed as the people of God . +1 (Jesus; gave; a loud cry) Jesus gave a loud cry But Jesus gave a loud cry and breathed his last . +1 (Jesus; breathed; his last) Jesus breathed his last But Jesus gave a loud cry and breathed his last . +1 (Susan; had; two children) Susan had two children But Susan had two children , a determined outlook and was on a mission to testify to the important work Ian had done in the struggle to bring peace and stability to Northern Ireland . +1 (Susan; was; on a mission) Susan was on a mission But Susan had two children , a determined outlook and was on a mission to testify to the important work Ian had done in the struggle to bring peace and stability to Northern Ireland . +0 (the important work; had done; in the struggle) the important work had done in the struggle But Susan had two children , a determined outlook and was on a mission to testify to the important work Ian had done in the struggle to bring peace and stability to Northern Ireland . +1 (the deadline; is; December 15) the deadline is December 15 But hurry , the deadline is December 15 ! +1 (Buy.com; has; the Creative Live) Buy.com has the Creative Live Buy.com has the Creative Live ! +1 (jazz; is; America 's classical music) jazz is America 's classical music By all accounts , jazz is America 's classical music . +1 (Channel Image 23 :06; revealed; A flyby) Channel Image 23 :06 revealed A flyby Channel Image 23 :06 Mercury 's volcanic past revealed A flyby by a Nasa unmanned space probe has revealed evidence of widespread volcanism on the planet Mercury . +1 (Clients; include; Ritz-Carlton) Clients include Ritz-Carlton Clients include Ritz-Carlton , St . +1 (Credit cards; are accepted; ) Credit cards are accepted Credit cards are accepted via Paypal with an additional $ 2.50 service charge . +1 (Dave; plays; guitar) Dave plays guitar Dave plays guitar and we both sing . +0 (we; sing; ) we sing Dave plays guitar and we both sing . +1 (a GM spin-off; negotiated; labor agreements) a GM spin-off negotiated labor agreements Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; filed; for bankruptcy) a GM spin-off filed for bankruptcy Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; filed; in October) a GM spin-off filed in October Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; filed citing; the high burden of GM) a GM spin-off filed citing the high burden of GM Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; filed for bankruptcy; in October) a GM spin-off filed for bankruptcy in October Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; filed for bankruptcy citing; the high burden of GM) a GM spin-off filed for bankruptcy citing the high burden of GM Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (Deron Williams; had; 11 points and 14 assists and the Utah Jazz) Deron Williams had 11 points and 14 assists and the Utah Jazz Deron Williams had 11 points and 14 assists and the Utah Jazz won their fifth straight game , beating the San Antonio Spurs 97-91 on Monday night . +1 (Deron Williams; had; 18 points and six rebounds) Deron Williams had 18 points and six rebounds Deron Williams had 18 points and six rebounds to help No. 1 Illinois defeat No. 22 Cincinnati 67-45 in the final game of the Las Vegas Holiday . +1 (Destinations; include; Halifax , Caribbean) Destinations include Halifax , Caribbean Destinations include Halifax , Caribbean , Europe . +1 (Elections; are held; in September) Elections are held in September Elections are held in September with the officers assuming their positions on October 1 . +1 (the officers; with assuming their positions; on October 1) the officers with assuming their positions on October 1 Elections are held in September with the officers assuming their positions on October 1 . +0 (the officers; assuming; their positions) the officers assuming their positions Elections are held in September with the officers assuming their positions on October 1 . +1 (the officers; assuming their positions; on October 1) the officers assuming their positions on October 1 Elections are held in September with the officers assuming their positions on October 1 . +1 (Elvis; was drafted; into the army) Elvis was drafted into the army Elvis was drafted into the army and when he was discharged he found that the films he was given to act in were class B movies although big money makers for the box office . +0 (he; was discharged; ) he was discharged Elvis was drafted into the army and when he was discharged he found that the films he was given to act in were class B movies although big money makers for the box office . +0 (the films; to act; in were class B movies although big money makers for the box office) the films to act in were class B movies although big money makers for the box office Elvis was drafted into the army and when he was discharged he found that the films he was given to act in were class B movies although big money makers for the box office . +0 (he; found; that the films he was given to act in were class B movies although) he found that the films he was given to act in were class B movies although Elvis was drafted into the army and when he was discharged he found that the films he was given to act in were class B movies although big money makers for the box office . +1 (the films he was given; were; class B movies) the films he was given were class B movies Elvis was drafted into the army and when he was discharged he found that the films he was given to act in were class B movies although big money makers for the box office . +0 (the films; was given; ) the films was given Elvis was drafted into the army and when he was discharged he found that the films he was given to act in were class B movies although big money makers for the box office . +1 (someone; dies; in America) someone dies in America Every hour someone dies in America simply because they are not wearing a safety belt . +1 (someone; dies; Every hour) someone dies Every hour Every hour someone dies in America simply because they are not wearing a safety belt . +0 (they; simply are not wearing; a safety belt) they simply are not wearing a safety belt Every hour someone dies in America simply because they are not wearing a safety belt . +0 (there; was a part of; him-and i) there was a part of him-and i First , Edward was a vampire Second , there was a part of him-and i did n't know how dominant that part might be- that thirsted for my blood . +1 (i; did n't know; how dominant that part might be- that thirsted for my blood) i did n't know how dominant that part might be- that thirsted for my blood First , Edward was a vampire Second , there was a part of him-and i did n't know how dominant that part might be- that thirsted for my blood . +0 (that part; how dominant might be-; that thirsted for my blood) that part how dominant might be- that thirsted for my blood First , Edward was a vampire Second , there was a part of him-and i did n't know how dominant that part might be- that thirsted for my blood . +0 (that; thirsted; ) that thirsted First , Edward was a vampire Second , there was a part of him-and i did n't know how dominant that part might be- that thirsted for my blood . +1 (Liverpool; beat; Chelsea) Liverpool beat Chelsea Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat; last night) Liverpool beat last night Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat; in the champions league semi final) Liverpool beat in the champions league semi final Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat Chelsea; in the champions league semi final) Liverpool beat Chelsea in the champions league semi final Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat Chelsea; last night) Liverpool beat Chelsea last night Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +0 (i; Firstly can just say; haaaaaaaaaaaaaaw get in you beauty , have it) i Firstly can just say haaaaaaaaaaaaaaw get in you beauty , have it Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (the United States; invaded; Afghanistan) the United States invaded Afghanistan Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +0 (the number one person; planned; ) the number one person planned Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +0 (the US; executed; 9/11) the US executed 9/11 Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +0 (the US; executed 9/11; when the United States invaded Afghanistan) the US executed 9/11 when the United States invaded Afghanistan Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +1 (the US; was trying; to find the number one person) the US was trying to find the number one person Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +1 (the US; was trying to find the number one person; Five years ago) the US was trying to find the number one person Five years ago Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +1 (the US; was trying to find the number one person; when the United States invaded Afghanistan) the US was trying to find the number one person when the United States invaded Afghanistan Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +0 (the US; was trying to find; the number one person that planned) the US was trying to find the number one person that planned Five years ago when the United States invaded Afghanistan , the US was trying to find the number one person that planned and executed 9/11 . +1 (Florida; is; the best team) Florida is the best team Florida is the best team and their Midwest bracket is weak . +1 (their Midwest bracket; is; weak) their Midwest bracket is weak Florida is the best team and their Midwest bracket is weak . +1 (Snap-on; is; a $ 2+ billion , S&) Snap-on is a $ 2+ billion , S& Founded in 1920 , Snap-on is a $ 2+ billion , S&P 500 Company headquartered in Kenosha , Wisconsin . +1 (Snap-on; is a $ 2+ billion , S & amp; Founded in 1920) Snap-on is a $ 2+ billion , S & amp Founded in 1920 Founded in 1920 , Snap-on is a $ 2+ billion , S&P 500 Company headquartered in Kenosha , Wisconsin . +0 (P 500 Company; headquartered; in Kenosha) P 500 Company headquartered in Kenosha Founded in 1920 , Snap-on is a $ 2+ billion , S&P 500 Company headquartered in Kenosha , Wisconsin . +1 (Frida Kahlo; was born; in 1907) Frida Kahlo was born in 1907 Frida Kahlo was born in 1907 in Coyoacan Mexico . +1 (Frida Kahlo; was born; in Coyoacan Mexico) Frida Kahlo was born in Coyoacan Mexico Frida Kahlo was born in 1907 in Coyoacan Mexico . +1 (Gandhi; returned; to India) Gandhi returned to India Gandhi returned to India a hero , hailed with a new name Mahatma-great soul . +1 (Gandhi; returned; a hero , hailed with a new name Mahatma-great soul) Gandhi returned a hero , hailed with a new name Mahatma-great soul Gandhi returned to India a hero , hailed with a new name Mahatma-great soul . +1 (a hero; hailed; with a new name) a hero hailed with a new name Gandhi returned to India a hero , hailed with a new name Mahatma-great soul . +1 (German troops; invaded; Poland) German troops invaded Poland German troops invaded Poland , and refugees streamed into Lithuania bringing with them tales of atrocities against the Jewish population . +1 (refugees; streamed; into Lithuania) refugees streamed into Lithuania German troops invaded Poland , and refugees streamed into Lithuania bringing with them tales of atrocities against the Jewish population . +1 (refugees; bringing tales of atrocities against the Jewish population; with them) refugees bringing tales of atrocities against the Jewish population with them German troops invaded Poland , and refugees streamed into Lithuania bringing with them tales of atrocities against the Jewish population . +1 (refugees; bringing; tales of atrocities against the Jewish population) refugees bringing tales of atrocities against the Jewish population German troops invaded Poland , and refugees streamed into Lithuania bringing with them tales of atrocities against the Jewish population . +1 (Glenrothes; led; the way in Scotland) Glenrothes led the way in Scotland Glenrothes led the way in Scotland being the first new town to desean jackson a town artist in 1968 . +1 (Goals; win; games) Goals win games Goals win games and remove pressure all round and if prioity is not soon exercised then this season will be a failure and questions asked about our management of the club as whole and not leaving out the Chairman ! +0 (prioity; is not exercised; then) prioity is not exercised then Goals win games and remove pressure all round and if prioity is not soon exercised then this season will be a failure and questions asked about our management of the club as whole and not leaving out the Chairman ! +0 (prioity; is not exercised; soon) prioity is not exercised soon Goals win games and remove pressure all round and if prioity is not soon exercised then this season will be a failure and questions asked about our management of the club as whole and not leaving out the Chairman ! +1 (this season; will be; a failure and questions asked about our management of the club) this season will be a failure and questions asked about our management of the club Goals win games and remove pressure all round and if prioity is not soon exercised then this season will be a failure and questions asked about our management of the club as whole and not leaving out the Chairman ! +0 (Google; does; things) Google does things Google does things their Own Way , and theyre not afraid who knows it . +1 (Hekmatyar; fled; to Iran) Hekmatyar fled to Iran Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +1 (Hekmatyar; fled to Iran; after the Taliban entered Kabul in 1996) Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +1 (the Taliban; entered; Kabul) the Taliban entered Kabul Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +1 (the Taliban; entered Kabul; in 1996) the Taliban entered Kabul in 1996 Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +1 (the Taliban; returning; to Afghanistan) the Taliban returning to Afghanistan Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +1 (the Taliban; returning; only last month) the Taliban returning only last month Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +1 (the Taliban; returning; after the Iranian government expelled him) the Taliban returning after the Iranian government expelled him Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +0 (the Iranian government; expelled; him) the Iranian government expelled him Hekmatyar fled to Iran after the Taliban entered Kabul in 1996 , returning to Afghanistan only last month after the Iranian government expelled him . +1 (Hes; gained; weight) Hes gained weight Hes gained weight and is back to his old self . +1 (Hes; is; back to his old self) Hes is back to his old self Hes gained weight and is back to his old self . +1 (Hes; is back to; his old self) Hes is back to his old self Hes gained weight and is back to his old self . +1 (How former muslim farhad found Jesus; is; more than a prophet) How former muslim farhad found Jesus is more than a prophet How former muslim farhad found Jesus is more than a prophet . +1 (Jesus; is more than; a prophet) Jesus is more than a prophet How former muslim farhad found Jesus is more than a prophet . +1 (Humans; are; animals) Humans are animals Humans are animals and have rights . +1 (Humans; have; rights) Humans have rights Humans are animals and have rights . +0 (I; 've heard; rumours that Obama has offered him Attorney General) I 've heard rumours that Obama has offered him Attorney General I 've heard rumours that Obama has offered him Attorney General , but I think he 's hedging his bets as Hillary is ahead in the polls . +0 (rumours; has offered; him) rumours has offered him I 've heard rumours that Obama has offered him Attorney General , but I think he 's hedging his bets as Hillary is ahead in the polls . +1 (Hillary; is; ahead) Hillary is ahead I 've heard rumours that Obama has offered him Attorney General , but I think he 's hedging his bets as Hillary is ahead in the polls . +1 (Hillary; is ahead; in the polls) Hillary is ahead in the polls I 've heard rumours that Obama has offered him Attorney General , but I think he 's hedging his bets as Hillary is ahead in the polls . +0 (I; think; he 's hedging his bets as Hillary is ahead in the polls) I think he 's hedging his bets as Hillary is ahead in the polls I 've heard rumours that Obama has offered him Attorney General , but I think he 's hedging his bets as Hillary is ahead in the polls . +1 (he; 's hedging; his bets) he 's hedging his bets I 've heard rumours that Obama has offered him Attorney General , but I think he 's hedging his bets as Hillary is ahead in the polls . +1 (he; 's hedging his bets; as Hillary is ahead in the polls) he 's hedging his bets as Hillary is ahead in the polls I 've heard rumours that Obama has offered him Attorney General , but I think he 's hedging his bets as Hillary is ahead in the polls . +1 (Italy; invaded; Abyssinia) Italy invaded Abyssinia In 1935 , Italy invaded Abyssinia and captured it along with the Ogaden and the territories of other nations in the area . +1 (Italy; invaded Abyssinia; In 1935) Italy invaded Abyssinia In 1935 In 1935 , Italy invaded Abyssinia and captured it along with the Ogaden and the territories of other nations in the area . +1 (Italy; captured; it) Italy captured it In 1935 , Italy invaded Abyssinia and captured it along with the Ogaden and the territories of other nations in the area . +1 (Italy; captured it; In 1935) Italy captured it In 1935 In 1935 , Italy invaded Abyssinia and captured it along with the Ogaden and the territories of other nations in the area . +1 (Indonesia; was; the fourth largest country in the world) Indonesia was the fourth largest country in the world In 1994 , Indonesia was the fourth largest country in the world and had an estimated 192 million people . +1 (Indonesia; was the fourth largest country in the world; In 1994) Indonesia was the fourth largest country in the world In 1994 In 1994 , Indonesia was the fourth largest country in the world and had an estimated 192 million people . +1 (Indonesia; had; an estimated 192 million people) Indonesia had an estimated 192 million people In 1994 , Indonesia was the fourth largest country in the world and had an estimated 192 million people . +1 (Indonesia; had an estimated 192 million people; In 1994) Indonesia had an estimated 192 million people In 1994 In 1994 , Indonesia was the fourth largest country in the world and had an estimated 192 million people . +1 (Indonesia; was the fourth largest country in; the world) Indonesia was the fourth largest country in the world In 1994 , Indonesia was the fourth largest country in the world and had an estimated 192 million people . +1 (the album; was released; in the USA) the album was released in the USA In 2003 , the album was released in the USA to critical acclaim . +1 (the album; was released; In 2003) the album was released In 2003 In 2003 , the album was released in the USA to critical acclaim . +1 (the Lord; appeared; to Solomon) the Lord appeared to Solomon In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (the Lord; appeared; in a dream) the Lord appeared in a dream In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (the Lord; appeared; In Gibeon) the Lord appeared In Gibeon In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (the Lord; told; Solomon) the Lord told Solomon In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (the Lord; told Solomon; to ask Him for what He would give him) the Lord told Solomon to ask Him for what He would give him In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (the Lord; told Solomon; In Gibeon) the Lord told Solomon In Gibeon In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (Solomon; to ask; Him) Solomon to ask Him In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (Solomon; to ask Him; for what He would give him) Solomon to ask Him for what He would give him In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +0 (He; would give; him) He would give him In Gibeon , the Lord appeared to Solomon in a dream and told Solomon to ask Him for what He would give him . +1 (the countries; were; China , India , Indonesia , Bangladesh , Pakistan , Nepal and the Philippines) the countries were China , India , Indonesia , Bangladesh , Pakistan , Nepal and the Philippines In Phase-II from 1989-1992 , the countries included , were China , India , Indonesia , Bangladesh , Pakistan , Nepal and the Philippines . +1 (the countries; included; In Phase-II from 1989-1992) the countries included In Phase-II from 1989-1992 In Phase-II from 1989-1992 , the countries included , were China , India , Indonesia , Bangladesh , Pakistan , Nepal and the Philippines . +1 (Rome; when was; in power) Rome when was in power In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +1 (single men; made; better soldiers than married men) single men made better soldiers than married men In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +0 (I; decided; that single men made better soldiers than married men) I decided that single men made better soldiers than married men In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +1 (Rome; was; in power) Rome was in power In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +0 (I; decided that single men made better soldiers than married men; In the 3rd century) I decided that single men made better soldiers than married men In the 3rd century In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +0 (I; decided that single men made better soldiers than married men; when Rome was in power) I decided that single men made better soldiers than married men when Rome was in power In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +0 (this; is; why people live in Paris) this is why people live in Paris Indeed , this is why people live in Paris . +1 (people; live; in Paris) people live in Paris Indeed , this is why people live in Paris . +1 (India; is divided; into 28 states and seven union territories) India is divided into 28 states and seven union territories India is divided into 28 states and seven union territories . +1 (India; is divided into; 28 states and seven union territories) India is divided into 28 states and seven union territories India is divided into 28 states and seven union territories . +1 (India; went; into lunch) India went into lunch India went into lunch at 449 for four , with Ganguly on 62 and Laxman on 41 . +1 (India; went; at 449) India went at 449 India went into lunch at 449 for four , with Ganguly on 62 and Laxman on 41 . +1 (India; went; with Ganguly) India went with Ganguly India went into lunch at 449 for four , with Ganguly on 62 and Laxman on 41 . +1 (parents; identified themselves; as Latino) parents identified themselves as Latino Interviews were conducted in Spanish with parents who identified themselves as Latino and had at least one child between 4 and 8 years of age . +1 (Interviews; were conducted; in Spanish) Interviews were conducted in Spanish Interviews were conducted in Spanish with parents who identified themselves as Latino and had at least one child between 4 and 8 years of age . +1 (parents; had at least one child; between 4 and 8 years of age) parents had at least one child between 4 and 8 years of age Interviews were conducted in Spanish with parents who identified themselves as Latino and had at least one child between 4 and 8 years of age . +0 (It; 's; the End of days) It 's the End of days Islam is Muslims , The heart of a Muslim is the house of the Real Islam , If it collapsed , Islam is collapsing and It 's the End of days . +1 (Islam; is collapsing; ) Islam is collapsing Islam is Muslims , The heart of a Muslim is the house of the Real Islam , If it collapsed , Islam is collapsing and It 's the End of days . +1 (The heart of a Muslim; is; the house of the Real Islam) The heart of a Muslim is the house of the Real Islam Islam is Muslims , The heart of a Muslim is the house of the Real Islam , If it collapsed , Islam is collapsing and It 's the End of days . +1 (Islam; is; Muslims) Islam is Muslims Islam is Muslims , The heart of a Muslim is the house of the Real Islam , If it collapsed , Islam is collapsing and It 's the End of days . +0 (it; collapsed; ) it collapsed Islam is Muslims , The heart of a Muslim is the house of the Real Islam , If it collapsed , Islam is collapsing and It 's the End of days . +0 (a Muslim; is the house of; the Real Islam) a Muslim is the house of the Real Islam Islam is Muslims , The heart of a Muslim is the house of the Real Islam , If it collapsed , Islam is collapsing and It 's the End of days . +1 (Israel; is; the canary in the coal mine in a global war) Israel is the canary in the coal mine in a global war Israel is the canary in the coal mine in a global war being waged by Islam . +1 (a global war; being waged; by Islam) a global war being waged by Islam Israel is the canary in the coal mine in a global war being waged by Islam . +1 (Israel; is the canary in; the coal mine) Israel is the canary in the coal mine Israel is the canary in the coal mine in a global war being waged by Islam . +1 (Israel; resumed; fuel supplies) Israel resumed fuel supplies Israel resumed fuel supplies to the Gaza Strip after an international outcry . +1 (Israel; resumed fuel supplies; after an international outcry) Israel resumed fuel supplies after an international outcry Israel resumed fuel supplies to the Gaza Strip after an international outcry . +0 (It; turns out; after Pelosi became speaker her son) It turns out after Pelosi became speaker her son It turns out that after Pelosi became speaker her son , Paul Pelosi jr . +1 (Pelosi; became; speaker) Pelosi became speaker It turns out that after Pelosi became speaker her son , Paul Pelosi jr . +1 (The Bears; having go; to the Super bowl) The Bears having go to the Super bowl It was an exciting weekend in Illinois having The Bears go to the Super bowl for the first time since 1986 ; needless to say the streets were covered in blue and orange . +1 (The Bears; having go; for the first time since 1986) The Bears having go for the first time since 1986 It was an exciting weekend in Illinois having The Bears go to the Super bowl for the first time since 1986 ; needless to say the streets were covered in blue and orange . +0 (It; was an exciting weekend in; Illinois) It was an exciting weekend in Illinois It was an exciting weekend in Illinois having The Bears go to the Super bowl for the first time since 1986 ; needless to say the streets were covered in blue and orange . +0 (NET; to create; plugins) NET to create plugins Ive had success using .NET to create plugins . +0 (Ive; had; success) Ive had success Ive had success using .NET to create plugins . +0 (Ive; had success using; ) Ive had success using Ive had success using .NET to create plugins . +0 (Ive; had; the best times) Ive had the best times Ive had the best times and made some awesome friends . +0 (Ive; made; some awesome friends) Ive made some awesome friends Ive had the best times and made some awesome friends . +0 (Ive; read; the novel) Ive read the novel Ive read the novel and I find that its discussing a really important point , Homlessness . +0 (I; find; its discussing a really important point , Homlessness) I find its discussing a really important point , Homlessness Ive read the novel and I find that its discussing a really important point , Homlessness . +0 (its; discussing; a really important point) its discussing a really important point Ive read the novel and I find that its discussing a really important point , Homlessness . +0 (Ive; seen this effect; before) Ive seen this effect before Ive seen this effect before but cant remember the website . +0 (Ive; ca nt remember; the website) Ive ca nt remember the website Ive seen this effect before but cant remember the website . +1 (we; are; and grace to show us what we can become) we are and grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (we; grace; to show us what we can become) we grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (Jesus; spoke truth; to show us what we are and grace to show us what we can become) Jesus spoke truth to show us what we are and grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (Jesus; spoke to show what we are and grace to show us what we can become; ) Jesus spoke to show what we are and grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (Jesus; spoke truth; to show us what we are and grace) Jesus spoke truth to show us what we are and grace Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (Jesus; spoke to show us; we are and grace) Jesus spoke to show us we are and grace Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (we; are; to show us what we can become) we are to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (Jesus; spoke; truth) Jesus spoke truth Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (Jesus; spoke truth to show; us) Jesus spoke truth to show us Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (Jesus; spoke truth to show us; we are and grace) Jesus spoke truth to show us we are and grace Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (Jurors; deliberated; for about two hours in the case of 44-year-old Leroy Jaramillo) Jurors deliberated for about two hours in the case of 44-year-old Leroy Jaramillo Jurors deliberated for about two hours in the case of 44-year-old Leroy Jaramillo . +1 (Katrina; struck; Louisiana) Katrina struck Louisiana Katrina struck Louisiana on Monday with 140 mile per hour winds , while slamming into the coasts of neighboring Mississippi , Alabama and western Florida . +1 (Katrina; struck Louisiana; on Monday) Katrina struck Louisiana on Monday Katrina struck Louisiana on Monday with 140 mile per hour winds , while slamming into the coasts of neighboring Mississippi , Alabama and western Florida . +1 (Katrina; struck Louisiana; with 140 mile per hour winds) Katrina struck Louisiana with 140 mile per hour winds Katrina struck Louisiana on Monday with 140 mile per hour winds , while slamming into the coasts of neighboring Mississippi , Alabama and western Florida . +1 (Katrina; struck Louisiana; while slamming into the coasts of neighboring Mississippi , Alabama and western Florida) Katrina struck Louisiana while slamming into the coasts of neighboring Mississippi , Alabama and western Florida Katrina struck Louisiana on Monday with 140 mile per hour winds , while slamming into the coasts of neighboring Mississippi , Alabama and western Florida . +1 (Los Angeles; is; home to people from more than 140 countries zestra) Los Angeles is home to people from more than 140 countries zestra Los Angeles is home to people from more than 140 countries zestra at least 225 different languages . +1 (Lucy; is; in love) Lucy is in love Lucy is in love with Dr. Jekyll , but she is drawn to Mr. Hyde , in spite of her fear . +0 (she; is drawn; to Mr. Hyde) she is drawn to Mr. Hyde Lucy is in love with Dr. Jekyll , but she is drawn to Mr. Hyde , in spite of her fear . +1 (Melbourne; is; Australia 's second-largest city) Melbourne is Australia 's second-largest city Melbourne is Australia 's second-largest city , trailing only Sydney . +1 (Michigan; lost; to Ohio State) Michigan lost to Ohio State Michigan lost to Ohio State on the field . +1 (Michigan; lost; on the field) Michigan lost on the field Michigan lost to Ohio State on the field . +1 (Michigan; lost to Ohio State; on the field) Michigan lost to Ohio State on the field Michigan lost to Ohio State on the field . +0 (Microsoft; is doing differently; things) Microsoft is doing differently things Microsoft is doing things differently this time around and they have learned from their mistakes . +1 (Microsoft; is doing differently things; this time) Microsoft is doing differently things this time Microsoft is doing things differently this time around and they have learned from their mistakes . +1 (Microsoft; is doing differently things; around) Microsoft is doing differently things around Microsoft is doing things differently this time around and they have learned from their mistakes . +0 (they; have learned; from their mistakes) they have learned from their mistakes Microsoft is doing things differently this time around and they have learned from their mistakes . +1 (Miguel Tejada; had; three hits) Miguel Tejada had three hits Miguel Tejada had three hits and drove in a run for the Orioles . +1 (Miguel Tejada; drove; in a run for the Orioles) Miguel Tejada drove in a run for the Orioles Miguel Tejada had three hits and drove in a run for the Orioles . +1 (Most orders; are shipped via; UPS Ground and Fedex Ground) Most orders are shipped via UPS Ground and Fedex Ground Most orders are shipped via UPS Ground and Fedex Ground . +1 (Most orders; are shipped; ) Most orders are shipped Most orders are shipped via UPS Ground and Fedex Ground . +1 (Most orders; are shipped via; UPS Ground) Most orders are shipped via UPS Ground Most orders are shipped via UPS Ground and Fedex Ground . +1 (Nanjing; northwest is; the capital of Jiangsu Province , China) Nanjing northwest is the capital of Jiangsu Province , China Nanjing , some 260 km northwest of Shanghai , is the capital of Jiangsu Province , China , and has a population of around five million people . +1 (Nanjing; has; a population of around five million people) Nanjing has a population of around five million people Nanjing , some 260 km northwest of Shanghai , is the capital of Jiangsu Province , China , and has a population of around five million people . +0 (they; would go; up to the annual festival in Shiloh) they would go up to the annual festival in Shiloh Neverthless , Elkanah loved Hannah and when they would go up to the annual festival in Shiloh , he showed his favor by given Hannah a double portion . +0 (he; showed; his favor) he showed his favor Neverthless , Elkanah loved Hannah and when they would go up to the annual festival in Shiloh , he showed his favor by given Hannah a double portion . +0 (Neverthless; loved; Hannah) Neverthless loved Hannah Neverthless , Elkanah loved Hannah and when they would go up to the annual festival in Shiloh , he showed his favor by given Hannah a double portion . +1 (OJ Simpson; to face; charges of violating bail) OJ Simpson to face charges of violating bail OJ Simpson appears in court to face charges of violating bail , judge doubles bail to $ 250,000 for violating terms of his original bail by attempting to contact a co-defendant in his armed robbery case . +1 (judge; doubles; bail) judge doubles bail OJ Simpson appears in court to face charges of violating bail , judge doubles bail to $ 250,000 for violating terms of his original bail by attempting to contact a co-defendant in his armed robbery case . +1 (judge; doubles bail; to $ 250,000) judge doubles bail to $ 250,000 OJ Simpson appears in court to face charges of violating bail , judge doubles bail to $ 250,000 for violating terms of his original bail by attempting to contact a co-defendant in his armed robbery case . +1 (OJ Simpson; appears; in court) OJ Simpson appears in court OJ Simpson appears in court to face charges of violating bail , judge doubles bail to $ 250,000 for violating terms of his original bail by attempting to contact a co-defendant in his armed robbery case . +1 (OJ Simpson; appears; to face charges of violating bail) OJ Simpson appears to face charges of violating bail OJ Simpson appears in court to face charges of violating bail , judge doubles bail to $ 250,000 for violating terms of his original bail by attempting to contact a co-defendant in his armed robbery case . +1 (OREGON; does not have; a sales tax) OREGON does not have a sales tax OREGON does not have a sales tax so they get off scott free . +1 (OREGON; does not have a sales tax; so they get off scott free) OREGON does not have a sales tax so they get off scott free OREGON does not have a sales tax so they get off scott free . +0 (they; get off; scott free) they get off scott free OREGON does not have a sales tax so they get off scott free . +1 (OS X; is; build on UNIX its right) OS X is build on UNIX its right OS X is build on UNIX its right , but It is installed on an HFS+ partition , so it must be some fragmentation ! +0 (It; is installed; on an HFS+ partition) It is installed on an HFS+ partition OS X is build on UNIX its right , but It is installed on an HFS+ partition , so it must be some fragmentation ! +0 (It; is installed on an HFS+ partition; so it must be some fragmentation) It is installed on an HFS+ partition so it must be some fragmentation OS X is build on UNIX its right , but It is installed on an HFS+ partition , so it must be some fragmentation ! +0 (it; must be; some fragmentation) it must be some fragmentation OS X is build on UNIX its right , but It is installed on an HFS+ partition , so it must be some fragmentation ! +1 (Obama; is; a closet Muslim) Obama is a closet Muslim Obama was born a Muslim and is a closet Muslim . +1 (Paper; presented; at the annual meeting of the American Society for Information Science , San Francisco , CA) Paper presented at the annual meeting of the American Society for Information Science , San Francisco , CA Paper presented at the annual meeting of the American Society for Information Science , San Francisco , CA , 7 October 1976 . +1 (Pau Gasol; had; 24 points and 13 rebounds) Pau Gasol had 24 points and 13 rebounds Pau Gasol had 24 points and 13 rebounds . +1 (Paul; leaves; Athens) Paul leaves Athens Paul leaves Athens and goes to Corinth . +1 (Paul; goes; to Corinth) Paul goes to Corinth Paul leaves Athens and goes to Corinth . +1 (Phaedra; falls; in love with Hippolytus) Phaedra falls in love with Hippolytus Phaedra falls in love with Hippolytus , who does not reciprocate . +1 (Hippolytus; does not reciprocate; ) Hippolytus does not reciprocate Phaedra falls in love with Hippolytus , who does not reciprocate . +1 (Philip; goes; to Samaria) Philip goes to Samaria Philip goes to Samaria and preaches Christ . +1 (Philip; preaches; Christ) Philip preaches Christ Philip goes to Samaria and preaches Christ . +1 (Pluto; is; in Capricorn) Pluto is in Capricorn Pluto is in Capricorn and a good number of the people who read here have Pluto in Virgo which means that Saturn is transiting conjunct their Pluto which is another Pluto/Capricorn exchange . +0 (the people; read; here) the people read here Pluto is in Capricorn and a good number of the people who read here have Pluto in Virgo which means that Saturn is transiting conjunct their Pluto which is another Pluto/Capricorn exchange . +1 (Saturn; is transiting; their Pluto) Saturn is transiting their Pluto Pluto is in Capricorn and a good number of the people who read here have Pluto in Virgo which means that Saturn is transiting conjunct their Pluto which is another Pluto/Capricorn exchange . +1 (Portugal; was; the better team) Portugal was the better team Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +0 (i; said if Greece scores first Portugal is fucked; ) i said if Greece scores first Portugal is fucked Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +0 (i; said to myself; if Greece scores first Portugal is fucked) i said to myself if Greece scores first Portugal is fucked Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +0 (they; did; ) they did Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +0 (i; said; to myself) i said to myself Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +0 (if Greece scores; is fucked; first) if Greece scores is fucked first Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +1 (Pro Tools; is; the industry standard) Pro Tools is the industry standard Pro Tools is the industry standard , but the professional studios also have 200k worth of hardware to go with it . +1 (the professional studios; also have; 200k worth of hardware to go with it) the professional studios also have 200k worth of hardware to go with it Pro Tools is the industry standard , but the professional studios also have 200k worth of hardware to go with it . +1 (Rachel; was; in love with him) Rachel was in love with him Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +0 (I; do n't understand; why she was n't so keen on coming anyways) I do n't understand why she was n't so keen on coming anyways Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +0 (we; showed up; at Hogwarts) we showed up at Hogwarts Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +0 (she; was n't; so keen on coming anyways) she was n't so keen on coming anyways Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +0 (she; was n't on coming; anyways) she was n't on coming anyways Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +1 (Rahab; was; a gentile and a harlot and Ruth) Rahab was a gentile and a harlot and Ruth Rahab was a gentile and a harlot and Ruth was a Maobite . +1 (Ive; talked; to many people) Ive talked to many people Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +1 (Ive; talked; over the years) Ive talked over the years Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +1 (great quotes; helped; me formulate ideas about how I wanted to do this) great quotes helped me formulate ideas about how I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (me; formulate; ideas about how I wanted to do this) me formulate ideas about how I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; about how wanted; to do this) I about how wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; about how wanted to do; this) I about how wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (Ive; have gotten; great quotes that helped me formulate ideas about how I wanted to do this) Ive have gotten great quotes that helped me formulate ideas about how I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (Ive; talked to many people; over the years) Ive talked to many people over the years Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; wanted; to do this) I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; wanted to do; this) I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (Ive; talked; to many people; over the years) Ive talked to many people; over the years Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +1 (Ronald Reagan; was in office; when I turned 22 , yikes) Ronald Reagan was in office when I turned 22 , yikes Ronald Reagan was in office when I turned 22 , yikes . +1 (Ronald Reagan; was; in office) Ronald Reagan was in office Ronald Reagan was in office when I turned 22 , yikes . +0 (I; turned; 22) I turned 22 Ronald Reagan was in office when I turned 22 , yikes . +0 (I; turned 22; yikes) I turned 22 yikes Ronald Reagan was in office when I turned 22 , yikes . +1 (Services; will be held; Monday) Services will be held Monday Services will be held Monday at 2 pm in Johnson 's United Methodist Church , Johnsontown . +1 (Services; will be held; at 2 pm) Services will be held at 2 pm Services will be held Monday at 2 pm in Johnson 's United Methodist Church , Johnsontown . +1 (Services; will be held; in Johnson 's United Methodist Church) Services will be held in Johnson 's United Methodist Church Services will be held Monday at 2 pm in Johnson 's United Methodist Church , Johnsontown . +1 (Sharon; took a nipple down hard; in her mouth) Sharon took a nipple down hard in her mouth Sharon took a nipple in her mouth and bit down hard until her Amateur Very Young Family Incest were Black Family Incest grinding together . +1 (India , Pakistan , and Israel; have developed; nuclear weapons) India , Pakistan , and Israel have developed nuclear weapons Since that time , India , Pakistan , and Israel have developed nuclear weapons , but are not NPT member states . +1 (India , Pakistan , and Israel; are not; NPT member states) India , Pakistan , and Israel are not NPT member states Since that time , India , Pakistan , and Israel have developed nuclear weapons , but are not NPT member states . +1 (So many mind-bending things; happened; in those twelve months) So many mind-bending things happened in those twelve months So many mind-bending things happened in those twelve months that it must have seemed like the end of days at the time : Hitler becomes Fuhrer . +0 (mind; bending; things) mind bending things So many mind-bending things happened in those twelve months that it must have seemed like the end of days at the time : Hitler becomes Fuhrer . +1 (Hitler; becomes; Fuhrer) Hitler becomes Fuhrer So many mind-bending things happened in those twelve months that it must have seemed like the end of days at the time : Hitler becomes Fuhrer . +0 (the best; would go; with Mitsubishi) the best would go with Mitsubishi Sony is the best but i would go with Mitsubishi if thoose were your only 2 options . +0 (Sony; is; the best but i would go with Mitsubishi) Sony is the best but i would go with Mitsubishi Sony is the best but i would go with Mitsubishi if thoose were your only 2 options . +0 (thoose; were; your only 2 options) thoose were your only 2 options Sony is the best but i would go with Mitsubishi if thoose were your only 2 options . +1 (Spam , flooding , advertisem ents , chain letters , pyramid schemes , and solicitati ons; are also forbidden on; this forum) Spam , flooding , advertisem ents , chain letters , pyramid schemes , and solicitati ons are also forbidden on this forum Spam , flooding , advertisem ents , chain letters , pyramid schemes , and solicitati ons are also forbidden on this forum . +1 (Surviving; are; his wife , Alma Mariani Wood , three sons , a daughter and six grandchildren) Surviving are his wife , Alma Mariani Wood , three sons , a daughter and six grandchildren Surviving are his wife , Alma Mariani Wood , three sons , a daughter and six grandchildren . +1 (Chris Bosh; scored; 23 points) Chris Bosh scored 23 points TORONTO -- Chris Bosh scored 23 points and hauled down nine rebounds to lead the Toronto Raptors to an 86-83 NBA pre-season victory over Italian powerhouse Benetton Treviso on Wednesday . +1 (Chris Bosh; hauled; nine rebounds) Chris Bosh hauled nine rebounds TORONTO -- Chris Bosh scored 23 points and hauled down nine rebounds to lead the Toronto Raptors to an 86-83 NBA pre-season victory over Italian powerhouse Benetton Treviso on Wednesday . +0 (Chris Bosh; hauled nine rebounds; down) Chris Bosh hauled nine rebounds down TORONTO -- Chris Bosh scored 23 points and hauled down nine rebounds to lead the Toronto Raptors to an 86-83 NBA pre-season victory over Italian powerhouse Benetton Treviso on Wednesday . +1 (Chris Bosh; hauled nine rebounds; to lead the Toronto Raptors to an 86-83 NBA pre-season victory over Italian powerhouse Benetton Treviso on Wednesday) Chris Bosh hauled nine rebounds to lead the Toronto Raptors to an 86-83 NBA pre-season victory over Italian powerhouse Benetton Treviso on Wednesday TORONTO -- Chris Bosh scored 23 points and hauled down nine rebounds to lead the Toronto Raptors to an 86-83 NBA pre-season victory over Italian powerhouse Benetton Treviso on Wednesday . +1 (Taxis; wait; outside the terminal) Taxis wait outside the terminal Taxis wait outside the terminal , an average fare to Malaga costing in the region of 15 EUR. +1 (Taxis; cost; 20) Taxis cost 20 Taxis wait outside the terminals and typically cost 20 to the hotel . +1 (Taxis; wait; outside the terminals) Taxis wait outside the terminals Taxis wait outside the terminals and typically cost 20 to the hotel . +1 (That; 's; why Scotland voted for devolution) That 's why Scotland voted for devolution That 's why Scotland voted for devolution . +1 (Scotland; voted; for devolution) Scotland voted for devolution That 's why Scotland voted for devolution . +0 (That; is; why Hillary is the frontrunner) That is why Hillary is the frontrunner That is why Hillary is the frontrunner . +1 (Hillary; is; the frontrunner) Hillary is the frontrunner That is why Hillary is the frontrunner . +1 (The Angels; won; the World Series) The Angels won the World Series The Angels won the World Series in 2002 and are contending in the American League West . +1 (The Angels; won the World Series; in 2002) The Angels won the World Series in 2002 The Angels won the World Series in 2002 and are contending in the American League West . +1 (The Angels; are contending; in the American League West) The Angels are contending in the American League West The Angels won the World Series in 2002 and are contending in the American League West . +0 (I; era; Office of Strategic Services and small post-war intelligence organizations) I era Office of Strategic Services and small post-war intelligence organizations The CIA was established in 1947 through the National Security Act , as part of the wider informational system which grew out of World War I I era Office of Strategic Services and small post-war intelligence organizations . +1 (The CIA; was established; in 1947) The CIA was established in 1947 The CIA was established in 1947 through the National Security Act , as part of the wider informational system which grew out of World War I I era Office of Strategic Services and small post-war intelligence organizations . +1 (the wider informational system; grew; out of World War I) the wider informational system grew out of World War I The CIA was established in 1947 through the National Security Act , as part of the wider informational system which grew out of World War I I era Office of Strategic Services and small post-war intelligence organizations . +1 (The Company; has; offices in Jersey City , New York , Los Angeles , Chicago , Denver and Boston) The Company has offices in Jersey City , New York , Los Angeles , Chicago , Denver and Boston The Company has offices in Jersey City , New York , Los Angeles , Chicago , Denver and Boston . +1 (The Dow; fell 200 points; after earnings ratings slumped and concerns grew over the mortgage market) The Dow fell 200 points after earnings ratings slumped and concerns grew over the mortgage market The Dow fell 200 points after earnings ratings slumped and concerns grew over the mortgage market . +1 (The Dow; fell; 200 points) The Dow fell 200 points The Dow fell 200 points after earnings ratings slumped and concerns grew over the mortgage market . +1 (earnings ratings; slumped; ) earnings ratings slumped The Dow fell 200 points after earnings ratings slumped and concerns grew over the mortgage market . +1 (concerns; grew; over the mortgage market) concerns grew over the mortgage market The Dow fell 200 points after earnings ratings slumped and concerns grew over the mortgage market . +1 (The MDC OneCard and OneAccount; are brought to you; by a team) The MDC OneCard and OneAccount are brought to you by a team The MDC OneCard and OneAccount are brought to you by a team that includes Miami Dade College and Higher One . +1 (a team; includes; Miami Dade College and Higher One) a team includes Miami Dade College and Higher One The MDC OneCard and OneAccount are brought to you by a team that includes Miami Dade College and Higher One . +1 (The MDC OneCard and OneAccount; are brought; to you) The MDC OneCard and OneAccount are brought to you The MDC OneCard and OneAccount are brought to you by a team that includes Miami Dade College and Higher One . +1 (The President-Elect; shall perform the duties of the President; in the absence of the President and such other duties) The President-Elect shall perform the duties of the President in the absence of the President and such other duties The President-Elect shall perform the duties of the President in the absence of the President and such other duties as disclosed herein or assigned by the President or the Board of Directors . +1 (The President-Elect; shall perform; the duties of the President) The President-Elect shall perform the duties of the President The President-Elect shall perform the duties of the President in the absence of the President and such other duties as disclosed herein or assigned by the President or the Board of Directors . +1 (The President-Elect; shall perform the duties of the President; as disclosed herein or assigned by the President or the Board of Directors) The President-Elect shall perform the duties of the President as disclosed herein or assigned by the President or the Board of Directors The President-Elect shall perform the duties of the President in the absence of the President and such other duties as disclosed herein or assigned by the President or the Board of Directors . +1 (The Rainforest Site; will preserve; 2290.0 sq) The Rainforest Site will preserve 2290.0 sq The Rainforest Site will preserve 2290.0 sq . +1 (The South Island; is; the largest land mass) The South Island is the largest land mass The South Island is the largest land mass , and is divided along its length by the Southern Alps , the highest peak of which is Aoraki/Mount Cook , at 3,754 metres . +1 (The South Island; is divided; along its length by the Southern Alps) The South Island is divided along its length by the Southern Alps The South Island is the largest land mass , and is divided along its length by the Southern Alps , the highest peak of which is Aoraki/Mount Cook , at 3,754 metres . +1 (The album; was; a hit in Europe and Asia) The album was a hit in Europe and Asia The album was a hit in Europe and Asia , and was released in the United States in 1987 . +1 (The album; was released; in the United States) The album was released in the United States The album was a hit in Europe and Asia , and was released in the United States in 1987 . +1 (The album; was released; in 1987) The album was released in 1987 The album was a hit in Europe and Asia , and was released in the United States in 1987 . +1 (The album; was a hit in; Europe and Asia) The album was a hit in Europe and Asia The album was a hit in Europe and Asia , and was released in the United States in 1987 . +1 (The company; employs; over 350 people) The company employs over 350 people The company employs over 350 people and has offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates . +1 (The company; has; offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates) The company has offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates The company employs over 350 people and has offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates . +1 (The company; is headquartered; with major R&:D and manufacturing facilities; in Belgium) The company is headquartered with major R&:D and manufacturing facilities; in Belgium The company is headquartered in Belgium , with major R&D and manufacturing facilities located across Europe , the USA and Asia . +1 (major R&:D and manufacturing facilities; located; across Europe) major R&:D and manufacturing facilities located across Europe The company is headquartered in Belgium , with major R&D and manufacturing facilities located across Europe , the USA and Asia . +1 (The company; is headquartered; in San Antonio) The company is headquartered in San Antonio The company is headquartered in San Antonio , Tex . +1 (The couple; moved; to Colorado) The couple moved to Colorado The couple moved to Colorado the same year they wed . +1 (The couple; moved to Colorado; the same year they wed) The couple moved to Colorado the same year they wed The couple moved to Colorado the same year they wed . +1 (they; wed; the same year) they wed the same year The couple moved to Colorado the same year they wed . +1 (The date; was; Septe mber 27) The date was Septe mber 27 The date was Septe mber 27 , 1853 In h is deposition to the magistrate Robert Howe described how he came to be wounded . +0 (In h; is; deposition to the magistrate) In h is deposition to the magistrate The date was Septe mber 27 , 1853 In h is deposition to the magistrate Robert Howe described how he came to be wounded . +1 (The event; is; open to all) The event is open to all The event is open to all , though the conference language is English . +1 (the conference language; is; English) the conference language is English The event is open to all , though the conference language is English . +0 (The film; stars; ) The film stars The film , winner of the Grand Prix at the recent Cannes Film Festival , stars Bill Murray , Jeffrey Wright , Jessica Lange , Sharon Stone , Francis Conroy , Tilda Swinton and Chloe Sevigny . +1 (The film; stars Christina Ricci; in the title role) The film stars Christina Ricci in the title role The film stars Christina Ricci in the title role . +1 (The film; stars; Will Ferrell , Eva Mendes , Owen Wilson and Luke Wilson) The film stars Will Ferrell , Eva Mendes , Owen Wilson and Luke Wilson The film stars Will Ferrell , Eva Mendes , Owen Wilson and Luke Wilson . +1 (The film; was produced; by Albert R. Broccoli and Harry Saltzman) The film was produced by Albert R. Broccoli and Harry Saltzman The film was produced by Albert R. Broccoli and Harry Saltzman and was made by EON Productions . +1 (The film; was made; by EON Productions) The film was made by EON Productions The film was produced by Albert R. Broccoli and Harry Saltzman and was made by EON Productions . +1 (The films; was shot; in LA and New York) The films was shot in LA and New York The films was shot in LA and New York and premiered at the prestigious Sundance Film Festival . +1 (The films; premiered; at the prestigious Sundance Film Festival) The films premiered at the prestigious Sundance Film Festival The films was shot in LA and New York and premiered at the prestigious Sundance Film Festival . +1 (The main London to Newcastle train operator; is; GNER) The main London to Newcastle train operator is GNER The main London to Newcastle train operator is GNER and has a minimum journey see all whispers on pogo between Newcastle and London of Careless whispers wham hours and Whisper live evanescence minutes . +1 (The main London to Newcastle train operator; has; a minimum journey) The main London to Newcastle train operator has a minimum journey The main London to Newcastle train operator is GNER and has a minimum journey see all whispers on pogo between Newcastle and London of Careless whispers wham hours and Whisper live evanescence minutes . +1 (The others; are; Ohio , Pennsylvania , Minnesota and New Mexico) The others are Ohio , Pennsylvania , Minnesota and New Mexico The others are Ohio , Pennsylvania , Minnesota and New Mexico . +1 (The program; starts; in September) The program starts in September The program starts in September and the first block of sessions in the US is already booked . +1 (The states; included; Connecticut , Missouri , New Mexico and Oregon) The states included Connecticut , Missouri , New Mexico and Oregon The states included Connecticut , Missouri , New Mexico and Oregon . +1 (The study; was conducted; in South Africa , India and the United States) The study was conducted in South Africa , India and the United States The study was conducted in South Africa , India and the United States . +1 (The tour; kicks off; in San Francisco) The tour kicks off in San Francisco The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; kicks off; on April 12) The tour kicks off on April 12 The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; wraps up at the Honda Center in Anaheim; ) The tour wraps up at the Honda Center in Anaheim The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; wraps up; June 14) The tour wraps up June 14 The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; wraps up; at the Honda Center in Anaheim) The tour wraps up at the Honda Center in Anaheim The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; wraps up at the Honda Center in Anaheim; June 14) The tour wraps up at the Honda Center in Anaheim June 14 The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The unit; deployed; to Iraq) The unit deployed to Iraq The unit deployed to Iraq in January to assist with stability and security operations there . +1 (The unit; deployed; in January) The unit deployed in January The unit deployed to Iraq in January to assist with stability and security operations there . +1 (The unit; deployed; to assist with stability and security operations there) The unit deployed to assist with stability and security operations there The unit deployed to Iraq in January to assist with stability and security operations there . +1 (The unit; deployed to assist; with stability and security operations) The unit deployed to assist with stability and security operations The unit deployed to Iraq in January to assist with stability and security operations there . +1 (The unit; deployed to assist with stability and security operations; there) The unit deployed to assist with stability and security operations there The unit deployed to Iraq in January to assist with stability and security operations there . +1 (These Terms and Conditions; shall be governed; by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts) These Terms and Conditions shall be governed by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts These Terms and Conditions shall be governed by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts . +1 (the parties here by; submit; to the non-exclusive jurisdiction of the English Courts) the parties here by submit to the non-exclusive jurisdiction of the English Courts These Terms and Conditions shall be governed by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts . +1 (These states; are; Massachusetts , Virginia , North Carolina , Georgia , Arizona , Nevada , Oregon and Washington) These states are Massachusetts , Virginia , North Carolina , Georgia , Arizona , Nevada , Oregon and Washington These states are Massachusetts , Virginia , North Carolina , Georgia , Arizona , Nevada , Oregon and Washington . +1 (They; do not want; Earthlings to know that life exists on Mars) They do not want Earthlings to know that life exists on Mars They do not want Earthlings to know that life exists on Mars . +0 (Earthlings; to know; that life exists on Mars) Earthlings to know that life exists on Mars They do not want Earthlings to know that life exists on Mars . +1 (life; exists; on Mars) life exists on Mars They do not want Earthlings to know that life exists on Mars . +1 (Things; go; up and down) Things go up and down Things go up and down , but fundamentally the Republicans have the majority . +1 (fundamentally the Republicans; have; the majority) fundamentally the Republicans have the majority Things go up and down , but fundamentally the Republicans have the majority . +1 (This entry; was posted; on December 19) This entry was posted on December 19 This entry was posted on December 19 , 2006 at 7:05 pm and is filed under Life , Lists , Luck and Religion . +1 (This entry; is filed; under Life , Lists , Luck and Religion) This entry is filed under Life , Lists , Luck and Religion This entry was posted on December 19 , 2006 at 7:05 pm and is filed under Life , Lists , Luck and Religion . +1 (This entry; was posted; on February 22) This entry was posted on February 22 This entry was posted on February 22 , 2006 at 4:15 pm and is filed under Uncategorized . +1 (This entry; is filed; under Uncategorized) This entry is filed under Uncategorized This entry was posted on February 22 , 2006 at 4:15 pm and is filed under Uncategorized . +1 (This entry; was posted; on January 25) This entry was posted on January 25 This entry was posted on January 25 , 2006 at 12:19 am and is filed under . +1 (Those states; are; Alabama , California , Connecticut , Delaware , Georgia , Illinois , Louisiana , New York , Oklahoma , Pennsylvania , Tennessee , and Utah) Those states are Alabama , California , Connecticut , Delaware , Georgia , Illinois , Louisiana , New York , Oklahoma , Pennsylvania , Tennessee , and Utah Those states are Alabama , California , Connecticut , Delaware , Georgia , Illinois , Louisiana , New York , Oklahoma , Pennsylvania , Tennessee , and Utah . +1 (Tickets; are; $ 10 for children) Tickets are $ 10 for children Tickets are $ 10 for children and under 12 and $ 24 to $ 36 and are available from the Center for the Arts Box Office located at the corner of Osler and Cross Campus drives . +1 (Tickets; are; available from the Center for the Arts Box Office) Tickets are available from the Center for the Arts Box Office Tickets are $ 10 for children and under 12 and $ 24 to $ 36 and are available from the Center for the Arts Box Office located at the corner of Osler and Cross Campus drives . +1 (the Arts Box Office; located; at the corner of Osler and Cross Campus) the Arts Box Office located at the corner of Osler and Cross Campus Tickets are $ 10 for children and under 12 and $ 24 to $ 36 and are available from the Center for the Arts Box Office located at the corner of Osler and Cross Campus drives . +1 (Tickets; are $ 10 for; children) Tickets are $ 10 for children Tickets are $ 10 for children and under 12 and $ 24 to $ 36 and are available from the Center for the Arts Box Office located at the corner of Osler and Cross Campus drives . +1 (Topics; include; banking , interest application , budgeting , taxes , statistics , discounts and commissions , comparison shopping , percent , insurance , annuities , and stocks and bonds) Topics include banking , interest application , budgeting , taxes , statistics , discounts and commissions , comparison shopping , percent , insurance , annuities , and stocks and bonds Topics include banking , interest application , budgeting , taxes , statistics , discounts and commissions , comparison shopping , percent , insurance , annuities , and stocks and bonds . +1 (Topics; include; financial management , personal development , parenting , relationships , career development , and wellness and nutrition) Topics include financial management , personal development , parenting , relationships , career development , and wellness and nutrition Topics include financial management , personal development , parenting , relationships , career development , and wellness and nutrition . +1 (Tours; are offered; on the hour) Tours are offered on the hour Tours are offered on the hour at 10 and 11 am 1 , 2 , 3 and 4 pm F ri .-Sun . +1 (Tours; are offered; at 10 and 11) Tours are offered at 10 and 11 Tours are offered on the hour at 10 and 11 am 1 , 2 , 3 and 4 pm F ri .-Sun . +1 (Turkey; is; a NATO ally) Turkey is a NATO ally Turkey is a NATO ally , while Iran is an undeclared enemy . +1 (Iran; is; an undeclared enemy) Iran is an undeclared enemy Turkey is a NATO ally , while Iran is an undeclared enemy . +1 (Users; can submit online; links) Users can submit online links Users can submit links online , where they can be quickly reviewed by the site administrator and published . +1 (Users; can submit online links; where they can be quickly reviewed by the site administrator and published) Users can submit online links where they can be quickly reviewed by the site administrator and published Users can submit links online , where they can be quickly reviewed by the site administrator and published . +0 (they; can be quickly reviewed; by the site administrator) they can be quickly reviewed by the site administrator Users can submit links online , where they can be quickly reviewed by the site administrator and published . +0 (they; published; ) they published Users can submit links online , where they can be quickly reviewed by the site administrator and published . +1 (Vehicle; located; in Orange City) Vehicle located in Orange City Vehicle located in Orange City , FL . +0 (Venus; is the hottest planet because; it) Venus is the hottest planet because it Venus is the hottest planet because it 's atmosphere is in a runaway greenhouse state . +1 (Verizon; offers; DSL service) Verizon offers DSL service Verizon offers DSL service at two tiers of connection speeds , as does AT&T . +1 (Verizon; offers DSL service; at two tiers of connection speeds) Verizon offers DSL service at two tiers of connection speeds Verizon offers DSL service at two tiers of connection speeds , as does AT&T . +1 (the interface; even was at; every page change) the interface even was at every page change We had to consistently decline , even though the interface was in English at every page change . +1 (the interface; even was in; English) the interface even was in English We had to consistently decline , even though the interface was in English at every page change . +0 (We; had; ) We had We had to consistently decline , even though the interface was in English at every page change . +0 (We; to consistently decline; ) We to consistently decline We had to consistently decline , even though the interface was in English at every page change . +0 (the interface; even was; in English) the interface even was in English We had to consistently decline , even though the interface was in English at every page change . +0 (the interface; even was in English; at every page change) the interface even was in English at every page change We had to consistently decline , even though the interface was in English at every page change . +0 (Dave; When got; home from work) Dave When got home from work When Dave got home from work we started it . +0 (we; started; it) we started it When Dave got home from work we started it . +1 (Dave; got; home from work) Dave got home from work When Dave got home from work we started it . +0 (we; started it; When Dave got home from work) we started it When Dave got home from work When Dave got home from work we started it . +1 (the Japanese; to take military control of French colonies; in Indochina) the Japanese to take military control of French colonies in Indochina When France fell to Germany , the Japanese moved quickly to take military control of French colonies in Indochina . +1 (the Japanese; moved quickly; to take military control of French colonies in Indochina) the Japanese moved quickly to take military control of French colonies in Indochina When France fell to Germany , the Japanese moved quickly to take military control of French colonies in Indochina . +1 (the Japanese; to take; military control of French colonies) the Japanese to take military control of French colonies When France fell to Germany , the Japanese moved quickly to take military control of French colonies in Indochina . +1 (the Japanese; moved quickly; When France fell to Germany) the Japanese moved quickly When France fell to Germany When France fell to Germany , the Japanese moved quickly to take military control of French colonies in Indochina . +1 (France; fell; to Germany) France fell to Germany When France fell to Germany , the Japanese moved quickly to take military control of French colonies in Indochina . +1 (Google; acquired; Urchin) Google acquired Urchin When Google acquired Urchin earlier this year , they were charging $ 495 for those who wanted to use the service . +1 (Google; acquired Urchin; earlier this year) Google acquired Urchin earlier this year When Google acquired Urchin earlier this year , they were charging $ 495 for those who wanted to use the service . +0 (they; were charging; $ 495) they were charging $ 495 When Google acquired Urchin earlier this year , they were charging $ 495 for those who wanted to use the service . +0 (they; were charging $ 495; for those) they were charging $ 495 for those When Google acquired Urchin earlier this year , they were charging $ 495 for those who wanted to use the service . +0 (they; were charging $ 495; When Google acquired Urchin earlier this year) they were charging $ 495 When Google acquired Urchin earlier this year When Google acquired Urchin earlier this year , they were charging $ 495 for those who wanted to use the service . +0 (those; wanted; to use the service) those wanted to use the service When Google acquired Urchin earlier this year , they were charging $ 495 for those who wanted to use the service . +0 (those; wanted to use; the service) those wanted to use the service When Google acquired Urchin earlier this year , they were charging $ 495 for those who wanted to use the service . +1 (Nintendo; When was; king) Nintendo When was king When Nintendo was king you got rad prizes . +0 (you; got; rad prizes) you got rad prizes When Nintendo was king you got rad prizes . +1 (Nintendo; was; king) Nintendo was king When Nintendo was king you got rad prizes . +0 (you; got rad prizes; When Nintendo was king) you got rad prizes When Nintendo was king When Nintendo was king you got rad prizes . +0 (it; was composed; of developing countries) it was composed of developing countries When OPEC was formed in 1960 it was composed of developing countries that were heavily reliant on oil revenues as their main source of income . +0 (it; was composed of developing countries; When OPEC was formed in 1960) it was composed of developing countries When OPEC was formed in 1960 When OPEC was formed in 1960 it was composed of developing countries that were heavily reliant on oil revenues as their main source of income . +1 (OPEC; was formed; in 1960) OPEC was formed in 1960 When OPEC was formed in 1960 it was composed of developing countries that were heavily reliant on oil revenues as their main source of income . +1 (Paul; wrote; the book of Romans) Paul wrote the book of Romans When Paul wrote the book of Romans , many Jews felt they could be righteous by keeping the Law of Moses . +1 (many Jews; felt; they could be righteous by keeping the Law of Moses; When Paul wrote the book of Romans) many Jews felt they could be righteous by keeping the Law of Moses; When Paul wrote the book of Romans When Paul wrote the book of Romans , many Jews felt they could be righteous by keeping the Law of Moses . +0 (they; could be; righteous) they could be righteous When Paul wrote the book of Romans , many Jews felt they could be righteous by keeping the Law of Moses . +1 (Rahab; hid; the spies) Rahab hid the spies When Rahab hid the spies , she sided with Israel against her own people , which was an act of treason ! +0 (she; sided; with Israel) she sided with Israel When Rahab hid the spies , she sided with Israel against her own people , which was an act of treason ! +0 (she; sided with Israel; against her own people) she sided with Israel against her own people When Rahab hid the spies , she sided with Israel against her own people , which was an act of treason ! +0 (she; sided with Israel; When Rahab hid the spies) she sided with Israel When Rahab hid the spies When Rahab hid the spies , she sided with Israel against her own people , which was an act of treason ! +0 (her own people; was; an act of treason) her own people was an act of treason When Rahab hid the spies , she sided with Israel against her own people , which was an act of treason ! +0 (which; was an act of; treason) which was an act of treason When Rahab hid the spies , she sided with Israel against her own people , which was an act of treason ! +1 (Scripture; lists; two names for the baby) Scripture lists two names for the baby When the angel appeared to Joseph in order to reassure him about taking Mary as his wife , Scripture lists two names for the baby that would be born : Jesus and Immanuel . +1 (the baby; would be born; ) the baby would be born When the angel appeared to Joseph in order to reassure him about taking Mary as his wife , Scripture lists two names for the baby that would be born : Jesus and Immanuel . +1 (the angel; appeared; to Joseph) the angel appeared to Joseph When the angel appeared to Joseph in order to reassure him about taking Mary as his wife , Scripture lists two names for the baby that would be born : Jesus and Immanuel . +0 (the angel; appeared; in order) the angel appeared in order When the angel appeared to Joseph in order to reassure him about taking Mary as his wife , Scripture lists two names for the baby that would be born : Jesus and Immanuel . +0 (it; Why failed; to ratify the Kyoto Accord and Americans) it Why failed to ratify the Kyoto Accord and Americans Why because it failed to ratify the Kyoto Accord and Americans support Israel blindly , among other infractions . +0 (it; to ratify; the Kyoto Accord and Americans) it to ratify the Kyoto Accord and Americans Why because it failed to ratify the Kyoto Accord and Americans support Israel blindly , among other infractions . +1 (the Kyoto Accord and Americans; support blindly; Israel) the Kyoto Accord and Americans support blindly Israel Why because it failed to ratify the Kyoto Accord and Americans support Israel blindly , among other infractions . +1 (the Kyoto Accord and Americans; support blindly Israel; among other infractions) the Kyoto Accord and Americans support blindly Israel among other infractions Why because it failed to ratify the Kyoto Accord and Americans support Israel blindly , among other infractions . +1 (Windows Media and Windows Logo; are; trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries) Windows Media and Windows Logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries Windows Media and Windows Logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries . +1 (Zimbabwe; became; independent) Zimbabwe became independent Zimbabwe became independent in 1980 . +1 (Zimbabwe; became independent; in 1980) Zimbabwe became independent in 1980 Zimbabwe became independent in 1980 . +0 (8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company; announced; today) 8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today 8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today that the US 1/8 /08 - Millipore and Gen-Probe Launch First Real-Time Test for Detecting Microbial Contamination in Biopharmaceutical Applications Pharmaceutical Writers/Business Editors BILLERICA , Mass . +1 (8< :/D> : /PRNewswire-FirstCall/ -- Eli Lilly and Company; announced; today) 8< :/D> : /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today 8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today that the US 1/8 /08 - Millipore and Gen-Probe Launch First Real-Time Test for Detecting Microbial Contamination in Biopharmaceutical Applications Pharmaceutical Writers/Business Editors BILLERICA , Mass . +1 (A multi-layered glam-rock epic; tracing; the rise and fall of a mythical rock star) A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star , the film starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard . +1 (A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star; starred; Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard) A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star , the film starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard . +1 (Elvis Presley; died; in 1977) Elvis Presley died in 1977 According to the San Francisco Chronicle When Elvis Presley died in 1977 , there were an estimated 37 Elvis impersonators in the world . +0 (there; were an estimated 37 Elvis impersonators in; the world) there were an estimated 37 Elvis impersonators in the world According to the San Francisco Chronicle When Elvis Presley died in 1977 , there were an estimated 37 Elvis impersonators in the world . +0 (he; named; after himself) he named after himself After Constantine came to power in the fourth century , there was not only the dramatic change of the Empire becoming Christian , but he founded a City he named after himself , Constantinople . +0 (he; founded; a City) he founded a City After Constantine came to power in the fourth century , there was not only the dramatic change of the Empire becoming Christian , but he founded a City he named after himself , Constantinople . +1 (Taylor; died; in office) Taylor died in office After a life of rigorous service , Taylor died in office in 1850 . +1 (Taylor; died; in 1850) Taylor died in 1850 After a life of rigorous service , Taylor died in office in 1850 . +1 (Taylor; died; After a life of rigorous service) Taylor died After a life of rigorous service After a life of rigorous service , Taylor died in office in 1850 . +0 (I; to take a taxi; to get my car) I to take a taxi to get my car Alex was at work so I had to take a taxi to get my car . +0 (I; to take to get; my car) I to take to get my car Alex was at work so I had to take a taxi to get my car . +1 (Alex; was; at work) Alex was at work Alex was at work so I had to take a taxi to get my car . +0 (I; to take; a taxi) I to take a taxi Alex was at work so I had to take a taxi to get my car . +0 (I; to take a taxi to get; my car) I to take a taxi to get my car Alex was at work so I had to take a taxi to get my car . +1 (they; can help you; with any travel related assistance) they can help you with any travel related assistance All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +1 (All staff; speaks; English) All staff speaks English All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (they; can help; you; with any travel related assistance; usually) they can help you; with any travel related assistance; usually All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (any travel; related; ) any travel related All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (any travel related assistance; need; ) any travel related assistance need All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (they; can help; you) they can help you All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (they; can help you; usually) they can help you usually All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (any travel; related; ) any travel related All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (any travel related assistance; need; ) any travel related assistance need All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +1 (the site; is in; Portuguese) the site is in Portuguese Although the site is in Portuguese , do n't be thrown off . +0 ('s disease; is the leading cause of; dementia) 's disease is the leading cause of dementia Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +0 (we; find to prevent; it) we find to prevent it Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +0 (we; find; ways to prevent it) we find ways to prevent it Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (the number of Americans with Alzheimer 's; could quadruple; within 50 years) the number of Americans with Alzheimer 's could quadruple within 50 years Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (Alzheimer 's disease; is; the leading cause of dementia in the United States) Alzheimer 's disease is the leading cause of dementia in the United States Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (Amenities; include; two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities) Amenities include two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities Amenities include two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities . +0 (I; do n't think; he would run as one if he was alive today) I do n't think he would run as one if he was alive today And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (he; would run; as one) he would run as one And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (he; was alive; today) he was alive today And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +1 (Abraham Lincoln; was; a Republican) Abraham Lincoln was a Republican And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (he; was; alive) he was alive And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +1 (Sarah; saw; the son of Hagar) Sarah saw the son of Hagar And Sarah saw the son of Hagar . +1 (Voldemort; killed; Harry 's parents) Voldemort killed Harry 's parents And Voldemort killed Harry 's parents with Avada Kedavra , the only known survivor ever of which is Harry himself . +1 (Avada Kedavra; is; Harry) Avada Kedavra is Harry And Voldemort killed Harry 's parents with Avada Kedavra , the only known survivor ever of which is Harry himself . +1 (Yahoo; even bought; Flickr) Yahoo even bought Flickr And even after Yahoo bought Flickr , no one is really hyped about it . +0 (he; 'd be; here) he 'd be here And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (airplanes; taught to fear; ) airplanes taught to fear And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (airplanes; hit; the towers) airplanes hit the towers And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (heaven; 's just; too far) heaven 's just too far And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (he; was; a firefighter) he was a firefighter And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (he; died; just this past year) he died just this past year And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (he; died; When airplanes hit the towers and taught Americans to fear) he died When airplanes hit the towers and taught Americans to fear And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (airplanes; taught Americans; to fear) airplanes taught Americans to fear And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (airplanes; taught; Americans) airplanes taught Americans And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (You; see; ) You see And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (Americans; to fear; ) Americans to fear And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (20 rebounds; to lead; Washington 's 108-104 overtime win against Toronto) 20 rebounds to lead Washington 's 108-104 overtime win against Toronto Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Antawn Jamison; scored; 24 points) Antawn Jamison scored 24 points Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Antawn Jamison; grabbed 20 rebounds; to lead Washington 's 108-104 overtime win against Toronto) Antawn Jamison grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Antawn Jamison; grabbed; 20 rebounds) Antawn Jamison grabbed 20 rebounds Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (the Solomon Amendment; regulates; conduct) the Solomon Amendment regulates conduct As a general matter , the Solomon Amendment regulates conduct , not speech . +1 (China; ceded Taiwan; in 1895) China ceded Taiwan in 1895 As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (China; ceded Taiwan; to Japan) China ceded Taiwan to Japan As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (China; ceded; Taiwan) China ceded Taiwan As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (Cyprus; adopted; the Euro) Cyprus adopted the Euro As you may know , Cyprus adopted the Euro as of Jan . +0 (you; may know; ) you may know As you may know , Cyprus adopted the Euro as of Jan . +1 (the firm; has; offices in California , New York , London , and Brussels) the firm has offices in California , New York , London , and Brussels Based in Washington , DC , the firm also has offices in California , New York , London , and Brussels . +1 (people; should not eat; Peter Pan) people should not eat Peter Pan Because of a possible association with Salmonella , the FDA has issued a warning that people should not eat Peter Pan . +1 (the FDA; has issued; a warning that people should not eat Peter Pan) the FDA has issued a warning that people should not eat Peter Pan Because of a possible association with Salmonella , the FDA has issued a warning that people should not eat Peter Pan . +1 (he; was fighting; at the Battle of Milvian Bridge) he was fighting at the Battle of Milvian Bridge Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (Constantine; became; Emperor) Constantine became Emperor Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +0 (he; was fighting; for the throne) he was fighting for the throne Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +0 (he; was fighting for the throne; at the Battle of Milvian Bridge) he was fighting for the throne at the Battle of Milvian Bridge Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +0 (he; was fighting for the throne; Before Constantine became Emperor) he was fighting for the throne Before Constantine became Emperor Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (Benazir Bhutto; was prime minister of; Pakistan) Benazir Bhutto was prime minister of Pakistan Benazir Bhutto was prime minister of Pakistan in the 1990s . +1 (Benazir Bhutto; was; prime minister of Pakistan) Benazir Bhutto was prime minister of Pakistan Benazir Bhutto was prime minister of Pakistan in the 1990s . +0 (it; would n't let; me) it would n't let me Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; noticed; everyones pictures were missing) I noticed everyones pictures were missing Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; did my blog; hopping) I did my blog hopping Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; held off uploading; in case) I held off uploading in case Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (Blogger; had problems; last night &) Blogger had problems last night & Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; held off; ) I held off Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; did; my blog) I did my blog Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; did my blog hopping; ) I did my blog hopping Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; noticed everyones pictures were missing; as I did my blog hopping) I noticed everyones pictures were missing as I did my blog hopping Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (Blogger; had; problems) Blogger had problems Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (everyones pictures; were missing; ) everyones pictures were missing Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (Brands; include; Hugo Boss , Gucci , Dolce &) Brands include Hugo Boss , Gucci , Dolce & Brands include Hugo Boss , Gucci , Dolce & Gabbana , Chanel , Calvin Klein , Jean Paul Gaultier and many more . +1 (Britain; had lost; an empire) Britain had lost an empire Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +1 (Britain; gained; a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital) Britain gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +1 (Burial; will be; in Bethel Cemetery) Burial will be in Bethel Cemetery Burial will be in Bethel Cemetery near here . +1 (Burial; will be in Bethel Cemetery; near here) Burial will be in Bethel Cemetery near here Burial will be in Bethel Cemetery near here . +1 (Bush; claimed; Iraq had weapons of mass destruction) Bush claimed Iraq had weapons of mass destruction Bush claimed Iraq had weapons of mass destruction . +1 (Iraq; had; weapons of mass destruction) Iraq had weapons of mass destruction Bush claimed Iraq had weapons of mass destruction . +0 (he; lost; it) he lost it Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +1 (Bush; won New Mexico; in 2004) Bush won New Mexico in 2004 Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +1 (Bush; won; New Mexico) Bush won New Mexico Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +1 (a priest; has sexually abused; a minor) a priest has sexually abused a minor But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +0 (USA TODAY; reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked; ) USA TODAY reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (a priest who has sexually abused a minor; should be removed; from the priesthood) a priest who has sexually abused a minor should be removed from the priesthood But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +0 (Catholics; surveyed; last week) Catholics surveyed last week But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (89 % of Catholics; said; a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked) 89 % of Catholics said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (USA TODAY; reported; that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked) USA TODAY reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +0 (USA TODAY; reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked; this week) USA TODAY reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked this week But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (Rome; adopted; Christianity) Rome adopted Christianity But after Rome adopted Christianity , the organ died out . +1 (the organ; died out; after Rome adopted Christianity) the organ died out after Rome adopted Christianity But after Rome adopted Christianity , the organ died out . +1 (Charlie; does; something completely different) Charlie does something completely different But then Charlie does something completely different . +0 (Charlie; does something completely different; then) Charlie does something completely different then But then Charlie does something completely different . +1 (Hurricane Katrina; struck the Gulf Coast; in 2005) Hurricane Katrina struck the Gulf Coast in 2005 But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +1 (But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed; leading; to a reorganization) But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed leading to a reorganization But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +1 (Hurricane Katrina; struck; the Gulf Coast) Hurricane Katrina struck the Gulf Coast But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +0 (shortcomings; were revealed; ) shortcomings were revealed But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +0 (he; to dispense; with opinion) he to dispense with opinion By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (he; thought entirely; By the time) he thought entirely By the time By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (he; appeared; ready to dispense with opinion) he appeared ready to dispense with opinion By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (he; appeared; By the time) he appeared By the time By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +1 (Clinton; had been; in office) Clinton had been in office By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +1 (Clinton; had been in office; for eight months) Clinton had been in office for eight months By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (Clinton; had been in office; the time) Clinton had been in office the time By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (she; ca n't compete; with her) she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +0 (Callie; tells she ca n't compete with her; ) Callie tells she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +0 (George; gets; her) George gets her Callie tells Izzie she ca n't compete with her : George gets her . +0 (Callie; tells; Izzie) Callie tells Izzie Callie tells Izzie she ca n't compete with her : George gets her . +0 (Callie; tells Izzie; she ca n't compete with her) Callie tells Izzie she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +1 (Canadians; speak; English) Canadians speak English Canadians speak English ; Americans do too . +0 (Americans; do too; ) Americans do too Canadians speak English ; Americans do too . +1 (China; annexed Tibet; in 1950) China annexed Tibet in 1950 China annexed Tibet by force in 1950 . +1 (China; annexed; Tibet) China annexed Tibet China annexed Tibet by force in 1950 . +1 (Cardinal Joseph Ratzinger; is elected; pope) Cardinal Joseph Ratzinger is elected pope Choosing the name Benedict XVI , Cardinal Joseph Ratzinger is elected pope . +1 (Chris and his wife; have; a son) Chris and his wife have a son Chris and his wife Kasey have a son , Christian . +1 (Christmas; was; a blur there) Christmas was a blur there Christmas was a blur there ! +1 (Clients; included; EMC^2 , Lucent , Southwestern Bell Corporation , and Novell) Clients included EMC^2 , Lucent , Southwestern Bell Corporation , and Novell Clients included EMC^2 , Lucent , Southwestern Bell Corporation , and Novell . +1 (Complimentary amenities; include; local calls and wireless Internet access) Complimentary amenities include local calls and wireless Internet access Complimentary amenities include local calls and wireless Internet access . +1 (Countries represented; included; Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam) Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam . +1 (Countries; represented included; Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam) Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam . +0 (Countries; represented; ) Countries represented Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam . +1 (Courses; begin; in September) Courses begin in September Courses begin in September and finish end of May . +1 (Courses; finish; end of May) Courses finish end of May Courses begin in September and finish end of May . +1 (the Timberwolves; have lost; nine of the last 10 road games) the Timberwolves have lost nine of the last 10 road games Craig Smith scored 30 points and grabbed 10 rebounds and Al Jefferson had 23 points and 15 rebounds for the Timberwolves who have lost nine of the last 10 road games . +1 (Craig Smith; grabbed; 10 rebounds and Al Jefferson) Craig Smith grabbed 10 rebounds and Al Jefferson Craig Smith scored 30 points and grabbed 10 rebounds and Al Jefferson had 23 points and 15 rebounds for the Timberwolves who have lost nine of the last 10 road games . +1 (Customers; include; all the RBOCs) Customers include all the RBOCs Customers include all the RBOCs , GTE , British Telecom , Australia Telecom , Bell Canada , BC Tel , the US Military and many independent telcos . +1 (Danny; fell in love; in 2004) Danny fell in love in 2004 Danny fell in love with Kathy 's energy , sense of humor and undying loyalty in 2004 and subsequently came to appreciate the charms of the Australian Cattle Dogs . +1 (Danny; fell; in love) Danny fell in love Danny fell in love with Kathy 's energy , sense of humor and undying loyalty in 2004 and subsequently came to appreciate the charms of the Australian Cattle Dogs . +1 (David; goes; to school) David goes to school David goes to school . +1 (Marylands # 1 Tire Company; has immediate opportunities for; the right individuals) Marylands # 1 Tire Company has immediate opportunities for the right individuals Details : Marylands # 1 Tire Company , Mr. Tire , has immediate opportunities for the right individuals . +0 (Pullen LLP; delivers; audit) Pullen LLP delivers audit Details : McGladrey & Pullen LLP delivers audit and attest services . +0 (Pullen LLP; attest; services) Pullen LLP attest services Details : McGladrey & Pullen LLP delivers audit and attest services . +0 (the show; is 19+ /; $ 5) the show is 19+ / $ 5 Doors are at 9pm and the show is 19+ / $ 5 . +1 (Doors; are; at 9pm) Doors are at 9pm Doors are at 9pm and the show is 19+ / $ 5 . +1 (the show; is; $ 5) the show is $ 5 Doors are at 9pm and the show is 19+ / $ 5 . +1 (El Salvador; consists of one of the largest populations in that Region; with approximately 6.9 million people) El Salvador consists of one of the largest populations in that Region with approximately 6.9 million people El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (El Salvador; is located; in Central America) El Salvador is located in Central America El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (El Salvador; consists; of one of the largest populations in that Region) El Salvador consists of one of the largest populations in that Region El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (Charles II; [is] son of; Charles I.) Charles II [is] son of Charles I. England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (England; became; a republic) England became a republic England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (Anne Stuart; became Queen; in 1702) Anne Stuart became Queen in 1702 England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +0 (son of Charles I. The Stuart line; continued; to rule England and Scotland until Anne Stuart) son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +0 (son of Charles I. The Stuart line; continued to rule England and Scotland; until Anne Stuart) son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (a new Parliament; was installed; under Charles II) a new Parliament was installed under Charles II England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (a new Parliament; was installed under Charles II; in 1660) a new Parliament was installed under Charles II in 1660 England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (Anne Stuart; became; Queen) Anne Stuart became Queen England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (son of Charles I. The Stuart line; continued to rule; England and Scotland) son of Charles I. The Stuart line continued to rule England and Scotland England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +0 (she; remembers; her real mother) she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (she; died; when Leia was very young) she died when Leia was very young Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +0 (she; says; yes) she says yes Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +0 (Luke; asks if she remembers her real mother; ) Luke asks if she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (Luke; asks; Leia) Luke asks Leia Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (Luke; asks Leia; if she remembers her real mother) Luke asks Leia if she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +0 (she; says yes; When Luke asks Leia) she says yes When Luke asks Leia Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (Leia; was; very young) Leia was very young Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (the bread and wine; are the body and blood of; Christ) the bread and wine are the body and blood of Christ Eucharist-The elements of the communion supper where the bread and wine are the body and blood of Christ . +1 (the bread and wine; are; the body and blood of Christ) the bread and wine are the body and blood of Christ Eucharist-The elements of the communion supper where the bread and wine are the body and blood of Christ . +1 (the workers of Opar; to mine; the gold) the workers of Opar to mine the gold Ever since Atlantis sank beneath the waves , the workers of Opar have continued to mine the gold . +1 (the workers of Opar; have continued; Ever since Atlantis sank beneath the waves) the workers of Opar have continued Ever since Atlantis sank beneath the waves Ever since Atlantis sank beneath the waves , the workers of Opar have continued to mine the gold . +1 (Atlantis; Ever sank; beneath the waves) Atlantis Ever sank beneath the waves Ever since Atlantis sank beneath the waves , the workers of Opar have continued to mine the gold . +1 (Exxon; merged with Mobil; in 1999) Exxon merged with Mobil in 1999 Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (Exxon; is called; ExxonMobil) Exxon is called ExxonMobil Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (Exxon; merged; with Mobil) Exxon merged with Mobil Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (Exxon; is called ExxonMobil; now) Exxon is called ExxonMobil now Exxon merged with Mobil in 1999 and is now called ExxonMobil . +0 (Filming; returning; to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda) Filming returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Filming; began; in September) Filming began in September Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Filming; began; with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon) Filming began with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Filming; began with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon; in September) Filming began with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon in September Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Florence; is the capital of; Tuscany) Florence is the capital of Tuscany Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (Florence; is; at the heart of beautiful countryside) Florence is at the heart of beautiful countryside Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (Florence; is; the capital of Tuscany) Florence is the capital of Tuscany Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (beautiful countryside; famed; for its traditions and cuisine) beautiful countryside famed for its traditions and cuisine Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +0 (Florist & Gifts; also delivers Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab to; the following facilities) Florist & Gifts also delivers Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab to the following facilities Florist & Gifts also delivers to the following facilities : Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab . +0 (Florist & Gifts; also delivers; Adams Funeral & Memorial Care) Florist & Gifts also delivers Adams Funeral & Memorial Care Florist & Gifts also delivers to the following facilities : Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab . +1 (Satan; fall; when he made his choice) Satan fall when he made his choice For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Satan; fall; from the sky) Satan fall from the sky For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Jesus; saw; Satan fall like lightning from the sky) Jesus saw Satan fall like lightning from the sky For Jesus saw Satan fall like lightning from the sky when he made his choice . +0 (he; made; his choice) he made his choice For Jesus saw Satan fall like lightning from the sky when he made his choice . +0 (Jesus; saw Satan fall like lightning from the sky; For) Jesus saw Satan fall like lightning from the sky For For Jesus saw Satan fall like lightning from the sky when he made his choice . +0 (he; made choice; ) he made choice For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Jesus; saw; Satan) Jesus saw Satan For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Satan; fall like; lightning) Satan fall like lightning For Jesus saw Satan fall like lightning from the sky when he made his choice . +0 (you; dress up; his great 'achievements) you dress up his great 'achievements For all the spin and propaganda , life here is no better or worse than when Blair came to power , no matter how you dress up his great 'achievements ' . +1 (life here; is; no better or worse than) life here is no better or worse than For all the spin and propaganda , life here is no better or worse than when Blair came to power , no matter how you dress up his great 'achievements ' . +1 (Blair; came; to power) Blair came to power For all the spin and propaganda , life here is no better or worse than when Blair came to power , no matter how you dress up his great 'achievements ' . +1 (Suharto; [is] Former dictator [of]; Indonesian) Suharto [is] Former dictator [of] Indonesian Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +0 (doctors; in called; a miraculous recovery) doctors in called a miraculous recovery Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +0 (doctors; in called; after more than two weeks on life support) doctors in called after more than two weeks on life support Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; moved; his hands) Former Indonesian dictator Suharto moved his hands Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; in a whisper) Former Indonesian dictator Suharto spoke in a whisper Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; today) Former Indonesian dictator Suharto spoke today Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure) Former Indonesian dictator Suharto spoke in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (doctors; called; a miraculous recovery) doctors called a miraculous recovery Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (doctors; called a miraculous recovery; after more than two weeks on life support) doctors called a miraculous recovery after more than two weeks on life support Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (the company; is headquartered; in Spokane , Washington) the company is headquartered in Spokane , Washington Founded in 1977 , the company is headquartered in Spokane , Washington . +0 (the company; is headquartered; Founded in 1977) the company is headquartered Founded in 1977 Founded in 1977 , the company is headquartered in Spokane , Washington . +1 (Fred Thompson; is running for president; for one reason) Fred Thompson is running for president for one reason Fred Thompson is running for president for one reason and one reason only . +1 (Fred Thompson; is running; for president) Fred Thompson is running for president Fred Thompson is running for president for one reason and one reason only . +1 (Fred; is; the Best Choice) Fred is the Best Choice Fred is the Best Choice . +1 (Funeral service; will be at 1:30 pm; Saturday) Funeral service will be at 1:30 pm Saturday Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Funeral service; will be at 1:30 pm; at Kimple Funeral Chapel in Ellinwood) Funeral service will be at 1:30 pm at Kimple Funeral Chapel in Ellinwood Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Funeral service; will be; at 1:30 pm) Funeral service will be at 1:30 pm Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +0 (the Rev. Larry Young; officiating; ) the Rev. Larry Young officiating Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Gomebox; will be; the sole arbiter as to what constitutes a violation of the AUP) Gomebox will be the sole arbiter as to what constitutes a violation of the AUP Gomebox will be the sole arbiter as to what constitutes a violation of the AUP. +1 (Governor Sonny Perdue; announced a plan; today) Governor Sonny Perdue announced a plan today Governor Sonny Perdue announced today a plan . +1 (Governor Sonny Perdue; announced; a plan) Governor Sonny Perdue announced a plan Governor Sonny Perdue announced today a plan . +1 (the couple; have; three children) the couple have three children He is married to Donna , and the couple have three children , Ruth , Anna , and Samuel . +0 (He; is; married to Donna) He is married to Donna He is married to Donna , and the couple have three children , Ruth , Anna , and Samuel . +1 (Hermione; looked at Harry; again) Hermione looked at Harry again Hermione looked at Harry again , annoyed and perplexed . +1 (Hermione; looked; at Harry) Hermione looked at Harry Hermione looked at Harry again , annoyed and perplexed . +0 (my name; is; Cheryl and I) my name is Cheryl and I Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +1 (Cheryl and I; have; a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD ,) Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +1 (a 9-year-old son; is; high-functioning Autistic/Asperger 's) a 9-year-old son is high-functioning Autistic/Asperger 's Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +1 (high-functioning Autistic/Asperger 's; diagnosed; last year) high-functioning Autistic/Asperger 's diagnosed last year Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +0 (my name; is; Suzanne) my name is Suzanne Hi my name is Suzanne , I 've having the same problem with my PC , no sound at all . +0 (I; 've having; the same problem with my PC) I 've having the same problem with my PC Hi my name is Suzanne , I 've having the same problem with my PC , no sound at all . +1 (Hillary; is; a Liar) Hillary is a Liar Hillary is a Liar ! +1 (Houston; is the fourth largest city in; the US) Houston is the fourth largest city in the US Houston is the fourth largest city in the US and growing . +1 (Houston; is; the fourth largest city in the US and growing) Houston is the fourth largest city in the US and growing Houston is the fourth largest city in the US and growing . +1 (China; to speed up; modernization of military) China to speed up modernization of military Hu says China to speed up modernization of military . +1 (Hu; says; China to speed up modernization of military) Hu says China to speed up modernization of military Hu says China to speed up modernization of military . +1 (their campaign; is thrown; into utter chaos) their campaign is thrown into utter chaos Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (Romney; wins; MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination) Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (Huck; wins; IA) Huck wins IA Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (McCain; wins; NH) McCain wins NH Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +0 (I; dislike; this) I dislike this I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +0 (I; Like; this) I Like this I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +1 (the LORD; to swallow up; Jonah) the LORD to swallow up Jonah I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +0 (I; believe; the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption) I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (Republicans; acted like Democrats; in terms of spending) Republicans acted like Democrats in terms of spending I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (the Democrats; won; majorities) the Democrats won majorities I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (Republicans; acted; like Democrats) Republicans acted like Democrats I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +0 (I; love too; sports) I love too sports I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +1 (Brett Favre; so is; a great football player minus his 04-05 season) Brett Favre so is a great football player minus his 04-05 season I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +1 (Shaq; is; the man) Shaq is the man I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +0 (I; noticed; that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years) I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (she; looked AMAZING; on New Years) she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +0 (Spencer; told that she looked AMAZING on New Years; ) Spencer told that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (Spencer; told; Heidi) Spencer told Heidi I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (Spencer; told Heidi; that she looked AMAZING on New Years) Spencer told Heidi that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (Spencer; told Heidi; in Brody 's absence) Spencer told Heidi in Brody 's absence I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +0 (she; looked; AMAZING) she looked AMAZING I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +0 (I; think; that is highly appropriate) I think that is highly appropriate I think that is highly appropriate , given the importance of these Games , Howard told parliament . +0 (that; is; highly appropriate) that is highly appropriate I think that is highly appropriate , given the importance of these Games , Howard told parliament . +1 (Howard; told; parliament) Howard told parliament I think that is highly appropriate , given the importance of these Games , Howard told parliament . +0 (I; had mentioned my book; previously) I had mentioned my book previously I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +0 (I; was n't; sure I had mentioned my book previously) I was n't sure I had mentioned my book previously I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +0 (I; had mentioned; my book) I had mentioned my book I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +0 (I; would never have done; that) I would never have done that I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Beckham; told; reporters) Beckham told reporters I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Beckham; told; Monday) Beckham told Monday I would never have done that , Beckham told reporters Monday , the Associated Press reported . +0 (I would never have done that , Beckham told reporters Monday; reported; ) I would never have done that , Beckham told reporters Monday reported I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Beckham; told reporters; Monday) Beckham told reporters Monday I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Germany; attacked; France) Germany attacked France In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared; to defend Paris) Free Polish Forces prepared to defend Paris In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared to defend; Paris) Free Polish Forces prepared to defend Paris In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared to defend Paris; In May 1940) Free Polish Forces prepared to defend Paris In May 1940 In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared to defend Paris; when Germany attacked France) Free Polish Forces prepared to defend Paris when Germany attacked France In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (that photograph; was taken; in 1993) that photograph was taken in 1993 In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (an official US delegation; pursuing; the POW/MIA issue) an official US delegation pursuing the POW/MIA issue In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (Kerry; went; to Vietnam) Kerry went to Vietnam In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (Kerry; went; 1993) Kerry went 1993 In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (she; even insists; she loves Lucas) she even insists she loves Lucas In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; loves; Lucas) she loves Lucas In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; could marry; EJ) she could marry EJ In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +0 (Sami; asked for a divorce; ) Sami asked for a divorce In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; end; the feud between the Bradys and the Dimera) she end the feud between the Bradys and the Dimera In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sami; asked for a divorce; so that she could marry EJ and end the feud between the Bradys and the Dimera) Sami asked for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sami; asked; Lucas; for a divorce; so that she could marry EJ and end the feud between the Bradys and the Dimera; In mid - October 2007) Sami asked Lucas; for a divorce; so that she could marry EJ and end the feud between the Bradys and the Dimera; In mid - October 2007 In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Iraq; had; ties to Al Qaeda) Iraq had ties to Al Qaeda In the beginning , we were going because Iraq had ties to Al Qaeda . +1 (David; meets Goliath; this year) David meets Goliath this year It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +0 (It; 's; David) It 's David It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (Gwen Todd and Steve Strayer; running; against three incumbents) Gwen Todd and Steve Strayer running against three incumbents It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (David; meets Goliath; on the Washington Hospital Board of Directors) David meets Goliath on the Washington Hospital Board of Directors It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +0 (David; meets; Goliath) David meets Goliath It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +0 (It; is the time that; the sun) It is the time that the sun It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +0 (it; 's; the first day of fall) it 's the first day of fall It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +1 (people; live; in North America) people live in North America It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +0 (It; is; the time that the sun is directly over the equator and for people) It is the time that the sun is directly over the equator and for people It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +1 (the sun; is directly; over the equator and for people) the sun is directly over the equator and for people It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +0 (the sun; is directly over the equator and for people; the time) the sun is directly over the equator and for people the time It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +0 (history; is bunk as; he) history is bunk as he It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (he; reinventing; American industry) he reinventing American industry It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (It; was; Henry Ford) It was Henry Ford It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (history; is; bunk) history is bunk It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (Henry Ford; said; history is bunk as he was busy reinventing American industry a century ago) Henry Ford said history is bunk as he was busy reinventing American industry a century ago It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (he; was; busy reinventing American industry) he was busy reinventing American industry It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (he; was busy reinventing American industry; a century ago) he was busy reinventing American industry a century ago It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +1 (Italy; has won; the world cup) Italy has won the world cup Italy has won the world cup ! +0 (Ive; encountered a problem; while trying to publish a sid file) Ive encountered a problem while trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +0 (Ive; encountered trying; to publish a sid file) Ive encountered trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +0 (Ive; encountered; a problem) Ive encountered a problem Ive encountered a problem while trying to publish a sid file . +0 (Ive; encountered a problem trying; to publish a sid file) Ive encountered a problem trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +0 (a laptop; running; Windows XP) a laptop running Windows XP Ive got a laptop running Windows XP , which also has VMWare installed . +0 (Ive; got; a laptop running Windows XP ,) Ive got a laptop running Windows XP , Ive got a laptop running Windows XP , which also has VMWare installed . +1 (Windows XP; has; VMWare installed) Windows XP has VMWare installed Ive got a laptop running Windows XP , which also has VMWare installed . +0 (VMWare; installed; ) VMWare installed Ive got a laptop running Windows XP , which also has VMWare installed . +0 (Ive; also got; ADD) Ive also got ADD Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +0 (Ive; got; ideas) Ive got ideas Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +0 (Ive; am; prone to be captivated by bright and shinny objects) Ive am prone to be captivated by bright and shinny objects Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +1 (the web; has made; my life easier) the web has made my life easier Ive just moved house and have found some ways the web has made my life easier . +0 (Ive; have found; some ways the web has made my life easier) Ive have found some ways the web has made my life easier Ive just moved house and have found some ways the web has made my life easier . +0 (Ive; just moved; house) Ive just moved house Ive just moved house and have found some ways the web has made my life easier . +1 (the college admission process; is a walk in; the park) the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (the college admission process; is; a walk in the park) the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (Ive; want; you to know that after this experience , I can tell you the college admission process is a walk in the park) Ive want you to know that after this experience , I can tell you the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (Ive; posted; the video) Ive posted the video Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (you; to know; that after this experience , I can tell you the college admission process is a walk in the park) you to know that after this experience , I can tell you the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (I; can tell; you) I can tell you Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (I; can tell you; the college admission process) I can tell you the college admission process Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (I; can tell you; after this experience) I can tell you after this experience Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (people; like the calf head sound; in the studio) people like the calf head sound in the studio Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +1 (Ive; worked; with people) Ive worked with people Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +1 (people; like; the calf head sound) people like the calf head sound Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +0 (all of whom; share; a passion for being in the country) all of whom share a passion for being in the country Jane has two children and a husband , all of whom share a passion for being in the country , being on the beach and eating . +1 (Jane; has; two children and a husband , all of whom share a passion for being in the country) Jane has two children and a husband , all of whom share a passion for being in the country Jane has two children and a husband , all of whom share a passion for being in the country , being on the beach and eating . +1 (Jeff and his wife; have; three children) Jeff and his wife have three children Jeff and his wife Kathy have three children : Kyle , Kristin and Nathanael . +1 (Jesus; came; to bring Life) Jesus came to bring Life Jesus came to bring Life , abundant Life . +1 (Jesus; to bring; Life) Jesus to bring Life Jesus came to bring Life , abundant Life . +1 (Jesus; did n't have; a human father) Jesus did n't have a human father Jesus did n't have a human father . +1 (Jesus; is the only begotten Son of; God) Jesus is the only begotten Son of God Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (Jesus; is; the only begotten Son of God) Jesus is the only begotten Son of God Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (the only begotten Son of God; born; of the virgin Mary) the only begotten Son of God born of the virgin Mary Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (the only begotten Son of God; conceived; of the Holy Spirit) the only begotten Son of God conceived of the Holy Spirit Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (Jesus; was with the disciples; for forty days) Jesus was with the disciples for forty days Jesus was with the disciples for forty days after the resurrection . +1 (Jesus; was; with the disciples) Jesus was with the disciples Jesus was with the disciples for forty days after the resurrection . +1 (Jesus; will return at; the advent of the messianic age) Jesus will return at the advent of the messianic age Jesus will return from heaven at the advent of the messianic age , slay the Dajjal near Jerusalem , and then pray behind the Mahdi . +1 (Jesus; will return from; heaven) Jesus will return from heaven Jesus will return from heaven at the advent of the messianic age , slay the Dajjal near Jerusalem , and then pray behind the Mahdi . +1 (John Edwards; is; a trial lawyer and Hillary Rodham Clinton) John Edwards is a trial lawyer and Hillary Rodham Clinton John Edwards is a trial lawyer and Hillary Rodham Clinton might make a dandy Attorney General . +1 (Jones; carries twice; the ball) Jones carries twice the ball Jones carries the ball twice and gets almost as much yardage as Foster . +1 (Jones; gets; almost as much yardage) Jones gets almost as much yardage Jones carries the ball twice and gets almost as much yardage as Foster . +0 (Just one simple Google AdWords campaign; earns thousands per month; ) Just one simple Google AdWords campaign earns thousands per month Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +1 (Just one simple Google AdWords campaign; earns; me) Just one simple Google AdWords campaign earns me Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +1 (Just one simple Google AdWords campaign; earns me; thousands per month) Just one simple Google AdWords campaign earns me thousands per month Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +0 (Just one simple Google AdWords campaign; earns me takes; less than 30 minutes a week) Just one simple Google AdWords campaign earns me takes less than 30 minutes a week Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +1 (KOBE; is the best player in; the NBA) KOBE is the best player in the NBA KOBE is the best player in the NBA . +1 (KOBE; is; the best player in the NBA) KOBE is the best player in the NBA KOBE is the best player in the NBA . +1 (Kerry; supported too; the war) Kerry supported too the war Kerry supported the war too . +1 (Kimi Raikkonen; wins to secure; his first F1 crown) Kimi Raikkonen wins to secure his first F1 crown Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (an investigation into possible fuel irregularites; is; pending) an investigation into possible fuel irregularites is pending Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Kimi Raikkonen; wins; the Brazilian Grand Prix) Kimi Raikkonen wins the Brazilian Grand Prix Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Kimi Raikkonen; wins the Brazilian Grand Prix to secure; his first F1 crown) Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Kevin Rudd; [is] leader [of]; Labor Party) Kevin Rudd [is] leader [of] Labor Party Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Labor Party leader Kevin Rudd; faces the media; as he arrives to vote in the Rebecca lobo of Griffith in Brisbane) Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Labor Party leader Kevin Rudd; faces; the media) Labor Party leader Kevin Rudd faces the media Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +0 (he; to vote; in the Rebecca lobo of Griffith) he to vote in the Rebecca lobo of Griffith Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +0 (he; arrives; to vote in the Rebecca lobo of Griffith in Brisbane) he arrives to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +0 (he; to vote in the Rebecca lobo of Griffith; in Brisbane) he to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Languages; include; Japanese , Chinese , French , German , Spanish , Korean , and English) Languages include Japanese , Chinese , French , German , Spanish , Korean , and English Languages include Japanese , Chinese , French , German , Spanish , Korean , and English . +0 (she; let; loose) she let loose Later , Pandora opened the box and she let loose all the evils in the world . +0 (Pandora; opened the box; all the evils in the world) Pandora opened the box all the evils in the world Later , Pandora opened the box and she let loose all the evils in the world . +1 (Pandora; opened; the box) Pandora opened the box Later , Pandora opened the box and she let loose all the evils in the world . +1 (Pandora; opened the box; Later) Pandora opened the box Later Later , Pandora opened the box and she let loose all the evils in the world . +1 (Launceston; is; Tasmania 's second largest city and Australia 's third oldest city) Launceston is Tasmania 's second largest city and Australia 's third oldest city Launceston is Tasmania 's second largest city and Australia 's third oldest city . +0 (Arnold; was governor before; he) Arnold was governor before he Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 ('s; see; before he spoke at the convention) 's see before he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 (he; spoke; at the convention) he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 (he; spoke; in November 2003) he spoke in November 2003 Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 (he; was elected; in November 2003) he was elected in November 2003 Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (Arnold; was; governor) Arnold was governor Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (Arnold; was governor; before he spoke at the convention) Arnold was governor before he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (Location; was; Hayward) Location was Hayward Location was Hayward , California . +1 (Louis Blues; ended; a seven-game winless streak) Louis Blues ended a seven-game winless streak Louis Blues ended a seven-game winless streak with a 3-2 win over the Toronto Maple Leafs . +1 (the rainy season; lasts; from July) the rainy season lasts from July Malaria is holoendemic but highly seasonal in the study area ; the rainy season lasts from July until October and the main transmission period is between July and December . +1 (the main transmission period; is; between July and December) the main transmission period is between July and December Malaria is holoendemic but highly seasonal in the study area ; the rainy season lasts from July until October and the main transmission period is between July and December . +1 (Malaria; is; holoendemic but highly seasonal in the study area) Malaria is holoendemic but highly seasonal in the study area Malaria is holoendemic but highly seasonal in the study area ; the rainy season lasts from July until October and the main transmission period is between July and December . +1 (Marilyn Monroe; was born; Norma Jeane Mortenson) Marilyn Monroe was born Norma Jeane Mortenson Marilyn Monroe was born Norma Jeane Mortenson on the 1st June , 1926 , in Los Angeles , California , to Gladys Baker . +1 (Marilyn Monroe; was born; on the 1st June , 1926 , in Los Angeles) Marilyn Monroe was born on the 1st June , 1926 , in Los Angeles Marilyn Monroe was born Norma Jeane Mortenson on the 1st June , 1926 , in Los Angeles , California , to Gladys Baker . +1 (Meetings; are held; at 1:00 PM) Meetings are held at 1:00 PM Meetings are held on the second Thursday of every month at 1:00 PM at St . +1 (Meetings; are held; on the second Thursday of every month) Meetings are held on the second Thursday of every month Meetings are held on the second Thursday of every month at 1:00 PM at St . +1 (Meetings; are held; on the second Wednesday of every month) Meetings are held on the second Wednesday of every month Meetings are held on the second Wednesday of every month , 7pm at Grace College . +1 (Meetings; are held; on the third Monday of every month) Meetings are held on the third Monday of every month Meetings are held on the third Monday of every month at Ft . +1 (Meetings; are held; at Ft) Meetings are held at Ft Meetings are held on the third Monday of every month at Ft . +1 (everyone; has; a safe holiday season) everyone has a safe holiday season Merry Christmas to all , and hope everyone has a safe holiday season . +0 (Merry Christmas to all; hope; everyone has a safe holiday season) Merry Christmas to all hope everyone has a safe holiday season Merry Christmas to all , and hope everyone has a safe holiday season . +1 (West Highland Terrier; named; Fergus) West Highland Terrier named Fergus Michael and his wife have a son Sam and a West Highland Terrier named Fergus , who makes his recording debut on Laugh and Play . +1 (Michael and his wife; have; a son Sam and a West Highland Terrier) Michael and his wife have a son Sam and a West Highland Terrier Michael and his wife have a son Sam and a West Highland Terrier named Fergus , who makes his recording debut on Laugh and Play . +1 (Microsoft; discards each version; after only five years) Microsoft discards each version after only five years Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +0 (Microsoft; spends developing; new versions of windows) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +0 (Microsoft; spends developing new versions of windows; ) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Microsoft; discards; each version) Microsoft discards each version Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Microsoft; spends developing new versions of windows; billions of dollars) Microsoft spends developing new versions of windows billions of dollars Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Microsoft; spends; developing new versions of windows) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Moses; led the people of Israel; for 40 years) Moses led the people of Israel for 40 years Moses led the people of Israel through the desert for 40 years . +1 (Moses; led; the people of Israel) Moses led the people of Israel Moses led the people of Israel through the desert for 40 years . +1 (Mr Smith; goes; to Washington 37) Mr Smith goes to Washington 37 Mr Smith goes to Washington 37 Your favorite movie about movies . +0 (I; Love; all Animals) I Love all Animals My name is Rachael and I Love all Animals ! +1 (My name; is; Rachael) My name is Rachael My name is Rachael and I Love all Animals ! +0 (he; should go; ahead) he should go ahead Nathan told David that he should go ahead and build the Temple of the Lord . +0 (Nathan; told that he should go ahead and build the Temple of the Lord; ) Nathan told that he should go ahead and build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +0 (he; build; the Temple of the Lord) he build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +1 (Nathan; told; David) Nathan told David Nathan told David that he should go ahead and build the Temple of the Lord . +1 (Nathan; told David; that he should go ahead and build the Temple of the Lord) Nathan told David that he should go ahead and build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +0 (we; are; The Real Estate Leaders) we are The Real Estate Leaders No one in the world sells more real estate than RE/MAX we are The Real Estate Leaders . +1 (No one in the world; sells; more real estate than RE/MAX) No one in the world sells more real estate than RE/MAX No one in the world sells more real estate than RE/MAX we are The Real Estate Leaders . +0 (we; need; to just whip something up for the kids) we need to just whip something up for the kids Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +0 (Not everyone; to just whip something up; for the kids) Not everyone to just whip something up for the kids Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +1 (Not everyone; has; Photoshop or a slick little graphics program) Not everyone has Photoshop or a slick little graphics program Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +0 (we; need to just whip something up for the kids; sometimes) we need to just whip something up for the kids sometimes Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +0 (Not everyone; to just whip up; something) Not everyone to just whip up something Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +0 (Not everyone; to just whip up something; for the kids) Not everyone to just whip up something for the kids Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +1 (today; is; January 5th) today is January 5th OK , today is January 5th . +1 (Obama; is; a law professor and a state senator) Obama is a law professor and a state senator Obama is a law professor and a state senator . +1 (Edwards; came way back; in second) Edwards came way back in second Obama won with 37.5 % , Edwards came in second at 29.9 % , Clinton in third at 29.4 % and Bill Richardson way back in fourth at 2.1 % . +1 (Edwards; came way back; at 29.9 %) Edwards came way back at 29.9 % Obama won with 37.5 % , Edwards came in second at 29.9 % , Clinton in third at 29.4 % and Bill Richardson way back in fourth at 2.1 % . +0 (Obama; won fourth; ) Obama won fourth Obama won with 37.5 % , Edwards came in second at 29.9 % , Clinton in third at 29.4 % and Bill Richardson way back in fourth at 2.1 % . +0 (it; turns out; that I misread one of the questions , so now Ron Paul is in the lead) it turns out that I misread one of the questions , so now Ron Paul is in the lead Oops , it turns out that I misread one of the questions , so now Ron Paul is in the lead . +0 (I; misread; ) I misread Oops , it turns out that I misread one of the questions , so now Ron Paul is in the lead . +0 (one of the questions; so is; in the lead) one of the questions so is in the lead Oops , it turns out that I misread one of the questions , so now Ron Paul is in the lead . +0 (one of the questions; so is in the lead; now) one of the questions so is in the lead now Oops , it turns out that I misread one of the questions , so now Ron Paul is in the lead . +0 (I; forget; to present myself) I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +0 (I; forget to present; myself) I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +0 (I; am; sorry I forget to present myself) I am sorry I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +0 (I; am; from Bulgaria) I am from Bulgaria Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (my name; is; Ivan) my name is Ivan Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (PAYMENT Payment; may be made; by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card) PAYMENT Payment may be made by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card PAYMENT Payment may be made by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card . +1 (Tasty Baking Company; is investing more than $ 75 million; to relocate its headquarters) Tasty Baking Company is investing more than $ 75 million to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +1 (Tasty Baking Company; is investing to relocate; its headquarters) Tasty Baking Company is investing to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +0 (PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell; announced that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard; ) PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +1 (Tasty Baking Company; is investing; more than $ 75 million; to relocate its headquarters) Tasty Baking Company is investing more than $ 75 million; to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +1 (Tasty Baking Company; is investing more than $ 75 million to relocate; its headquarters) Tasty Baking Company is investing more than $ 75 million to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +0 (you; are submitting; after 6 pm) you are submitting after 6 pm PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +1 (Office hours; are Monday - Friday; 8:30 am to 6:00 pm) Office hours are Monday - Friday 8:30 am to 6:00 pm PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +1 (Office hours; are; Monday-Friday) Office hours are Monday-Friday PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +1 (Paul; otherwise is; nothing but trash) Paul otherwise is nothing but trash Paul is a good guy and otherwise an intellectual-but Gravel is nothing but trash . +1 (Paul; is; a good guy) Paul is a good guy Paul is a good guy and otherwise an intellectual-but Gravel is nothing but trash . +0 (Paul; warned not to lay hands on any man suddenly; ) Paul warned not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +0 (Timothy; not to lay hands; on any man suddenly) Timothy not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +1 (Paul; warned; Timothy) Paul warned Timothy Paul warned Timothy not to lay hands on any man suddenly . +1 (Paul; warned Timothy; not to lay hands on any man suddenly) Paul warned Timothy not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +1 (Timothy; not to lay; hands) Timothy not to lay hands Paul warned Timothy not to lay hands on any man suddenly . +1 (Paul; provided; for his missionary trips) Paul provided for his missionary trips Paul was a tent maker and provided for his missionary trips by working . +1 (Paul; was; a tent maker) Paul was a tent maker Paul was a tent maker and provided for his missionary trips by working . +1 (President Bush; visits New Orleans; on the second anniversary of Hurricane Katrina) President Bush visits New Orleans on the second anniversary of Hurricane Katrina President Bush visits New Orleans on the second anniversary of Hurricane Katrina . +1 (President Bush; visits; New Orleans) President Bush visits New Orleans President Bush visits New Orleans on the second anniversary of Hurricane Katrina . +1 (Prizes; included; gift certificates redeemable at Collectors) Prizes included gift certificates redeemable at Collectors Prizes included gift certificates redeemable at Collectors Corner , Yu-Gi-Oh posters , promotional give-aways and Oakland Coca-Cola Street Team t-shirts to the many winners of the tournament . +1 (Products; must be returned with; all accessories) Products must be returned with all accessories Products must be returned in original packaging and in original condition with all accessories included . +1 (Products; must be returned in; original packaging and in original condition) Products must be returned in original packaging and in original condition Products must be returned in original packaging and in original condition with all accessories included . +0 (all accessories; included; ) all accessories included Products must be returned in original packaging and in original condition with all accessories included . +1 (Products; must be returned; in original packaging and in original condition) Products must be returned in original packaging and in original condition Products must be returned in original packaging and in original condition with all accessories included . +1 (Raid; stands; for Redundant Array of Inexpensive Disks) Raid stands for Redundant Array of Inexpensive Disks Raid stands for Redundant Array of Inexpensive Disks . +1 (Registration; begins; February 1) Registration begins February 1 Registration begins February 1 at the Reference Desk . +1 (Registration; begins; at the Reference Desk) Registration begins at the Reference Desk Registration begins February 1 at the Reference Desk . +0 (we; need; him to get the nomination) we need him to get the nomination Richardson is the best candidate out there from any party and we need him to get the nomination ! +0 (him; to get; the nomination) him to get the nomination Richardson is the best candidate out there from any party and we need him to get the nomination ! +1 (Richardson; is; the best candidate out there from any party) Richardson is the best candidate out there from any party Richardson is the best candidate out there from any party and we need him to get the nomination ! +1 (Rock Band; will ship; in Europe) Rock Band will ship in Europe Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +1 (Rock Band; will ship; for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system) Rock Band will ship for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +0 (Rock Band; will ship for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system; in Europe) Rock Band will ship for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in Europe Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +1 (winds; hit 126 miles per hour; on Dec) winds hit 126 miles per hour on Dec Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Astoria; located; where the Columbia River meets the Pacific Ocean) Astoria located where the Columbia River meets the Pacific Ocean Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (the Columbia River; meets; the Pacific Ocean) the Columbia River meets the Pacific Ocean Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Rogue Ales Public House , Astoria; got a first hand look at the power of the Pacific; when winds hit 126 miles per hour on Dec) Rogue Ales Public House , Astoria got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Rogue Ales Public House , Astoria; got; a first hand look at the power of the Pacific) Rogue Ales Public House , Astoria got a first hand look at the power of the Pacific Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (winds; hit; 126 miles per hour) winds hit 126 miles per hour Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +0 (he; is; a leader) he is a leader Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +0 (he; has; IT) he has IT Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (Romney; has money; because he has IT and because he is a leader) Romney has money because he has IT and because he is a leader Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (Romney; has; money) Romney has money Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (the orchard trees; were; laden with peaches , plums and other fruit , ours for the picking) the orchard trees were laden with peaches , plums and other fruit , ours for the picking Roses were in bloom in the little garden back of the hotel , and the orchard trees were laden with peaches , plums and other fruit , ours for the picking . +1 (Roses; were; in bloom) Roses were in bloom Roses were in bloom in the little garden back of the hotel , and the orchard trees were laden with peaches , plums and other fruit , ours for the picking . +1 (Rosh HaShana; is; the Jewish New Year) Rosh HaShana is the Jewish New Year Rosh HaShanah : Rosh HaShana is the Jewish New Year commemorating the creation of the universe ; a universal day of judgment . +1 (the Jewish New Year; commemorating; the creation of the universe) the Jewish New Year commemorating the creation of the universe Rosh HaShanah : Rosh HaShana is the Jewish New Year commemorating the creation of the universe ; a universal day of judgment . +0 (I; so would love; to find a group nearby) I so would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +1 (Ryan; goes; to school in Oak Hill) Ryan goes to school in Oak Hill Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (Ryan; goes; so I would love to find a group nearby) Ryan goes so I would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (I; so would love to find; a group) I so would love to find a group Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (I; so would love to find a group; nearby) I so would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (SMTP; is; the standard method used for host) SMTP is the standard method used for host SMTP stands for Simple Mail Transfer Protocol and is the standard method used for host to host transfer of messages over the internet . +1 (SMTP; stands; for Simple Mail Transfer Protocol) SMTP stands for Simple Mail Transfer Protocol SMTP stands for Simple Mail Transfer Protocol and is the standard method used for host to host transfer of messages over the internet . +0 (the standard method; used; for host) the standard method used for host SMTP stands for Simple Mail Transfer Protocol and is the standard method used for host to host transfer of messages over the internet . +1 (Anaheim Ducks; [is] champion [of]; Stanley Cup) Anaheim Ducks [is] champion [of] Stanley Cup Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Selanne; rejoins; Ducks) Selanne rejoins Ducks Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Teemu Selanne; returned; after missing the first half of the season) Teemu Selanne returned after missing the first half of the season Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Teemu Selanne; returned; to the Stanley Cup champion) Teemu Selanne returned to the Stanley Cup champion Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Services; include; consultancy) Services include consultancy Services include consultancy to a client 's architect , assisting in room shaping and infrastructure acoustic design , and making recommendations regarding HVAC and mechanical noise isolation . +1 (Services; were held; at 2:00 pm on Wednesday , Dec. 6 , 2000) Services were held at 2:00 pm on Wednesday , Dec. 6 , 2000 Services were held at 2:00 pm on Wednesday , Dec. 6 , 2000 at Rekus Funeral Home in Meta with Rev. Manuel Seaton officiating . +0 (Rev. Manuel Seaton; officiating; ) Rev. Manuel Seaton officiating Services were held at 2:00 pm on Wednesday , Dec. 6 , 2000 at Rekus Funeral Home in Meta with Rev. Manuel Seaton officiating . +1 (Services; will be at 1 pm; Monday) Services will be at 1 pm Monday Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (Services; will be at 1 pm; at Four square Church in Newton) Services will be at 1 pm at Four square Church in Newton Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (Services; will be; at 1 pm) Services will be at 1 pm Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +0 (he; was; a member) he was a member Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (the family; moved; to Spain) the family moved to Spain She studied at RVAS , a boarding school in Southern Oregon , until the 5th grade , when the family moved to Spain . +0 (She; studied; at RVAS) She studied at RVAS She studied at RVAS , a boarding school in Southern Oregon , until the 5th grade , when the family moved to Spain . +1 (Halo 2 fans; to take; the plunge) Halo 2 fans to take the plunge Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo 2 fans; to upgrade; to a 360) Halo 2 fans to upgrade to a 360 Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo games; are; Xbox exclusives) Halo games are Xbox exclusives Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Microsoft; owns; Bungie) Microsoft owns Bungie Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo 2 fans; to take the plunge; finally) Halo 2 fans to take the plunge finally Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo 2 fans; to upgrade; finally) Halo 2 fans to upgrade finally Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (I; caught; the cleaning bug; this morning) I caught the cleaning bug; this morning Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +0 (I; caught; the cleaning bug) I caught the cleaning bug Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +0 (I; caught the cleaning bug; this morning) I caught the cleaning bug this morning Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +0 (I; caught the cleaning bug; yesterday) I caught the cleaning bug yesterday Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +1 (Sabah; is the second largest state in; Malaysia) Sabah is the second largest state in Malaysia Situated in the northeastern part of the world 's third largest island , Sabah is the second largest state in Malaysia . +1 (Sabah; is; the second largest state in Malaysia) Sabah is the second largest state in Malaysia Situated in the northeastern part of the world 's third largest island , Sabah is the second largest state in Malaysia . +1 (Skin cancer; is the most common cancer in; the United States) Skin cancer is the most common cancer in the United States Skin cancer is the most common cancer in the United States and is increasing in incidence . +1 (Skin cancer; is; the most common cancer in the United States) Skin cancer is the most common cancer in the United States Skin cancer is the most common cancer in the United States and is increasing in incidence . +1 (Skin cancer; is increasing; ) Skin cancer is increasing Skin cancer is the most common cancer in the United States and is increasing in incidence . +1 (the Europeans; came; to the Americas) the Europeans came to the Americas So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +0 (they; unknowlingly brought; all their lethal germs) they unknowlingly brought all their lethal germs So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +0 (they; unknowlingly brought all their lethal germs; with them) they unknowlingly brought all their lethal germs with them So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +0 (they; unknowlingly brought all their lethal germs; when the Europeans came to the Americas) they unknowlingly brought all their lethal germs when the Europeans came to the Americas So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +1 (Socrates; was born; In his early life) Socrates was born In his early life Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (his father; was; a sculptor) his father was a sculptor Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (Socrates; was born; in Athens about 469 BC) Socrates was born in Athens about 469 BC Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +0 (he; followed; the profession of his father) he followed the profession of his father Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (Some people; believe; Jesus received teachings from Yoga in India) Some people believe Jesus received teachings from Yoga in India Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; received teachings; from Yoga) Jesus received teachings from Yoga Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; received teachings; in India) Jesus received teachings in India Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; received; teachings) Jesus received teachings Some people believe Jesus received teachings from Yoga in India . +1 (Alaska; became; a state) Alaska became a state Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (the Sheenjek River basin; was included; in a presidential executive order) the Sheenjek River basin was included in a presidential executive order Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (Alaska; became a state; Soon after) Alaska became a state Soon after Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (the Sheenjek River basin; was included in a presidential executive order; in 1960) the Sheenjek River basin was included in a presidential executive order in 1960 Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (South Africa; beat; England) South Africa beat England South Africa beat England . +1 (South Africa; were; in trouble) South Africa were in trouble South Africa were in trouble when Andy Gomarsall kicked and up-and-under and JP Pietersen dropped it . +0 (Andy Gomarsall; kicked; ) Andy Gomarsall kicked South Africa were in trouble when Andy Gomarsall kicked and up-and-under and JP Pietersen dropped it . +1 (Stevia; has been used; for centuries) Stevia has been used for centuries Stevia has been used for centuries without adverse reactions and it is said to be particularly helpful for diabetics . +0 (it; is said; ) it is said Stevia has been used for centuries without adverse reactions and it is said to be particularly helpful for diabetics . +0 (it; is said to be; particularly helpful for diabetics) it is said to be particularly helpful for diabetics Stevia has been used for centuries without adverse reactions and it is said to be particularly helpful for diabetics . +1 (Microsoft; has shown; dogged patience) Microsoft has shown dogged patience Still , Microsoft has deep pockets and has shown dogged patience . +1 (Microsoft; has; deep pockets) Microsoft has deep pockets Still , Microsoft has deep pockets and has shown dogged patience . +1 (Students; must have; a 3.0 GPA) Students must have a 3.0 GPA Students must have a 3.0 GPA and be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters . +1 (Students; be; able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters) Students be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters Students must have a 3.0 GPA and be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters . +0 (young blonde girl; is missing or dead; ) young blonde girl is missing or dead Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +0 (that; 's; just more sensational than undrinkable water) that 's just more sensational than undrinkable water Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +0 (New Orleans and Louisiana; are a mess; ) New Orleans and Louisiana are a mess Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (New Orleans and Louisiana; are a mess; still) New Orleans and Louisiana are a mess still Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (New Orleans and Louisiana; are; a mess) New Orleans and Louisiana are a mess Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (young blonde girl; is missing or dead; still) young blonde girl is missing or dead still Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (young blonde girl; is; missing or dead) young blonde girl is missing or dead Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (Taxol; stabilizes; microtubules) Taxol stabilizes microtubules Taxol stabilizes microtubules by binding to a polymer . +1 (The ADA; prohibits discrimination on the basis of disability; with respect to public accommodations and employment) The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment . +1 (The ADA; prohibits; discrimination on the basis of disability) The ADA prohibits discrimination on the basis of disability The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment . +1 (The Celts; came; quite recently) The Celts came quite recently The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Celts; isposs essing; the previous inhabitants) The Celts isposs essing the previous inhabitants The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Celts; came; to Ireland) The Celts came to Ireland The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Company; operates; throughout Europe , North America and the Pacific Rim) The Company operates throughout Europe , North America and the Pacific Rim The Company operates throughout Europe , North America and the Pacific Rim , addressing the needs of organisations ranging from the largest multinationals through to the smallest start-ups . +0 (consumers; with purchasing; some 508,000 units of the Nintendo player) consumers with purchasing some 508,000 units of the Nintendo player The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +1 (The DS; outsold; the PSP nearly 3 to 1) The DS outsold the PSP nearly 3 to 1 The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +1 (consumers; purchasing; some 508,000 units of the Nintendo player) consumers purchasing some 508,000 units of the Nintendo player The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +1 (The Internet; is a great source of; information) The Internet is a great source of information The Internet is a great source of information , but it is also a great source for misinformation . +1 (The Internet; is; a great source of information) The Internet is a great source of information The Internet is a great source of information , but it is also a great source for misinformation . +0 (it; is also; a great source for misinformation) it is also a great source for misinformation The Internet is a great source of information , but it is also a great source for misinformation . +1 (The Japanese; attacked the Philippines; on December 8 , 1941) The Japanese attacked the Philippines on December 8 , 1941 The Japanese attacked the Philippines , still an American colony , on December 8 , 1941 , ten hours after the Japanese attack on Pearl Harbor . +1 (The Japanese; attacked; the Philippines) The Japanese attacked the Philippines The Japanese attacked the Philippines , still an American colony , on December 8 , 1941 , ten hours after the Japanese attack on Pearl Harbor . +1 (The Khmer Rouge; ruled Cambodia; from April 17 , 1975) The Khmer Rouge ruled Cambodia from April 17 , 1975 The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled renaming the country; Democratic Kampuchea) The Khmer Rouge ruled renaming the country Democratic Kampuchea The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled; Cambodia) The Khmer Rouge ruled Cambodia The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled Cambodia renaming; the country) The Khmer Rouge ruled Cambodia renaming the country The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled Cambodia renaming the country; Democratic Kampuchea) The Khmer Rouge ruled Cambodia renaming the country Democratic Kampuchea The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +0 (The LORD; told about the path of prosperity and success; ) The LORD told about the path of prosperity and success The LORD told Joshua about the path of prosperity and success . +1 (The LORD; told; Joshua) The LORD told Joshua The LORD told Joshua about the path of prosperity and success . +1 (The LORD; told Joshua; about the path of prosperity and success) The LORD told Joshua about the path of prosperity and success The LORD told Joshua about the path of prosperity and success . +1 (The LRA; has abducted; more than 20,000 children) The LRA has abducted more than 20,000 children The LRA has abducted more than 20,000 children . +1 (The Master bedroom; has; a King size bed cable TV , DVD and VCR) The Master bedroom has a King size bed cable TV , DVD and VCR The Master bedroom has a King size bed cable TV , DVD and VCR. +1 (The Regiment; returned; in 1769) The Regiment returned in 1769 The Regiment returned to England in 1769 much weakened by death injury and disease , and did not reach full effectiveness until 1775 . +1 (The Regiment; returned; to England) The Regiment returned to England The Regiment returned to England in 1769 much weakened by death injury and disease , and did not reach full effectiveness until 1775 . +1 (The United States; emerged; from World War I) The United States emerged from World War I The United States emerged from World War I with its confidence and prosperity intact . +1 (some Republicans; are having; second thoughts) some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +0 (The Washington Post; reported that some Republicans are having second thoughts; ) The Washington Post reported that some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +1 (The Washington Post; reported that some Republicans are having second thoughts; last week) The Washington Post reported that some Republicans are having second thoughts last week The Washington Post reported last week that some Republicans are having second thoughts . +1 (The Washington Post; reported; that some Republicans are having second thoughts) The Washington Post reported that some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +1 (The committee; meets; on the first Thursday of each month) The committee meets on the first Thursday of each month The committee meets on the first Thursday of each month at 4:30 pm . +1 (The committee; meets; at 4:30 pm) The committee meets at 4:30 pm The committee meets on the first Thursday of each month at 4:30 pm . +1 (The company; has entities; in 5 locations in 5 countries) The company has entities in 5 locations in 5 countries The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; is located; in Europe) The company is located in Europe The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; has; entities) The company has entities The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; was founded; in 1982) The company was founded in 1982 The company was founded in 1982 and is headquartered in Atlanta , Georgia . +1 (The company; is headquartered; in Atlanta) The company is headquartered in Atlanta The company was founded in 1982 and is headquartered in Atlanta , Georgia . +1 (The company; was founded; in 1995) The company was founded in 1995 The company was founded in 1995 and is based in Hong Kong , Hong Kong . +1 (The company; is based; in Hong Kong) The company is based in Hong Kong The company was founded in 1995 and is based in Hong Kong , Hong Kong . +1 (The couple; are on a second honeymoon; when Seymour commits suicide) The couple are on a second honeymoon when Seymour commits suicide The couple are on a second honeymoon , when Seymour commits suicide . +1 (Seymour; commits; suicide) Seymour commits suicide The couple are on a second honeymoon , when Seymour commits suicide . +1 (The couple; are; on a second honeymoon) The couple are on a second honeymoon The couple are on a second honeymoon , when Seymour commits suicide . +1 (The date; was; June 12) The date was June 12 The date was June 12 , l998. +0 (The film , which stars Samuel L. Jackson; is slated; for release on <D>Aug) The film , which stars Samuel L. Jackson is slated for release on <D>Aug The film , which stars Samuel L. Jackson , is slated for release on <D>Aug. +1 (The film , which stars Samuel L. Jackson; is slated; for release on <:D>:Aug) The film , which stars Samuel L. Jackson is slated for release on <:D>:Aug The film , which stars Samuel L. Jackson , is slated for release on <D>Aug. +1 (The film; stars; Samuel L. Jackson) The film stars Samuel L. Jackson The film , which stars Samuel L. Jackson , is slated for release on <D>Aug. +1 (The film; stars; Simon Pegg and Nick Frost) The film stars Simon Pegg and Nick Frost The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (Nicolas Cage 's comic book film Ghost; entered; at number two) Nicolas Cage 's comic book film Ghost entered at number two The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (The film , which stars Simon Pegg and Nick Frost; held off; a challenge from Nicolas Cage 's comic book film Ghost) The film , which stars Simon Pegg and Nick Frost held off a challenge from Nicolas Cage 's comic book film Ghost The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (The film; closed; the 2007 Sundance Film Festival) The film closed the 2007 Sundance Film Festival The film closed the 2007 Sundance Film Festival and starred Queen Latifah . +1 (The film; starred; Queen Latifah) The film starred Queen Latifah The film closed the 2007 Sundance Film Festival and starred Queen Latifah . +1 (The film; stars; Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando) The film stars Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando The film stars Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando . +1 (The firm; has; offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai) The firm has offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai The firm has offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai . +1 (the Knicks; turned; the tables) the Knicks turned the tables The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (the Knicks; defeated them; in five games) the Knicks defeated them in five games The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +0 (the Knicks; defeated; them) the Knicks defeated them The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (the Knicks; defeated them; in three years) the Knicks defeated them in three years The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (The game; will be televised; on ESPN2) The game will be televised on ESPN2 The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The game; will include; a special halftime performance by the world-renowned Grambling Tiger Marching Band) The game will include a special halftime performance by the world-renowned Grambling Tiger Marching Band The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The game; will be televised; nationally) The game will be televised nationally The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The master bedroom; contains; one king bed) The master bedroom contains one king bed The master bedroom contains one king bed , while the 2nd bedroom has 2 twin beds . +1 (the 2nd bedroom; has; 2 twin beds) the 2nd bedroom has 2 twin beds The master bedroom contains one king bed , while the 2nd bedroom has 2 twin beds . +1 (The other alternative; is; Hillary) The other alternative is Hillary The other alternative is Hillary , which would be a disaster . +0 (it; 's; a friendly local bar) it 's a friendly local bar The owners are from Chicago and it 's a friendly local bar . +1 (The owners; are; from Chicago) The owners are from Chicago The owners are from Chicago and it 's a friendly local bar . +1 (The repairman; came; late today) The repairman came late today The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (The repairman; came; before Chris left for work) The repairman came before Chris left for work The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (Chris; left; for work) Chris left for work The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +0 (he; so did n't have to pick up; my book) he so did n't have to pick up my book The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +0 (he; so did n't have to pick up my book; time) he so did n't have to pick up my book time The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +0 (he; so did n't have; time to go by and pick up my book) he so did n't have time to go by and pick up my book The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (The seminar; will be held; in English) The seminar will be held in English The seminar will be held in English with simultaneous translation in Italian . +1 (The story; appeared; in The New York Times) The story appeared in The New York Times The story appeared in The New York Times , Daily Business News , The Miami Herald , and 14 other publications nationwide . +1 (The student; will use the book , computer and the Internet; as their source of information) The student will use the book , computer and the Internet as their source of information The student will use the book , computer and the Internet as their source of information . +1 (The student; will use; the book , computer and the Internet) The student will use the book , computer and the Internet The student will use the book , computer and the Internet as their source of information . +1 (The temple; will be rebuilt; in Jerusalem) The temple will be rebuilt in Jerusalem The temple will be rebuilt in Jerusalem , and the sacrificial system will be reinstated . +1 (the sacrificial system; will be reinstated; ) the sacrificial system will be reinstated The temple will be rebuilt in Jerusalem , and the sacrificial system will be reinstated . +0 (Their reason; enslaved; its entire people) Their reason enslaved its entire people Their reason : Israel has occupied Palestine and enslaved its entire people . +0 (Their reason; has occupied; Palestine) Their reason has occupied Palestine Their reason : Israel has occupied Palestine and enslaved its entire people . +1 (people; hate; Israel) people hate Israel There are people who hate Israel . +1 (These states; included; California , Florida , Minnesota , Washington , and Oregon) These states included California , Florida , Minnesota , Washington , and Oregon These states included California , Florida , Minnesota , Washington , and Oregon . +0 (it; is; common) it is common Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +1 (the Philippines; is; a tropical country and it is common for shirts) the Philippines is a tropical country and it is common for shirts Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +1 (shirts; worn; untucked) shirts worn untucked Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +0 (shirts; worn; because of the hot climate) shirts worn because of the hot climate Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +1 (the Colts; win; the Super Bowl) the Colts win the Super Bowl This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (the Tigers; were; American League Champions) the Tigers were American League Champions This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (American League Champions; went; to the World Series) American League Champions went to the World Series This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (the Tigers; were American League Champions; This past baseball season) the Tigers were American League Champions This past baseball season This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (American League Champions; went; This past baseball season) American League Champions went This past baseball season This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +0 (the Colts; do; now) the Colts do now This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (This photo; was taken; in September) This photo was taken in September This photo was taken in September when Bounder was about 4 to 7 days old . +1 (This photo; was taken; when Bounder was about 4 to 7 days old) This photo was taken when Bounder was about 4 to 7 days old This photo was taken in September when Bounder was about 4 to 7 days old . +1 (Bounder; was; about 4 to 7 days old) Bounder was about 4 to 7 days old This photo was taken in September when Bounder was about 4 to 7 days old . +1 (Christmas; is; at my house) Christmas is at my house This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (Thanksgiving; is; at Sharyl 's) Thanksgiving is at Sharyl 's This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +0 (she; says; Christmas is at my house and Thanksgiving is at Sharyl 's) she says Christmas is at my house and Thanksgiving is at Sharyl 's This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (Christmas; is at my house; This year) Christmas is at my house This year This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (G brands; touch; the lives of people around the world) G brands touch the lives of people around the world Three billion times a day , P&G brands touch the lives of people around the world . +1 (Three to four sets of Manila ropes; are being preserved carefully; in both jails) Three to four sets of Manila ropes are being preserved carefully in both jails Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Three to four sets of Manila ropes; are being preserved carefully; for execution purposes) Three to four sets of Manila ropes are being preserved carefully for execution purposes Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Three to four sets of; were acquired; when India was still under British rule) Three to four sets of were acquired when India was still under British rule Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (India; was under British rule; still) India was under British rule still Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (India; was; under British rule) India was under British rule Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Tickets; are $ 10 for; adults) Tickets are $ 10 for adults Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are; $ 10 for adults , $ 5 for children) Tickets are $ 10 for adults , $ 5 for children Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are available; in advance as well as) Tickets are available in advance as well as Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are; available) Tickets are available Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are available; in advance) Tickets are available in advance Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are sold; on board the airport bus) Tickets are sold on board the airport bus Tickets are sold on board the airport bus . +1 (children under 12; are admitted; free) children under 12 are admitted free Tickets cost $ 20 per person , and children under 12 are admitted free . +1 (Tickets; cost; $ 20 per person) Tickets cost $ 20 per person Tickets cost $ 20 per person , and children under 12 are admitted free . +1 (Tickets; will be sold; at the door at the festival for a slightly higher price of 19 euros) Tickets will be sold at the door at the festival for a slightly higher price of 19 euros Tickets will also be sold at the door at the festival for a slightly higher price of 19 euros . +1 (Tipoff; is slated; for 7 pm in the Drubner Center) Tipoff is slated for 7 pm in the Drubner Center Tipoff is slated for 7 pm in the Drubner Center . +0 (To a certain extent; do not blame; Romney) To a certain extent do not blame Romney To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +1 (Romney; is running for President; in a time of Islamophobia) Romney is running for President in a time of Islamophobia To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +1 (Romney; is running; for President) Romney is running for President To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +1 (Tokyo Tsukiji Fish Market in Tokyo; is; an model behavior tourist stop) Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop and is a sushi lovers paradise . +1 (Tokyo Tsukiji Fish Market in Tokyo; is; a sushi lovers paradise) Tokyo Tsukiji Fish Market in Tokyo is a sushi lovers paradise Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop and is a sushi lovers paradise . +0 (tourist; stop; ) tourist stop Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop and is a sushi lovers paradise . +1 (Total RNA; is extracted; from these samples) Total RNA is extracted from these samples Total RNA is extracted from these samples using established methods andcDNA was generated for use in the real time quantitative PCR procedure . +1 (Turkey; is; in Europe) Turkey is in Europe Turkey is in Europe and is the best State of the World ! +1 (Turkey; is; the best State of the World) Turkey is the best State of the World Turkey is in Europe and is the best State of the World ! +1 (Turkish membership of the EU; should be barred; just because Turkey is Muslim) Turkish membership of the EU should be barred just because Turkey is Muslim Turkish membership of the EU should be barred just because Turkey is Muslim . +1 (Turkey; just is; Muslim) Turkey just is Muslim Turkish membership of the EU should be barred just because Turkey is Muslim . +1 (Visitation; will be; from 1 to 3 pm Sunday at DL Newcomer Funeral Home) Visitation will be from 1 to 3 pm Sunday at DL Newcomer Funeral Home Visitation will be from 1 to 3 pm Sunday at DL Newcomer Funeral Home , Brodhead . +1 (Visitation; will be from 6-8 PM; Friday) Visitation will be from 6-8 PM Friday Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Visitation; will be from 6-8 PM; at the Schilling Funeral Home) Visitation will be from 6-8 PM at the Schilling Funeral Home Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Visitation; will be; from 6-8 PM) Visitation will be from 6-8 PM Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Wal-Mart; has been in the news; lately) Wal-Mart has been in the news lately Wal-Mart has been in the news lately on a number of fronts . +1 (Wal-Mart; has been in the news; on a number of fronts) Wal-Mart has been in the news on a number of fronts Wal-Mart has been in the news lately on a number of fronts . +1 (Wal-Mart; has been; in the news) Wal-Mart has been in the news Wal-Mart has been in the news lately on a number of fronts . +0 (We certainly have n't lost the war; told; reporters) We certainly have n't lost the war told reporters We certainly have n't lost the war , Perry told reporters . +0 (We; certainly have n't lost; the war) We certainly have n't lost the war We certainly have n't lost the war , Perry told reporters . +1 (Candida; is; yeast) Candida is yeast Well , Candida is yeast ; yes , just like any common yeast infection . +0 (We; ve had a great response; so far) We ve had a great response so far Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (the more the merrier; to let; us know if you are interested) the more the merrier to let us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (We; ve; had a great response so far) We ve had a great response so far Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (us; know; if you are interested) us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (the more the merrier; be; sure to let us know if you are interested) the more the merrier be sure to let us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (We; ve had; a great response) We ve had a great response Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (you; are; interested) you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (the only major party; effectively functioning; on the national level) the only major party effectively functioning on the national level When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +0 (the only major party; effectively functioning; in the United States) the only major party effectively functioning in the United States When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +1 (his party; was; the only major party effectively functioning in the United States on the national level) his party was the only major party effectively functioning in the United States on the national level When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +1 (his party; was the only major party effectively functioning in the United States on the national level; When Andrew Jackson was elected president in 1828) his party was the only major party effectively functioning in the United States on the national level When Andrew Jackson was elected president in 1828 When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +1 (Andrew Jackson; was elected; president) Andrew Jackson was elected president When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +0 (it; gave the authority to take the necessary measured force; ) it gave the authority to take the necessary measured force When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (the President; to take the necessary measured force; to protect American involvement) the President to take the necessary measured force to protect American involvement When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (Congress; passed the Gulf of Tonkin Resolution; in August 1964) Congress passed the Gulf of Tonkin Resolution in August 1964 When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (Congress; passed; the Gulf of Tonkin Resolution) Congress passed the Gulf of Tonkin Resolution When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +0 (it; gave; the President) it gave the President When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +0 (it; gave the President; the authority to take the necessary measured force) it gave the President the authority to take the necessary measured force When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +0 (it; gave the President; When Congress passed the Gulf of Tonkin Resolution in August 1964) it gave the President When Congress passed the Gulf of Tonkin Resolution in August 1964 When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (the President; to take; the necessary measured force) the President to take the necessary measured force When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (January; turns; to February) January turns to February When January turns to February , you ca n't afford that kind of goal with any regularity . +0 (you; ca n't afford; that kind of goal) you ca n't afford that kind of goal When January turns to February , you ca n't afford that kind of goal with any regularity . +0 (you; ca n't afford that kind of goal; When January turns to February) you ca n't afford that kind of goal When January turns to February When January turns to February , you ca n't afford that kind of goal with any regularity . +1 (the electronics industry; was changed; forever) the electronics industry was changed forever When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (RoHS; went; into effect) RoHS went into effect When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (RoHS; went; in the European Union) RoHS went in the European Union When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (RoHS; went into effect; in the European Union) RoHS went into effect in the European Union When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (the electronics industry; was changed; When RoHS went into effect in the European Union) the electronics industry was changed When RoHS went into effect in the European Union When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (competition; was increasing in; 1984) competition was increasing in 1984 When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the key strategy adopted for producing an internationally competitive economy; was increasing competition in; 1984) the key strategy adopted for producing an internationally competitive economy was increasing competition in 1984 When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the key strategy adopted for producing an internationally competitive economy; was increasing; competition) the key strategy adopted for producing an internationally competitive economy was increasing competition When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the Labour Government; came to; power) the Labour Government came to power When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (Jerusalem; being an open city under; neither nations control) Jerusalem being an open city under neither nations control When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (the UN; created; Israel) the UN created Israel When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +0 (they; defined a specific geographical area for their nation and the remaining lands; When the UN created Israel) they defined a specific geographical area for their nation and the remaining lands When the UN created Israel When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +0 (they; defined; a specific geographical area for their nation and the remaining lands) they defined a specific geographical area for their nation and the remaining lands When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (the Pats; played; the Colts) the Pats played the Colts Where was mika when the Pats played the Colts . +1 (Jerusalem; is the capital of; Israel) Jerusalem is the capital of Israel While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Ahmadinejad; envisions; the nest of Jewish cockroaches) Ahmadinejad envisions the nest of Jewish cockroaches While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Tel Aviv; is probably; where Ahmadinejad envisions the nest of Jewish cockroaches as originating from) Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Jerusalem; is; the capital of Israel) Jerusalem is the capital of Israel While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (the Wi-Fi ZONE logo; are trademarks of; the Wi-Fi Alliance) the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance Wi-Fi and the Wi-Fi logo are registered trademarks of the Wi-Fi Alliance ; and Wi-Fi ZONE , the Wi-Fi CERTIFIED logo , the Wi-Fi Alliance logo and the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance . +1 (Wi-Fi ZONE; are; trademarks of the Wi-Fi Alliance) Wi-Fi ZONE are trademarks of the Wi-Fi Alliance Wi-Fi and the Wi-Fi logo are registered trademarks of the Wi-Fi Alliance ; and Wi-Fi ZONE , the Wi-Fi CERTIFIED logo , the Wi-Fi Alliance logo and the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance . +1 (the Romans; waited; for the arrival of Claudius) the Romans waited for the arrival of Claudius With the local tribes promptly subdued , the Romans built a fort and waited for the arrival of Claudius . +1 (the Romans; built; a fort) the Romans built a fort With the local tribes promptly subdued , the Romans built a fort and waited for the arrival of Claudius . +1 (Yao Ming; scored; 36 points) Yao Ming scored 36 points Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +0 (19 rebounds to help the Rockets; hold on; to beat the Warriors on Tuesday night) 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +1 (Yao Ming; had; 19 rebounds to help the Rockets) Yao Ming had 19 rebounds to help the Rockets Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +1 (Hitler; was; a christian) Hitler was a christian Yes , Virginia , Hitler was a christian . +1 (soldiers; will be; responsible for what they have done) soldiers will be responsible for what they have done You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +0 (You; must understand; that soldiers will be responsible for what they have done) You must understand that soldiers will be responsible for what they have done You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thaksin; told; reporters) Thaksin told reporters You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thaksin; told; Thursday) Thaksin told Thursday You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +0 (they; have done; ) they have done You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thaksin; told reporters; Thursday) Thaksin told reporters Thursday You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +0 (You; ll give a hernia; ) You ll give a hernia Youll give yourself a hernia ! +0 (You; ll give; yourself) You ll give yourself Youll give yourself a hernia ! +0 (You; ll give yourself; a hernia) You ll give yourself a hernia Youll give yourself a hernia ! +0 (You; ll; give yourself a hernia) You ll give yourself a hernia Youll give yourself a hernia ! diff --git a/srlie/data/gold-correctness.txt b/srlie/data/gold-correctness.txt new file mode 100644 index 0000000..a8b3a06 --- /dev/null +++ b/srlie/data/gold-correctness.txt @@ -0,0 +1,669 @@ +0 (8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company; announced; today) 8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today 8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today that the US 1/8 /08 - Millipore and Gen-Probe Launch First Real-Time Test for Detecting Microbial Contamination in Biopharmaceutical Applications Pharmaceutical Writers/Business Editors BILLERICA , Mass . +1 (A multi-layered glam-rock epic; tracing; the rise and fall of a mythical rock star) A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star , the film starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard . +1 (A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star; starred; Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard) A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star , the film starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard . +1 (there; were an estimated 37 Elvis impersonators in; the world) there were an estimated 37 Elvis impersonators in the world According to the San Francisco Chronicle When Elvis Presley died in 1977 , there were an estimated 37 Elvis impersonators in the world . +1 (Elvis Presley; died; in 1977) Elvis Presley died in 1977 According to the San Francisco Chronicle When Elvis Presley died in 1977 , there were an estimated 37 Elvis impersonators in the world . +1 (he; founded; a City) he founded a City After Constantine came to power in the fourth century , there was not only the dramatic change of the Empire becoming Christian , but he founded a City he named after himself , Constantinople . +1 (he; named; after himself) he named after himself After Constantine came to power in the fourth century , there was not only the dramatic change of the Empire becoming Christian , but he founded a City he named after himself , Constantinople . +1 (Taylor; died; in office) Taylor died in office After a life of rigorous service , Taylor died in office in 1850 . +1 (Taylor; died; in 1850) Taylor died in 1850 After a life of rigorous service , Taylor died in office in 1850 . +1 (Taylor; died; After a life of rigorous service) Taylor died After a life of rigorous service After a life of rigorous service , Taylor died in office in 1850 . +0 (I; to take to get; my car) I to take to get my car Alex was at work so I had to take a taxi to get my car . +1 (Alex; was; at work) Alex was at work Alex was at work so I had to take a taxi to get my car . +1 (I; to take; a taxi) I to take a taxi Alex was at work so I had to take a taxi to get my car . +1 (I; to take a taxi; to get my car) I to take a taxi to get my car Alex was at work so I had to take a taxi to get my car . +1 (I; to take a taxi to get; my car) I to take a taxi to get my car Alex was at work so I had to take a taxi to get my car . +1 (they; can help you; with any travel related assistance) they can help you with any travel related assistance All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +1 (All staff; speaks; English) All staff speaks English All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +0 (they; can help you; usually) they can help you usually All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +1 (they; can help; you) they can help you All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +1 (the site; is in; Portuguese) the site is in Portuguese Although the site is in Portuguese , do n't be thrown off . +0 ('s disease; is the leading cause of; dementia) 's disease is the leading cause of dementia Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (the number of Americans with Alzheimer 's; could quadruple; within 50 years) the number of Americans with Alzheimer 's could quadruple within 50 years Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (Alzheimer 's disease; is; the leading cause of dementia in the United States) Alzheimer 's disease is the leading cause of dementia in the United States Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (we; find; ways to prevent it) we find ways to prevent it Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +0 (we; find to prevent; it) we find to prevent it Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (Amenities; include; two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities) Amenities include two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities Amenities include two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities . +0 (he; would run; as one) he would run as one And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +1 (Abraham Lincoln; was; a Republican) Abraham Lincoln was a Republican And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (he; was alive; today) he was alive today And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +1 (I; do n't think; he would run as one if he was alive today) I do n't think he would run as one if he was alive today And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (he; was; alive) he was alive And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +1 (Sarah; saw; the son of Hagar) Sarah saw the son of Hagar And Sarah saw the son of Hagar . +1 (Voldemort; killed; Harry 's parents) Voldemort killed Harry 's parents And Voldemort killed Harry 's parents with Avada Kedavra , the only known survivor ever of which is Harry himself . +1 (Avada Kedavra; is; Harry) Avada Kedavra is Harry And Voldemort killed Harry 's parents with Avada Kedavra , the only known survivor ever of which is Harry himself . +1 (Yahoo; even bought; Flickr) Yahoo even bought Flickr And even after Yahoo bought Flickr , no one is really hyped about it . +0 (airplanes; taught to fear; ) airplanes taught to fear And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (airplanes; hit; the towers) airplanes hit the towers And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (heaven; 's just; too far) heaven 's just too far And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (airplanes; taught; Americans) airplanes taught Americans And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (airplanes; taught Americans; to fear) airplanes taught Americans to fear And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (he; 'd be; here) he 'd be here And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (20 rebounds; to lead; Washington 's 108-104 overtime win against Toronto) 20 rebounds to lead Washington 's 108-104 overtime win against Toronto Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Antawn Jamison; scored; 24 points) Antawn Jamison scored 24 points Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Antawn Jamison; grabbed 20 rebounds; to lead Washington 's 108-104 overtime win against Toronto) Antawn Jamison grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Antawn Jamison; grabbed; 20 rebounds) Antawn Jamison grabbed 20 rebounds Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (the Solomon Amendment; regulates; conduct) the Solomon Amendment regulates conduct As a general matter , the Solomon Amendment regulates conduct , not speech . +1 (China; ceded Taiwan; in 1895) China ceded Taiwan in 1895 As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (China; ceded Taiwan; to Japan) China ceded Taiwan to Japan As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (China; ceded; Taiwan) China ceded Taiwan As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (Cyprus; adopted; the Euro) Cyprus adopted the Euro As you may know , Cyprus adopted the Euro as of Jan . +1 (the firm; has; offices in California , New York , London , and Brussels) the firm has offices in California , New York , London , and Brussels Based in Washington , DC , the firm also has offices in California , New York , London , and Brussels . +1 (people; should not eat; Peter Pan) people should not eat Peter Pan Because of a possible association with Salmonella , the FDA has issued a warning that people should not eat Peter Pan . +1 (the FDA; has issued; a warning that people should not eat Peter Pan) the FDA has issued a warning that people should not eat Peter Pan Because of a possible association with Salmonella , the FDA has issued a warning that people should not eat Peter Pan . +1 (he; was fighting; for the throne) he was fighting for the throne Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (he; was fighting; at the Battle of Milvian Bridge) he was fighting at the Battle of Milvian Bridge Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (Constantine; became; Emperor) Constantine became Emperor Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (he; was fighting for the throne; Before Constantine became Emperor) he was fighting for the throne Before Constantine became Emperor Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (he; was fighting for the throne; at the Battle of Milvian Bridge) he was fighting for the throne at the Battle of Milvian Bridge Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (Benazir Bhutto; was prime minister of; Pakistan) Benazir Bhutto was prime minister of Pakistan Benazir Bhutto was prime minister of Pakistan in the 1990s . +1 (Benazir Bhutto; was; prime minister of Pakistan) Benazir Bhutto was prime minister of Pakistan Benazir Bhutto was prime minister of Pakistan in the 1990s . +0 (I; did my blog; hopping) I did my blog hopping Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (Blogger; had problems; last night &) Blogger had problems last night & Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (it; would n't let; me) it would n't let me Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; held off uploading; in case) I held off uploading in case Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (Blogger; had; problems) Blogger had problems Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (Blogger; had problems; last night &) Blogger had problems last night & Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (I; noticed; everyones pictures were missing) I noticed everyones pictures were missing Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (I; noticed everyones pictures were missing; as I did my blog hopping) I noticed everyones pictures were missing as I did my blog hopping Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (I; did; my blog) I did my blog Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +1 (Brands; include; Hugo Boss , Gucci , Dolce &) Brands include Hugo Boss , Gucci , Dolce & Brands include Hugo Boss , Gucci , Dolce & Gabbana , Chanel , Calvin Klein , Jean Paul Gaultier and many more . +1 (Britain; had lost; an empire) Britain had lost an empire Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +1 (Britain; gained; a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital) Britain gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +1 (hundreds of colourful troops; to process around; the nation 's capital) hundreds of colourful troops to process around the nation 's capital Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +0 (a commonwealth; supplied in; 1953) a commonwealth supplied in 1953 Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +1 (Burial; will be; in Bethel Cemetery) Burial will be in Bethel Cemetery Burial will be in Bethel Cemetery near here . +1 (Burial; will be in Bethel Cemetery; near here) Burial will be in Bethel Cemetery near here Burial will be in Bethel Cemetery near here . +1 (Bush; claimed; Iraq had weapons of mass destruction) Bush claimed Iraq had weapons of mass destruction Bush claimed Iraq had weapons of mass destruction . +1 (Iraq; had; weapons of mass destruction) Iraq had weapons of mass destruction Bush claimed Iraq had weapons of mass destruction . +0 (he; lost; it) he lost it Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +1 (Bush; won New Mexico; in 2004) Bush won New Mexico in 2004 Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +1 (Bush; won; New Mexico) Bush won New Mexico Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +1 (a priest; has sexually abused; a minor) a priest has sexually abused a minor But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +0 (USA TODAY; reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked; ) USA TODAY reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (a priest who has sexually abused a minor; should be removed; from the priesthood) a priest who has sexually abused a minor should be removed from the priesthood But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +0 (Catholics; surveyed; last week) Catholics surveyed last week But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (89 % of Catholics; said; a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked) 89 % of Catholics said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (USA TODAY; reported; that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked) USA TODAY reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (Rome; adopted; Christianity) Rome adopted Christianity But after Rome adopted Christianity , the organ died out . +1 (the organ; died out; after Rome adopted Christianity) the organ died out after Rome adopted Christianity But after Rome adopted Christianity , the organ died out . +1 (Charlie; does; something completely different) Charlie does something completely different But then Charlie does something completely different . +0 (Charlie; does something completely different; then) Charlie does something completely different then But then Charlie does something completely different . +1 (Hurricane Katrina; struck the Gulf Coast; in 2005) Hurricane Katrina struck the Gulf Coast in 2005 But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +1 (But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed; leading; to a reorganization) But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed leading to a reorganization But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +1 (Hurricane Katrina; struck; the Gulf Coast) Hurricane Katrina struck the Gulf Coast But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +1 (he; to dispense; with opinion) he to dispense with opinion By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +1 (he; appeared; ready to dispense with opinion) he appeared ready to dispense with opinion By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (Clinton; appeared had been; for eight months) Clinton appeared had been for eight months By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (Clinton; appeared had been; the time) Clinton appeared had been the time By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (he; thought entirely; By the time) he thought entirely By the time By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (he; appeared; By the time) he appeared By the time By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +0 (Callie; tells she ca n't compete with her; ) Callie tells she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +1 (Callie; tells; Izzie) Callie tells Izzie Callie tells Izzie she ca n't compete with her : George gets her . +1 (George; gets; her) George gets her Callie tells Izzie she ca n't compete with her : George gets her . +1 (Callie; tells Izzie; she ca n't compete with her) Callie tells Izzie she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +1 (she; ca n't compete; with her) she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +1 (Canadians; speak; English) Canadians speak English Canadians speak English ; Americans do too . +1 (China; annexed Tibet; in 1950) China annexed Tibet in 1950 China annexed Tibet by force in 1950 . +1 (China; annexed; Tibet) China annexed Tibet China annexed Tibet by force in 1950 . +1 (Cardinal Joseph Ratzinger; is elected; pope) Cardinal Joseph Ratzinger is elected pope Choosing the name Benedict XVI , Cardinal Joseph Ratzinger is elected pope . +1 (Chris and his wife; have; a son) Chris and his wife have a son Chris and his wife Kasey have a son , Christian . +1 (Christmas; was; a blur there) Christmas was a blur there Christmas was a blur there ! +1 (Clients; included; EMC^2 , Lucent , Southwestern Bell Corporation , and Novell) Clients included EMC^2 , Lucent , Southwestern Bell Corporation , and Novell Clients included EMC^2 , Lucent , Southwestern Bell Corporation , and Novell . +1 (Complimentary amenities; include; local calls and wireless Internet access) Complimentary amenities include local calls and wireless Internet access Complimentary amenities include local calls and wireless Internet access . +1 (Countries represented; included; Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam) Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam . +1 (Countries; represented included; Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam) Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam . +1 (Courses; begin; in September) Courses begin in September Courses begin in September and finish end of May . +1 (Courses; finish; end of May) Courses finish end of May Courses begin in September and finish end of May . +1 (the Timberwolves; have lost; nine of the last 10 road games) the Timberwolves have lost nine of the last 10 road games Craig Smith scored 30 points and grabbed 10 rebounds and Al Jefferson had 23 points and 15 rebounds for the Timberwolves who have lost nine of the last 10 road games . +1 (Craig Smith; grabbed; 10 rebounds and Al Jefferson) Craig Smith grabbed 10 rebounds and Al Jefferson Craig Smith scored 30 points and grabbed 10 rebounds and Al Jefferson had 23 points and 15 rebounds for the Timberwolves who have lost nine of the last 10 road games . +1 (Customers; include; all the RBOCs) Customers include all the RBOCs Customers include all the RBOCs , GTE , British Telecom , Australia Telecom , Bell Canada , BC Tel , the US Military and many independent telcos . +1 (Danny; fell in love; in 2004) Danny fell in love in 2004 Danny fell in love with Kathy 's energy , sense of humor and undying loyalty in 2004 and subsequently came to appreciate the charms of the Australian Cattle Dogs . +1 (Danny; fell; in love) Danny fell in love Danny fell in love with Kathy 's energy , sense of humor and undying loyalty in 2004 and subsequently came to appreciate the charms of the Australian Cattle Dogs . +1 (David; goes; to school) David goes to school David goes to school . +1 (Marylands # 1 Tire Company; has immediate opportunities for; the right individuals) Marylands # 1 Tire Company has immediate opportunities for the right individuals Details : Marylands # 1 Tire Company , Mr. Tire , has immediate opportunities for the right individuals . +0 (Pullen LLP; delivers; audit) Pullen LLP delivers audit Details : McGladrey & Pullen LLP delivers audit and attest services . +0 (Pullen LLP; attest; services) Pullen LLP attest services Details : McGladrey & Pullen LLP delivers audit and attest services . +0 (the show; is 19+ /; $ 5) the show is 19+ / $ 5 Doors are at 9pm and the show is 19+ / $ 5 . +1 (Doors; are; at 9pm) Doors are at 9pm Doors are at 9pm and the show is 19+ / $ 5 . +1 (the show; is; $ 5) the show is $ 5 Doors are at 9pm and the show is 19+ / $ 5 . +1 (El Salvador; consists of one of the largest populations in that Region; with approximately 6.9 million people) El Salvador consists of one of the largest populations in that Region with approximately 6.9 million people El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (El Salvador; is located; in Central America) El Salvador is located in Central America El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (El Salvador; consists; of one of the largest populations in that Region) El Salvador consists of one of the largest populations in that Region El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (Charles II; [is] son of; Charles I.) Charles II [is] son of Charles I. England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (England; became; a republic) England became a republic England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (Anne Stuart; became Queen; in 1702) Anne Stuart became Queen in 1702 England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +0 (son of Charles I. The Stuart line; continued; to rule England and Scotland until Anne Stuart) son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +0 (son of Charles I. The Stuart line; continued to rule England and Scotland; until Anne Stuart) son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (a new Parliament; was installed; under Charles II) a new Parliament was installed under Charles II England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (she; died; when Leia was very young) she died when Leia was very young Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +0 (Luke; asks if she remembers her real mother; ) Luke asks if she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (Luke; asks; Leia) Luke asks Leia Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (Luke; asks Leia; if she remembers her real mother) Luke asks Leia if she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (she; says yes; When Luke asks Leia) she says yes When Luke asks Leia Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (she; remembers; her real mother) she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (she; says; yes) she says yes Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (the bread and wine; are the body and blood of; Christ) the bread and wine are the body and blood of Christ Eucharist-The elements of the communion supper where the bread and wine are the body and blood of Christ . +1 (the bread and wine; are; the body and blood of Christ) the bread and wine are the body and blood of Christ Eucharist-The elements of the communion supper where the bread and wine are the body and blood of Christ . +1 (the workers of Opar; to mine; the gold) the workers of Opar to mine the gold Ever since Atlantis sank beneath the waves , the workers of Opar have continued to mine the gold . +1 (Atlantis; have continued Ever sank; beneath the waves) Atlantis have continued Ever sank beneath the waves Ever since Atlantis sank beneath the waves , the workers of Opar have continued to mine the gold . +1 (the workers of Opar; have continued; Ever since Atlantis sank beneath the waves) the workers of Opar have continued Ever since Atlantis sank beneath the waves Ever since Atlantis sank beneath the waves , the workers of Opar have continued to mine the gold . +1 (Exxon; merged with Mobil; in 1999) Exxon merged with Mobil in 1999 Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (Exxon; is called; ExxonMobil) Exxon is called ExxonMobil Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (Exxon; merged; with Mobil) Exxon merged with Mobil Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (Exxon; is called ExxonMobil; now) Exxon is called ExxonMobil now Exxon merged with Mobil in 1999 and is now called ExxonMobil . +0 (Filming; returning; to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda) Filming returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Filming; began; in September) Filming began in September Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Filming; began; with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon) Filming began with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Filming; began with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon; in September) Filming began with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon in September Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Florence; is the capital of; Tuscany) Florence is the capital of Tuscany Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (Florence; is; at the heart of beautiful countryside) Florence is at the heart of beautiful countryside Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (Florence; is; the capital of Tuscany) Florence is the capital of Tuscany Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +0 (Florist & Gifts; also delivers Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab to; the following facilities) Florist & Gifts also delivers Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab to the following facilities Florist & Gifts also delivers to the following facilities : Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab . +0 (Florist & Gifts; also delivers; Adams Funeral & Memorial Care) Florist & Gifts also delivers Adams Funeral & Memorial Care Florist & Gifts also delivers to the following facilities : Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab . +1 (Satan; fall; when he made his choice) Satan fall when he made his choice For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Satan; fall; from the sky) Satan fall from the sky For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Jesus; saw; Satan fall like lightning from the sky) Jesus saw Satan fall like lightning from the sky For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (he; made; his choice) he made his choice For Jesus saw Satan fall like lightning from the sky when he made his choice . +0 (Jesus; saw Satan fall like lightning from the sky; For) Jesus saw Satan fall like lightning from the sky For For Jesus saw Satan fall like lightning from the sky when he made his choice . +0 (life here; is; no better or worse than) life here is no better or worse than For all the spin and propaganda , life here is no better or worse than when Blair came to power , no matter how you dress up his great 'achievements ' . +0 (you; dress up; his great 'achievements) you dress up his great 'achievements For all the spin and propaganda , life here is no better or worse than when Blair came to power , no matter how you dress up his great 'achievements ' . +1 (Suharto; [is] Former dictator [of]; Indonesian) Suharto [is] Former dictator [of] Indonesian Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +0 (doctors; in called; a miraculous recovery) doctors in called a miraculous recovery Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +0 (doctors; in called; after more than two weeks on life support) doctors in called after more than two weeks on life support Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; moved; his hands) Former Indonesian dictator Suharto moved his hands Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; in a whisper) Former Indonesian dictator Suharto spoke in a whisper Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; today) Former Indonesian dictator Suharto spoke today Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure) Former Indonesian dictator Suharto spoke in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (doctors; called; a miraculous recovery) doctors called a miraculous recovery Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (doctors; called a miraculous recovery; after more than two weeks on life support) doctors called a miraculous recovery after more than two weeks on life support Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (the company; is headquartered; in Spokane , Washington) the company is headquartered in Spokane , Washington Founded in 1977 , the company is headquartered in Spokane , Washington . +0 (the company; is headquartered; Founded in 1977) the company is headquartered Founded in 1977 Founded in 1977 , the company is headquartered in Spokane , Washington . +1 (Fred Thompson; is running for president; for one reason) Fred Thompson is running for president for one reason Fred Thompson is running for president for one reason and one reason only . +1 (Fred Thompson; is running; for president) Fred Thompson is running for president Fred Thompson is running for president for one reason and one reason only . +1 (Fred; is; the Best Choice) Fred is the Best Choice Fred is the Best Choice . +1 (Funeral service; will be at 1:30 pm; Saturday) Funeral service will be at 1:30 pm Saturday Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Funeral service; will be at 1:30 pm; at Kimple Funeral Chapel in Ellinwood) Funeral service will be at 1:30 pm at Kimple Funeral Chapel in Ellinwood Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Funeral service; will be; at 1:30 pm) Funeral service will be at 1:30 pm Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Gomebox; will be; the sole arbiter as to what constitutes a violation of the AUP) Gomebox will be the sole arbiter as to what constitutes a violation of the AUP Gomebox will be the sole arbiter as to what constitutes a violation of the AUP. +1 (the couple; have; three children) the couple have three children He is married to Donna , and the couple have three children , Ruth , Anna , and Samuel . +1 (He; is; married to Donna) He is married to Donna He is married to Donna , and the couple have three children , Ruth , Anna , and Samuel . +1 (Hermione; looked at Harry; again) Hermione looked at Harry again Hermione looked at Harry again , annoyed and perplexed . +1 (Hermione; looked; at Harry) Hermione looked at Harry Hermione looked at Harry again , annoyed and perplexed . +0 (my name; is; Cheryl and I) my name is Cheryl and I Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +1 (Cheryl and I; have; a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD ,) Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +1 (I; 've having; the same problem with my PC) I 've having the same problem with my PC Hi my name is Suzanne , I 've having the same problem with my PC , no sound at all . +1 (my name; is; Suzanne) my name is Suzanne Hi my name is Suzanne , I 've having the same problem with my PC , no sound at all . +1 (Hillary; is; a Liar) Hillary is a Liar Hillary is a Liar ! +1 (Houston; is the fourth largest city in; the US) Houston is the fourth largest city in the US Houston is the fourth largest city in the US and growing . +1 (Houston; is; the fourth largest city in the US and growing) Houston is the fourth largest city in the US and growing Houston is the fourth largest city in the US and growing . +1 (China; to speed up; modernization of military) China to speed up modernization of military Hu says China to speed up modernization of military . +1 (Hu; says; China to speed up modernization of military) Hu says China to speed up modernization of military Hu says China to speed up modernization of military . +1 (their campaign; is thrown; into utter chaos) their campaign is thrown into utter chaos Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (Romney; wins; MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination) Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (Huck; wins; IA) Huck wins IA Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (McCain; wins; NH) McCain wins NH Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (the LORD; to swallow up; Jonah) the LORD to swallow up Jonah I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +0 (I; Like; this) I Like this I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +0 (I; dislike; this) I dislike this I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +0 (I; believe; the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption) I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (Republicans; acted like Democrats; in terms of spending) Republicans acted like Democrats in terms of spending I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (the Democrats; won; majorities) the Democrats won majorities I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (Republicans; acted; like Democrats) Republicans acted like Democrats I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +0 (I; love too; sports) I love too sports I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +1 (Brett Favre; so is; a great football player minus his 04-05 season) Brett Favre so is a great football player minus his 04-05 season I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +1 (Shaq; is; the man) Shaq is the man I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +1 (she; looked AMAZING; on New Years) she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +0 (Spencer; told that she looked AMAZING on New Years; ) Spencer told that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (Spencer; told Heidi; in Brody 's absence) Spencer told Heidi in Brody 's absence I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (Spencer; told; Heidi) Spencer told Heidi I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (Spencer; told Heidi; that she looked AMAZING on New Years) Spencer told Heidi that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (I; noticed; that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years) I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +0 (I; think; that is highly appropriate) I think that is highly appropriate I think that is highly appropriate , given the importance of these Games , Howard told parliament . +0 (that; is; highly appropriate) that is highly appropriate I think that is highly appropriate , given the importance of these Games , Howard told parliament . +1 (Howard; told; parliament) Howard told parliament I think that is highly appropriate , given the importance of these Games , Howard told parliament . +0 (I; had mentioned my book; previously) I had mentioned my book previously I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +1 (I; was n't; sure I had mentioned my book previously) I was n't sure I had mentioned my book previously I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +0 (I; had mentioned; my book) I had mentioned my book I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +1 (Beckham; told; reporters) Beckham told reporters I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Beckham; told; Monday) Beckham told Monday I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Beckham; told reporters; Monday) Beckham told reporters Monday I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (I; would never have done; that) I would never have done that I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Germany; attacked; France) Germany attacked France In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared; to defend Paris) Free Polish Forces prepared to defend Paris In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared to defend; Paris) Free Polish Forces prepared to defend Paris In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared to defend Paris; when Germany attacked France) Free Polish Forces prepared to defend Paris when Germany attacked France In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared to defend Paris; In May 1940) Free Polish Forces prepared to defend Paris In May 1940 In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (that photograph; was taken; in 1993) that photograph was taken in 1993 In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (an official US delegation; pursuing; the POW/MIA issue) an official US delegation pursuing the POW/MIA issue In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (Kerry; went; to Vietnam) Kerry went to Vietnam In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (Kerry; went; 1993) Kerry went 1993 In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (she; even insists; she loves Lucas) she even insists she loves Lucas In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; loves; Lucas) she loves Lucas In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; could marry; EJ) she could marry EJ In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +0 (Sami; asked for a divorce; ) Sami asked for a divorce In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; end; the feud between the Bradys and the Dimera) she end the feud between the Bradys and the Dimera In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sami; asked for a divorce; so that she could marry EJ and end the feud between the Bradys and the Dimera) Sami asked for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sami; asked Lucas; In mid - October 2007) Sami asked Lucas In mid - October 2007 In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sami; asked; Lucas) Sami asked Lucas In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sami; asked Lucas; for a divorce) Sami asked Lucas for a divorce In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sami; asked Lucas; so that she could marry EJ and end the feud between the Bradys and the Dimera) Sami asked Lucas so that she could marry EJ and end the feud between the Bradys and the Dimera In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Iraq; had; ties to Al Qaeda) Iraq had ties to Al Qaeda In the beginning , we were going because Iraq had ties to Al Qaeda . +1 (David; meets Goliath; this year) David meets Goliath this year It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +0 (It; 's; David) It 's David It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (Gwen Todd and Steve Strayer; running; against three incumbents) Gwen Todd and Steve Strayer running against three incumbents It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (David; meets Goliath; on the Washington Hospital Board of Directors) David meets Goliath on the Washington Hospital Board of Directors It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (David; meets; Goliath) David meets Goliath It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +0 (It; is the time that; the sun) It is the time that the sun It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +1 (people; live; in North America) people live in North America It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +1 (it; 's; the first day of fall) it 's the first day of fall It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +0 (history; is bunk as; he) history is bunk as he It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +1 (Henry Ford; said; history is bunk as he was busy reinventing American industry a century ago) Henry Ford said history is bunk as he was busy reinventing American industry a century ago It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +1 (It; was; Henry Ford) It was Henry Ford It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +1 (he; reinventing; American industry) he reinventing American industry It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +1 (Italy; has won; the world cup) Italy has won the world cup Italy has won the world cup ! +0 (Ive; encountered trying; to publish a sid file) Ive encountered trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +1 (Ive; encountered; a problem) Ive encountered a problem Ive encountered a problem while trying to publish a sid file . +1 (Ive; encountered a problem; while trying to publish a sid file) Ive encountered a problem while trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +1 (Ive; encountered a problem trying; to publish a sid file) Ive encountered a problem trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +1 (Windows XP; has; VMWare installed) Windows XP has VMWare installed Ive got a laptop running Windows XP , which also has VMWare installed . +1 (Ive; got; a laptop running Windows XP ,) Ive got a laptop running Windows XP , Ive got a laptop running Windows XP , which also has VMWare installed . +1 (a laptop; running; Windows XP) a laptop running Windows XP Ive got a laptop running Windows XP , which also has VMWare installed . +1 (Ive; got; ideas) Ive got ideas Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +1 (Ive; am; prone to be captivated by bright and shinny objects) Ive am prone to be captivated by bright and shinny objects Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +1 (Ive; also got; ADD) Ive also got ADD Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +1 (the web; has made; my life easier) the web has made my life easier Ive just moved house and have found some ways the web has made my life easier . +1 (Ive; just moved; house) Ive just moved house Ive just moved house and have found some ways the web has made my life easier . +1 (Ive; just moved; house) Ive just moved house Ive just moved house and have found some ways the web has made my life easier . +1 (Ive; have found; some ways the web has made my life easier) Ive have found some ways the web has made my life easier Ive just moved house and have found some ways the web has made my life easier . +1 (the college admission process; is a walk in; the park) the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (you; to know; that after this experience , I can tell you the college admission process is a walk in the park) you to know that after this experience , I can tell you the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (Ive; posted; the video) Ive posted the video Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (the college admission process; is; a walk in the park) the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (Ive; want; you to know that after this experience , I can tell you the college admission process is a walk in the park) Ive want you to know that after this experience , I can tell you the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (I; can tell you; after this experience) I can tell you after this experience Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (I; can tell you; the college admission process) I can tell you the college admission process Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (I; can tell; you) I can tell you Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (people; like the calf head sound; in the studio) people like the calf head sound in the studio Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +1 (Ive; worked; with people) Ive worked with people Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +1 (people; like; the calf head sound) people like the calf head sound Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +1 (Jane; has; two children and a husband , all of whom share a passion for being in the country) Jane has two children and a husband , all of whom share a passion for being in the country Jane has two children and a husband , all of whom share a passion for being in the country , being on the beach and eating . +1 (all of whom; share; a passion for being in the country) all of whom share a passion for being in the country Jane has two children and a husband , all of whom share a passion for being in the country , being on the beach and eating . +1 (Jeff and his wife; have; three children) Jeff and his wife have three children Jeff and his wife Kathy have three children : Kyle , Kristin and Nathanael . +1 (Jesus; came; to bring Life) Jesus came to bring Life Jesus came to bring Life , abundant Life . +1 (Jesus; to bring; Life) Jesus to bring Life Jesus came to bring Life , abundant Life . +1 (Jesus; did n't have; a human father) Jesus did n't have a human father Jesus did n't have a human father . +1 (Jesus; is the only begotten Son of; God) Jesus is the only begotten Son of God Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (Jesus; is; the only begotten Son of God) Jesus is the only begotten Son of God Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (the only begotten Son of God; born; of the virgin Mary) the only begotten Son of God born of the virgin Mary Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (Jesus; was with the disciples; for forty days) Jesus was with the disciples for forty days Jesus was with the disciples for forty days after the resurrection . +1 (Jesus; was; with the disciples) Jesus was with the disciples Jesus was with the disciples for forty days after the resurrection . +1 (Jesus; will return at; the advent of the messianic age) Jesus will return at the advent of the messianic age Jesus will return from heaven at the advent of the messianic age , slay the Dajjal near Jerusalem , and then pray behind the Mahdi . +1 (Jesus; will return from; heaven) Jesus will return from heaven Jesus will return from heaven at the advent of the messianic age , slay the Dajjal near Jerusalem , and then pray behind the Mahdi . +1 (the Dajjal; then pray behind; the Mahdi) the Dajjal then pray behind the Mahdi Jesus will return from heaven at the advent of the messianic age , slay the Dajjal near Jerusalem , and then pray behind the Mahdi . +1 (John Edwards; is; a trial lawyer and Hillary Rodham Clinton) John Edwards is a trial lawyer and Hillary Rodham Clinton John Edwards is a trial lawyer and Hillary Rodham Clinton might make a dandy Attorney General . +1 (John Edwards; is; a trial lawyer) John Edwards is a trial lawyer John Edwards is a trial lawyer and Hillary Rodham Clinton might make a dandy Attorney General . +1 (Hillary Rodham Clinton; might make; a dandy Attorney General) Hillary Rodham Clinton might make a dandy Attorney General John Edwards is a trial lawyer and Hillary Rodham Clinton might make a dandy Attorney General . +1 (Jones; carries twice; the ball) Jones carries twice the ball Jones carries the ball twice and gets almost as much yardage as Foster . +1 (Jones; gets; almost as much yardage) Jones gets almost as much yardage Jones carries the ball twice and gets almost as much yardage as Foster . +0 (Just one simple Google AdWords campaign; earns thousands per month; ) Just one simple Google AdWords campaign earns thousands per month Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +1 (Just one simple Google AdWords campaign; earns me; thousands per month) Just one simple Google AdWords campaign earns me thousands per month Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +0 (Just one simple Google AdWords campaign; earns; me) Just one simple Google AdWords campaign earns me Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +1 (KOBE; is the best player in; the NBA) KOBE is the best player in the NBA KOBE is the best player in the NBA . +1 (KOBE; is; the best player in the NBA) KOBE is the best player in the NBA KOBE is the best player in the NBA . +1 (Kerry; supported too; the war) Kerry supported too the war Kerry supported the war too . +1 (Kimi Raikkonen; wins to secure; his first F1 crown) Kimi Raikkonen wins to secure his first F1 crown Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (an investigation into possible fuel irregularites; is; pending) an investigation into possible fuel irregularites is pending Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Kimi Raikkonen; wins; the Brazilian Grand Prix) Kimi Raikkonen wins the Brazilian Grand Prix Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Kimi Raikkonen; wins the Brazilian Grand Prix to secure; his first F1 crown) Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Kevin Rudd; [is] leader [of]; Labor Party) Kevin Rudd [is] leader [of] Labor Party Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (he; to vote in the Rebecca lobo of Griffith; in Brisbane) he to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (he; arrives; to vote in the Rebecca lobo of Griffith in Brisbane) he arrives to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Labor Party leader Kevin Rudd; faces the media; as he arrives to vote in the Rebecca lobo of Griffith in Brisbane) Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Labor Party leader Kevin Rudd; faces; the media) Labor Party leader Kevin Rudd faces the media Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (he; to vote; in the Rebecca lobo of Griffith) he to vote in the Rebecca lobo of Griffith Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Languages; include; Japanese , Chinese , French , German , Spanish , Korean , and English) Languages include Japanese , Chinese , French , German , Spanish , Korean , and English Languages include Japanese , Chinese , French , German , Spanish , Korean , and English . +0 (Pandora; opened the box; all the evils in the world) Pandora opened the box all the evils in the world Later , Pandora opened the box and she let loose all the evils in the world . +1 (Pandora; opened; the box) Pandora opened the box Later , Pandora opened the box and she let loose all the evils in the world . +1 (Pandora; opened the box; Later) Pandora opened the box Later Later , Pandora opened the box and she let loose all the evils in the world . +1 (she; let; loose) she let loose Later , Pandora opened the box and she let loose all the evils in the world . +1 (Launceston; is; Tasmania 's second largest city and Australia 's third oldest city) Launceston is Tasmania 's second largest city and Australia 's third oldest city Launceston is Tasmania 's second largest city and Australia 's third oldest city . +0 (Arnold; was governor before; he) Arnold was governor before he Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 ('s; see; before he spoke at the convention) 's see before he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (he; spoke; at the convention) he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (he; spoke; in November 2003) he spoke in November 2003 Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (he; was elected; in November 2003) he was elected in November 2003 Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 (Arnold; was elected was; before he spoke at the convention) Arnold was elected was before he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (Location; was; Hayward) Location was Hayward Location was Hayward , California . +1 (Louis Blues; ended; a seven-game winless streak) Louis Blues ended a seven-game winless streak Louis Blues ended a seven-game winless streak with a 3-2 win over the Toronto Maple Leafs . +1 (the rainy season; lasts; from July) the rainy season lasts from July Malaria is holoendemic but highly seasonal in the study area ; the rainy season lasts from July until October and the main transmission period is between July and December . +1 (the main transmission period; is; between July and December) the main transmission period is between July and December Malaria is holoendemic but highly seasonal in the study area ; the rainy season lasts from July until October and the main transmission period is between July and December . +1 (Marilyn Monroe; was born; Norma Jeane Mortenson) Marilyn Monroe was born Norma Jeane Mortenson Marilyn Monroe was born Norma Jeane Mortenson on the 1st June , 1926 , in Los Angeles , California , to Gladys Baker . +1 (Marilyn Monroe; was born; on the 1st June , 1926 , in Los Angeles) Marilyn Monroe was born on the 1st June , 1926 , in Los Angeles Marilyn Monroe was born Norma Jeane Mortenson on the 1st June , 1926 , in Los Angeles , California , to Gladys Baker . +1 (Meetings; are held; at 1:00 PM) Meetings are held at 1:00 PM Meetings are held on the second Thursday of every month at 1:00 PM at St . +1 (Meetings; are held; on the second Thursday of every month) Meetings are held on the second Thursday of every month Meetings are held on the second Thursday of every month at 1:00 PM at St . +1 (Meetings; are held; on the second Wednesday of every month) Meetings are held on the second Wednesday of every month Meetings are held on the second Wednesday of every month , 7pm at Grace College . +1 (Meetings; are held; on the third Monday of every month) Meetings are held on the third Monday of every month Meetings are held on the third Monday of every month at Ft . +1 (Meetings; are held; at Ft) Meetings are held at Ft Meetings are held on the third Monday of every month at Ft . +1 (everyone; has; a safe holiday season) everyone has a safe holiday season Merry Christmas to all , and hope everyone has a safe holiday season . +0 (Merry Christmas to all; hope; everyone has a safe holiday season) Merry Christmas to all hope everyone has a safe holiday season Merry Christmas to all , and hope everyone has a safe holiday season . +1 (West Highland Terrier; named; Fergus) West Highland Terrier named Fergus Michael and his wife have a son Sam and a West Highland Terrier named Fergus , who makes his recording debut on Laugh and Play . +1 (Michael and his wife; have; a son Sam and a West Highland Terrier) Michael and his wife have a son Sam and a West Highland Terrier Michael and his wife have a son Sam and a West Highland Terrier named Fergus , who makes his recording debut on Laugh and Play . +1 (Microsoft; discards each version; after only five years) Microsoft discards each version after only five years Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +0 (Microsoft; spends developing; new versions of windows) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +0 (Microsoft; spends developing new versions of windows; ) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Microsoft; spends; billions of dollars) Microsoft spends billions of dollars Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Microsoft; spends; developing new versions of windows) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Microsoft; discards; each version) Microsoft discards each version Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Moses; led the people of Israel; for 40 years) Moses led the people of Israel for 40 years Moses led the people of Israel through the desert for 40 years . +1 (Moses; led; the people of Israel) Moses led the people of Israel Moses led the people of Israel through the desert for 40 years . +1 (Mr Smith; goes; to Washington 37) Mr Smith goes to Washington 37 Mr Smith goes to Washington 37 Your favorite movie about movies . +0 (I; Love; all Animals) I Love all Animals My name is Rachael and I Love all Animals ! +1 (My name; is; Rachael) My name is Rachael My name is Rachael and I Love all Animals ! +0 (Nathan; told that he should go ahead and build the Temple of the Lord; ) Nathan told that he should go ahead and build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +1 (Nathan; told; David) Nathan told David Nathan told David that he should go ahead and build the Temple of the Lord . +1 (Nathan; told David; that he should go ahead and build the Temple of the Lord) Nathan told David that he should go ahead and build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +1 (he; build; the Temple of the Lord) he build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +1 (he; should go; ahead) he should go ahead Nathan told David that he should go ahead and build the Temple of the Lord . +1 (No one in the world; sells; more real estate than RE/MAX) No one in the world sells more real estate than RE/MAX No one in the world sells more real estate than RE/MAX we are The Real Estate Leaders . +1 (we; are; The Real Estate Leaders) we are The Real Estate Leaders No one in the world sells more real estate than RE/MAX we are The Real Estate Leaders . +0 (Not everyone; to just whip something up; for the kids) Not everyone to just whip something up for the kids Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +1 (Not everyone; has; Photoshop or a slick little graphics program) Not everyone has Photoshop or a slick little graphics program Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +0 (Not everyone; to just whip up; something) Not everyone to just whip up something Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +1 (we; need; to just whip something up for the kids) we need to just whip something up for the kids Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +1 (we; need to just whip something up for the kids; sometimes) we need to just whip something up for the kids sometimes Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +1 (today; is; January 5th) today is January 5th OK , today is January 5th . +1 (Obama; is; a law professor and a state senator) Obama is a law professor and a state senator Obama is a law professor and a state senator . +1 (Edwards; came way back; in second) Edwards came way back in second Obama won with 37.5 % , Edwards came in second at 29.9 % , Clinton in third at 29.4 % and Bill Richardson way back in fourth at 2.1 % . +1 (Edwards; came way back; at 29.9 %) Edwards came way back at 29.9 % Obama won with 37.5 % , Edwards came in second at 29.9 % , Clinton in third at 29.4 % and Bill Richardson way back in fourth at 2.1 % . +1 (it; turns out; that I misread one of the questions , so now Ron Paul is in the lead) it turns out that I misread one of the questions , so now Ron Paul is in the lead Oops , it turns out that I misread one of the questions , so now Ron Paul is in the lead . +1 (my name; is; Ivan) my name is Ivan Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (I; am; from Bulgaria) I am from Bulgaria Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (I; am; sorry I forget to present myself) I am sorry I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (I; forget; to present myself) I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (I; forget to present; myself) I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (PAYMENT Payment; may be made; by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card) PAYMENT Payment may be made by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card PAYMENT Payment may be made by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card . +1 (Tasty Baking Company; is investing more than $ 75 million; to relocate its headquarters) Tasty Baking Company is investing more than $ 75 million to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +1 (Tasty Baking Company; is investing to relocate; its headquarters) Tasty Baking Company is investing to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +0 (PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell; announced that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard; ) PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +0 (you; are submitting; after 6 pm) you are submitting after 6 pm PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +1 (Office hours; are Monday - Friday; 8:30 am to 6:00 pm) Office hours are Monday - Friday 8:30 am to 6:00 pm PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +1 (Office hours; are; Monday-Friday) Office hours are Monday-Friday PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +1 (Paul; otherwise is; nothing but trash) Paul otherwise is nothing but trash Paul is a good guy and otherwise an intellectual-but Gravel is nothing but trash . +1 (Paul; is; a good guy) Paul is a good guy Paul is a good guy and otherwise an intellectual-but Gravel is nothing but trash . +0 (Paul; warned not to lay hands on any man suddenly; ) Paul warned not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +0 (Timothy; not to lay hands; on any man suddenly) Timothy not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +1 (Paul; warned; Timothy) Paul warned Timothy Paul warned Timothy not to lay hands on any man suddenly . +1 (Paul; warned Timothy; not to lay hands on any man suddenly) Paul warned Timothy not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +0 (Timothy; not to lay; hands) Timothy not to lay hands Paul warned Timothy not to lay hands on any man suddenly . +1 (Paul; provided; for his missionary trips) Paul provided for his missionary trips Paul was a tent maker and provided for his missionary trips by working . +1 (Paul; was; a tent maker) Paul was a tent maker Paul was a tent maker and provided for his missionary trips by working . +1 (President Bush; visits New Orleans; on the second anniversary of Hurricane Katrina) President Bush visits New Orleans on the second anniversary of Hurricane Katrina President Bush visits New Orleans on the second anniversary of Hurricane Katrina . +1 (President Bush; visits; New Orleans) President Bush visits New Orleans President Bush visits New Orleans on the second anniversary of Hurricane Katrina . +1 (Prizes; included; gift certificates redeemable at Collectors) Prizes included gift certificates redeemable at Collectors Prizes included gift certificates redeemable at Collectors Corner , Yu-Gi-Oh posters , promotional give-aways and Oakland Coca-Cola Street Team t-shirts to the many winners of the tournament . +1 (Products; must be returned with; all accessories) Products must be returned with all accessories Products must be returned in original packaging and in original condition with all accessories included . +1 (Products; must be returned in; original packaging and in original condition) Products must be returned in original packaging and in original condition Products must be returned in original packaging and in original condition with all accessories included . +1 (Products; included must be returned; in original packaging and in original condition) Products included must be returned in original packaging and in original condition Products must be returned in original packaging and in original condition with all accessories included . +1 (Raid; stands; for Redundant Array of Inexpensive Disks) Raid stands for Redundant Array of Inexpensive Disks Raid stands for Redundant Array of Inexpensive Disks . +1 (Registration; begins; February 1) Registration begins February 1 Registration begins February 1 at the Reference Desk . +1 (Registration; begins; at the Reference Desk) Registration begins at the Reference Desk Registration begins February 1 at the Reference Desk . +1 (Richardson; is; the best candidate out there from any party) Richardson is the best candidate out there from any party Richardson is the best candidate out there from any party and we need him to get the nomination ! +1 (him; to get; the nomination) him to get the nomination Richardson is the best candidate out there from any party and we need him to get the nomination ! +1 (we; need; him to get the nomination) we need him to get the nomination Richardson is the best candidate out there from any party and we need him to get the nomination ! +1 (Rock Band; will ship; in Europe) Rock Band will ship in Europe Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +1 (Rock Band; will ship; for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system) Rock Band will ship for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +1 (Rock Band; will ship for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system; in Europe) Rock Band will ship for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in Europe Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +1 (winds; hit 126 miles per hour; on Dec) winds hit 126 miles per hour on Dec Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Astoria; located; where the Columbia River meets the Pacific Ocean) Astoria located where the Columbia River meets the Pacific Ocean Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (the Columbia River; meets; the Pacific Ocean) the Columbia River meets the Pacific Ocean Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Rogue Ales Public House , Astoria; got a first hand look at the power of the Pacific; when winds hit 126 miles per hour on Dec) Rogue Ales Public House , Astoria got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Rogue Ales Public House , Astoria; got; a first hand look at the power of the Pacific) Rogue Ales Public House , Astoria got a first hand look at the power of the Pacific Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (winds; hit; 126 miles per hour) winds hit 126 miles per hour Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Romney; has money; because he has IT and because he is a leader) Romney has money because he has IT and because he is a leader Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (Romney; has; money) Romney has money Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (he; has; IT) he has IT Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (he; is; a leader) he is a leader Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (the orchard trees; were; laden with peaches , plums and other fruit , ours for the picking) the orchard trees were laden with peaches , plums and other fruit , ours for the picking Roses were in bloom in the little garden back of the hotel , and the orchard trees were laden with peaches , plums and other fruit , ours for the picking . +1 (Roses; were; in bloom) Roses were in bloom Roses were in bloom in the little garden back of the hotel , and the orchard trees were laden with peaches , plums and other fruit , ours for the picking . +1 (Rosh HaShana; is; the Jewish New Year) Rosh HaShana is the Jewish New Year Rosh HaShanah : Rosh HaShana is the Jewish New Year commemorating the creation of the universe ; a universal day of judgment . +1 (Ryan; goes; to school in Oak Hill) Ryan goes to school in Oak Hill Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (Ryan; goes; so I would love to find a group nearby) Ryan goes so I would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +1 (I; so would love; to find a group nearby) I so would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +1 (I; so would love to find; a group) I so would love to find a group Ryan goes to school in Oak Hill so I would love to find a group nearby ! +1 (I; so would love to find a group; nearby) I so would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (SMTP; is; the standard method used for host) SMTP is the standard method used for host SMTP stands for Simple Mail Transfer Protocol and is the standard method used for host to host transfer of messages over the internet . +1 (SMTP; stands; for Simple Mail Transfer Protocol) SMTP stands for Simple Mail Transfer Protocol SMTP stands for Simple Mail Transfer Protocol and is the standard method used for host to host transfer of messages over the internet . +1 (Anaheim Ducks; [is] champion [of]; Stanley Cup) Anaheim Ducks [is] champion [of] Stanley Cup Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Selanne; rejoins; Ducks) Selanne rejoins Ducks Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Teemu Selanne; returned; after missing the first half of the season) Teemu Selanne returned after missing the first half of the season Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Teemu Selanne; returned; to the Stanley Cup champion) Teemu Selanne returned to the Stanley Cup champion Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Services; include; consultancy) Services include consultancy Services include consultancy to a client 's architect , assisting in room shaping and infrastructure acoustic design , and making recommendations regarding HVAC and mechanical noise isolation . +1 (Services; were held; at 2:00 pm on Wednesday , Dec. 6 , 2000) Services were held at 2:00 pm on Wednesday , Dec. 6 , 2000 Services were held at 2:00 pm on Wednesday , Dec. 6 , 2000 at Rekus Funeral Home in Meta with Rev. Manuel Seaton officiating . +1 (Services; will be at 1 pm; Monday) Services will be at 1 pm Monday Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (Services; will be at 1 pm; at Four square Church in Newton) Services will be at 1 pm at Four square Church in Newton Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (Services; will be; at 1 pm) Services will be at 1 pm Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (She; studied; at RVAS) She studied at RVAS She studied at RVAS , a boarding school in Southern Oregon , until the 5th grade , when the family moved to Spain . +1 (the family; moved; to Spain) the family moved to Spain She studied at RVAS , a boarding school in Southern Oregon , until the 5th grade , when the family moved to Spain . +1 (Halo 2 fans; to take; the plunge) Halo 2 fans to take the plunge Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo 2 fans; to upgrade; to a 360) Halo 2 fans to upgrade to a 360 Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo games; are; Xbox exclusives) Halo games are Xbox exclusives Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Microsoft; owns; Bungie) Microsoft owns Bungie Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo 2 fans; to take the plunge; finally) Halo 2 fans to take the plunge finally Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo 2 fans; to upgrade; finally) Halo 2 fans to upgrade finally Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (I; caught the cleaning bug; this morning) I caught the cleaning bug this morning Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +1 (I; caught; the cleaning bug; this morning) I caught the cleaning bug; this morning Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +1 (I; caught the cleaning bug; yesterday) I caught the cleaning bug yesterday Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +1 (I; caught; the cleaning bug) I caught the cleaning bug Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +1 (Sabah; is the second largest state in; Malaysia) Sabah is the second largest state in Malaysia Situated in the northeastern part of the world 's third largest island , Sabah is the second largest state in Malaysia . +1 (Sabah; is; the second largest state in Malaysia) Sabah is the second largest state in Malaysia Situated in the northeastern part of the world 's third largest island , Sabah is the second largest state in Malaysia . +1 (Skin cancer; is the most common cancer in; the United States) Skin cancer is the most common cancer in the United States Skin cancer is the most common cancer in the United States and is increasing in incidence . +1 (Skin cancer; is; the most common cancer in the United States) Skin cancer is the most common cancer in the United States Skin cancer is the most common cancer in the United States and is increasing in incidence . +1 (they; unknowlingly brought all their lethal germs; with them) they unknowlingly brought all their lethal germs with them So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +1 (the Europeans; came; to the Americas) the Europeans came to the Americas So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +1 (they; unknowlingly brought all their lethal germs; when the Europeans came to the Americas) they unknowlingly brought all their lethal germs when the Europeans came to the Americas So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +1 (they; unknowlingly brought; all their lethal germs) they unknowlingly brought all their lethal germs So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +1 (Socrates; was born; In his early life) Socrates was born In his early life Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (his father; was; a sculptor) his father was a sculptor Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (Socrates; was born; in Athens about 469 BC) Socrates was born in Athens about 469 BC Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (he; followed; the profession of his father) he followed the profession of his father Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (Some people; believe; Jesus received teachings from Yoga in India) Some people believe Jesus received teachings from Yoga in India Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; received teachings; from Yoga) Jesus received teachings from Yoga Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; received teachings; in India) Jesus received teachings in India Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; received; teachings) Jesus received teachings Some people believe Jesus received teachings from Yoga in India . +1 (Alaska; became; a state) Alaska became a state Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (the Sheenjek River basin; was included; in a presidential executive order) the Sheenjek River basin was included in a presidential executive order Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (the Sheenjek River basin; was included in a presidential executive order; in 1960) the Sheenjek River basin was included in a presidential executive order in 1960 Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (Alaska; became a state; Soon after) Alaska became a state Soon after Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (South Africa; beat; England) South Africa beat England South Africa beat England . +1 (South Africa; were; in trouble) South Africa were in trouble South Africa were in trouble when Andy Gomarsall kicked and up-and-under and JP Pietersen dropped it . +1 (it; is said to be; particularly helpful for diabetics) it is said to be particularly helpful for diabetics Stevia has been used for centuries without adverse reactions and it is said to be particularly helpful for diabetics . +1 (Stevia; has been used; for centuries) Stevia has been used for centuries Stevia has been used for centuries without adverse reactions and it is said to be particularly helpful for diabetics . +1 (Microsoft; has shown; dogged patience) Microsoft has shown dogged patience Still , Microsoft has deep pockets and has shown dogged patience . +1 (Microsoft; has; deep pockets) Microsoft has deep pockets Still , Microsoft has deep pockets and has shown dogged patience . +1 (Students; must have; a 3.0 GPA) Students must have a 3.0 GPA Students must have a 3.0 GPA and be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters . +1 (Students; be; able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters) Students be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters Students must have a 3.0 GPA and be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters . +0 (young blonde girl; is missing or dead; ) young blonde girl is missing or dead Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +0 (that; 's; just more sensational than undrinkable water) that 's just more sensational than undrinkable water Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +0 (New Orleans and Louisiana; are a mess; ) New Orleans and Louisiana are a mess Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (New Orleans and Louisiana; are; a mess) New Orleans and Louisiana are a mess Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (New Orleans and Louisiana; are a mess; still) New Orleans and Louisiana are a mess still Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (young blonde girl; is missing or dead; still) young blonde girl is missing or dead still Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (young blonde girl; is; missing or dead) young blonde girl is missing or dead Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (that; 's; just more sensational than undrinkable water) that 's just more sensational than undrinkable water Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (Taxol; stabilizes; microtubules) Taxol stabilizes microtubules Taxol stabilizes microtubules by binding to a polymer . +1 (The ADA; prohibits discrimination on the basis of disability; with respect to public accommodations and employment) The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment . +1 (The ADA; prohibits; discrimination on the basis of disability) The ADA prohibits discrimination on the basis of disability The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment . +1 (The Celts; came; quite recently) The Celts came quite recently The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Celts; isposs essing; the previous inhabitants) The Celts isposs essing the previous inhabitants The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Celts; came; to Ireland) The Celts came to Ireland The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Company; operates; throughout Europe , North America and the Pacific Rim) The Company operates throughout Europe , North America and the Pacific Rim The Company operates throughout Europe , North America and the Pacific Rim , addressing the needs of organisations ranging from the largest multinationals through to the smallest start-ups . +0 (consumers; with purchasing; some 508,000 units of the Nintendo player) consumers with purchasing some 508,000 units of the Nintendo player The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +1 (The DS; outsold; the PSP nearly 3 to 1) The DS outsold the PSP nearly 3 to 1 The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +1 (consumers; purchasing; some 508,000 units of the Nintendo player) consumers purchasing some 508,000 units of the Nintendo player The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +1 (The Internet; is a great source of; information) The Internet is a great source of information The Internet is a great source of information , but it is also a great source for misinformation . +1 (The Internet; is; a great source of information) The Internet is a great source of information The Internet is a great source of information , but it is also a great source for misinformation . +0 (it; is also; a great source for misinformation) it is also a great source for misinformation The Internet is a great source of information , but it is also a great source for misinformation . +1 (The Japanese; attacked the Philippines; on December 8 , 1941) The Japanese attacked the Philippines on December 8 , 1941 The Japanese attacked the Philippines , still an American colony , on December 8 , 1941 , ten hours after the Japanese attack on Pearl Harbor . +1 (The Japanese; attacked; the Philippines) The Japanese attacked the Philippines The Japanese attacked the Philippines , still an American colony , on December 8 , 1941 , ten hours after the Japanese attack on Pearl Harbor . +1 (The Khmer Rouge; ruled Cambodia; from April 17 , 1975) The Khmer Rouge ruled Cambodia from April 17 , 1975 The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled renaming the country; Democratic Kampuchea) The Khmer Rouge ruled renaming the country Democratic Kampuchea The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled; Cambodia) The Khmer Rouge ruled Cambodia The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled Cambodia renaming the country; Democratic Kampuchea) The Khmer Rouge ruled Cambodia renaming the country Democratic Kampuchea The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled Cambodia renaming; the country) The Khmer Rouge ruled Cambodia renaming the country The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +0 (The LORD; told about the path of prosperity and success; ) The LORD told about the path of prosperity and success The LORD told Joshua about the path of prosperity and success . +1 (The LORD; told; Joshua) The LORD told Joshua The LORD told Joshua about the path of prosperity and success . +1 (The LORD; told Joshua; about the path of prosperity and success) The LORD told Joshua about the path of prosperity and success The LORD told Joshua about the path of prosperity and success . +1 (The LRA; has abducted; more than 20,000 children) The LRA has abducted more than 20,000 children The LRA has abducted more than 20,000 children . +1 (The Master bedroom; has; a King size bed cable TV , DVD and VCR) The Master bedroom has a King size bed cable TV , DVD and VCR The Master bedroom has a King size bed cable TV , DVD and VCR. +1 (The Regiment; returned; in 1769) The Regiment returned in 1769 The Regiment returned to England in 1769 much weakened by death injury and disease , and did not reach full effectiveness until 1775 . +1 (The Regiment; returned; to England) The Regiment returned to England The Regiment returned to England in 1769 much weakened by death injury and disease , and did not reach full effectiveness until 1775 . +1 (The United States; emerged; from World War I) The United States emerged from World War I The United States emerged from World War I with its confidence and prosperity intact . +1 (some Republicans; are having; second thoughts) some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +0 (The Washington Post; reported that some Republicans are having second thoughts; ) The Washington Post reported that some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +1 (The Washington Post; reported that some Republicans are having second thoughts; last week) The Washington Post reported that some Republicans are having second thoughts last week The Washington Post reported last week that some Republicans are having second thoughts . +1 (The Washington Post; reported; that some Republicans are having second thoughts) The Washington Post reported that some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +1 (The committee; meets; on the first Thursday of each month) The committee meets on the first Thursday of each month The committee meets on the first Thursday of each month at 4:30 pm . +1 (The committee; meets; at 4:30 pm) The committee meets at 4:30 pm The committee meets on the first Thursday of each month at 4:30 pm . +1 (The company; has entities; in 5 locations in 5 countries) The company has entities in 5 locations in 5 countries The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; is located; in Europe) The company is located in Europe The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; has; entities) The company has entities The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; was founded; in 1982) The company was founded in 1982 The company was founded in 1982 and is headquartered in Atlanta , Georgia . +1 (The company; is headquartered; in Atlanta) The company is headquartered in Atlanta The company was founded in 1982 and is headquartered in Atlanta , Georgia . +1 (The company; was founded; in 1995) The company was founded in 1995 The company was founded in 1995 and is based in Hong Kong , Hong Kong . +1 (The company; is based; in Hong Kong) The company is based in Hong Kong The company was founded in 1995 and is based in Hong Kong , Hong Kong . +1 (The couple; are on a second honeymoon; when Seymour commits suicide) The couple are on a second honeymoon when Seymour commits suicide The couple are on a second honeymoon , when Seymour commits suicide . +1 (Seymour; commits; suicide) Seymour commits suicide The couple are on a second honeymoon , when Seymour commits suicide . +1 (The couple; are; on a second honeymoon) The couple are on a second honeymoon The couple are on a second honeymoon , when Seymour commits suicide . +1 (The date; was; June 12) The date was June 12 The date was June 12 , l998. +0 (The film , which stars Samuel L. Jackson; is slated; for release on <D>Aug) The film , which stars Samuel L. Jackson is slated for release on <D>Aug The film , which stars Samuel L. Jackson , is slated for release on <D>Aug. +1 (The film , which stars Samuel L. Jackson; is slated; for release on <:D>:Aug) The film , which stars Samuel L. Jackson is slated for release on <:D>:Aug The film , which stars Samuel L. Jackson , is slated for release on <D>Aug. +1 (The film; stars; Simon Pegg and Nick Frost) The film stars Simon Pegg and Nick Frost The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (Nicolas Cage 's comic book film Ghost; entered; at number two) Nicolas Cage 's comic book film Ghost entered at number two The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (The film , which stars Simon Pegg and Nick Frost; held off; a challenge from Nicolas Cage 's comic book film Ghost) The film , which stars Simon Pegg and Nick Frost held off a challenge from Nicolas Cage 's comic book film Ghost The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (The film; closed; the 2007 Sundance Film Festival) The film closed the 2007 Sundance Film Festival The film closed the 2007 Sundance Film Festival and starred Queen Latifah . +1 (The film; starred; Queen Latifah) The film starred Queen Latifah The film closed the 2007 Sundance Film Festival and starred Queen Latifah . +1 (The film; stars; Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando) The film stars Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando The film stars Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando . +1 (The firm; has; offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai) The firm has offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai The firm has offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai . +1 (the Knicks; turned; the tables) the Knicks turned the tables The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (the Knicks; defeated them; in five games) the Knicks defeated them in five games The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +0 (the Knicks; defeated them; in three years) the Knicks defeated them in three years The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (the Knicks; defeated; them) the Knicks defeated them The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (The game; will be televised; on ESPN2) The game will be televised on ESPN2 The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The game; will include; a special halftime performance by the world-renowned Grambling Tiger Marching Band) The game will include a special halftime performance by the world-renowned Grambling Tiger Marching Band The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The game; will be televised; nationally) The game will be televised nationally The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The master bedroom; contains; one king bed) The master bedroom contains one king bed The master bedroom contains one king bed , while the 2nd bedroom has 2 twin beds . +1 (the 2nd bedroom; has; 2 twin beds) the 2nd bedroom has 2 twin beds The master bedroom contains one king bed , while the 2nd bedroom has 2 twin beds . +1 (The other alternative; is; Hillary) The other alternative is Hillary The other alternative is Hillary , which would be a disaster . +0 (it; 's; a friendly local bar) it 's a friendly local bar The owners are from Chicago and it 's a friendly local bar . +1 (The owners; are; from Chicago) The owners are from Chicago The owners are from Chicago and it 's a friendly local bar . +1 (he; so did n't have; time to go by and pick up my book) he so did n't have time to go by and pick up my book The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (he; so did n't have to pick up; my book) he so did n't have to pick up my book The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (The repairman; came; late today) The repairman came late today The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (The repairman; came; before Chris left for work) The repairman came before Chris left for work The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (Chris; left; for work) Chris left for work The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (The seminar; will be held; in English) The seminar will be held in English The seminar will be held in English with simultaneous translation in Italian . +1 (The story; appeared; in The New York Times) The story appeared in The New York Times The story appeared in The New York Times , Daily Business News , The Miami Herald , and 14 other publications nationwide . +1 (The student; will use the book , computer and the Internet; as their source of information) The student will use the book , computer and the Internet as their source of information The student will use the book , computer and the Internet as their source of information . +1 (The temple; will be rebuilt; in Jerusalem) The temple will be rebuilt in Jerusalem The temple will be rebuilt in Jerusalem , and the sacrificial system will be reinstated . +0 (Their reason; enslaved; its entire people) Their reason enslaved its entire people Their reason : Israel has occupied Palestine and enslaved its entire people . +0 (Their reason; has occupied; Palestine) Their reason has occupied Palestine Their reason : Israel has occupied Palestine and enslaved its entire people . +1 (people; hate; Israel) people hate Israel There are people who hate Israel . +1 (These states; included; California , Florida , Minnesota , Washington , and Oregon) These states included California , Florida , Minnesota , Washington , and Oregon These states included California , Florida , Minnesota , Washington , and Oregon . +0 (it; is; common) it is common Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +1 (the Philippines; is; a tropical country and it is common for shirts) the Philippines is a tropical country and it is common for shirts Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +1 (the Colts; win; the Super Bowl) the Colts win the Super Bowl This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (the Tigers; were; American League Champions) the Tigers were American League Champions This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (American League Champions; went; to the World Series) American League Champions went to the World Series This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (This photo; was taken; in September) This photo was taken in September This photo was taken in September when Bounder was about 4 to 7 days old . +1 (This photo; was taken; when Bounder was about 4 to 7 days old) This photo was taken when Bounder was about 4 to 7 days old This photo was taken in September when Bounder was about 4 to 7 days old . +1 (she; says; Christmas is at my house and Thanksgiving is at Sharyl 's) she says Christmas is at my house and Thanksgiving is at Sharyl 's This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (Christmas; is; at my house) Christmas is at my house This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (Thanksgiving; is; at Sharyl 's) Thanksgiving is at Sharyl 's This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (Christmas; is at my house; This year) Christmas is at my house This year This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (G brands; touch; the lives of people around the world) G brands touch the lives of people around the world Three billion times a day , P&G brands touch the lives of people around the world . +1 (Three to four sets of Manila ropes; are being preserved carefully; in both jails) Three to four sets of Manila ropes are being preserved carefully in both jails Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Three to four sets of Manila ropes; are being preserved carefully; for execution purposes) Three to four sets of Manila ropes are being preserved carefully for execution purposes Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Three to four sets of; are being preserved carefully were acquired; when India was still under British rule) Three to four sets of are being preserved carefully were acquired when India was still under British rule Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Tickets; are $ 10 for; adults) Tickets are $ 10 for adults Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are; $ 10 for adults , $ 5 for children) Tickets are $ 10 for adults , $ 5 for children Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are available; in advance as well as) Tickets are available in advance as well as Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are sold; on board the airport bus) Tickets are sold on board the airport bus Tickets are sold on board the airport bus . +1 (children under 12; are admitted; free) children under 12 are admitted free Tickets cost $ 20 per person , and children under 12 are admitted free . +1 (Tickets; cost; $ 20 per person) Tickets cost $ 20 per person Tickets cost $ 20 per person , and children under 12 are admitted free . +1 (Tickets; will be sold; at the door at the festival for a slightly higher price of 19 euros) Tickets will be sold at the door at the festival for a slightly higher price of 19 euros Tickets will also be sold at the door at the festival for a slightly higher price of 19 euros . +1 (Tipoff; is slated; for 7 pm in the Drubner Center) Tipoff is slated for 7 pm in the Drubner Center Tipoff is slated for 7 pm in the Drubner Center . +0 (To a certain extent; do not blame; Romney) To a certain extent do not blame Romney To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +1 (Romney; is running for President; in a time of Islamophobia) Romney is running for President in a time of Islamophobia To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +1 (Romney; is running; for President) Romney is running for President To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +1 (Tokyo Tsukiji Fish Market in Tokyo; is; an model behavior tourist stop) Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop and is a sushi lovers paradise . +1 (Tokyo Tsukiji Fish Market in Tokyo; is; a sushi lovers paradise) Tokyo Tsukiji Fish Market in Tokyo is a sushi lovers paradise Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop and is a sushi lovers paradise . +1 (Total RNA; is extracted; from these samples) Total RNA is extracted from these samples Total RNA is extracted from these samples using established methods andcDNA was generated for use in the real time quantitative PCR procedure . +1 (Turkey; is; in Europe) Turkey is in Europe Turkey is in Europe and is the best State of the World ! +1 (Turkey; is; the best State of the World) Turkey is the best State of the World Turkey is in Europe and is the best State of the World ! +1 (Turkish membership of the EU; should be barred; just because Turkey is Muslim) Turkish membership of the EU should be barred just because Turkey is Muslim Turkish membership of the EU should be barred just because Turkey is Muslim . +1 (Visitation; will be; from 1 to 3 pm Sunday at DL Newcomer Funeral Home) Visitation will be from 1 to 3 pm Sunday at DL Newcomer Funeral Home Visitation will be from 1 to 3 pm Sunday at DL Newcomer Funeral Home , Brodhead . +1 (Visitation; will be from 6-8 PM; Friday) Visitation will be from 6-8 PM Friday Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Visitation; will be from 6-8 PM; at the Schilling Funeral Home) Visitation will be from 6-8 PM at the Schilling Funeral Home Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Visitation; will be; from 6-8 PM) Visitation will be from 6-8 PM Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Wal-Mart; has been in the news; lately) Wal-Mart has been in the news lately Wal-Mart has been in the news lately on a number of fronts . +1 (Wal-Mart; has been in the news; on a number of fronts) Wal-Mart has been in the news on a number of fronts Wal-Mart has been in the news lately on a number of fronts . +1 (Wal-Mart; has been; in the news) Wal-Mart has been in the news Wal-Mart has been in the news lately on a number of fronts . +1 (We; certainly have n't lost; the war) We certainly have n't lost the war We certainly have n't lost the war , Perry told reporters . +0 (We certainly have n't lost the war; told; reporters) We certainly have n't lost the war told reporters We certainly have n't lost the war , Perry told reporters . +1 (Candida; is; yeast) Candida is yeast Well , Candida is yeast ; yes , just like any common yeast infection . +0 (the more the merrier; to let; us know if you are interested) the more the merrier to let us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (us; know; if you are interested) us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (the more the merrier; be; sure to let us know if you are interested) the more the merrier be sure to let us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +1 (We; ve; had a great response so far) We ve had a great response so far Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +1 (We; ve had; a great response) We ve had a great response Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +1 (We; ve had a great response; so far) We ve had a great response so far Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (the only major party; effectively functioning; on the national level) the only major party effectively functioning on the national level When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +0 (the only major party; effectively functioning; in the United States) the only major party effectively functioning in the United States When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +1 (his party; was; the only major party effectively functioning in the United States on the national level) his party was the only major party effectively functioning in the United States on the national level When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +1 (his party; was the only major party effectively functioning in the United States on the national level; When Andrew Jackson was elected president in 1828) his party was the only major party effectively functioning in the United States on the national level When Andrew Jackson was elected president in 1828 When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +1 (Andrew Jackson; was the only major party effectively functioning in the United States on the national level was elected; in 1828) Andrew Jackson was the only major party effectively functioning in the United States on the national level was elected in 1828 When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +0 (it; gave the authority to take the necessary measured force; ) it gave the authority to take the necessary measured force When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (the President; to take the necessary measured force; to protect American involvement) the President to take the necessary measured force to protect American involvement When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (Congress; passed the Gulf of Tonkin Resolution; in August 1964) Congress passed the Gulf of Tonkin Resolution in August 1964 When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (Congress; passed; the Gulf of Tonkin Resolution) Congress passed the Gulf of Tonkin Resolution When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (the President; to take; the necessary measured force) the President to take the necessary measured force When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (it; gave the President; When Congress passed the Gulf of Tonkin Resolution in August 1964) it gave the President When Congress passed the Gulf of Tonkin Resolution in August 1964 When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (it; gave; the President) it gave the President When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (it; gave the President; the authority to take the necessary measured force) it gave the President the authority to take the necessary measured force When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (January; turns; to February) January turns to February When January turns to February , you ca n't afford that kind of goal with any regularity . +1 (you; ca n't afford that kind of goal; When January turns to February) you ca n't afford that kind of goal When January turns to February When January turns to February , you ca n't afford that kind of goal with any regularity . +1 (you; ca n't afford; that kind of goal) you ca n't afford that kind of goal When January turns to February , you ca n't afford that kind of goal with any regularity . +1 (the electronics industry; was changed; forever) the electronics industry was changed forever When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (RoHS; went; into effect) RoHS went into effect When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (RoHS; went; in the European Union) RoHS went in the European Union When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (the electronics industry; was changed; When RoHS went into effect in the European Union) the electronics industry was changed When RoHS went into effect in the European Union When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (RoHS; went into effect; in the European Union) RoHS went into effect in the European Union When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (competition; was increasing in; 1984) competition was increasing in 1984 When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the key strategy adopted for producing an internationally competitive economy; was increasing competition in; 1984) the key strategy adopted for producing an internationally competitive economy was increasing competition in 1984 When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the key strategy adopted for producing an internationally competitive economy; was increasing; competition) the key strategy adopted for producing an internationally competitive economy was increasing competition When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the Labour Government; came to; power) the Labour Government came to power When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (Jerusalem; being an open city under; neither nations control) Jerusalem being an open city under neither nations control When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (they; defined; a specific geographical area for their nation and the remaining lands) they defined a specific geographical area for their nation and the remaining lands When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (the UN; created; Israel) the UN created Israel When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (they; defined a specific geographical area for their nation and the remaining lands; When the UN created Israel) they defined a specific geographical area for their nation and the remaining lands When the UN created Israel When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (the Pats; played; the Colts) the Pats played the Colts Where was mika when the Pats played the Colts . +1 (Jerusalem; is the capital of; Israel) Jerusalem is the capital of Israel While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Ahmadinejad; envisions; the nest of Jewish cockroaches) Ahmadinejad envisions the nest of Jewish cockroaches While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Tel Aviv; is probably; where Ahmadinejad envisions the nest of Jewish cockroaches as originating from) Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (the Wi-Fi ZONE logo; are trademarks of; the Wi-Fi Alliance) the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance Wi-Fi and the Wi-Fi logo are registered trademarks of the Wi-Fi Alliance ; and Wi-Fi ZONE , the Wi-Fi CERTIFIED logo , the Wi-Fi Alliance logo and the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance . +1 (Wi-Fi ZONE; are; trademarks of the Wi-Fi Alliance) Wi-Fi ZONE are trademarks of the Wi-Fi Alliance Wi-Fi and the Wi-Fi logo are registered trademarks of the Wi-Fi Alliance ; and Wi-Fi ZONE , the Wi-Fi CERTIFIED logo , the Wi-Fi Alliance logo and the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance . +1 (the Romans; waited; for the arrival of Claudius) the Romans waited for the arrival of Claudius With the local tribes promptly subdued , the Romans built a fort and waited for the arrival of Claudius . +1 (the Romans; built; a fort) the Romans built a fort With the local tribes promptly subdued , the Romans built a fort and waited for the arrival of Claudius . +1 (Yao Ming; scored; 36 points) Yao Ming scored 36 points Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +0 (19 rebounds to help the Rockets; hold on; to beat the Warriors on Tuesday night) 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +1 (Yao Ming; had; 19 rebounds to help the Rockets) Yao Ming had 19 rebounds to help the Rockets Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +1 (Hitler; was; a christian) Hitler was a christian Yes , Virginia , Hitler was a christian . +1 (soldiers; will be; responsible for what they have done) soldiers will be responsible for what they have done You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thaksin; told; reporters) Thaksin told reporters You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thaksin; told; Thursday) Thaksin told Thursday You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thaksin; told reporters; Thursday) Thaksin told reporters Thursday You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (You; must understand; that soldiers will be responsible for what they have done) You must understand that soldiers will be responsible for what they have done You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +0 (You; ll give a hernia; ) You ll give a hernia Youll give yourself a hernia ! +1 (You; ll; give yourself a hernia) You ll give yourself a hernia Youll give yourself a hernia ! +1 (You; ll give yourself; a hernia) You ll give yourself a hernia Youll give yourself a hernia ! +0 (You; ll give; yourself) You ll give yourself Youll give yourself a hernia ! diff --git a/srlie/data/gold-default.txt b/srlie/data/gold-default.txt new file mode 100644 index 0000000..047cb6b --- /dev/null +++ b/srlie/data/gold-default.txt @@ -0,0 +1,1806 @@ +0 ('s disease; is the leading cause of; dementia) 's disease is the leading cause of dementia Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +0 ('s; are; largely unknown to historians) 's are largely unknown to historians It 's a known fact that Marlowe was stabbed to death , but the how 's and why 's are largely unknown to historians . +0 ('s; see; before he spoke at the convention) 's see before he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 ('s; why are; largely unknown to historians) 's why are largely unknown to historians It 's a known fact that Marlowe was stabbed to death , but the how 's and why 's are largely unknown to historians . +0 (19 rebounds to help the Rockets; hold on; to beat the Warriors on Tuesday night) 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +0 (24< ;/D> reported; unaudited financial results for its fourth quarter) 24< ;/D> reported unaudited financial results for its fourth quarter 24< ;/D> ; /PRNewswire-FirstCall/ -- Broadcom Corporation today reported unaudited financial results for its fourth quarter and year ended December 31 , 2007 . +0 (30< ;/D> promised; Blackwater USA bodyguards immunity from prose) 30< ;/D> promised Blackwater USA bodyguards immunity from prose 30< ;/D> ; - The State Department promised Blackwater USA bodyguards immunity from prose . +0 (8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company; announced; today) 8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today 8< ;/D> ; /PRNewswire-FirstCall/ -- Eli Lilly and Company announced today that the US 1/8 /08 - Millipore and Gen-Probe Launch First Real-Time Test for Detecting Microbial Contamination in Biopharmaceutical Applications Pharmaceutical Writers/Business Editors BILLERICA , Mass . +0 (9:30; am Tuesday at; the funeral home) 9:30 am Tuesday at the funeral home Funeral services will be at 9:30 am Tuesday at the funeral home and at 10 am at St . +0 (Abraham; told that God would provide for Himself the lamb for the burnt offering; ) Abraham told that God would provide for Himself the lamb for the burnt offering Abraham told Isaac that God would provide for Himself the lamb for the burnt offering . +0 (African Americans and Hispanics; are; more likely than whites) African Americans and Hispanics are more likely than whites In fact , African Americans and Hispanics are more likely than whites to support this reform--and for good reason . +0 (America; is; in fact) America is in fact To biblical Christians , America is in fact already a strange land and the West is far from home . +0 (An Islamist extremist; behead him; in a lock-up garage) An Islamist extremist behead him in a lock-up garage LONDON : An Islamist extremist hatched a plot to kidnap a British Muslim soldier on a night out in central England and behead him like a pig in a lock-up garage , a British court heard Tuesday . +0 (Another Saturday Night and; ai n't got; nobody) Another Saturday Night and ai n't got nobody Another Saturday Night and I ai n't got nobody . . +0 (Approx; run; 89 mins Detail) Approx run 89 mins Detail System Requirements : Approx run time 89 mins Detail . +0 (Approx; run; time) Approx run time System Requirements : Approx run time 89 mins Detail . +0 (Arnold; was governor before; he) Arnold was governor before he Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +0 (As far as I 'm concerned , direct payments are still on the table; told reporters; last week) As far as I 'm concerned , direct payments are still on the table told reporters last week As far as I 'm concerned , direct payments are still on the table , Harkin told reporters last week . +0 (Blogger; had problems; last night &) Blogger had problems last night & Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (Britain; is; of course) Britain is of course Britain is of course a very reliable ally , supporting us in almost everything we do internationally . +0 (Burial; will be in Bethel Cemetery; near here) Burial will be in Bethel Cemetery near here Burial will be in Bethel Cemetery near here . +0 (Bush; jokes; questions) Bush jokes questions Im not terribly bothered by this one-itsa bit aggressive , but it got a laugh , and McCain answered the question , unlike Bush , who jokes and evades questions . +0 (Callie; tells she ca n't compete with her; ) Callie tells she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +0 (Catholics; surveyed; last week) Catholics surveyed last week But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +0 (Christian; tells that he ended it with Michelle; ) Christian tells that he ended it with Michelle Christian tells Sean that he ended it with Michelle . +0 (Coffee; making; facilities) Coffee making facilities All rooms are en-suite and have Tea & Coffee making facilities . +0 (Company; has been translated; into many languages) Company has been translated into many languages Published by WW Norton & Company , the book had sold more than three million copies by the year 2000 and has been translated into many languages . +0 (Cookies; use session cookies; in order) Cookies use session cookies in order Cookies We use session cookies in order to serve information to you more quickly and efficiently and create a better user experience . +0 (DUBLIN; concedes; he 's no literary expert) DUBLIN concedes he 's no literary expert DUBLIN , Ireland-Will Ferrell has received the James Joyce award but concedes he 's no literary expert . +0 (DanMarshall; is; Locked in the same way) DanMarshall is Locked in the same way DanMarshall As far as I 'm aware , the Wii is Region Locked in the same way that DVD players are . +0 (Dave; When got; home from work) Dave When got home from work When Dave got home from work we started it . +0 (Dave; was; the first person) Dave was the first person So when it became a discussion , Dave was the first person .really the only person on my list . +0 (David; is; home) David is home If it snows and I 'm the one at work and David is home , he shovels . +0 (Dont; make; a big deal) Dont make a big deal Dont make a big deal about not remembering things . +0 (Dwight; to get; him) Dwight to get him Michael asked Dwight to get him a knife and duct tape for his camping trip . +0 (E; Augustines; evidence) E Augustines evidence E Augustines evidence is that Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law . +0 (Earthlings; to know; that life exists on Mars) Earthlings to know that life exists on Mars They do not want Earthlings to know that life exists on Mars . +0 (Easter; is of; course) Easter is of course Easter is of course coming up . +0 (Europe; will run; the 21st century) Europe will run the 21st century The title of this book is misleading because no one believes Europe will run the 21st century , including the author himself . +0 (Fields marked with a red asterisks; must be completed; Salutation) Fields marked with a red asterisks must be completed Salutation Fields marked with a red asterisks * must be completed Salutation : Ms. +0 (Filming; returning; to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda) Filming returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +0 (Florist & Gifts; also delivers Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab to; the following facilities) Florist & Gifts also delivers Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab to the following facilities Florist & Gifts also delivers to the following facilities : Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab . +0 (Florist & Gifts; also delivers; Adams Funeral & Memorial Care) Florist & Gifts also delivers Adams Funeral & Memorial Care Florist & Gifts also delivers to the following facilities : Adams Funeral & Memorial Care , Advent Funeral & Cremation , Alzheimer 's Care , Annapolis Life Care Inc , Annapolis Memorial Gardens , Annapolis Nursing & Rehab . +0 (Former UN chief Kofi Annan; brought Kenya 's political rivals; ) Former UN chief Kofi Annan brought Kenya 's political rivals Former UN chief Kofi Annan brought together Kenya 's political rivals on Tuesday in a push to end a post-election crisis and deepening tribal bloodshed . +0 (France; became; the first country) France became the first country In 1998 , France became the first country to stop requiring hepatitis B vaccination for schoolchildren . +0 (George; gets; her) George gets her Callie tells Izzie she ca n't compete with her : George gets her . +0 (George; was the guy that; you) George was the guy that you George was the guy that you met when you wanted to be introduced to Ranger baseball . +0 (God; would provide the lamb for the burnt offering; ) God would provide the lamb for the burnt offering Abraham told Isaac that God would provide for Himself the lamb for the burnt offering . +0 (Google; does not do; anything other) Google does not do anything other Likewise , Google does not do anything other than execute search algorithms on the search terms you enter . +0 (HD DVD resistance useless Gartner; is singing HD DVD 's swan song; this morning) HD DVD resistance useless Gartner is singing HD DVD 's swan song this morning Gartner : Blu-ray to win in 2008 , HD DVD resistance useless Gartner , the fat lady of research firms , is singing HD DVD 's swan song this morning . +0 (Haaretz; reports Obama : opponents trying to weaken my support in Jewish communities; ) Haaretz reports Obama : opponents trying to weaken my support in Jewish communities Betz , Haaretz reports today , Obama : opponents trying to weaken my support in Jewish communities . +0 (Haaretz; reports; Obama : opponents trying to weaken my support in Jewish communities) Haaretz reports Obama : opponents trying to weaken my support in Jewish communities Betz , Haaretz reports today , Obama : opponents trying to weaken my support in Jewish communities . +0 (He; said; he was preparing the way for the LORD in fulfillment of Isaiah 40:3) He said he was preparing the way for the LORD in fulfillment of Isaiah 40:3 This is why the Jews thought John was Elijah come again , because He said he was preparing the way for the LORD in fulfillment of Isaiah 40:3. +0 (He; said; that Jesus had done nothing wrong and did n't deserve to be killed) He said that Jesus had done nothing wrong and did n't deserve to be killed He also said that Jesus had done nothing wrong and did n't deserve to be killed . +0 (He; said; the intelligence services had never said Saddam Hussein was an imminent threat but stood by warnings about the future danger) He said the intelligence services had never said Saddam Hussein was an imminent threat but stood by warnings about the future danger He said the intelligence services had never said Saddam Hussein was an imminent threat but stood by warnings about the future danger he could pose . +0 (He; set us; free) He set us free In his down-to-earth style , Bob George shows us the way back to authentic Christianity ; the kind that Christ had in mind when He set us free . +0 (Henry; made head; of the church) Henry made head of the church Henry made himself head of the church and confiscated all the churchs lands for his own . +0 (Humans; are; in fact) Humans are in fact Humans are in fact biologically programmed for what has become known as extended breastfeeding . +0 (I; 'm not; crazy about any of the candidates) I 'm not crazy about any of the candidates I 'm not crazy about any of the candidates , but I think Romney is the best choice . +0 (I; 'm; the one at work) I 'm the one at work If it snows and I 'm the one at work and David is home , he shovels . +0 (I; Like; this) I Like this I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +0 (I; Love; all Animals) I Love all Animals My name is Rachael and I Love all Animals ! +0 (I; about how wanted to do; this) I about how wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; about how wanted; to do this) I about how wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; am betting; that Hillary takes the nomination) I am betting that Hillary takes the nomination I am betting that Hillary takes the nomination . +0 (I; am; 12 years) I am 12 years My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +0 (I; am; a beliver) I am a beliver I am a beliver and know Jesus is lord and God and the Holy Spirit watches over all of us . +0 (I; am; afraid that Jeff hit the nail on the head) I am afraid that Jeff hit the nail on the head I am afraid that Jeff hit the nail on the head . +0 (I; am; from Bulgaria) I am from Bulgaria Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +0 (I; am; sorry I forget to present myself) I am sorry I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +0 (I; believe; Sony was the only company) I believe Sony was the only company I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +0 (I; believe; it 's more likely that the link will be around now that Google owns YouTube) I believe it 's more likely that the link will be around now that Google owns YouTube I believe it 's more likely that the link will be around now that Google owns YouTube . +0 (I; believe; the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption) I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +0 (I; bet; you were so happy to see Jeff Gordon win the race) I bet you were so happy to see Jeff Gordon win the race I bet you were so happy to see Jeff Gordon win the race ! +0 (I; ca n't believe everything that happens on the Internet; there is much truth to what we read) I ca n't believe everything that happens on the Internet there is much truth to what we read Although I recognize that I ca n't believe everything that happens on the Internet there is much truth to what we read . +0 (I; ca n't believe; she has n't figured out that Conan is Shinichi) I ca n't believe she has n't figured out that Conan is Shinichi I still ca n't believe she has n't figured out that Conan is Shinichi . +0 (I; could understand; that) I could understand that If this was the argument I continually heard for why people hate Kobe , then I could understand that , but IMO I do n't hear it used hardly ever . +0 (I; decided; that single men made better soldiers than married men) I decided that single men made better soldiers than married men In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +0 (I; did my blog; hopping) I did my blog hopping Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; did; a repair install of WinXP) I did a repair install of WinXP I then did a repair install of WinXP. +0 (I; dislike; this) I dislike this I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +0 (I; do expect; the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents) I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +0 (I; do expect; the Democrats to pick up Congressional seats and think they have a good chance for the presidency) I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +0 (I; do n't hear; it used hardly ever) I do n't hear it used hardly ever If this was the argument I continually heard for why people hate Kobe , then I could understand that , but IMO I do n't hear it used hardly ever . +0 (I; do n't know if dem is my family; because you have people who come from England an seh dem is my family) I do n't know if dem is my family because you have people who come from England an seh dem is my family They try to fin' me , but I do n't know if dem is my family , because you have people who come from England an seh dem is my family . +0 (I; do n't think; he would run as one if he was alive today) I do n't think he would run as one if he was alive today And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (I; do n't understand; why she was n't so keen on coming anyways) I do n't understand why she was n't so keen on coming anyways Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +0 (I; do not believe; that Washington was a deist) I do not believe that Washington was a deist I have also said that I do not believe that Washington was a deist , as Jefferson was . +0 (I; do nt think; the problem is Iran as much as the existence of the weapons , and the former American administrations had programs for helping to dismantle some of the weapons from the former Soviet Union) I do nt think the problem is Iran as much as the existence of the weapons , and the former American administrations had programs for helping to dismantle some of the weapons from the former Soviet Union So I dont think the problem is Iran as much as the existence of the weapons , and the former American administrations had programs for helping to dismantle some of the weapons from the former Soviet Union . +0 (I; expect; he had more than cab fare) I expect he had more than cab fare Since Google bought Blogger , I expect he had more than cab fare . +0 (I; explained; that Woodson chose February) I explained that Woodson chose February Furthermore , I explained that Woodson chose February because he felt that the three greatest Americans were born during that month . +0 (I; forget to present; myself) I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +0 (I; forget; to present myself) I forget to present myself Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +0 (I; got; terrified) I got terrified I thought England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified . +0 (I; had mentioned my book; previously) I had mentioned my book previously I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +0 (I; have learned from our family; bible sharing and studies) I have learned from our family bible sharing and studies I have learned from our family bible sharing and studies , that Jesus is the only way to be saved . +0 (I; have said; that I do not believe that Washington was a deist) I have said that I do not believe that Washington was a deist I have also said that I do not believe that Washington was a deist , as Jefferson was . +0 (I; held off uploading; in case) I held off uploading in case Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; hope; Barcelona win the Champions League outright) I hope Barcelona win the Champions League outright I hope Barcelona win the Champions League outright . +0 (I; hope; Gibson really believes that the Jews run Hollywood) I hope Gibson really believes that the Jews run Hollywood I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out . +0 (I; hope; my limited influence will help to precipitate some steps) I hope my limited influence will help to precipitate some steps Carter went on to say , Israel needs peace and the Palestinian people need peace and justice and I hope my limited influence will help to precipitate some steps . +0 (I; imagine; it was assumed that Joseph was the father) I imagine it was assumed that Joseph was the father I imagine it was assumed that Joseph was the father . +0 (I; know; Jesus is lord and God and the Holy Spirit watches over all of us) I know Jesus is lord and God and the Holy Spirit watches over all of us I am a beliver and know Jesus is lord and God and the Holy Spirit watches over all of us . +0 (I; know; that Jesus was tempted by Satan) I know that Jesus was tempted by Satan I know that Jesus was tempted by Satan , but Satan was literally standing before Jesus . +0 (I; know; that nothing good lives in me) I know that nothing good lives in me First of all lets have a look at what Paul wrote in Romans 7:18 I know that nothing good lives in me , that is , in my sinful nature . +0 (I; know; that the heart is what can make unlikely things happen) I know that the heart is what can make unlikely things happen Now after seeing Venus Williams win Wimbledon , I know that the heart is what can make unlikely things happen . +0 (I; live in; Adelaide) I live in Adelaide My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +0 (I; love too; sports) I love too sports I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +0 (I; mean; numerous weekends and Tim Days) I mean numerous weekends and Tim Days Weve had some good times me and Tim-Leeds Festival 2002/2003/2004 , Tenacious D 2003 , Hundred Reasons , Tenacious D 2007 and numerous , and I mean numerous weekends and Tim Days . +0 (I; need to coordinate interviews; ahead of time) I need to coordinate interviews ahead of time As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (I; need; to coordinate interviews ahead of time) I need to coordinate interviews ahead of time As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (I; noticed; everyones pictures were missing) I noticed everyones pictures were missing Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (I; noticed; that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years) I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +0 (I; recognize; that I ca n't believe everything that happens on the Internet there is much truth to what we read) I recognize that I ca n't believe everything that happens on the Internet there is much truth to what we read Although I recognize that I ca n't believe everything that happens on the Internet there is much truth to what we read . +0 (I; saw; Lomu hand off Will Carling) I saw Lomu hand off Will Carling I thought England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified . +0 (I; see; why Jesus sent the DEMONS into the pigs) I see why Jesus sent the DEMONS into the pigs NOW I see why Jesus sent the DEMONS into the pigs , to make a point . +0 (I; so would love; to find a group nearby) I so would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (I; think so far; Ive done a pretty good job) I think so far Ive done a pretty good job I think Ive done a pretty good job so far , though . +0 (I; think; Romney is the best choice) I think Romney is the best choice I 'm not crazy about any of the candidates , but I think Romney is the best choice . +0 (I; think; Ron Paul is the best choice for President in 2008) I think Ron Paul is the best choice for President in 2008 I want these local Meetups because I think Ron Paul is the best choice for President in 2008 and would help point America in the right direction again . +0 (I; think; that is highly appropriate) I think that is highly appropriate I think that is highly appropriate , given the importance of these Games , Howard told parliament . +0 (I; thought; England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified) I thought England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified I thought England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified . +0 (I; thought; Seattle had a chance) I thought Seattle had a chance I thought Seattle had a chance , but they had too many injuries to overcome to win . +0 (I; to take a taxi; to get my car) I to take a taxi to get my car Alex was at work so I had to take a taxi to get my car . +0 (I; to take to get; my car) I to take to get my car Alex was at work so I had to take a taxi to get my car . +0 (I; told you; so) I told you so Save the I told you so and look back at it when Boston wins the series . +0 (I; walk; over Tony Underwood) I walk over Tony Underwood I thought England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified . +0 (I; want these local Meetups; because I think Ron Paul is the best choice for President in 2008 and would help point America in the right direction again) I want these local Meetups because I think Ron Paul is the best choice for President in 2008 and would help point America in the right direction again I want these local Meetups because I think Ron Paul is the best choice for President in 2008 and would help point America in the right direction again . +0 (I; wanted to do; this) I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; wanted; to do this) I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (I; was n't; sure I had mentioned my book previously) I was n't sure I had mentioned my book previously I was n't sure I had mentioned my book previously , but it was clear to me that she and Paul were friends . +0 (I; would do; in a general election campaign if Edwards is the nominee , but) I would do in a general election campaign if Edwards is the nominee , but Im not certain what I would do in a general election campaign if Edwards is the nominee , but Id hate to have to be in the positon of defending him . +0 (I; would never have done; that) I would never have done that I would never have done that , Beckham told reporters Monday , the Associated Press reported . +0 (Im; na do; that) Im na do that I mean literally , that s how its gone every time Ive done anything I said Im not gonna do that . +0 (Im; typing; this article) Im typing this article As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (India; is the only country in; the world) India is the only country in the world India is the only country in the world with no history of anti-semitism . +0 (Internet Explorer; go; to Tools) Internet Explorer go to Tools Internet Explorer go to Tools then Internet Options and at the bottom of that first tab is the Fonts button . +0 (Internet Options and; then is; the Fonts button) Internet Options and then is the Fonts button Internet Explorer go to Tools then Internet Options and at the bottom of that first tab is the Fonts button . +0 (Iraq; was the acquisition of; oil) Iraq was the acquisition of oil Ever since it became clear that Saddam Hussein had no weapons of mass destruction , it also became clear that the real purpose of the United States ' invasion of Iraq was the acquisition of oil . +0 (Israel cannot let Iran obtain nuclear weapons; said; Tuesday) Israel cannot let Iran obtain nuclear weapons said Tuesday Israel cannot let Iran obtain nuclear weapons , Acting Prime Minister Ehud Olmert said Tuesday , spearheading stepped up Israeli diplomatic efforts to help keep the Bomb out of Teherans hands . +0 (Israel; is not; an apartheid state , perhaps these articles might open a few minds and hearts) Israel is not an apartheid state , perhaps these articles might open a few minds and hearts To those that really believe Israel is not an apartheid state , perhaps these articles might open a few minds and hearts . +0 (Israel; when shoots; back) Israel when shoots back Hezbollah fires rockets into Israeli towns and cities , killing civilians , and then shouts war crimes when Israel shoots back and kills civilians . +0 (It; 's not tim masters; when one considers that the Eiffel Tower is the monumentore resources NY marriage Visa) It 's not tim masters when one considers that the Eiffel Tower is the monumentore resources NY marriage Visa It 's not tim masters when one considers that the Eiffel Tower is the monumentore resources NY marriage Visa . +0 (It; 's; David) It 's David It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +0 (It; 's; a known fact that Marlowe was stabbed to death) It 's a known fact that Marlowe was stabbed to death It 's a known fact that Marlowe was stabbed to death , but the how 's and why 's are largely unknown to historians . +0 (It; does NOT prove; that Mohammed was the Prophet of God) It does NOT prove that Mohammed was the Prophet of God It does NOT prove that Mohammed was the Prophet of God . +0 (It; does; NOT) It does NOT It does NOT prove that Mohammed was the Prophet of God . +0 (It; is the time that; the sun) It is the time that the sun It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +0 (It; is; a unique facility in that it has multiple components including recreational programs , athletic activities and a computer learning center where users can access the Internet) It is a unique facility in that it has multiple components including recreational programs , athletic activities and a computer learning center where users can access the Internet It is a unique facility in that it has multiple components including recreational programs , athletic activities and a computer learning center where users can access the Internet . +0 (It; is; just such an appreciation that Nietzsche had in mind , I believe , as a this-worldly comfort) It is just such an appreciation that Nietzsche had in mind , I believe , as a this-worldly comfort It is just such an appreciation that Nietzsche had in mind , I believe , as a this-worldly comfort that could be learned . +0 (It; turns out; after Pelosi became speaker her son) It turns out after Pelosi became speaker her son It turns out that after Pelosi became speaker her son , Paul Pelosi jr . +0 (It; was some of; the most relaxing time) It was some of the most relaxing time It was some of the most relaxing time Ive had in a while . +0 (It; was; Henry Ford) It was Henry Ford It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (It; was; obvious) It was obvious It was obvious that Firefox was the better browser . +0 (It; was; only when Jesus was in the boat and shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee) It was only when Jesus was in the boat and shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee It was only when Jesus was in the boat and shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee . +0 (It; was; some of the most relaxing time) It was some of the most relaxing time It was some of the most relaxing time Ive had in a while . +0 (It; was; the concert tour where Britney met Kevin) It was the concert tour where Britney met Kevin It was the concert tour where Britney met Kevin , and weve had a hard time being spontaneous ever since . +0 (Itsa word; to describe Jesus; resurrected body) Itsa word to describe Jesus resurrected body Itsa word used to describe Jesus resurrected body . +0 (Itsa word; used; to describe Jesus resurrected body) Itsa word used to describe Jesus resurrected body Itsa word used to describe Jesus resurrected body . +0 (Ive; Especially spent in weblogging fighting; for women) Ive Especially spent in weblogging fighting for women Especially since Ive spent the last four years in weblogging fighting for women getting respect in the tech field . +0 (Ive; Especially spent in weblogging; fighting for women) Ive Especially spent in weblogging fighting for women Especially since Ive spent the last four years in weblogging fighting for women getting respect in the tech field . +0 (Ive; Especially spent the last four years; in weblogging fighting for women) Ive Especially spent the last four years in weblogging fighting for women Especially since Ive spent the last four years in weblogging fighting for women getting respect in the tech field . +0 (Ive; also got; ADD) Ive also got ADD Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +0 (Ive; also heard; people say that Mike Vick is the best player) Ive also heard people say that Mike Vick is the best player Ive heard people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player to ever play QB. +0 (Ive; am; prone to be captivated by bright and shinny objects) Ive am prone to be captivated by bright and shinny objects Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +0 (Ive; been in training; all week) Ive been in training all week Ive been in training all week so have nt had a lot of time to post or play poker . +0 (Ive; ca nt remember; the website) Ive ca nt remember the website Ive seen this effect before but cant remember the website . +0 (Ive; come; to the conclusion that we need to make an alternative group of swear words) Ive come to the conclusion that we need to make an alternative group of swear words Ive recently come to the conclusion that we need to make an alternative group of swear words . +0 (Ive; done; a pretty good job) Ive done a pretty good job I think Ive done a pretty good job so far , though . +0 (Ive; encountered a problem; while trying to publish a sid file) Ive encountered a problem while trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +0 (Ive; encountered trying; to publish a sid file) Ive encountered trying to publish a sid file Ive encountered a problem while trying to publish a sid file . +0 (Ive; found him; to have an insufferably erratic personality) Ive found him to have an insufferably erratic personality Ive met the guy and found him to have an insufferably erratic personality . +0 (Ive; got; a laptop running Windows XP ,) Ive got a laptop running Windows XP , Ive got a laptop running Windows XP , which also has VMWare installed . +0 (Ive; got; ideas) Ive got ideas Ive got ideas but Ive also got ADD and am prone to be captivated by bright and shinny objects . +0 (Ive; had; a hard day) Ive had a hard day No one knows its there except me , and it comes out when Ive had a hard day . +0 (Ive; had; in a while) Ive had in a while It was some of the most relaxing time Ive had in a while . +0 (Ive; had; success) Ive had success Ive had success using .NET to create plugins . +0 (Ive; had; the best times) Ive had the best times Ive had the best times and made some awesome friends . +0 (Ive; have found; some ways the web has made my life easier) Ive have found some ways the web has made my life easier Ive just moved house and have found some ways the web has made my life easier . +0 (Ive; have gotten; great quotes that helped me formulate ideas about how I wanted to do this) Ive have gotten great quotes that helped me formulate ideas about how I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (Ive; heard this argument as well; again and again) Ive heard this argument as well again and again Ive heard this argument again and again as well . +0 (Ive; heard; people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player) Ive heard people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player Ive heard people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player to ever play QB. +0 (Ive; heard; so many times that any DT wheel can be used as a single-treadle) Ive heard so many times that any DT wheel can be used as a single-treadle Ive heard so many times that any DT wheel can be used as a single-treadle if necessary . +0 (Ive; just moved; house and the trusty) Ive just moved house and the trusty Ive just moved house and the trusty PS3 is in storage ! +0 (Ive; just moved; house) Ive just moved house Ive just moved house and have found some ways the web has made my life easier . +0 (Ive; learned two things; on my voyage of rejection) Ive learned two things on my voyage of rejection Ive learned two things on my voyage of rejection : 1 taste is subjective connections are EVERYTHING. +0 (Ive; made; some awesome friends) Ive made some awesome friends Ive had the best times and made some awesome friends . +0 (Ive; met; the guy) Ive met the guy Ive met the guy and found him to have an insufferably erratic personality . +0 (Ive; never actually tuned in to watch; a whole episode) Ive never actually tuned in to watch a whole episode Ive seen the commercials but Ive never actually tuned in to watch a whole episode . +0 (Ive; never actually tuned in; to watch a whole episode) Ive never actually tuned in to watch a whole episode Ive seen the commercials but Ive never actually tuned in to watch a whole episode . +0 (Ive; only had; the opportunity to test it in a select few) Ive only had the opportunity to test it in a select few Thats right this technique does not work in every browser and Ive only had the opportunity to test it in a select few . +0 (Ive; read in some places; that the debate was a major success for Hillary and other places) Ive read in some places that the debate was a major success for Hillary and other places Ive read in some places that the debate was a major success for Hillary and other places that she totally bombed . +0 (Ive; read; comments from say Ruby where , you know theres this kind of Tolkeinesque period of web development) Ive read comments from say Ruby where , you know theres this kind of Tolkeinesque period of web development Ive read comments from say Ruby where , you know theres this kind of Tolkeinesque period of web development in which we were all creative and happy and the companies were idyllic and had these fabulous cultures . +0 (Ive; received; an email that I need to coordinate interviews ahead of time) Ive received an email that I need to coordinate interviews ahead of time As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +0 (Ive; said; anything) Ive said anything Been a while since Ive said anything , but here I am . +0 (Ive; seen this effect; before) Ive seen this effect before Ive seen this effect before but cant remember the website . +0 (Ive; seen; no evidence) Ive seen no evidence Ive seen no evidence , from the Pallywood footage , that a genuine tragedy even occurred on this beach . +0 (Ive; seen; the commercials) Ive seen the commercials Ive seen the commercials but Ive never actually tuned in to watch a whole episode . +0 (Ive; spent reading; a bunch of classic Canadian longpoems , so its tough) Ive spent reading a bunch of classic Canadian longpoems , so its tough Ive spent the last couple of years reading a bunch of classic Canadian longpoems , so its tough to name just one . +0 (Ive; spent the last couple of years; reading a bunch of classic Canadian longpoems , so its tough) Ive spent the last couple of years reading a bunch of classic Canadian longpoems , so its tough Ive spent the last couple of years reading a bunch of classic Canadian longpoems , so its tough to name just one . +0 (Ive; spent to name; just one) Ive spent to name just one Ive spent the last couple of years reading a bunch of classic Canadian longpoems , so its tough to name just one . +0 (Ive; talked to many people; over the years) Ive talked to many people over the years Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (Ive; toyed; with the idea of completing merging finances like a happy Ozzie &) Ive toyed with the idea of completing merging finances like a happy Ozzie & Ive toyed with the idea of completing merging finances like a happy Ozzie & Harriet couple but it has never felt right to me . +0 (Ive; tried to reply; to that whackjob) Ive tried to reply to that whackjob OK , Ive tried 3 times now to reply to that whackjob , Tom and it is nt getting through . +0 (Ive; tried; 3 times) Ive tried 3 times OK , Ive tried 3 times now to reply to that whackjob , Tom and it is nt getting through . +0 (Ive; tried; now) Ive tried now OK , Ive tried 3 times now to reply to that whackjob , Tom and it is nt getting through . +0 (Ive; tried; to reply to that whackjob , Tom and it is nt getting through) Ive tried to reply to that whackjob , Tom and it is nt getting through OK , Ive tried 3 times now to reply to that whackjob , Tom and it is nt getting through . +0 (Ive; want; you to know that after this experience , I can tell you the college admission process is a walk in the park) Ive want you to know that after this experience , I can tell you the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +0 (Izzie; tells he should nt be sleeping in the on-call room when she has a perfectly good bed; ) Izzie tells he should nt be sleeping in the on-call room when she has a perfectly good bed Izzie tells George he should nt be sleeping in the on-call room when she has a perfectly good bed . +0 (Jesus; finds himself; in) Jesus finds himself in Satan offers him various things that he wants or desperately needs , offering a short cut or 'fix ' to the situation Jesus finds himself in . +0 (Jesus; sat down; in it) Jesus sat down in it Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore . +0 (Jesus; spoke to show us; we are and grace) Jesus spoke to show us we are and grace Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (Jesus; spoke to show what we are and grace to show us what we can become; ) Jesus spoke to show what we are and grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (Jesus; understood; this and that 's) Jesus understood this and that 's Jesus understood this and that 's why He said , You have heard that it was said , ' An eye for an eye . +0 (Jordan; to make; it) Jordan to make it Jordan retired from basketball for a spell to play for the Birmingham Barons but failed to make it into the Major League . +0 (Just one simple Google AdWords campaign; earns thousands per month; ) Just one simple Google AdWords campaign earns thousands per month Just one simple Google AdWords campaign , which takes less than 30 minutes a week , earns me thousands per month . +0 (Laws; should be in place; in order) Laws should be in place in order Laws should be in place in order to guard the peoples ' freedoms , and protect people . +0 (Luke; asks if she remembers her real mother; ) Luke asks if she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +0 (Many people; use for checking; their emails) Many people use for checking their emails Many people use the Internet only for checking their emails . +0 (Merry Christmas to all; hope; everyone has a safe holiday season) Merry Christmas to all hope everyone has a safe holiday season Merry Christmas to all , and hope everyone has a safe holiday season . +0 (Michael; asked Dwight; to get him) Michael asked Dwight to get him Michael asked Dwight to get him a knife and duct tape for his camping trip . +0 (Michael; asked to get him; ) Michael asked to get him Michael asked Dwight to get him a knife and duct tape for his camping trip . +0 (Microsoft; spends developing new versions of windows; ) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +0 (Microsoft; spends developing; new versions of windows) Microsoft spends developing new versions of windows Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +0 (Mobile Office; enabled; mobile phones) Mobile Office enabled mobile phones Telstra MobileNet and Entellect today launched Mobile Office for WAP enabled mobile phones , allowing real-time wireless access to corporate clients ' MS Outlook and Exchange Server information including email , calendar , contacts , tasks and notes . +0 (Moses; brought; the Law , and Jesus fulfilled that Law ; Mohammed thoroughly abrogated that Law and introduced one more to his fancy) Moses brought the Law , and Jesus fulfilled that Law ; Mohammed thoroughly abrogated that Law and introduced one more to his fancy Moses brought the Law , and Jesus fulfilled that Law ; Mohammed thoroughly abrogated that Law and introduced one more to his fancy . +0 (Moses; had asked; he should tell the people had sent him) Moses had asked he should tell the people had sent him God had told Moses His plan to use him in delivering the Israelites from Egyptian bondage , and Moses had asked whom he should tell the people had sent him . +0 (Most Popular Pages; only Try; the Home Page) Most Popular Pages only Try the Home Page Using UPPER CASE CHARACTERS - all names are in lower case only Most Popular Pages Try the Home Page Or you can simply try to start from the TGLand -- A Transgender Community home page . +0 (Most of the time; say; that , people say No , Northern Ireland is part of Great Britain - no it 's not) Most of the time say that , people say No , Northern Ireland is part of Great Britain - no it 's not Most of the time I say that , people say No , Northern Ireland is part of Great Britain - no it 's not . +0 (My name; is; George) My name is George My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +0 (NET; to create; plugins) NET to create plugins Ive had success using .NET to create plugins . +0 (Nathan; told that he should go ahead and build the Temple of the Lord; ) Nathan told that he should go ahead and build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +0 (New Orleans and Louisiana; are a mess; ) New Orleans and Louisiana are a mess Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +0 (No new posts; Does think; HD-DVD has a chance) No new posts Does think HD-DVD has a chance No new posts Does ANYBOD Y still think HD-DVD has a chance . +0 (No one; knows; its there except me) No one knows its there except me No one knows its there except me , and it comes out when Ive had a hard day . +0 (Not everyone; to just whip something up; for the kids) Not everyone to just whip something up for the kids Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +0 (Obama; Not wins; in a landslide) Obama Not wins in a landslide Not when Obama wins in a landslide . +0 (PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell; announced that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard; ) PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +0 (Pandora; opened the box; all the evils in the world) Pandora opened the box all the evils in the world Later , Pandora opened the box and she let loose all the evils in the world . +0 (Paul; by introducing the name of Timothy; in the last chapter) Paul by introducing the name of Timothy in the last chapter The actual framer of the Epistle appears to have desired to insinuate that Paul was the author , by introducing the name of Timothy in the last chapter . +0 (Paul; warned not to lay hands on any man suddenly; ) Paul warned not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +0 (People who buy the CD; are; then) People who buy the CD are then People who buy the CD are then eligible to vote online at www.youthmatters.ca for their favourite song . +0 (Powell; told reporters; there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse) Powell told reporters there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse Powell told reporters there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse . +0 (Powell; told there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse; ) Powell told there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse Powell told reporters there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse . +0 (Pullen LLP; attest; services) Pullen LLP attest services Details : McGladrey & Pullen LLP delivers audit and attest services . +0 (Pullen LLP; delivers; audit) Pullen LLP delivers audit Details : McGladrey & Pullen LLP delivers audit and attest services . +0 (Rachel; gave birth; the confrontation with Esau 's angel and the ability) Rachel gave birth the confrontation with Esau 's angel and the ability Until Rachel gave birth to Joseph the confrontation with Esau 's angel and the ability to be confirmed as Israel were both out of the question . +0 (Researchers; reported; this year) Researchers reported this year Researchers reported in The New England Journal of Medicine this year that treating advanced gum disease lowered blood pressure , thereby reducing the risk of heart disease . +0 (Russia; expelled on Thursday; ) Russia expelled on Thursday In retaliation , Russia expelled four British diplomats on Thursday . +0 (Russia; to meet; targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate) Russia to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate The official said Russia was on track to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate . +0 (Russia; was on track; to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate) Russia was on track to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate The official said Russia was on track to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate . +0 (Ryan; goes; so I would love to find a group nearby) Ryan goes so I would love to find a group nearby Ryan goes to school in Oak Hill so I would love to find a group nearby ! +0 (SMTP; is; the standard method used for host) SMTP is the standard method used for host SMTP stands for Simple Mail Transfer Protocol and is the standard method used for host to host transfer of messages over the internet . +0 (Sami; asked for a divorce; ) Sami asked for a divorce In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +0 (San Francisco; is the first city in; the US) San Francisco is the first city in the US San Francisco is the first city in the US to ban nonbiodegradable bags replacing the harmful with the environmentally-friendly : biodegradable and compostable bags . +0 (San Francisco; is; the first city in the US) San Francisco is the first city in the US San Francisco is the first city in the US to ban nonbiodegradable bags replacing the harmful with the environmentally-friendly : biodegradable and compostable bags . +0 (Santa Claus; is; a Woman I think Santa Claus is a woman) Santa Claus is a Woman I think Santa Claus is a woman Santa Claus is a Woman I think Santa Claus is a woman . +0 (Satan; offers offering; a short cut or 'fix ' to the situation) Satan offers offering a short cut or 'fix ' to the situation Satan offers him various things that he wants or desperately needs , offering a short cut or 'fix ' to the situation Jesus finds himself in . +0 (Satan; offers; him) Satan offers him Satan offers him various things that he wants or desperately needs , offering a short cut or 'fix ' to the situation Jesus finds himself in . +0 (She; is trying to get; the Pope to proclaim that Mary is Co-Redemptrix) She is trying to get the Pope to proclaim that Mary is Co-Redemptrix She is trying to get the Pope to proclaim that Mary is Co-Redemptrix . +0 (She; is trying; to get the Pope to proclaim that Mary is Co-Redemptrix) She is trying to get the Pope to proclaim that Mary is Co-Redemptrix She is trying to get the Pope to proclaim that Mary is Co-Redemptrix . +0 (Sony; is; the best but i would go with Mitsubishi) Sony is the best but i would go with Mitsubishi Sony is the best but i would go with Mitsubishi if thoose were your only 2 options . +0 (South Korea; is the worlds; eleventh largest economy with a thriving market economy , and) South Korea is the worlds eleventh largest economy with a thriving market economy , and South Korea is the worlds eleventh largest economy with a thriving market economy , and the United States is its second largest export market . +0 (Spencer; told that she looked AMAZING on New Years; ) Spencer told that she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +0 (Stunning; is wearing; this killer) Stunning is wearing this killer Stunning blonde is wearing this killer Latina is squeezing the cheese out of a peeled banana in her dress and holds her bountiful snack trays . +0 (Taxis; do not cruise looking; for custom) Taxis do not cruise looking for custom Taxis do not cruise around looking for custom but wait at Taxi ranks in town squares or railway stations , you will also find their 'phone numbers in bars . +0 (That; characterizes; what Shark said : they inevitably invoke 9/11 or the fact that Saddam was n't a nice guy) That characterizes what Shark said : they inevitably invoke 9/11 or the fact that Saddam was n't a nice guy That mis-characterizes what Shark said : they inevitably invoke 9/11 or the fact that Saddam was n't a nice guy . +0 (That; is; why Hillary is the frontrunner) That is why Hillary is the frontrunner That is why Hillary is the frontrunner . +0 (The LORD; told about the path of prosperity and success; ) The LORD told about the path of prosperity and success The LORD told Joshua about the path of prosperity and success . +0 (The President-Elect; shall perform the duties of the President; as disclosed herein or assigned by the President or the Board of Directors) The President-Elect shall perform the duties of the President as disclosed herein or assigned by the President or the Board of Directors The President-Elect shall perform the duties of the President in the absence of the President and such other duties as disclosed herein or assigned by the President or the Board of Directors . +0 (The Washington Post; reported that some Republicans are having second thoughts; ) The Washington Post reported that some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +0 (The bourgeois; sees a mere instrument of production; ) The bourgeois sees a mere instrument of production When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +0 (The child; to speak; his native language) The child to speak his native language The child learned English and was forbidden to speak his native language . +0 (The film , which stars Samuel L. Jackson; is slated; for release on <D>Aug) The film , which stars Samuel L. Jackson is slated for release on <D>Aug The film , which stars Samuel L. Jackson , is slated for release on <D>Aug. +0 (The group; is run; by HIV) The group is run by HIV Womens Group : The group meets every Thursday and is run by HIV infected women themselves . +0 (The official; said; Russia was on track to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate) The official said Russia was on track to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate The official said Russia was on track to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate . +0 (The world looks to America for the type of leadership; said; during his keynote address at Charter Day) The world looks to America for the type of leadership said during his keynote address at Charter Day The world looks to America for the type of leadership that can confront issues of the human condition , Sen. Chuck Hagel said during his keynote address at Charter Day . +0 (Their reason; enslaved; its entire people) Their reason enslaved its entire people Their reason : Israel has occupied Palestine and enslaved its entire people . +0 (Their reason; has occupied; Palestine) Their reason has occupied Palestine Their reason : Israel has occupied Palestine and enslaved its entire people . +0 (There; is no doubt that; Alucard) There is no doubt that Alucard There is no doubt that Alucard is Dracula . +0 (These same people , including Osama Bin Laden; are; the people) These same people , including Osama Bin Laden are the people These same people , including Osama Bin Laden , are the people that Canada is at war with in Afghanistan . +0 (They; 've been working to promote; walking) They 've been working to promote walking They 've been working for 70 years to promote walking and to improve conditions for everyone who walks in England , Scotland and Wales . +0 (They; 've been working to to improve; conditions for everyone) They 've been working to to improve conditions for everyone They 've been working for 70 years to promote walking and to improve conditions for everyone who walks in England , Scotland and Wales . +0 (They; 've been working; for 70 years) They 've been working for 70 years They 've been working for 70 years to promote walking and to improve conditions for everyone who walks in England , Scotland and Wales . +0 (They; 've been working; to promote walking and to improve conditions for everyone) They 've been working to promote walking and to improve conditions for everyone They 've been working for 70 years to promote walking and to improve conditions for everyone who walks in England , Scotland and Wales . +0 (They; try to fin; me) They try to fin me They try to fin' me , but I do n't know if dem is my family , because you have people who come from England an seh dem is my family . +0 (They; try; to fin' me) They try to fin' me They try to fin' me , but I do n't know if dem is my family , because you have people who come from England an seh dem is my family . +0 (They; were used; as we use a serving-table , or) They were used as we use a serving-table , or They were used much as we use a serving-table , or as ww the kitchen dresser was used in old New England days . +0 (They; were used; much) They were used much They were used much as we use a serving-table , or as ww the kitchen dresser was used in old New England days . +0 (This AUP; should be read in; conjunction) This AUP should be read in conjunction This AUP should be read in conjunction with our other policies , all of which are posted on our website at www.leapnetworks .net . +0 (This area; is the only spot in; downtown Moscow) This area is the only spot in downtown Moscow This area is the only spot in downtown Moscow that can animated guerilla a project of this magnitude . +0 (This area; is; the only spot in downtown Moscow) This area is the only spot in downtown Moscow This area is the only spot in downtown Moscow that can animated guerilla a project of this magnitude . +0 (This; is a private sector initiative by; two individuals) This is a private sector initiative by two individuals This is a private sector initiative by two individuals who are touched by poverty in Malawi and are committed to assist in alleviating it , Malawi President Bingu wa Mutharika said at Friday 's ceremony . +0 (This; is why the Jews thought John was Elijah come again; because He said he was preparing the way for the LORD in fulfillment of Isaiah 40:3) This is why the Jews thought John was Elijah come again because He said he was preparing the way for the LORD in fulfillment of Isaiah 40:3 This is why the Jews thought John was Elijah come again , because He said he was preparing the way for the LORD in fulfillment of Isaiah 40:3. +0 (This; is; a private sector initiative by two individuals) This is a private sector initiative by two individuals This is a private sector initiative by two individuals who are touched by poverty in Malawi and are committed to assist in alleviating it , Malawi President Bingu wa Mutharika said at Friday 's ceremony . +0 (This; may seem; corny) This may seem corny This may seem corny but in all honesty music is the ONL Y thing that makes sense anymore . +0 (This; meant; that Texas belonged to Mexico and he had to cooperate with new officials) This meant that Texas belonged to Mexico and he had to cooperate with new officials This meant that Texas belonged to Mexico and he had to cooperate with new officials . +0 (Timothy; not to lay hands; on any man suddenly) Timothy not to lay hands on any man suddenly Paul warned Timothy not to lay hands on any man suddenly . +0 (To a certain extent; do not blame; Romney) To a certain extent do not blame Romney To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +0 (Turkey; needs more needs; Turkey) Turkey needs more needs Turkey Turkey needs Europe more than Europe needs Turkey . +0 (Turkey; needs more; Europe) Turkey needs more Europe Turkey needs Europe more than Europe needs Turkey . +0 (US Army Casualties The Department of Defense; announced; today) US Army Casualties The Department of Defense announced today US Army Casualties The Department of Defense announced today the death of two soldiers who were supporting Operation Iraqi Freedom . +0 (USA TODAY; reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked; ) USA TODAY reported that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +0 (Usenet Frugal-Living; join; Frugal Living-Making) Usenet Frugal-Living join Frugal Living-Making High activity , 1170 subscribers , Usenet Frugal-Living join Frugal Living-Making due with less . +0 (Using UPPER CASE CHARACTERS - all names; are; in lower case) Using UPPER CASE CHARACTERS - all names are in lower case Using UPPER CASE CHARACTERS - all names are in lower case only Most Popular Pages Try the Home Page Or you can simply try to start from the TGLand -- A Transgender Community home page . +0 (Venus; is the hottest planet because; it) Venus is the hottest planet because it Venus is the hottest planet because it 's atmosphere is in a runaway greenhouse state . +0 (Washington; was; a deist) Washington was a deist I have also said that I do not believe that Washington was a deist , as Jefferson was . +0 (We certainly have n't lost the war; told; reporters) We certainly have n't lost the war told reporters We certainly have n't lost the war , Perry told reporters . +0 (We; are trying to locate; anyone who knew Michael) We are trying to locate anyone who knew Michael We are trying to locate anyone who knew Michael . +0 (We; are trying; to locate anyone) We are trying to locate anyone We are trying to locate anyone who knew Michael . +0 (We; ve got; a long ways till the finish line) We ve got a long ways till the finish line Weve got a long ways till the finish line . +0 (We; ve had a great response; so far) We ve had a great response so far Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (We; ve; got a long ways till the finish line) We ve got a long ways till the finish line Weve got a long ways till the finish line . +0 (We; ve; had a great response so far) We ve had a great response so far Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (Windows; has finished loading; for about 5 minutes) Windows has finished loading for about 5 minutes The idle is tested after Windows has finished loading for about 5 minutes . +0 (You; have heard; that it was said) You have heard that it was said Jesus understood this and that 's why He said , You have heard that it was said , ' An eye for an eye . +0 (You; ll give a hernia; ) You ll give a hernia Youll give yourself a hernia ! +0 (You; must understand; that soldiers will be responsible for what they have done) You must understand that soldiers will be responsible for what they have done You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +0 (You; need; the ability to think strategically and concept creatively) You need the ability to think strategically and concept creatively Youll need the ability to think strategically and concept creatively . +0 (a British court; heard; Tuesday) a British court heard Tuesday LONDON : An Islamist extremist hatched a plot to kidnap a British Muslim soldier on a night out in central England and behead him like a pig in a lock-up garage , a British court heard Tuesday . +0 (a crowd at an indiana speedboat race and; speedboat; Europe) a crowd at an indiana speedboat race and speedboat Europe The transmission covers Germany and much of Car plows through a crowd at an indiana speedboat race and North The sea dog speedboat Europe . +0 (a laptop; running; Windows XP) a laptop running Windows XP Ive got a laptop running Windows XP , which also has VMWare installed . +0 (a speech; opposing; the war) a speech opposing the war Obama was not in the US Senate at that time , though he did give a speech opposing the war while an Illinois state senator . +0 (a weekend outburst; was heckling from the audience; at the) a weekend outburst was heckling from the audience at the 7 minutes agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst in which she was heckling from the audience at the . +0 (airplanes; taught to fear; ) airplanes taught to fear And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (all of whom; share; a passion for being in the country) all of whom share a passion for being in the country Jane has two children and a husband , all of whom share a passion for being in the country , being on the beach and eating . +0 (all; lets remember; that Al Gore is a politician , not) all lets remember that Al Gore is a politician , not But lets all remember that Al Gore is a politician , not a scientist . +0 (almost everything; do; internationally) almost everything do internationally Britain is of course a very reliable ally , supporting us in almost everything we do internationally . +0 (any dispute; arising; out of them) any dispute arising out of them 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of them . +0 (anyone; knew; Michael) anyone knew Michael We are trying to locate anyone who knew Michael . +0 (anything; said; Im not gonna do that) anything said Im not gonna do that I mean literally , that s how its gone every time Ive done anything I said Im not gonna do that . +0 (bit down hard until her Amateur Very Young Family Incest; were; Black Family Incest grinding together) bit down hard until her Amateur Very Young Family Incest were Black Family Incest grinding together Sharon took a nipple in her mouth and bit down hard until her Amateur Very Young Family Incest were Black Family Incest grinding together . +0 (bomb-Washington; does not want to hear; that) bomb-Washington does not want to hear that Ex-UN Weapons Inspector Ritter says Iran does not have the bomb nor is it close to a bomb-Washington does not want to hear that and is in full attack mode . +0 (bomb-Washington; does not want; to hear that) bomb-Washington does not want to hear that Ex-UN Weapons Inspector Ritter says Iran does not have the bomb nor is it close to a bomb-Washington does not want to hear that and is in full attack mode . +0 (bumper; nuts; the area 's first trading post) bumper nuts the area 's first trading post The first settler in Chicago , Lilium saint version Jean Baptiste Pointe du Sable , arrived in the 1770s , lilium a Potawatomi woman , and bumper nuts the area 's first trading post . +0 (cholesterol; lowering; drug) cholesterol lowering drug The stock has recently been cut in half , and it went down again on Friday after the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved . +0 (consumers; with purchasing; some 508,000 units of the Nintendo player) consumers with purchasing some 508,000 units of the Nintendo player The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +0 (dem; is my family; because you have people who come from England an seh dem is my family) dem is my family because you have people who come from England an seh dem is my family They try to fin' me , but I do n't know if dem is my family , because you have people who come from England an seh dem is my family . +0 (direct payments; As far are; still) direct payments As far are still As far as I 'm concerned , direct payments are still on the table , Harkin told reporters last week . +0 (doctors; in called; a miraculous recovery) doctors in called a miraculous recovery Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +0 (doctors; in called; after more than two weeks on life support) doctors in called after more than two weeks on life support Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +0 (east Germany; were tom cruise scientology video into; the Bona fide dog) east Germany were tom cruise scientology video into the Bona fide dog The reunification of Germany took place when the areas gmsp under the former Germany Republic , known as east Germany were tom cruise scientology video into the Bona fide dog boarding Republic of Germany , known as west Germany . +0 (everyone; walks; in England , Scotland and Wales) everyone walks in England , Scotland and Wales They 've been working for 70 years to promote walking and to improve conditions for everyone who walks in England , Scotland and Wales . +0 (former President husband Bill Clinton; on hurt; Hillary Clintons campaign) former President husband Bill Clinton on hurt Hillary Clintons campaign Obama takes South Carolina by storm , and the speculations continue on whether former President husband Bill Clinton hurt Hillary Clintons campaign by going on the stump for her . +0 (he; 'd be; here) he 'd be here And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +0 (he; 'd clearly be; the nominee in waiting) he 'd clearly be the nominee in waiting And , if Clinton lost to McCain , and Obama was n't on the ticket , he 'd clearly be the nominee in waiting . +0 (he; build; the Temple of the Lord) he build the Temple of the Lord Nathan told David that he should go ahead and build the Temple of the Lord . +0 (he; did give a speech opposing the war; while) he did give a speech opposing the war while Obama was not in the US Senate at that time , though he did give a speech opposing the war while an Illinois state senator . +0 (he; ended it; with Michelle) he ended it with Michelle Christian tells Sean that he ended it with Michelle . +0 (he; felt; that the three greatest Americans were born during that month) he felt that the three greatest Americans were born during that month Furthermore , I explained that Woodson chose February because he felt that the three greatest Americans were born during that month . +0 (he; founded; a City) he founded a City After Constantine came to power in the fourth century , there was not only the dramatic change of the Empire becoming Christian , but he founded a City he named after himself , Constantinople . +0 (he; getting; out) he getting out I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out . +0 (he; had to cooperate; with new officials) he had to cooperate with new officials This meant that Texas belonged to Mexico and he had to cooperate with new officials . +0 (he; had; ) he had This meant that Texas belonged to Mexico and he had to cooperate with new officials . +0 (he; had; more than cab fare) he had more than cab fare Since Google bought Blogger , I expect he had more than cab fare . +0 (he; has; IT) he has IT Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +0 (he; is; a leader) he is a leader Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +0 (he; lost; it) he lost it Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +0 (he; made; his choice) he made his choice For Jesus saw Satan fall like lightning from the sky when he made his choice . +0 (he; made; it vanish) he made it vanish Now , when David Copperfield makes the Statue of Liberty disappear , we admire his craft but we do n't actually think that he made it vanish . +0 (he; named; after himself) he named after himself After Constantine came to power in the fourth century , there was not only the dramatic change of the Empire becoming Christian , but he founded a City he named after himself , Constantinople . +0 (he; regarded his cousin; as anything special) he regarded his cousin as anything special In Luke 's Gospel , John baptizes Jesus as seemingly just another face in the crowd , with no sign that he regarded his cousin as anything special . +0 (he; reinventing; American industry) he reinventing American industry It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (he; selected; as Vice Presidential nominee) he selected as Vice Presidential nominee And so when Reagan won the nomination , he selected as Vice Presidential nominee the very man who had pointed out his essential dishonesty to the world . +0 (he; should go; ahead) he should go ahead Nathan told David that he should go ahead and build the Temple of the Lord . +0 (he; should nt be sleeping; in the on-call room) he should nt be sleeping in the on-call room Izzie tells George he should nt be sleeping in the on-call room when she has a perfectly good bed . +0 (he; should nt be sleeping; when she has a perfectly good bed) he should nt be sleeping when she has a perfectly good bed Izzie tells George he should nt be sleeping in the on-call room when she has a perfectly good bed . +0 (he; should tell the people; had sent him) he should tell the people had sent him God had told Moses His plan to use him in delivering the Israelites from Egyptian bondage , and Moses had asked whom he should tell the people had sent him . +0 (he; stood up; for to read) he stood up for to read Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read . +0 (he; was alive; today) he was alive today And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (he; was casting; a spell that had gone bad) he was casting a spell that had gone bad Harris told police his stepdaughters died while he was casting a spell that had gone bad . +0 (he; was preparing the way; for the LORD) he was preparing the way for the LORD This is why the Jews thought John was Elijah come again , because He said he was preparing the way for the LORD in fulfillment of Isaiah 40:3. +0 (he; went; into the synagogue) he went into the synagogue Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read . +0 (he; went; on the sabbath day) he went on the sabbath day Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read . +0 (he; when wrote his letter; to the Philippians) he when wrote his letter to the Philippians Though Paul was a prisoner when he wrote his letter to the Philippians , his joy in Christ was contagious . +0 (he; will not allow; Iran to acquire nuclear weapons) he will not allow Iran to acquire nuclear weapons Bush told Olmert he will not allow Iran to acquire nuclear weapons , but US officials have cast doubt over Washington 's capability to prevent Iran from acquiring nuclear technology . +0 (he; worship; him) he worship him Satan tells Jesus that he will give him all of the kingdoms of the world , if he will bow down and worship him . +0 (he; would be plagued; with problems) he would be plagued with problems Little did Steve know that he would be plagued with problems the next two rounds . +0 (he; would run; as one) he would run as one And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +0 (he; wrote his letter; to the Philippians) he wrote his letter to the Philippians Though Paul was a prisoner when he wrote his letter to the Philippians , his joy in Christ was contagious . +0 (him; to get; the nomination) him to get the nomination Richardson is the best candidate out there from any party and we need him to get the nomination ! +0 (history; is bunk as; he) history is bunk as he It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +0 (i; Firstly can just say; haaaaaaaaaaaaaaw get in you beauty , have it) i Firstly can just say haaaaaaaaaaaaaaw get in you beauty , have it Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +0 (i; said if Greece scores first Portugal is fucked; ) i said if Greece scores first Portugal is fucked Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +0 (i; said to myself; if Greece scores first Portugal is fucked) i said to myself if Greece scores first Portugal is fucked Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +0 (ideas of womens; n were a central part of revolutionary socialist theory; ) ideas of womens n were a central part of revolutionary socialist theory When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +0 (ideas of womens; n were; a central part of revolutionary socialist theory) ideas of womens n were a central part of revolutionary socialist theory When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +0 (ideas of womens; n were; already) ideas of womens n were already When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +0 (it; 's; a commonwealth) it 's a commonwealth Puerto Rico is n't a state , it 's a commonwealth . +0 (it; 's; a friendly local bar) it 's a friendly local bar The owners are from Chicago and it 's a friendly local bar . +0 (it; 's; more likely) it 's more likely I believe it 's more likely that the link will be around now that Google owns YouTube . +0 (it; 's; the first day of fall) it 's the first day of fall It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +0 (it; 's; the time when these stories either seem to happen or come out) it 's the time when these stories either seem to happen or come out Christmas is n't the only time you should do these things , but it 's usually the time when these stories either seem to happen or come out . +0 (it; 's; usually) it 's usually Christmas is n't the only time you should do these things , but it 's usually the time when these stories either seem to happen or come out . +0 (it; became; an independent nation) it became an independent nation Belize became a British colony in the 1860s and was known as British Honduras until early 1981 , at which time it became an independent nation . +0 (it; both implies; the device runs Windows Mobile and Windows Vista at the same time) it both implies the device runs Windows Mobile and Windows Vista at the same time If it indeed has both it implies the device runs Windows Mobile and Windows Vista at the same time , which would certainly be interesting . +0 (it; caused; a sensation) it caused a sensation As Dr Richard Kilminster , another Leeds sociologist colleague , explains : When the book was published in Germany , it caused a sensation . +0 (it; comes out; when Ive had a hard day) it comes out when Ive had a hard day No one knows its there except me , and it comes out when Ive had a hard day . +0 (it; fell; for the federal cause) it fell for the federal cause Although Maryland remained in the Union , it routinely fell short of its quota of troops for the federal cause . +0 (it; gave the authority to take the necessary measured force; ) it gave the authority to take the necessary measured force When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +0 (it; has; multiple components including recreational programs , athletic activities and a computer learning center) it has multiple components including recreational programs , athletic activities and a computer learning center It is a unique facility in that it has multiple components including recreational programs , athletic activities and a computer learning center where users can access the Internet . +0 (it; indeed has; both it implies the device runs Windows Mobile and Windows Vista at the same time) it indeed has both it implies the device runs Windows Mobile and Windows Vista at the same time If it indeed has both it implies the device runs Windows Mobile and Windows Vista at the same time , which would certainly be interesting . +0 (it; is also; a great source for misinformation) it is also a great source for misinformation The Internet is a great source of information , but it is also a great source for misinformation . +0 (it; is; by CHANCE) it is by CHANCE About : No one falls in love by choice , it is by CHANCE. +0 (it; is; common) it is common Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +0 (it; was n't; better than the first) it was n't better than the first The film stars Johnny Depp , Orlando Bloom and Kiera Knightley , and they all do a pretty good job , although it was n't better than the first . +0 (it; was; just too big) it was just too big I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +0 (it; went; after the FDA announced plans) it went after the FDA announced plans The stock has recently been cut in half , and it went down again on Friday after the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved . +0 (it; went; again) it went again The stock has recently been cut in half , and it went down again on Friday after the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved . +0 (it; went; down) it went down The stock has recently been cut in half , and it went down again on Friday after the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved . +0 (it; went; on Friday) it went on Friday The stock has recently been cut in half , and it went down again on Friday after the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved . +0 (it; will not release; Windows Server 2008) it will not release Windows Server 2008 Microsoft revealed today that it will not release Windows Server 2008 , the successor to Windows Server 2003 , on time . +0 (it; would have been; preferable not to try to overcome) it would have been preferable not to try to overcome In my opinion , Italy was Italy , because it was different , and it would have been preferable not to try to overcome , but rather to make use of , Italy 's differences . +0 (it; would n't let; me) it would n't let me Blogger had problems last night & as I did my blog hopping I noticed everyones pictures were missing so I held off uploading in case it would n't let me ! +0 (its your partner; by simply saying; them) its your partner by simply saying them Dont let things pass by simply because its your partner saying them instead of someone else . +0 (life here; is; no better or worse than) life here is no better or worse than For all the spin and propaganda , life here is no better or worse than when Blair came to power , no matter how you dress up his great 'achievements ' . +0 (me; formulate; ideas about how I wanted to do this) me formulate ideas about how I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +0 (my name; is; Cheryl and I) my name is Cheryl and I Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +0 (my name; is; Suzanne) my name is Suzanne Hi my name is Suzanne , I 've having the same problem with my PC , no sound at all . +0 (nonprofits; to purchase inexpensively; them) nonprofits to purchase inexpensively them Companies like Microsoft donate licensed copies of their software allowing nonprofits to purchase them inexpensively . +0 (nothing; to do; with him) nothing to do with him If Jesus is going to Jerusalem , they want nothing to do with him . +0 (one; considers; that the Eiffel Tower is the monumentore resources NY marriage Visa) one considers that the Eiffel Tower is the monumentore resources NY marriage Visa It 's not tim masters when one considers that the Eiffel Tower is the monumentore resources NY marriage Visa . +0 (only; is way to; salvation) only is way to salvation God 's word is very clear that Jesus Christ is the only way to salvation . +0 (people; say; No) people say No Most of the time I say that , people say No , Northern Ireland is part of Great Britain - no it 's not . +0 (people; to shut up; about a war in progress) people to shut up about a war in progress I know telling people to shut up about a war in progress sounds anti-democratic , but we have to remember that the United States of America is a republic , not a democracy . +0 (she; ca n't compete; with her) she ca n't compete with her Callie tells Izzie she ca n't compete with her : George gets her . +0 (she; has n't figured out; that Conan is Shinichi) she has n't figured out that Conan is Shinichi I still ca n't believe she has n't figured out that Conan is Shinichi . +0 (she; has; a perfectly good bed) she has a perfectly good bed Izzie tells George he should nt be sleeping in the on-call room when she has a perfectly good bed . +0 (she; let; loose) she let loose Later , Pandora opened the box and she let loose all the evils in the world . +0 (she; remembers; her real mother) she remembers her real mother Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +0 (she; says; yes) she says yes Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +0 (she; screwed up; national health care initiative of hers back in '94) she screwed up national health care initiative of hers back in '94 Some say Hillary Clinton should n't be president because she 1 screwed up that national health care initiative of hers back in '94 , and because 2 she 's married to Bill . +0 (she; when has; a perfectly good bed) she when has a perfectly good bed Izzie tells George he should nt be sleeping in the on-call room when she has a perfectly good bed . +0 (some; wannabee; senator from NY) some wannabee senator from NY Jerry , Jerry , Jerry , so you say that Hillary is some wannabee senator from NY who got elected just because her last name was Clinton . +0 (something; had n't seen; in quite a while) something had n't seen in quite a while You see , Halloween was something I had n't seen in quite a while . +0 (son of Charles I. The Stuart line; continued to rule England and Scotland; until Anne Stuart) son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +0 (son of Charles I. The Stuart line; continued; to rule England and Scotland until Anne Stuart) son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +0 (speaking world; assumes; that everyone believes in Christ) speaking world assumes that everyone believes in Christ The English speaking world is ethnocentric and assumes that everyone believes in Christ . +0 (speaking world; is; ethnocentric) speaking world is ethnocentric The English speaking world is ethnocentric and assumes that everyone believes in Christ . +0 (that part; how dominant might be-; that thirsted for my blood) that part how dominant might be- that thirsted for my blood First , Edward was a vampire Second , there was a part of him-and i did n't know how dominant that part might be- that thirsted for my blood . +0 (that; 's; just more sensational than undrinkable water) that 's just more sensational than undrinkable water Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +0 (that; 's; why He said , You have heard that it was said , ' An eye for an eye) that 's why He said , You have heard that it was said , ' An eye for an eye Jesus understood this and that 's why He said , You have heard that it was said , ' An eye for an eye . +0 (that; does nt answer; all the connections of the other people) that does nt answer all the connections of the other people It is interesting that Penny is looking for Desmond , but that does nt answer all the connections of the other people . +0 (that; is; highly appropriate) that is highly appropriate I think that is highly appropriate , given the importance of these Games , Howard told parliament . +0 (the Colts; beat putting them; almost all the time) the Colts beat putting them almost all the time Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +0 (the Colts; beat putting them; in a hurry) the Colts beat putting them in a hurry Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +0 (the Democrats; that lost control of Congress; in 1994) the Democrats that lost control of Congress in 1994 Part of the reason that the Democrats lost control of Congress in 1994 , and the GOP lost it in 2006 , was the arrogance of the party leaders . +0 (the Knicks; defeated them; in three years) the Knicks defeated them in three years The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +0 (the Management; made; it clear Kobe) the Management made it clear Kobe THE TRUTH : Once the Management made it clear Kobe was NOT going to be traded and everything quieted down , any disadvantages were substantially minimized . +0 (the ONL Y thing; makes sense; anymore) the ONL Y thing makes sense anymore This may seem corny but in all honesty music is the ONL Y thing that makes sense anymore . +0 (the Philippines; is rural; no exception) the Philippines is rural no exception As a former Spanish colony , the Philippines is no exception , and here , both rich and poor , rural and urban , enjoy the sport immensely . +0 (the United States; took to remove nuclear weapons; from its operational ground forces and fleets) the United States took to remove nuclear weapons from its operational ground forces and fleets In 1991 , the United States took steps to remove nuclear weapons from its operational ground forces and fleets throughout the world . +0 (the World Series of Poker Peer; to Peer; Texas Hold 'Em game) the World Series of Poker Peer to Peer Texas Hold 'Em game Progressive also recently announced plans to introduce an exciting new way to play Texas Hold 'Em poker : the World Series of Poker Peer to Peer Texas Hold 'Em game . +0 (the agency; of improperly withholding; documents about racial profiling) the agency of improperly withholding documents about racial profiling As part of the litigation , the ACLU filed a lawsuit earlier this year accusing the agency of improperly withholding documents about racial profiling . +0 (the argument; heard; for why people hate Kobe) the argument heard for why people hate Kobe If this was the argument I continually heard for why people hate Kobe , then I could understand that , but IMO I do n't hear it used hardly ever . +0 (the best; would go; with Mitsubishi) the best would go with Mitsubishi Sony is the best but i would go with Mitsubishi if thoose were your only 2 options . +0 (the first Baltic nation; to do; so) the first Baltic nation to do so In 2004 , Estonia joined the European Union , the first Baltic nation to do so , as well as NATO . +0 (the important work; had done; in the struggle) the important work had done in the struggle But Susan had two children , a determined outlook and was on a mission to testify to the important work Ian had done in the struggle to bring peace and stability to Northern Ireland . +0 (the kind; had; in mind) the kind had in mind In his down-to-earth style , Bob George shows us the way back to authentic Christianity ; the kind that Christ had in mind when He set us free . +0 (the kind; had; when He set us free) the kind had when He set us free In his down-to-earth style , Bob George shows us the way back to authentic Christianity ; the kind that Christ had in mind when He set us free . +0 (the more the merrier; be; sure to let us know if you are interested) the more the merrier be sure to let us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (the more the merrier; to let; us know if you are interested) the more the merrier to let us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (the new V-Stage Series TD-12K; makes; the middle range of the V-Drums line) the new V-Stage Series TD-12K makes the middle range of the V-Drums line Great feeling , great sounding the new V-Stage Series TD-12K makes the middle range of the V-Drums line feel like first class . +0 (the only company; even MADE; a 40 4:3 Tube HDTV) the only company even MADE a 40 4:3 Tube HDTV I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +0 (the only major party; effectively functioning; in the United States) the only major party effectively functioning in the United States When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +0 (the only major party; effectively functioning; on the national level) the only major party effectively functioning on the national level When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +0 (the people; had sent; him) the people had sent him God had told Moses His plan to use him in delivering the Israelites from Egyptian bondage , and Moses had asked whom he should tell the people had sent him . +0 (the people; read; here) the people read here Pluto is in Capricorn and a good number of the people who read here have Pluto in Virgo which means that Saturn is transiting conjunct their Pluto which is another Pluto/Capricorn exchange . +0 (the professional studios; also have; 200k worth of hardware to go with it) the professional studios also have 200k worth of hardware to go with it Pro Tools is the industry standard , but the professional studios also have 200k worth of hardware to go with it . +0 (the purchase price; came; to two cents) the purchase price came to two cents When the US bought Alaska from Russia in 1867 , the purchase price came to two cents an acre ! +0 (the road; leading; to the Pinnacle Overlook) the road leading to the Pinnacle Overlook The Visitor Center is closed on Christmas Day ; During inclement weather , the road leading to the Pinnacle Overlook may be closed for visitor safety . +0 (the same time; would certainly be; interesting) the same time would certainly be interesting If it indeed has both it implies the device runs Windows Mobile and Windows Vista at the same time , which would certainly be interesting . +0 (the show; is 19+ /; $ 5) the show is 19+ / $ 5 Doors are at 9pm and the show is 19+ / $ 5 . +0 (their fundraising; pace; with their opponents) their fundraising pace with their opponents But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +0 (there; are a number of; ideas) there are a number of ideas Powell told reporters there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse . +0 (there; was a part of; him-and i) there was a part of him-and i First , Edward was a vampire Second , there was a part of him-and i did n't know how dominant that part might be- that thirsted for my blood . +0 (they; do n't include; tools or information on how to make the changes) they do n't include tools or information on how to make the changes Although Microsoft allows users to customize that XML , they do n't include tools or information on how to make the changes . +0 (they; do; a pretty good job) they do a pretty good job The film stars Johnny Depp , Orlando Bloom and Kiera Knightley , and they all do a pretty good job , although it was n't better than the first . +0 (they; had been armed; by Iraq) they had been armed by Iraq The president asked Americans to imagine the suicide terrorists who attacked the United States if they had been armed by Iraq . +0 (they; had; too many injuries to overcome to win) they had too many injuries to overcome to win I thought Seattle had a chance , but they had too many injuries to overcome to win . +0 (they; have; a good chance for the presidency) they have a good chance for the presidency But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +0 (they; lost; at home) they lost at home The Giants are on a roll and gave the Patriots a great game in week 17 , but they still lost , at home ! +0 (they; mistook also; a fossil for a Dracolich) they mistook also a fossil for a Dracolich Kids had a blast when they mistook a fossil for a Dracolich also . +0 (they; sign; a letter of intent) they sign a letter of intent NCAA rules prohibit schools from commenting on recruits until after they sign a letter of intent . +0 (they; stopped manufacturing it; three or four years ago) they stopped manufacturing it three or four years ago I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +0 (they; want; nothing to do with him) they want nothing to do with him If Jesus is going to Jerusalem , they want nothing to do with him . +0 (they; were published; in 1609) they were published in 1609 Shakespeare wrote 154 sonnets around the 1590s , and they were first published in 1609 . +0 (this day; has had; as Christians) this day has had as Christians For the past 2,000 years , this day has had special significance as Christians celebrate the birth of Jesus Christ . +0 (this; is; my problem) this is my problem I like KDE , but Ubuntu uses Gnome , this is my problem . +0 (this; was; the argument I continually heard for why people hate Kobe) this was the argument I continually heard for why people hate Kobe If this was the argument I continually heard for why people hate Kobe , then I could understand that , but IMO I do n't hear it used hardly ever . +0 (those; hold; that Tibet has always been part of China) those hold that Tibet has always been part of China The 17-point Agreement is embarrassing not only to those who maintain that Tibet has been an independent state , but also to those who hold that Tibet has always been part of China . +0 (those; maintain; that Tibet has been an independent state , but also to those) those maintain that Tibet has been an independent state , but also to those The 17-point Agreement is embarrassing not only to those who maintain that Tibet has been an independent state , but also to those who hold that Tibet has always been part of China . +0 (those; opt; for a quiet night) those opt for a quiet night Each room is equipped with DSTV for those who opt for a quiet night . +0 (those; really believe; Israel is not an apartheid state) those really believe Israel is not an apartheid state To those that really believe Israel is not an apartheid state , perhaps these articles might open a few minds and hearts . +0 (those; reject; Jesus) those reject Jesus Satan and his gang will be thrown in the lake of fire along with those who reject Jesus . +0 (two individuals; to assist; in alleviating it) two individuals to assist in alleviating it This is a private sector initiative by two individuals who are touched by poverty in Malawi and are committed to assist in alleviating it , Malawi President Bingu wa Mutharika said at Friday 's ceremony . +0 (us; hold fast; our confession) us hold fast our confession Seeing then that we have a great high priest who has passed through the heavens , Jesus the Son of God , let us hold fast our confession . +0 (us; know; if you are interested) us know if you are interested Weve had a great response so far but the more the merrier so be sure to let us know if you are interested . +0 (we; admire; his craft) we admire his craft Now , when David Copperfield makes the Statue of Liberty disappear , we admire his craft but we do n't actually think that he made it vanish . +0 (we; are not; at an impasse) we are not at an impasse Powell told reporters there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse . +0 (we; are not; frozen) we are not frozen Powell told reporters there are a number of ideas for an interim government under consideration , but we are not frozen and are not at an impasse . +0 (we; are; The Real Estate Leaders) we are The Real Estate Leaders No one in the world sells more real estate than RE/MAX we are The Real Estate Leaders . +0 (we; are; to show us what we can become) we are to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (we; can shut out; the pain of our past) we can shut out the pain of our past Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +0 (we; do n't actually think; that he made it vanish) we do n't actually think that he made it vanish Now , when David Copperfield makes the Statue of Liberty disappear , we admire his craft but we do n't actually think that he made it vanish . +0 (we; find to prevent; it) we find to prevent it Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +0 (we; find; ways to prevent it) we find ways to prevent it Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +0 (we; grace; to show us what we can become) we grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +0 (we; had to take; a guess) we had to take a guess Sometimes , since Venkatesh Mahodhaya would not tell us what the word means in English , we had to take a guess . +0 (we; have; a great high priest who has passed through the heavens) we have a great high priest who has passed through the heavens Seeing then that we have a great high priest who has passed through the heavens , Jesus the Son of God , let us hold fast our confession . +0 (we; need to make; an alternative group of swear words) we need to make an alternative group of swear words Ive recently come to the conclusion that we need to make an alternative group of swear words . +0 (we; need; him to get the nomination) we need him to get the nomination Richardson is the best candidate out there from any party and we need him to get the nomination ! +0 (we; need; to just whip something up for the kids) we need to just whip something up for the kids Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +0 (we; need; to make an alternative group of swear words) we need to make an alternative group of swear words Ive recently come to the conclusion that we need to make an alternative group of swear words . +0 (we; open it; to greener pastures) we open it to greener pastures Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +0 (we; open; it) we open it Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +0 (we; showed up; at Hogwarts) we showed up at Hogwarts Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +0 (we; started; it) we started it When Dave got home from work we started it . +0 (we; to remember; that the United States of America is a republic , not) we to remember that the United States of America is a republic , not I know telling people to shut up about a war in progress sounds anti-democratic , but we have to remember that the United States of America is a republic , not a democracy . +0 (we; use; a serving-table) we use a serving-table They were used much as we use a serving-table , or as ww the kitchen dresser was used in old New England days . +0 (which; is the capital city of; South Australia) which is the capital city of South Australia My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +0 (whose accounts; for violating; the aforementioned rules) whose accounts for violating the aforementioned rules Resonate Web 2.0 Innovation keeps the right to assess which behavior will be treated as a breach of this TOS and to give no refunds to the users whose accounts have been suspended for violating the aforementioned rules . +0 (you; 'll find; How to tie a tie at a business close to homeMonsterMarketplace) you 'll find How to tie a tie at a business close to homeMonsterMarketplace At ThinkLocal.com you 'll find the How to tie a tie at a business close to homeMonsterMarketplace offers How to tie a tie and 1000 's of other products . +0 (you; are submitting; after 6 pm) you are submitting after 6 pm PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +0 (you; ca n't afford; that kind of goal) you ca n't afford that kind of goal When January turns to February , you ca n't afford that kind of goal with any regularity . +0 (you; can simply try to start; from the TGLand) you can simply try to start from the TGLand Using UPPER CASE CHARACTERS - all names are in lower case only Most Popular Pages Try the Home Page Or you can simply try to start from the TGLand -- A Transgender Community home page . +0 (you; can simply try; to start from the TGLand) you can simply try to start from the TGLand Using UPPER CASE CHARACTERS - all names are in lower case only Most Popular Pages Try the Home Page Or you can simply try to start from the TGLand -- A Transgender Community home page . +0 (you; did earn a ranking; as one of the least peaceful nations on earth) you did earn a ranking as one of the least peaceful nations on earth As you can see , the United States did in fact earn a ranking as one of the least peaceful nations on earth Thats yet another excellent reason to vote for a progressive President in 2008 . +0 (you; dress up; his great 'achievements) you dress up his great 'achievements For all the spin and propaganda , life here is no better or worse than when Blair came to power , no matter how you dress up his great 'achievements ' . +0 (you; got; rad prizes) you got rad prizes When Nintendo was king you got rad prizes . +0 (you; have; people who come from England) you have people who come from England They try to fin' me , but I do n't know if dem is my family , because you have people who come from England an seh dem is my family . +0 (you; is were; the place to be next March to enjoy Ireland 's biggest party) you is were the place to be next March to enjoy Ireland 's biggest party So whether you are Irish or just wish you were , Ireland is the place to be next March to enjoy Ireland 's biggest party . +0 (you; just wish; you were) you just wish you were So whether you are Irish or just wish you were , Ireland is the place to be next March to enjoy Ireland 's biggest party . +0 (you; need to know; to decide) you need to know to decide Youll learn a lot , everything you need to know to decide if this is something you want to experience . +0 (you; need; to know to decide) you need to know to decide Youll learn a lot , everything you need to know to decide if this is something you want to experience . +0 (you; should do; these things) you should do these things Christmas is n't the only time you should do these things , but it 's usually the time when these stories either seem to happen or come out . +0 (you; think; Clinton is leading in the polls , out of the current 17 comments) you think Clinton is leading in the polls , out of the current 17 comments Thirdly , if you think Clinton is leading in the polls , out of the current 17 comments , only one is pro-hillary clinton . +0 (you; to see; Jeff Gordon win the race) you to see Jeff Gordon win the race I bet you were so happy to see Jeff Gordon win the race ! +0 (you; wanted; to be introduced to Ranger baseball) you wanted to be introduced to Ranger baseball George was the guy that you met when you wanted to be introduced to Ranger baseball . +0 (you; were; so happy to see Jeff Gordon win the race) you were so happy to see Jeff Gordon win the race I bet you were so happy to see Jeff Gordon win the race ! +0 (you; will also find their ' phone numbers; in bars) you will also find their ' phone numbers in bars Taxis do not cruise around looking for custom but wait at Taxi ranks in town squares or railway stations , you will also find their 'phone numbers in bars . +0 (you; will know; why Florida is called The Sunshine State) you will know why Florida is called The Sunshine State In the winter , you will know why Florida is called The Sunshine State . +0 (young blonde girl; is missing or dead; ) young blonde girl is missing or dead Sure , New Orleans and Louisiana are still a mess , but that young blonde girl is still missing or dead in Aruba or whatever , and that 's just more sensational than undrinkable water . +1 (1 taste; is; subjective connections are EVERYTHING) 1 taste is subjective connections are EVERYTHING Ive learned two things on my voyage of rejection : 1 taste is subjective connections are EVERYTHING. +1 (20 rebounds; to lead; Washington 's 108-104 overtime win against Toronto) 20 rebounds to lead Washington 's 108-104 overtime win against Toronto Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (7These Terms and Conditions and any relevant Order; are governed; by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute) 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of them . +1 (89 % of Catholics; said; a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked) 89 % of Catholics said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (A memorial service; will be at 2 pm; Tuesday) A memorial service will be at 2 pm Tuesday A memorial service will be at 2 pm Tuesday at Evergreen Funeral Home Chapel of Peace , 1830 E. Fountain Blvd . +1 (A memorial service; will be at 2 pm; at Evergreen Funeral Home Chapel of Peace) A memorial service will be at 2 pm at Evergreen Funeral Home Chapel of Peace A memorial service will be at 2 pm Tuesday at Evergreen Funeral Home Chapel of Peace , 1830 E. Fountain Blvd . +1 (A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star; starred; Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard) A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star , the film starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard . +1 (A multi-layered glam-rock epic; tracing; the rise and fall of a mythical rock star) A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star A multi-layered glam-rock epic tracing the rise and fall of a mythical rock star , the film starred Ewan McGregor , Jonathan Rhys Meyers , Toni Collette , Christian Bale and Eddie Izzard . +1 (A truly regal night-Mirren; gets an Oscar; for playing the queen) A truly regal night-Mirren gets an Oscar for playing the queen A truly regal night-Mirren gets an Oscar for playing the queen , Forest Whitaker takes home his statue for being a king and Hollywood royalty-Scorsese-gets a gong , finally . +1 (Aaron; to raise; the rod) Aaron to raise the rod God ordered Moses to command Aaron to raise the rod so that He might impel the Children of Israel to let Moses and Aaron lead them . +1 (Abraham Lincoln; was; a Republican) Abraham Lincoln was a Republican And , while Abraham Lincoln was a Republican , I do n't think he would run as one if he was alive today . +1 (Abraham; told Isaac; that God would provide for Himself the lamb for the burnt offering) Abraham told Isaac that God would provide for Himself the lamb for the burnt offering Abraham told Isaac that God would provide for Himself the lamb for the burnt offering . +1 (Adelaide; is the capital city of; South Australia) Adelaide is the capital city of South Australia My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +1 (Adelaide; is; the capital city of South Australia) Adelaide is the capital city of South Australia My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +1 (Ahmadinejad; envisions; the nest of Jewish cockroaches) Ahmadinejad envisions the nest of Jewish cockroaches While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Al Gore; is; a politician , not) Al Gore is a politician , not But lets all remember that Al Gore is a politician , not a scientist . +1 (Alan; When got; home) Alan When got home When Alan got home , my first question was about the bass . +1 (Alan; got; home) Alan got home When Alan got home , my first question was about the bass . +1 (Alaska; became; a state) Alaska became a state Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (Alex and his wife; had; two children) Alex and his wife had two children Alex and his wife , Helen had two children , Georgia and John II . +1 (Alex; does everything he can; to convince Jesse he 's old enough to start a relationship) Alex does everything he can to convince Jesse he 's old enough to start a relationship Nat becomes convinced his voice is changing and Alex does everything he can to convince Jesse he 's old enough to start a relationship . +1 (Alex; does to convince Jesse; he 's old enough to start a relationship) Alex does to convince Jesse he 's old enough to start a relationship Nat becomes convinced his voice is changing and Alex does everything he can to convince Jesse he 's old enough to start a relationship . +1 (Alex; was; at work) Alex was at work Alex was at work so I had to take a taxi to get my car . +1 (All rooms; are; en-suite) All rooms are en-suite All rooms are en-suite and have Tea & Coffee making facilities . +1 (All staff; speaks; English) All staff speaks English All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +1 (Alzheimer 's disease; is; the leading cause of dementia in the United States) Alzheimer 's disease is the leading cause of dementia in the United States Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (Amenities; include; air conditioning , a telephone , a DVD player , and free ADSL connection) Amenities include air conditioning , a telephone , a DVD player , and free ADSL connection Amenities include air conditioning , a telephone , a DVD player , and free ADSL connection . +1 (Amenities; include; two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities) Amenities include two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities Amenities include two telephones , High Speed Internet Access , daily newspaper delivery , complimentary coffee and tea station , and special business amenities . +1 (America; are prosperity at; any price) America are prosperity at any price The things that will destroy America are prosperity at any price , peace at any price , safety first instead of duty first , the love of soft living and the get-rich-quick theory of life . +1 (America; has taken the lead; in coming against God and His Anointed) America has taken the lead in coming against God and His Anointed In birth control , America has taken the lead in coming against God and His Anointed , the Church of Christ ! +1 (America; stands; for freedom , liberty , justice , and truth) America stands for freedom , liberty , justice , and truth America stands for freedom , liberty , justice , and truth . +1 (American League Champions; went; to the World Series) American League Champions went to the World Series This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (Americans; to imagine; the suicide terrorists who attacked the United States) Americans to imagine the suicide terrorists who attacked the United States The president asked Americans to imagine the suicide terrorists who attacked the United States if they had been armed by Iraq . +1 (An Islamist extremist; hatched; a plot to kidnap a British Muslim soldier on a night out in central England) An Islamist extremist hatched a plot to kidnap a British Muslim soldier on a night out in central England LONDON : An Islamist extremist hatched a plot to kidnap a British Muslim soldier on a night out in central England and behead him like a pig in a lock-up garage , a British court heard Tuesday . +1 (Anaheim Ducks; [is] champion [of]; Stanley Cup) Anaheim Ducks [is] champion [of] Stanley Cup Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Andy; was; in the process of building my steps) Andy was in the process of building my steps Andy was in the process of building my steps as you 'll see ! +1 (Anne Stuart; became Queen; in 1702) Anne Stuart became Queen in 1702 England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (Antawn Jamison; grabbed 20 rebounds; to lead Washington 's 108-104 overtime win against Toronto) Antawn Jamison grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Antawn Jamison; scored; 24 points) Antawn Jamison scored 24 points Antawn Jamison scored 24 points and grabbed 20 rebounds to lead Washington 's 108-104 overtime win against Toronto . +1 (Anti-Zionism; is not; anti-Semitism) Anti-Zionism is not anti-Semitism Anti-Zionism is not anti-Semitism ; Weltner goes out of his way to assure people that his issue is with Zionism rather than with Jews . +1 (Astoria; located; where the Columbia River meets the Pacific Ocean) Astoria located where the Columbia River meets the Pacific Ocean Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Australia; chose to bat; on a wicket) Australia chose to bat on a wicket Australia had won the toss and chose to bat on a wicket which was tipped to provide plenty of runs . +1 (Australia; chose; to bat on a wicket) Australia chose to bat on a wicket Australia had won the toss and chose to bat on a wicket which was tipped to provide plenty of runs . +1 (Australia; had won; the toss) Australia had won the toss Australia had won the toss and chose to bat on a wicket which was tipped to provide plenty of runs . +1 (Author Biography Khaled Hosseini; was born; in 1965) Author Biography Khaled Hosseini was born in 1965 Author Biography Khaled Hosseini was born in Kabul , Afghanistan , in 1965 . +1 (Author Biography Khaled Hosseini; was born; in Kabul) Author Biography Khaled Hosseini was born in Kabul Author Biography Khaled Hosseini was born in Kabul , Afghanistan , in 1965 . +1 (Avada Kedavra; is; Harry) Avada Kedavra is Harry And Voldemort killed Harry 's parents with Avada Kedavra , the only known survivor ever of which is Harry himself . +1 (Azureus; is; open source and a superb engine) Azureus is open source and a superb engine Azureus is open source and a superb engine . +1 (BV I Scuba The British Virgin Islands; are; volcanic outcrops of a vast underwater plateau) BV I Scuba The British Virgin Islands are volcanic outcrops of a vast underwater plateau BV I Scuba The British Virgin Islands are volcanic outcrops of a vast underwater plateau that stretches for more than 70 miles where the Caribbean meets the Atlantic . +1 (Baghdad; is situated; in the middle part of the country) Baghdad is situated in the middle part of the country Baghdad is the capital of Iraq and is situated in the middle part of the country . +1 (Baghdad; is the capital of; Iraq) Baghdad is the capital of Iraq Baghdad is the capital of Iraq and is situated in the middle part of the country . +1 (Baghdad; is; the capital of Iraq) Baghdad is the capital of Iraq Baghdad is the capital of Iraq and is situated in the middle part of the country . +1 (Barcelona; win outright; the Champions League) Barcelona win outright the Champions League I hope Barcelona win the Champions League outright . +1 (Beckham; told; Monday) Beckham told Monday I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Beckham; told; reporters) Beckham told reporters I would never have done that , Beckham told reporters Monday , the Associated Press reported . +1 (Beijing; to forgo many of the protections; because of its large economy) Beijing to forgo many of the protections because of its large economy Washington wants Beijing to forgo many of the protections because of its large economy . +1 (Benazir Bhutto; was prime minister of; Pakistan) Benazir Bhutto was prime minister of Pakistan Benazir Bhutto was prime minister of Pakistan in the 1990s . +1 (Benazir Bhutto; was; prime minister of Pakistan) Benazir Bhutto was prime minister of Pakistan Benazir Bhutto was prime minister of Pakistan in the 1990s . +1 (Berlin; is; Germany s largest city with 3.4 million inhabitants) Berlin is Germany s largest city with 3.4 million inhabitants Berlin is Germany s largest city with 3.4 million inhabitants . +1 (Bextra; outweighed Bextra; today) Bextra outweighed Bextra today Bextra outweighed Bextra from the market today have or not . +1 (Bill Clinton; [is] former husband [of]; President) Bill Clinton [is] former husband [of] President Obama takes South Carolina by storm , and the speculations continue on whether former President husband Bill Clinton hurt Hillary Clintons campaign by going on the stump for her . +1 (Blogger; is owned; by Google) Blogger is owned by Google Im curious to see if Word will support Blogger , which is owned by Google . +1 (Bob George; shows us back; the way) Bob George shows us back the way In his down-to-earth style , Bob George shows us the way back to authentic Christianity ; the kind that Christ had in mind when He set us free . +1 (Bob Marley; died; at 36) Bob Marley died at 36 Bob Marley died in 1981 at 36 . +1 (Bob Marley; died; in 1981) Bob Marley died in 1981 Bob Marley died in 1981 at 36 . +1 (Boston; wins; the series) Boston wins the series Save the I told you so and look back at it when Boston wins the series . +1 (Brady; has won; three Super Bowls and two Super Bowl MVP Awards) Brady has won three Super Bowls and two Super Bowl MVP Awards Brady has won three Super Bowls and two Super Bowl MVP Awards . +1 (Brands; include; Hugo Boss , Gucci , Dolce &) Brands include Hugo Boss , Gucci , Dolce & Brands include Hugo Boss , Gucci , Dolce & Gabbana , Chanel , Calvin Klein , Jean Paul Gaultier and many more . +1 (Brett Farve; is; the best player to ever play QB) Brett Farve is the best player to ever play QB Ive heard people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player to ever play QB. +1 (Brett Favre; so is; a great football player minus his 04-05 season) Brett Favre so is a great football player minus his 04-05 season I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +1 (Britain; gained; a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital) Britain gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +1 (Britain; had lost; an empire) Britain had lost an empire Britain had lost an empire but gained a commonwealth , which in 1953 at the present Queen 's coronation supplied hundreds of colourful troops and personalities to process around the nation 's capital . +1 (Britain; is; a very reliable ally) Britain is a very reliable ally Britain is of course a very reliable ally , supporting us in almost everything we do internationally . +1 (Britain; supporting; us) Britain supporting us Britain is of course a very reliable ally , supporting us in almost everything we do internationally . +1 (Britney; met; Kevin) Britney met Kevin It was the concert tour where Britney met Kevin , and weve had a hard time being spontaneous ever since . +1 (Britney; where met; Kevin) Britney where met Kevin It was the concert tour where Britney met Kevin , and weve had a hard time being spontaneous ever since . +1 (Bush; claimed; Iraq had weapons of mass destruction) Bush claimed Iraq had weapons of mass destruction Bush claimed Iraq had weapons of mass destruction . +1 (Bush; evades; questions) Bush evades questions Im not terribly bothered by this one-itsa bit aggressive , but it got a laugh , and McCain answered the question , unlike Bush , who jokes and evades questions . +1 (Bush; told Olmert; he will not allow Iran to acquire nuclear weapons) Bush told Olmert he will not allow Iran to acquire nuclear weapons Bush told Olmert he will not allow Iran to acquire nuclear weapons , but US officials have cast doubt over Washington 's capability to prevent Iran from acquiring nuclear technology . +1 (Bush; told he will not allow Iran to acquire nuclear weapons; ) Bush told he will not allow Iran to acquire nuclear weapons Bush told Olmert he will not allow Iran to acquire nuclear weapons , but US officials have cast doubt over Washington 's capability to prevent Iran from acquiring nuclear technology . +1 (Bush; won New Mexico; in 2004) Bush won New Mexico in 2004 Bush won New Mexico by only a squeak in 2004 , and he lost it i n 20 00 . +1 (But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed; leading; to a reorganization) But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed leading to a reorganization But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +1 (Buy.com; has; the Creative Live) Buy.com has the Creative Live Buy.com has the Creative Live ! +1 (CCA; treated has; a very distinct greenish color) CCA treated has a very distinct greenish color CCA treated wood has a very distinct greenish color . +1 (CCA; treated wood; has a very distinct greenish color) CCA treated wood has a very distinct greenish color CCA treated wood has a very distinct greenish color . +1 (Canadians; speak; English) Canadians speak English Canadians speak English ; Americans do too . +1 (Candida; is; yeast) Candida is yeast Well , Candida is yeast ; yes , just like any common yeast infection . +1 (Cardinal Joseph Ratzinger; is elected; pope) Cardinal Joseph Ratzinger is elected pope Choosing the name Benedict XVI , Cardinal Joseph Ratzinger is elected pope . +1 (Carolina; win; the Stanley Cup) Carolina win the Stanley Cup All Mark Recchi did was help Carolina win the Stanley Cup . +1 (Categories; includes; animals , art , communications , computer fun , games , general , literature , miscellaneous , music and sound , science fun , and sports) Categories includes animals , art , communications , computer fun , games , general , literature , miscellaneous , music and sound , science fun , and sports Categories includes animals , art , communications , computer fun , games , general , literature , miscellaneous , music and sound , science fun , and sports . +1 (Cells; were maintained supplemented; with 10 % fetal bovine serum , 0.2 mM proline , and 1 M methotrexate) Cells were maintained supplemented with 10 % fetal bovine serum , 0.2 mM proline , and 1 M methotrexate Cells were maintained in DMEM supplemented with 10 % fetal bovine serum , 0.2 mM proline , and 1 M methotrexate . +1 (Cells; were maintained; in DMEM) Cells were maintained in DMEM Cells were maintained in DMEM supplemented with 10 % fetal bovine serum , 0.2 mM proline , and 1 M methotrexate . +1 (Channel Image 23 :06; revealed; A flyby) Channel Image 23 :06 revealed A flyby Channel Image 23 :06 Mercury 's volcanic past revealed A flyby by a Nasa unmanned space probe has revealed evidence of widespread volcanism on the planet Mercury . +1 (Charles II; [is] son of; Charles I.) Charles II [is] son of Charles I. England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (Charlie; does; something completely different) Charlie does something completely different But then Charlie does something completely different . +1 (Cheryl and I; have; a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD ,) Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , Hi , my name is Cheryl and I have a 9-year-old son who is high-functioning Autistic/Asperger 's/ADHD , diagnosed last year . +1 (China; annexed Tibet; in 1950) China annexed Tibet in 1950 China annexed Tibet by force in 1950 . +1 (China; ceded Taiwan; in 1895) China ceded Taiwan in 1895 As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (China; ceded Taiwan; to Japan) China ceded Taiwan to Japan As par t of th e surrender agreement , China ceded Taiwan to Japan in 1895 . +1 (China; to speed up; modernization of military) China to speed up modernization of military Hu says China to speed up modernization of military . +1 (Choice/competition; is; a good thing) Choice/competition is a good thing IMHO , Choice/competition is a good thing ! +1 (Chris Phelan; organized; the first Ride Of Silence in Dallas after endurance cyclist Larry Schwartz was hit by the mirror of a passing bus and was killed) Chris Phelan organized the first Ride Of Silence in Dallas after endurance cyclist Larry Schwartz was hit by the mirror of a passing bus and was killed Chris Phelan organized the first Ride Of Silence in Dallas after endurance cyclist Larry Schwartz was hit by the mirror of a passing bus and was killed . +1 (Chris and his wife; have; a son) Chris and his wife have a son Chris and his wife Kasey have a son , Christian . +1 (Chris; left; for work) Chris left for work The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (Christ; had; no hatred of soldiers) Christ had no hatred of soldiers Christ preached peace , but had no hatred of soldiers . +1 (Christ; is; the Door) Christ is the Door Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +1 (Christ; loved; the church) Christ loved the church For that is the way Christ loved the church , and husbands , like their wives , are to be imitators of Christ . +1 (Christ; loves; the Sinner) Christ loves the Sinner However please know that Christ loves the Sinner , but he hates the sim . +1 (Christ; preached; peace) Christ preached peace Christ preached peace , but had no hatred of soldiers . +1 (Christian; tells Sean; that he ended it with Michelle) Christian tells Sean that he ended it with Michelle Christian tells Sean that he ended it with Michelle . +1 (Christians; celebrate giving his life; to wash away our sins) Christians celebrate giving his life to wash away our sins Easter is a time when Christians celebrate Christ giving his life to wash away our sins and when he was resurrected . +1 (Christians; celebrate; Christ) Christians celebrate Christ Easter is a time when Christians celebrate Christ giving his life to wash away our sins and when he was resurrected . +1 (Christmas; is n't; the only time you should do these things) Christmas is n't the only time you should do these things Christmas is n't the only time you should do these things , but it 's usually the time when these stories either seem to happen or come out . +1 (Christmas; is; at my house) Christmas is at my house This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (Christmas; was; a blur there) Christmas was a blur there Christmas was a blur there ! +1 (Christopher Columbus; arrived; in 1492) Christopher Columbus arrived in 1492 Christopher Columbus arrived in the New World in 1492 and soon returned to Spain with his armada of Spanish galleons loaded to the gunnels with the strange new plant called tobacco . +1 (Christopher Columbus; arrived; in the New World) Christopher Columbus arrived in the New World Christopher Columbus arrived in the New World in 1492 and soon returned to Spain with his armada of Spanish galleons loaded to the gunnels with the strange new plant called tobacco . +1 (Christopher Columbus; returned; to Spain) Christopher Columbus returned to Spain Christopher Columbus arrived in the New World in 1492 and soon returned to Spain with his armada of Spanish galleons loaded to the gunnels with the strange new plant called tobacco . +1 (Clients; include; Adelphia Communications Corp. , Cablevision , Charter , Comcast , Cox Communications Inc. , Time Warner and Mediacom Communications Corp) Clients include Adelphia Communications Corp. , Cablevision , Charter , Comcast , Cox Communications Inc. , Time Warner and Mediacom Communications Corp Clients include Adelphia Communications Corp. , Cablevision , Charter , Comcast , Cox Communications Inc. , Time Warner and Mediacom Communications Corp. +1 (Clients; included; EMC^2 , Lucent , Southwestern Bell Corporation , and Novell) Clients included EMC^2 , Lucent , Southwestern Bell Corporation , and Novell Clients included EMC^2 , Lucent , Southwestern Bell Corporation , and Novell . +1 (Clinton; is leading; out of the current 17 comments) Clinton is leading out of the current 17 comments Thirdly , if you think Clinton is leading in the polls , out of the current 17 comments , only one is pro-hillary clinton . +1 (Clinton; lost; to McCain) Clinton lost to McCain And , if Clinton lost to McCain , and Obama was n't on the ticket , he 'd clearly be the nominee in waiting . +1 (Com; offers reservations , coupons and special discounts; to customers in Meredith) Com offers reservations , coupons and special discounts to customers in Meredith TheBestCityGuides.Com offers reservations , coupons and special discounts to customers in Meredith . +1 (Companies like Microsoft; donate; licensed copies of their software allowing nonprofits to purchase them inexpensively) Companies like Microsoft donate licensed copies of their software allowing nonprofits to purchase them inexpensively Companies like Microsoft donate licensed copies of their software allowing nonprofits to purchase them inexpensively . +1 (Company; had sold more than three million copies; by the year 2000) Company had sold more than three million copies by the year 2000 Published by WW Norton & Company , the book had sold more than three million copies by the year 2000 and has been translated into many languages . +1 (Complimentary amenities; include; local calls and wireless Internet access) Complimentary amenities include local calls and wireless Internet access Complimentary amenities include local calls and wireless Internet access . +1 (Conan; is; Shinichi) Conan is Shinichi I still ca n't believe she has n't figured out that Conan is Shinichi . +1 (Congress; passed the Gulf of Tonkin Resolution; in August 1964) Congress passed the Gulf of Tonkin Resolution in August 1964 When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (Constantine; became; Emperor) Constantine became Emperor Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (Countries represented; included; Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam) Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam . +1 (Countries; represented included; Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam) Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam Countries represented included Bangladesh , China , India , Indonesia , Israel , Italy , Japan , Malaysia , Myanmar , Philippines , Thailand , Turkey , and Vietnam . +1 (Courses; begin; in September) Courses begin in September Courses begin in September and finish end of May . +1 (Courses; finish; end of May) Courses finish end of May Courses begin in September and finish end of May . +1 (Craig Smith; grabbed; 10 rebounds and Al Jefferson) Craig Smith grabbed 10 rebounds and Al Jefferson Craig Smith scored 30 points and grabbed 10 rebounds and Al Jefferson had 23 points and 15 rebounds for the Timberwolves who have lost nine of the last 10 road games . +1 (Customers; include; all the RBOCs) Customers include all the RBOCs Customers include all the RBOCs , GTE , British Telecom , Australia Telecom , Bell Canada , BC Tel , the US Military and many independent telcos . +1 (Cyprus; adopted; the Euro) Cyprus adopted the Euro As you may know , Cyprus adopted the Euro as of Jan . +1 (Danny; fell in love; in 2004) Danny fell in love in 2004 Danny fell in love with Kathy 's energy , sense of humor and undying loyalty in 2004 and subsequently came to appreciate the charms of the Australian Cattle Dogs . +1 (Darwin; published; On the Origin of Species) Darwin published On the Origin of Species One year later , Darwin published On the Origin of Species by Means of Natural Selection . +1 (Dave; got; home from work) Dave got home from work When Dave got home from work we started it . +1 (David Copperfield; when makes; the Statue of Liberty disappear) David Copperfield when makes the Statue of Liberty disappear Now , when David Copperfield makes the Statue of Liberty disappear , we admire his craft but we do n't actually think that he made it vanish . +1 (David Lee Roth; When left Van Halen; for the first time in 1985) David Lee Roth When left Van Halen for the first time in 1985 When David Lee Roth left Van Halen for the first time in 1985 , my prepubescent world was turned upside-down . +1 (David Lee Roth; left Van Halen; for the first time in 1985) David Lee Roth left Van Halen for the first time in 1985 When David Lee Roth left Van Halen for the first time in 1985 , my prepubescent world was turned upside-down . +1 (David; goes; to school) David goes to school David goes to school . +1 (David; holds; a Bachelor of Arts degree in government) David holds a Bachelor of Arts degree in government David holds a Bachelor of Arts degree in government from George Mason University and a Masters of Public Administration degree , with a concentration in human recourses and development , from American University . +1 (David; meets Goliath; on the Washington Hospital Board of Directors) David meets Goliath on the Washington Hospital Board of Directors It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (David; meets Goliath; this year) David meets Goliath this year It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (Deron Williams; had; 11 points and 14 assists and the Utah Jazz) Deron Williams had 11 points and 14 assists and the Utah Jazz Deron Williams had 11 points and 14 assists and the Utah Jazz won their fifth straight game , beating the San Antonio Spurs 97-91 on Monday night . +1 (Destinations; include; London , Paris , Brussels , Munich , Salzburg , an Alpine retreat , a twelfth-century Austrian castle) Destinations include London , Paris , Brussels , Munich , Salzburg , an Alpine retreat , a twelfth-century Austrian castle Destinations include London , Paris , Brussels , Munich , Salzburg , an Alpine retreat , a twelfth-century Austrian castle , Venice , Florence and Rome . +1 (Destinations; included; Hong Kong , Japan , Fiji , Australia and Hawaii) Destinations included Hong Kong , Japan , Fiji , Australia and Hawaii Destinations included Hong Kong , Japan , Fiji , Australia and Hawaii . +1 (Doors; are; at 9pm) Doors are at 9pm Doors are at 9pm and the show is 19+ / $ 5 . +1 (DuPont; registered; trademark) DuPont registered trademark Kevlar&reg ; is a DuPont registered trademark . +1 (E Augustines evidence; is; that Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law) E Augustines evidence is that Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law E Augustines evidence is that Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law . +1 (EVERYDAY; where is; Christmas) EVERYDAY where is Christmas Last Friday of EVERY month in Tulsa , Oklahoma , aka North Pole South , where EVERYDAY is Christmas ! +1 (Each room; is equipped with DSTV; for those) Each room is equipped with DSTV for those Each room is equipped with DSTV for those who opt for a quiet night . +1 (Easter; is; a time when Christians celebrate Christ giving his life to wash away our sins and when he was resurrected) Easter is a time when Christians celebrate Christ giving his life to wash away our sins and when he was resurrected Easter is a time when Christians celebrate Christ giving his life to wash away our sins and when he was resurrected . +1 (Ebay; allow; sellers to charge for both postage and packaging and also add a handling charge to this too) Ebay allow sellers to charge for both postage and packaging and also add a handling charge to this too Ebay allow sellers to charge for both postage and packaging and also add a handling charge to this too . +1 (Edwards; came way back; at 29.9 %) Edwards came way back at 29.9 % Obama won with 37.5 % , Edwards came in second at 29.9 % , Clinton in third at 29.4 % and Bill Richardson way back in fourth at 2.1 % . +1 (Edwards; came way back; in second) Edwards came way back in second Obama won with 37.5 % , Edwards came in second at 29.9 % , Clinton in third at 29.4 % and Bill Richardson way back in fourth at 2.1 % . +1 (El Salvador; consists of one of the largest populations in that Region; with approximately 6.9 million people) El Salvador consists of one of the largest populations in that Region with approximately 6.9 million people El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (El Salvador; is located; in Central America) El Salvador is located in Central America El Salvador is located in Central America and consists of one of the largest populations in that Region , with approximately 6.9 million people . +1 (Elections; are held; in September) Elections are held in September Elections are held in September with the officers assuming their positions on October 1 . +1 (Elvis Presley; died; in 1977) Elvis Presley died in 1977 According to the San Francisco Chronicle When Elvis Presley died in 1977 , there were an estimated 37 Elvis impersonators in the world . +1 (Elvis; give; great performance) Elvis give great performance Elvis was a great singer and always give great performance but behind those great work he had done , his family was broken . +1 (Elvis; was; a great singer) Elvis was a great singer Elvis was a great singer and always give great performance but behind those great work he had done , his family was broken . +1 (England; became; a republic) England became a republic England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (England; was; a good team) England was a good team I thought England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified . +1 (English; is the language of; administration) English is the language of administration English is the language of administration , education , and commerce . +1 (English; is; the language of administration , education , and commerce) English is the language of administration , education , and commerce English is the language of administration , education , and commerce . +1 (Estonia; joined; the European Union , the first Baltic nation to do so , as well as NATO) Estonia joined the European Union , the first Baltic nation to do so , as well as NATO In 2004 , Estonia joined the European Union , the first Baltic nation to do so , as well as NATO . +1 (Everyday; is like Christmas; when the new fabrics arrive) Everyday is like Christmas when the new fabrics arrive Everyday is like Christmas when the new fabrics arrive . +1 (Everything that belongs to Jesus; belongs; to His church) Everything that belongs to Jesus belongs to His church Everything that belongs to Jesus belongs to His church . +1 (Ex-UN Weapons Inspector Ritter; says; Iran does not have the bomb nor is it close to a bomb-Washington does not want to hear that and is in full attack mode) Ex-UN Weapons Inspector Ritter says Iran does not have the bomb nor is it close to a bomb-Washington does not want to hear that and is in full attack mode Ex-UN Weapons Inspector Ritter says Iran does not have the bomb nor is it close to a bomb-Washington does not want to hear that and is in full attack mode . +1 (Exxon; is called; ExxonMobil) Exxon is called ExxonMobil Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (Exxon; merged with Mobil; in 1999) Exxon merged with Mobil in 1999 Exxon merged with Mobil in 1999 and is now called ExxonMobil . +1 (FDA; approved; medication) FDA approved medication Simple , Quick , Affordable eDrugsOnline offers online prescriptions for FDA approved medication . +1 (Fabricio Oberto; added 11 rebounds; in 37 effective minutes) Fabricio Oberto added 11 rebounds in 37 effective minutes Manu Ginobili scored 22 points and Fabricio Oberto added 11 rebounds in 37 effective minutes , supporting Duncan 's 19-point effort and keying a 91-79 Spurs win . +1 (Fariba; [is] a married mother of; three) Fariba [is] a married mother of three Nine years ago , as the Taliban took control of Kabul and much of the country , Fariba , a married mother of three , fled with her family to Peshawar in Pakistan . +1 (Filming; began; in September) Filming began in September Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Filming; began; with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon) Filming began with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon Filming began in September with Sarah Jessica Parker , Kim Cattrall , Kristin Davis and Cynthia Nixon returning to reprise their respective roles as Carrie , Samantha , Charlotte and Miranda . +1 (Fiona; tells Shrek; that she is indeed pregnant) Fiona tells Shrek that she is indeed pregnant Finally Fiona tells Shrek that she is indeed pregnant , Shrek begins to have nightmares and fears that he will not be able to be a good father . +1 (Firefox; was; the better browser) Firefox was the better browser It was obvious that Firefox was the better browser . +1 (Florence; is the capital of; Tuscany) Florence is the capital of Tuscany Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (Florence; is; at the heart of beautiful countryside) Florence is at the heart of beautiful countryside Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (Florence; is; the capital of Tuscany) Florence is the capital of Tuscany Florence is the capital of Tuscany and is at the heart of beautiful countryside famed for its traditions and cuisine . +1 (Florida; is called; The Sunshine State) Florida is called The Sunshine State In the winter , you will know why Florida is called The Sunshine State . +1 (Forest Whitaker; takes home; his statue for being a king and Hollywood royalty-Scorsese) Forest Whitaker takes home his statue for being a king and Hollywood royalty-Scorsese A truly regal night-Mirren gets an Oscar for playing the queen , Forest Whitaker takes home his statue for being a king and Hollywood royalty-Scorsese-gets a gong , finally . +1 (Former Indonesian dictator Suharto; moved; his hands) Former Indonesian dictator Suharto moved his hands Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; in a whisper) Former Indonesian dictator Suharto spoke in a whisper Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure) Former Indonesian dictator Suharto spoke in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former Indonesian dictator Suharto; spoke; today) Former Indonesian dictator Suharto spoke today Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Former UN chief Kofi Annan; brought; Kenya 's political rivals) Former UN chief Kofi Annan brought Kenya 's political rivals Former UN chief Kofi Annan brought together Kenya 's political rivals on Tuesday in a push to end a post-election crisis and deepening tribal bloodshed . +1 (Former UN chief Kofi Annan; brought; together) Former UN chief Kofi Annan brought together Former UN chief Kofi Annan brought together Kenya 's political rivals on Tuesday in a push to end a post-election crisis and deepening tribal bloodshed . +1 (Former UN chief Kofi Annan; deepening; tribal bloodshed) Former UN chief Kofi Annan deepening tribal bloodshed Former UN chief Kofi Annan brought together Kenya 's political rivals on Tuesday in a push to end a post-election crisis and deepening tribal bloodshed . +1 (France; has; nukes) France has nukes Further to this point , France has nukes , the UK has nukes . +1 (Fred Thompson; is running for president; for one reason) Fred Thompson is running for president for one reason Fred Thompson is running for president for one reason and one reason only . +1 (Fred; is; the Best Choice) Fred is the Best Choice Fred is the Best Choice . +1 (Free Polish Forces; prepared to defend; Paris) Free Polish Forces prepared to defend Paris In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Free Polish Forces; prepared; to defend Paris) Free Polish Forces prepared to defend Paris In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Fresh fruits , vegetables and other products; are sold; to the public) Fresh fruits , vegetables and other products are sold to the public Fresh fruits , vegetables and other products are also sold to the public through a weekly farm stand , which operates from 10 am to 3 pm Saturday . +1 (Frida Kahlo; was born; in 1907) Frida Kahlo was born in 1907 Frida Kahlo was born in 1907 in Coyoacan Mexico . +1 (Frida Kahlo; was born; in Coyoacan Mexico) Frida Kahlo was born in Coyoacan Mexico Frida Kahlo was born in 1907 in Coyoacan Mexico . +1 (Funeral service; will be at 1:30 pm; Saturday) Funeral service will be at 1:30 pm Saturday Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Funeral service; will be at 1:30 pm; at Kimple Funeral Chapel in Ellinwood) Funeral service will be at 1:30 pm at Kimple Funeral Chapel in Ellinwood Funeral service will be at 1:30 pm Saturday at Kimple Funeral Chapel in Ellinwood , with the Rev. Larry Young officiating . +1 (Funeral services; will be at 9:30 am; Tuesday) Funeral services will be at 9:30 am Tuesday Funeral services will be at 9:30 am Tuesday at the funeral home and at 10 am at St . +1 (Funeral services; will be at 9:30 am; at the funeral home and at 10 am) Funeral services will be at 9:30 am at the funeral home and at 10 am Funeral services will be at 9:30 am Tuesday at the funeral home and at 10 am at St . +1 (G brands; touch; the lives of people around the world) G brands touch the lives of people around the world Three billion times a day , P&G brands touch the lives of people around the world . +1 (Galileo; died; after having suffered blindness in the last four years of his life) Galileo died after having suffered blindness in the last four years of his life Galileo died in 1642 after having suffered blindness in the last four years of his life and leaving his inventions , discoveries , books , and his devotion to science to future generations , that is , to us . +1 (Galileo; died; in 1642) Galileo died in 1642 Galileo died in 1642 after having suffered blindness in the last four years of his life and leaving his inventions , discoveries , books , and his devotion to science to future generations , that is , to us . +1 (George; was; the guy that you met) George was the guy that you met George was the guy that you met when you wanted to be introduced to Ranger baseball . +1 (Germany; attacked; France) Germany attacked France In May 1940 , when Germany attacked France , Free Polish Forces prepared to defend Paris . +1 (Germany; was running; a close second) Germany was running a close second At last glance , the United States was in the lead , and Germany was running a close second . +1 (Gibson; really believes; that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out) Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out . +1 (Gibson; really believes; that the Jews run Hollywood) Gibson really believes that the Jews run Hollywood I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out . +1 (Glenrothes; led; the way in Scotland) Glenrothes led the way in Scotland Glenrothes led the way in Scotland being the first new town to desean jackson a town artist in 1968 . +1 (God 's word; is very; clear) God 's word is very clear God 's word is very clear that Jesus Christ is the only way to salvation . +1 (God; had told Moses; His plan to use him in delivering the Israelites from Egyptian bondage , and Moses had asked whom) God had told Moses His plan to use him in delivering the Israelites from Egyptian bondage , and Moses had asked whom God had told Moses His plan to use him in delivering the Israelites from Egyptian bondage , and Moses had asked whom he should tell the people had sent him . +1 (God; hardened; Pharaohs heart) God hardened Pharaohs heart First , the text states that God hardened Pharaohs heart . +1 (God; ordered Moses; to command Aaron to raise the rod) God ordered Moses to command Aaron to raise the rod God ordered Moses to command Aaron to raise the rod so that He might impel the Children of Israel to let Moses and Aaron lead them . +1 (God; sent His Son Jesus; to us) God sent His Son Jesus to us God sent His Son Jesus to us , but the world rejected Him , the world killed Him , put Him to death on the cross . +1 (God; would provide for Himself; the lamb for the burnt offering) God would provide for Himself the lamb for the burnt offering Abraham told Isaac that God would provide for Himself the lamb for the burnt offering . +1 (Gomebox; will be; the sole arbiter as to what constitutes a violation of the AUP) Gomebox will be the sole arbiter as to what constitutes a violation of the AUP Gomebox will be the sole arbiter as to what constitutes a violation of the AUP. +1 (Google went to great lengths; said; Don MacAskill) Google went to great lengths said Don MacAskill Google went to great lengths to create a dorm atmosphere , said Don MacAskill , the 30-year-old chief executive and chief geek . +1 (Google; bought; Blogger) Google bought Blogger Since Google bought Blogger , I expect he had more than cab fare . +1 (Google; does not do execute search algorithms; on the search terms) Google does not do execute search algorithms on the search terms Likewise , Google does not do anything other than execute search algorithms on the search terms you enter . +1 (Google; has to bring a native Picasa; to Linux) Google has to bring a native Picasa to Linux Google has the power to bring a native Picasa to Linux . +1 (Google; has; the power to bring a native Picasa to Linux) Google has the power to bring a native Picasa to Linux Google has the power to bring a native Picasa to Linux . +1 (Google; is; a business not) Google is a business not In the end Google is a business not a charity ! +1 (Google; owns; YouTube) Google owns YouTube I believe it 's more likely that the link will be around now that Google owns YouTube . +1 (Google; went to create; a dorm atmosphere) Google went to create a dorm atmosphere Google went to great lengths to create a dorm atmosphere , said Don MacAskill , the 30-year-old chief executive and chief geek . +1 (Google; went; to create a dorm atmosphere) Google went to create a dorm atmosphere Google went to great lengths to create a dorm atmosphere , said Don MacAskill , the 30-year-old chief executive and chief geek . +1 (Google; went; to great lengths) Google went to great lengths Google went to great lengths to create a dorm atmosphere , said Don MacAskill , the 30-year-old chief executive and chief geek . +1 (Governor Ernie Fletcher; announced; today) Governor Ernie Fletcher announced today United States to host games for first time 06/12/2005 FRANKFORT , KY - The 2010 World Equestrian Games will be in Lexington at the Kentucky Horse Park , Governor Ernie Fletcher announced today . +1 (Great feeling; makes; the middle range of the V-Drums line) Great feeling makes the middle range of the V-Drums line Great feeling , great sounding the new V-Stage Series TD-12K makes the middle range of the V-Drums line feel like first class . +1 (Greatest hits albums; include; songs) Greatest hits albums include songs Greatest hits albums include songs from way back . +1 (Guide; provides; an overview of poker rooms offering games such as Omaha Poker , Texas Hold 'em , seven-card stud , five-card stud , and one-on-one games) Guide provides an overview of poker rooms offering games such as Omaha Poker , Texas Hold 'em , seven-card stud , five-card stud , and one-on-one games Description :Guide provides an overview of poker rooms offering games such as Omaha Poker , Texas Hold 'em , seven-card stud , five-card stud , and one-on-one games . +1 (Gwen Todd and Steve Strayer; running; against three incumbents) Gwen Todd and Steve Strayer running against three incumbents It 's David meets Goliath this year on the Washington Hospital Board of Directors , with two Libertarian would-be reformers Gwen Todd and Steve Strayer running against three incumbents . +1 (HD-DVD; has; a chance) HD-DVD has a chance No new posts Does ANYBOD Y still think HD-DVD has a chance . +1 (Haaretz; reports; today) Haaretz reports today Betz , Haaretz reports today , Obama : opponents trying to weaken my support in Jewish communities . +1 (Hair Stylists; Get; to know the gifted stylists) Hair Stylists Get to know the gifted stylists Hair Stylists Get to know the gifted stylists who make up the John Frieda team . +1 (Hair Stylists; to know; the gifted stylists who make up the John Frieda team) Hair Stylists to know the gifted stylists who make up the John Frieda team Hair Stylists Get to know the gifted stylists who make up the John Frieda team . +1 (Haley; tells; Nathan) Haley tells Nathan Haley tells Nathan but he pretents to still be sleeping . +1 (Halloween; was; something I had n't seen in quite a while) Halloween was something I had n't seen in quite a while You see , Halloween was something I had n't seen in quite a while . +1 (Halo 2 fans; to take; the plunge) Halo 2 fans to take the plunge Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo 2 fans; to upgrade; to a 360) Halo 2 fans to upgrade to a 360 Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Halo games; are; Xbox exclusives) Halo games are Xbox exclusives Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Hamlet; asks Horatio and the guards; to swear secrecy about the ghostly visitations) Hamlet asks Horatio and the guards to swear secrecy about the ghostly visitations Rather , Hamlet asks Horatio and the guards to swear secrecy about the ghostly visitations . +1 (Harriet Tubman; [is] the granddaughter of; an African ,) Harriet Tubman [is] the granddaughter of an African , Harriet Tubman , the granddaughter of an African , was born into slavery around 1820 in Dorchester County , Md . +1 (Harriet Tubman; was born; in Dorchester County) Harriet Tubman was born in Dorchester County Harriet Tubman , the granddaughter of an African , was born into slavery around 1820 in Dorchester County , Md . +1 (Harriet Tubman; was born; into slavery around 1820) Harriet Tubman was born into slavery around 1820 Harriet Tubman , the granddaughter of an African , was born into slavery around 1820 in Dorchester County , Md . +1 (Harriet couple but; has never felt; right to me) Harriet couple but has never felt right to me Ive toyed with the idea of completing merging finances like a happy Ozzie & Harriet couple but it has never felt right to me . +1 (Harris; told police; his stepdaughters died while he was casting a spell) Harris told police his stepdaughters died while he was casting a spell Harris told police his stepdaughters died while he was casting a spell that had gone bad . +1 (Harry Reid; [is] leader [of]; Senate) Harry Reid [is] leader [of] Senate Senate leader Harry Reid recently announced that the US had lost the war in Iraq . +1 (He; is; married to Donna) He is married to Donna He is married to Donna , and the couple have three children , Ruth , Anna , and Samuel . +1 (He; might impel; the Children of Israel) He might impel the Children of Israel God ordered Moses to command Aaron to raise the rod so that He might impel the Children of Israel to let Moses and Aaron lead them . +1 (He; said; You have heard that it was said , ' An eye for an eye) He said You have heard that it was said , ' An eye for an eye Jesus understood this and that 's why He said , You have heard that it was said , ' An eye for an eye . +1 (Helen Keller; was born; in Tuscumbia) Helen Keller was born in Tuscumbia Helen Keller was born in Tuscumbia , Alabama . +1 (Henry Ford; said; history is bunk as he was busy reinventing American industry a century ago) Henry Ford said history is bunk as he was busy reinventing American industry a century ago It was Henry Ford who said history is bunk as he was busy reinventing American industry a century ago . +1 (Henry; confiscated; all the churchs lands) Henry confiscated all the churchs lands Henry made himself head of the church and confiscated all the churchs lands for his own . +1 (Henry; made; himself head of the church) Henry made himself head of the church Henry made himself head of the church and confiscated all the churchs lands for his own . +1 (Hermione; looked at Harry; again) Hermione looked at Harry again Hermione looked at Harry again , annoyed and perplexed . +1 (Hes; gained; weight) Hes gained weight Hes gained weight and is back to his old self . +1 (Hes; got; the moves and the muscles to prove it) Hes got the moves and the muscles to prove it Hes got the moves and the muscles to prove it . +1 (Hes; is; back to his old self) Hes is back to his old self Hes gained weight and is back to his old self . +1 (Hezbollah; attacked; Israel) Hezbollah attacked Israel Hezbollah attacked Israel without any knowledge of the government . +1 (Hezbollah; killing; civilians) Hezbollah killing civilians Hezbollah fires rockets into Israeli towns and cities , killing civilians , and then shouts war crimes when Israel shoots back and kills civilians . +1 (Hillary Clinton; should n't be president; because she 1 screwed up that national health care initiative of hers back in '94) Hillary Clinton should n't be president because she 1 screwed up that national health care initiative of hers back in '94 Some say Hillary Clinton should n't be president because she 1 screwed up that national health care initiative of hers back in '94 , and because 2 she 's married to Bill . +1 (Hillary; is some wannabee senator from; NY) Hillary is some wannabee senator from NY Jerry , Jerry , Jerry , so you say that Hillary is some wannabee senator from NY who got elected just because her last name was Clinton . +1 (Hillary; is; a Liar) Hillary is a Liar Hillary is a Liar ! +1 (Hillary; is; some wannabee senator from NY) Hillary is some wannabee senator from NY Jerry , Jerry , Jerry , so you say that Hillary is some wannabee senator from NY who got elected just because her last name was Clinton . +1 (Hillary; takes; the nomination) Hillary takes the nomination I am betting that Hillary takes the nomination . +1 (History; says; that Rama who killed Ravana , in his endeavour to redeem his consort seetha regretted for his evil deed and worshipped the sacred place) History says that Rama who killed Ravana , in his endeavour to redeem his consort seetha regretted for his evil deed and worshipped the sacred place History says that Rama who killed Ravana , in his endeavour to redeem his consort seetha regretted for his evil deed and worshipped the sacred place Rameswaram . +1 (Hitler; was; a christian) Hitler was a christian Yes , Virginia , Hitler was a christian . +1 (Horatio and the guards; to swear; secrecy about the ghostly visitations) Horatio and the guards to swear secrecy about the ghostly visitations Rather , Hamlet asks Horatio and the guards to swear secrecy about the ghostly visitations . +1 (House; asks Cuddy; for permission) House asks Cuddy for permission House asks Cuddy for permission to perform electroshock therapy on Derek . +1 (Houston; is the fourth largest city in; the US) Houston is the fourth largest city in the US Houston is the fourth largest city in the US and growing . +1 (Houston; is; the fourth largest city in the US and growing) Houston is the fourth largest city in the US and growing Houston is the fourth largest city in the US and growing . +1 (How former muslim farhad found Jesus; is; more than a prophet) How former muslim farhad found Jesus is more than a prophet How former muslim farhad found Jesus is more than a prophet . +1 (Howard; told; parliament) Howard told parliament I think that is highly appropriate , given the importance of these Games , Howard told parliament . +1 (Howard; was preceded; by his father) Howard was preceded by his father Howard was preceded in death by his father , Warren M. Helen pulled her mouth away and Beast Porn her handiwork . +1 (Howard; was preceded; in death) Howard was preceded in death Howard was preceded in death by his father , Warren M. Helen pulled her mouth away and Beast Porn her handiwork . +1 (Hu; says; China to speed up modernization of military) Hu says China to speed up modernization of military Hu says China to speed up modernization of military . +1 (Huck; wins; IA) Huck wins IA Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (Humans; are biologically programmed; for what has become known as extended breastfeeding) Humans are biologically programmed for what has become known as extended breastfeeding Humans are in fact biologically programmed for what has become known as extended breastfeeding . +1 (Hurricane Katrina; struck the Gulf Coast; in 2005) Hurricane Katrina struck the Gulf Coast in 2005 But when Hurricane Katrina struck the Gulf Coast in 2005 , the new departments shortcomings were revealed , leading to a reorganization . +1 (I; 've having; the same problem with my PC) I 've having the same problem with my PC Hi my name is Suzanne , I 've having the same problem with my PC , no sound at all . +1 (I; admire; people who know English) I admire people who know English I admire people who know English . +1 (I; am; 12 years old) I am 12 years old My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +1 (I; became frightened and depressed; when Ronald Regan was president and rattling nuclear sabers) I became frightened and depressed when Ronald Regan was president and rattling nuclear sabers I became frightened and depressed when Ronald Regan was president and rattling nuclear sabers . +1 (I; caught the cleaning bug; this morning) I caught the cleaning bug this morning Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +1 (I; caught; the cleaning bug; this morning) I caught the cleaning bug; this morning Since yesterday was Palm Sunday , I caught the cleaning bug this morning . +1 (I; do know; that Iraq is nothing like Vietnam , at least not in terms of casualities -- several hundred dead) I do know that Iraq is nothing like Vietnam , at least not in terms of casualities -- several hundred dead I do know that Iraq is nothing like Vietnam , at least not in terms of casualities -- several hundred dead versus 50,000 . +1 (I; do not believe; that Washington was a deist , as Jefferson was) I do not believe that Washington was a deist , as Jefferson was I have also said that I do not believe that Washington was a deist , as Jefferson was . +1 (I; explained; that Woodson chose February because he felt that the three greatest Americans were born during that month) I explained that Woodson chose February because he felt that the three greatest Americans were born during that month Furthermore , I explained that Woodson chose February because he felt that the three greatest Americans were born during that month . +1 (I; have said; that I do not believe that Washington was a deist , as Jefferson was) I have said that I do not believe that Washington was a deist , as Jefferson was I have also said that I do not believe that Washington was a deist , as Jefferson was . +1 (I; heard; a song about how Jesus did nt need to be nailed to the cross) I heard a song about how Jesus did nt need to be nailed to the cross I once heard a song about how Jesus did nt need to be nailed to the cross because His love would have kept Him there . +1 (I; hope; Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out) I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out . +1 (I; hope; the gives me a day free because they know how important this game is for me) I hope the gives me a day free because they know how important this game is for me Im stuck in the middle but I hope the gives me a day free because they know how important this game is for me . +1 (I; like; KDE) I like KDE I like KDE , but Ubuntu uses Gnome , this is my problem . +1 (I; live; in Adelaide) I live in Adelaide My name is George , I am 12 years old and I live in Adelaide , which is the capital city of South Australia . +1 (I; think; Santa Claus is a woman) I think Santa Claus is a woman Santa Claus is a Woman I think Santa Claus is a woman . +1 (I; would like to help spread the word; as a tribute to my mom) I would like to help spread the word as a tribute to my mom September is Ovarian Cancer awareness month and I would like to help spread the word as a tribute to my mom . +1 (I; would like to help; spread the word as a tribute to my mom) I would like to help spread the word as a tribute to my mom September is Ovarian Cancer awareness month and I would like to help spread the word as a tribute to my mom . +1 (I; would like; to help spread the word as a tribute to my mom) I would like to help spread the word as a tribute to my mom September is Ovarian Cancer awareness month and I would like to help spread the word as a tribute to my mom . +1 (IMHO; is; a good thing) IMHO is a good thing IMHO , Choice/competition is a good thing ! +1 (Id; hate; to have to be in the positon of defending him) Id hate to have to be in the positon of defending him Im not certain what I would do in a general election campaign if Edwards is the nominee , but Id hate to have to be in the positon of defending him . +1 (Im; As typing; this article) Im As typing this article As Im typing this article , Ive received an email that I need to coordinate interviews ahead of time . +1 (Im; not terribly bothered; by this one-itsa bit aggressive) Im not terribly bothered by this one-itsa bit aggressive Im not terribly bothered by this one-itsa bit aggressive , but it got a laugh , and McCain answered the question , unlike Bush , who jokes and evades questions . +1 (Im; stuck; in the middle) Im stuck in the middle Im stuck in the middle but I hope the gives me a day free because they know how important this game is for me . +1 (Im; to see; if Word will support Blogger) Im to see if Word will support Blogger Im curious to see if Word will support Blogger , which is owned by Google . +1 (Imation CD-R; discs; store data) Imation CD-R discs store data Imation CD-R discs store data swiftly and permanently with 1x to 52x write speeds . +1 (India , Pakistan , and Israel; are not; NPT member states) India , Pakistan , and Israel are not NPT member states Since that time , India , Pakistan , and Israel have developed nuclear weapons , but are not NPT member states . +1 (India , Pakistan , and Israel; have developed; nuclear weapons) India , Pakistan , and Israel have developed nuclear weapons Since that time , India , Pakistan , and Israel have developed nuclear weapons , but are not NPT member states . +1 (India; has; the power to drown you with its size and diversity) India has the power to drown you with its size and diversity India has the power to drown you with its size and diversity . +1 (India; is divided into; 28 states and seven union territories) India is divided into 28 states and seven union territories India is divided into 28 states and seven union territories . +1 (India; is divided; into 28 states and seven union territories) India is divided into 28 states and seven union territories India is divided into 28 states and seven union territories . +1 (India; is; in the process of negotiating a Free Trade Agreement with GCC and the first round of negotiation) India is in the process of negotiating a Free Trade Agreement with GCC and the first round of negotiation India is in the process of negotiating a Free Trade Agreement with GCC and the first round of negotiation was held on March - , 06 . +1 (India; is; the only country in the world with no history of anti-semitism) India is the only country in the world with no history of anti-semitism India is the only country in the world with no history of anti-semitism . +1 (International Development; is the part of; the UK government) International Development is the part of the UK government The Department for International Development is the part of the UK government that manages Britain 's aid to poor countries and works to eradicate extreme poverty . +1 (Internet Explorer; can not display; the webpage) Internet Explorer can not display the webpage IE : Internet Explorer cannot display the webpage This problem can be caused by a variety of issues , including : Internet connectivity has been lost . +1 (Interviews; were conducted; in Spanish) Interviews were conducted in Spanish Interviews were conducted in Spanish with parents who identified themselves as Latino and had at least one child between 4 and 8 years of age . +1 (Iran; does not have; an active nuclear weapons program) Iran does not have an active nuclear weapons program The apparent snub comes amid ongoing hostility between the two powers despite recent US claims that Iran does not have an active nuclear weapons program . +1 (Iran; does not have; the bomb) Iran does not have the bomb Ex-UN Weapons Inspector Ritter says Iran does not have the bomb nor is it close to a bomb-Washington does not want to hear that and is in full attack mode . +1 (Iran; from acquiring; nuclear technology) Iran from acquiring nuclear technology Bush told Olmert he will not allow Iran to acquire nuclear weapons , but US officials have cast doubt over Washington 's capability to prevent Iran from acquiring nuclear technology . +1 (Iran; obtain; nuclear weapons) Iran obtain nuclear weapons Israel cannot let Iran obtain nuclear weapons , Acting Prime Minister Ehud Olmert said Tuesday , spearheading stepped up Israeli diplomatic efforts to help keep the Bomb out of Teherans hands . +1 (Iran; to acquire; nuclear weapons) Iran to acquire nuclear weapons Bush told Olmert he will not allow Iran to acquire nuclear weapons , but US officials have cast doubt over Washington 's capability to prevent Iran from acquiring nuclear technology . +1 (Iraq; does nt have; an army) Iraq does nt have an army How can chimpy brag about kicking ass when Iraq does nt have an army . +1 (Iraq; had; ties to Al Qaeda) Iraq had ties to Al Qaeda In the beginning , we were going because Iraq had ties to Al Qaeda . +1 (Iraq; had; weapons of mass destruction) Iraq had weapons of mass destruction Bush claimed Iraq had weapons of mass destruction . +1 (Iraq; is nothing like; Vietnam) Iraq is nothing like Vietnam I do know that Iraq is nothing like Vietnam , at least not in terms of casualities -- several hundred dead versus 50,000 . +1 (Iraq; is; nothing like Vietnam , at least not in terms of casualities -- several hundred dead) Iraq is nothing like Vietnam , at least not in terms of casualities -- several hundred dead I do know that Iraq is nothing like Vietnam , at least not in terms of casualities -- several hundred dead versus 50,000 . +1 (Iraqis; will go once more; this time to vote for candidates) Iraqis will go once more this time to vote for candidates And on December 15 , Iraqis will go to the polls once more , this time to vote for candidates who will serve a full term in office . +1 (Iraqis; will go once more; to the polls) Iraqis will go once more to the polls And on December 15 , Iraqis will go to the polls once more , this time to vote for candidates who will serve a full term in office . +1 (Ireland-Will Ferrell; has received; the James Joyce award) Ireland-Will Ferrell has received the James Joyce award DUBLIN , Ireland-Will Ferrell has received the James Joyce award but concedes he 's no literary expert . +1 (Ireland; is; the place to be next March to enjoy Ireland 's biggest party) Ireland is the place to be next March to enjoy Ireland 's biggest party So whether you are Irish or just wish you were , Ireland is the place to be next March to enjoy Ireland 's biggest party . +1 (Islam; is NOT; a violent religion) Islam is NOT a violent religion Again , Islam is NOT a violent religion . +1 (Israel; can not let; Iran obtain nuclear weapons) Israel can not let Iran obtain nuclear weapons Israel cannot let Iran obtain nuclear weapons , Acting Prime Minister Ehud Olmert said Tuesday , spearheading stepped up Israeli diplomatic efforts to help keep the Bomb out of Teherans hands . +1 (Israel; kills; civilians) Israel kills civilians Hezbollah fires rockets into Israeli towns and cities , killing civilians , and then shouts war crimes when Israel shoots back and kills civilians . +1 (Israel; needs; peace and the Palestinian people need peace and justice and I hope my limited influence will help to precipitate some steps) Israel needs peace and the Palestinian people need peace and justice and I hope my limited influence will help to precipitate some steps Carter went on to say , Israel needs peace and the Palestinian people need peace and justice and I hope my limited influence will help to precipitate some steps . +1 (Israel; shoots; back) Israel shoots back Hezbollah fires rockets into Israeli towns and cities , killing civilians , and then shouts war crimes when Israel shoots back and kills civilians . +1 (Israel; strikes; Iran) Israel strikes Iran Scenario : Israel strikes Iran . +1 (Israel; went; out of Egypt) Israel went out of Egypt When Israel went out of Egypt , the house of Jacob from a people of strange language ; Judah was his sanctuary , and Israel his dominion . +1 (Italy; has won; the world cup) Italy has won the world cup Italy has won the world cup ! +1 (Italy; was Italy; because it was different) Italy was Italy because it was different In my opinion , Italy was Italy , because it was different , and it would have been preferable not to try to overcome , but rather to make use of , Italy 's differences . +1 (Ive; heard as well this argument; again and again) Ive heard as well this argument again and again Ive heard this argument again and again as well . +1 (Ive; posted; the video) Ive posted the video Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (Ive; seen; this book) Ive seen this book Ive seen this book and it sa truly great collection and a must for Valiant fans . +1 (Ive; set up this blog; as a place) Ive set up this blog as a place Ive set up this blog as a place to store my random musings on life , the universe and well , pretty much anything . +1 (Ive; talked; over the years) Ive talked over the years Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +1 (Ive; talked; to many people) Ive talked to many people Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +1 (Ive; worked; with people) Ive worked with people Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +1 (Jacob; had four wives; at the same time) Jacob had four wives at the same time Jacob had four wives at the same time , and though the end came out well , his family went though terrible suffering . +1 (Jane; has; two children and a husband , all of whom share a passion for being in the country) Jane has two children and a husband , all of whom share a passion for being in the country Jane has two children and a husband , all of whom share a passion for being in the country , being on the beach and eating . +1 (January; turns; to February) January turns to February When January turns to February , you ca n't afford that kind of goal with any regularity . +1 (Japanese women who move to the United States; have increased; breast cancer rates that approach those of US-born women) Japanese women who move to the United States have increased breast cancer rates that approach those of US-born women Japanese women who move to the United States have increased breast cancer rates that approach those of US-born women . +1 (Jaron Lanier; led; the experiments) Jaron Lanier led the experiments Jaron Lanier , who coined the term virtual reality and who built the world 's first data glove in the early 1990s , led the experiments , using Internet2 . +1 (Jeff Gordon; win; the race) Jeff Gordon win the race I bet you were so happy to see Jeff Gordon win the race ! +1 (Jeff and his wife; have; three children) Jeff and his wife have three children Jeff and his wife Kathy have three children : Kyle , Kristin and Nathanael . +1 (Jeff; hit the nail; on the head) Jeff hit the nail on the head I am afraid that Jeff hit the nail on the head . +1 (Jeff; was preceded; by his grandmother) Jeff was preceded by his grandmother Jeff was preceded in death by his grandmother , Ollie Cole ; and an uncle , Clyde Whiteman . +1 (Jeff; was preceded; in death) Jeff was preceded in death Jeff was preceded in death by his grandmother , Ollie Cole ; and an uncle , Clyde Whiteman . +1 (Jerusalem; being an open city under; neither nations control) Jerusalem being an open city under neither nations control When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (Jerusalem; is the capital of; Israel) Jerusalem is the capital of Israel While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Jesus Christ; is Lord of; all) Jesus Christ is Lord of all A day is coming when every knee will bow and every tongue confess that Jesus Christ is Lord of all . +1 (Jesus Christ; is the only way to; salvation) Jesus Christ is the only way to salvation God 's word is very clear that Jesus Christ is the only way to salvation . +1 (Jesus Christ; is; my Lord and Savior) Jesus Christ is my Lord and Savior Jesus Christ is my Lord and Savior , and nothing can change that . +1 (Jesus Christ; is; the only way) Jesus Christ is the only way God 's word is very clear that Jesus Christ is the only way to salvation . +1 (Jesus; breathed; his last) Jesus breathed his last But Jesus gave a loud cry and breathed his last . +1 (Jesus; came; to Nazareth) Jesus came to Nazareth Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read . +1 (Jesus; came; to bring Life) Jesus came to bring Life Jesus came to bring Life , abundant Life . +1 (Jesus; did n't deserve; to be killed) Jesus did n't deserve to be killed He also said that Jesus had done nothing wrong and did n't deserve to be killed . +1 (Jesus; did n't have; a human father) Jesus did n't have a human father Jesus did n't have a human father . +1 (Jesus; did not rise; from the dead) Jesus did not rise from the dead If Jesus did not rise from the dead , then death has power over Him and has defeated Him . +1 (Jesus; did nt need; to be nailed to the cross) Jesus did nt need to be nailed to the cross I once heard a song about how Jesus did nt need to be nailed to the cross because His love would have kept Him there . +1 (Jesus; fulfilled; Law) Jesus fulfilled Law Moses brought the Law , and Jesus fulfilled that Law ; Mohammed thoroughly abrogated that Law and introduced one more to his fancy . +1 (Jesus; gave; a loud cry) Jesus gave a loud cry But Jesus gave a loud cry and breathed his last . +1 (Jesus; got; into a boat) Jesus got into a boat Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore . +1 (Jesus; had done; nothing wrong) Jesus had done nothing wrong He also said that Jesus had done nothing wrong and did n't deserve to be killed . +1 (Jesus; is more than; a prophet) Jesus is more than a prophet How former muslim farhad found Jesus is more than a prophet . +1 (Jesus; is not; an Angel) Jesus is not an Angel What does the Bible state , Jesus is not an Angel . +1 (Jesus; is the only begotten Son of; God) Jesus is the only begotten Son of God Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (Jesus; is; lord and God and the Holy Spirit) Jesus is lord and God and the Holy Spirit I am a beliver and know Jesus is lord and God and the Holy Spirit watches over all of us . +1 (Jesus; is; the only begotten Son of God) Jesus is the only begotten Son of God Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (Jesus; is; the only way to be saved) Jesus is the only way to be saved I have learned from our family bible sharing and studies , that Jesus is the only way to be saved . +1 (Jesus; received teachings; from Yoga) Jesus received teachings from Yoga Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; received teachings; in India) Jesus received teachings in India Some people believe Jesus received teachings from Yoga in India . +1 (Jesus; saw; Satan fall like lightning from the sky) Jesus saw Satan fall like lightning from the sky For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Jesus; sent the DEMONS; into the pigs) Jesus sent the DEMONS into the pigs NOW I see why Jesus sent the DEMONS into the pigs , to make a point . +1 (Jesus; shouted; , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee) Jesus shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee It was only when Jesus was in the boat and shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee . +1 (Jesus; shouted; Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee) Jesus shouted Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee It was only when Jesus was in the boat and shouted , Peace be still that the disciples were saved from that terrible storm on the Sea of Galilee . +1 (Jesus; spoke truth; to show us what we are and grace to show us what we can become) Jesus spoke truth to show us what we are and grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (Jesus; spoke truth; to show us what we are and grace) Jesus spoke truth to show us what we are and grace Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (Jesus; taught; as the people listened on the shore) Jesus taught as the people listened on the shore Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore . +1 (Jesus; to bring; Life) Jesus to bring Life Jesus came to bring Life , abundant Life . +1 (Jesus; used to represent; all the Gentiles) Jesus used to represent all the Gentiles Jesus used the expression , from the east and west , to represent all the Gentiles . +1 (Jesus; used; the expression) Jesus used the expression Jesus used the expression , from the east and west , to represent all the Gentiles . +1 (Jesus; was tempted; by Satan) Jesus was tempted by Satan I know that Jesus was tempted by Satan , but Satan was literally standing before Jesus . +1 (Jesus; was with the disciples; for forty days) Jesus was with the disciples for forty days Jesus was with the disciples for forty days after the resurrection . +1 (Jesus; when came; to Nazareth) Jesus when came to Nazareth Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read . +1 (Jesus; will return at; the advent of the messianic age) Jesus will return at the advent of the messianic age Jesus will return from heaven at the advent of the messianic age , slay the Dajjal near Jerusalem , and then pray behind the Mahdi . +1 (Jesus; will return from; heaven) Jesus will return from heaven Jesus will return from heaven at the advent of the messianic age , slay the Dajjal near Jerusalem , and then pray behind the Mahdi . +1 (Jesus; will return; to this earth) Jesus will return to this earth According to this belief , Jesus will return to this earth in two phases . +1 (Jews , Christians , and Muslims; find; faith , freedom , and joy on the Sabbath / Christopher D. Ringwald) Jews , Christians , and Muslims find faith , freedom , and joy on the Sabbath / Christopher D. Ringwald A day apart : how Jews , Christians , and Muslims find faith , freedom , and joy on the Sabbath / Christopher D. Ringwald . +1 (Jews , Christians , and Muslims; how find; faith , freedom , and joy on the Sabbath / Christopher D. Ringwald) Jews , Christians , and Muslims how find faith , freedom , and joy on the Sabbath / Christopher D. Ringwald A day apart : how Jews , Christians , and Muslims find faith , freedom , and joy on the Sabbath / Christopher D. Ringwald . +1 (John Edwards; is; a trial lawyer and Hillary Rodham Clinton) John Edwards is a trial lawyer and Hillary Rodham Clinton John Edwards is a trial lawyer and Hillary Rodham Clinton might make a dandy Attorney General . +1 (John Lennon; after becoming disillusioned; when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram) John Lennon after becoming disillusioned when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram John Lennon wrote the song after becoming disillusioned when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram , but Lennon later changed the title at George Harrison 's instigation . +1 (John Lennon; wrote the song; after becoming disillusioned) John Lennon wrote the song after becoming disillusioned John Lennon wrote the song after becoming disillusioned when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram , but Lennon later changed the title at George Harrison 's instigation . +1 (John Lennon; wrote the song; when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram) John Lennon wrote the song when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram John Lennon wrote the song after becoming disillusioned when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram , but Lennon later changed the title at George Harrison 's instigation . +1 (John; baptizes; Jesus) John baptizes Jesus In Luke 's Gospel , John baptizes Jesus as seemingly just another face in the crowd , with no sign that he regarded his cousin as anything special . +1 (John; was; a Baptist) John was a Baptist John was a Baptist . +1 (Jones; carries twice; the ball) Jones carries twice the ball Jones carries the ball twice and gets almost as much yardage as Foster . +1 (Jones; gets; almost as much yardage) Jones gets almost as much yardage Jones carries the ball twice and gets almost as much yardage as Foster . +1 (Jordan; failed; to make it into the Major League) Jordan failed to make it into the Major League Jordan retired from basketball for a spell to play for the Birmingham Barons but failed to make it into the Major League . +1 (Jordan; retired from basketball; for a spell) Jordan retired from basketball for a spell Jordan retired from basketball for a spell to play for the Birmingham Barons but failed to make it into the Major League . +1 (Jordan; retired to play; for the Birmingham Barons) Jordan retired to play for the Birmingham Barons Jordan retired from basketball for a spell to play for the Birmingham Barons but failed to make it into the Major League . +1 (Josh Howard; had; 25 points and 10 rebounds) Josh Howard had 25 points and 10 rebounds Josh Howard had 25 points and 10 rebounds , and the Mavericks beat New Orleans 105-89 Tuesday night for their 21st straight victory over the Hornets . +1 (Juno point and Brooklyn; are; the places to target the monsters though with several fish over the 30kg mark weighed in over the past week) Juno point and Brooklyn are the places to target the monsters though with several fish over the 30kg mark weighed in over the past week Juno point and Brooklyn are the places to target the monsters though with several fish over the 30kg mark weighed in over the past week . +1 (Jupiter; is; in opposition to Mars) Jupiter is in opposition to Mars Jupiter is in opposition to Mars , and the full Moon will be in the solar 7th House opposite Capricorn . +1 (Jurors; deliberated; for about two hours in the case of 44-year-old Leroy Jaramillo) Jurors deliberated for about two hours in the case of 44-year-old Leroy Jaramillo Jurors deliberated for about two hours in the case of 44-year-old Leroy Jaramillo . +1 (Juventus; was demoted to Serie B; for match-fixing) Juventus was demoted to Serie B for match-fixing Juventus was demoted to Serie B for match-fixing and stripped of its last two Serie A titles by a sports tribunal on Friday . +1 (KOBE; is the best player in; the NBA) KOBE is the best player in the NBA KOBE is the best player in the NBA . +1 (KOBE; is; the best player in the NBA) KOBE is the best player in the NBA KOBE is the best player in the NBA . +1 (Kate; had; a great time) Kate had a great time Kate had a great time . +1 (Kathy; is preceded; by parents Jim and Naomi Atkins) Kathy is preceded by parents Jim and Naomi Atkins Kathy is preceded in death by parents Jim and Naomi Atkins . +1 (Kathy; is preceded; in death) Kathy is preceded in death Kathy is preceded in death by parents Jim and Naomi Atkins . +1 (Kerry; supported too; the war) Kerry supported too the war Kerry supported the war too . +1 (Kerry; went; to Vietnam) Kerry went to Vietnam In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (Kevin Rudd; [is] leader [of]; Labor Party) Kevin Rudd [is] leader [of] Labor Party Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Kids; had a blast; when they mistook a fossil for a Dracolich also) Kids had a blast when they mistook a fossil for a Dracolich also Kids had a blast when they mistook a fossil for a Dracolich also . +1 (Kimi Raikkonen; wins to secure; his first F1 crown) Kimi Raikkonen wins to secure his first F1 crown Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Kimi Raikkonen; wins; the Brazilian Grand Prix) Kimi Raikkonen wins the Brazilian Grand Prix Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (Korea; was a colony of Japan; only once) Korea was a colony of Japan only once Also , Korea was a colony of Japan only once . +1 (Korea; was a colony of; Japan) Korea was a colony of Japan Also , Korea was a colony of Japan only once . +1 (Labor Party leader Kevin Rudd; faces the media; as he arrives to vote in the Rebecca lobo of Griffith in Brisbane) Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (Lane Bryant; is the most recognized name in; plus-size clothing) Lane Bryant is the most recognized name in plus-size clothing Lane Bryant is the most recognized name in plus-size clothing , and our emphasis on fashionnot merely size makes us a style leader . +1 (Lane Bryant; is; the most recognized name in plus-size clothing) Lane Bryant is the most recognized name in plus-size clothing Lane Bryant is the most recognized name in plus-size clothing , and our emphasis on fashionnot merely size makes us a style leader . +1 (Languages; include; Japanese , Chinese , French , German , Spanish , Korean , and English) Languages include Japanese , Chinese , French , German , Spanish , Korean , and English Languages include Japanese , Chinese , French , German , Spanish , Korean , and English . +1 (Latina; is squeezing the cheese; out of a peeled banana in her dress) Latina is squeezing the cheese out of a peeled banana in her dress Stunning blonde is wearing this killer Latina is squeezing the cheese out of a peeled banana in her dress and holds her bountiful snack trays . +1 (Launceston; is; Tasmania 's second largest city and Australia 's third oldest city) Launceston is Tasmania 's second largest city and Australia 's third oldest city Launceston is Tasmania 's second largest city and Australia 's third oldest city . +1 (Laura; Little did know; when she sent a gift from abroad to her friend 's son) Laura Little did know when she sent a gift from abroad to her friend 's son Little did Laura know when she sent a gift from abroad to her friend 's son where these little shoes would take the threesome . +1 (Law and; introduced; one more to his fancy) Law and introduced one more to his fancy Moses brought the Law , and Jesus fulfilled that Law ; Mohammed thoroughly abrogated that Law and introduced one more to his fancy . +1 (Laws; protect; people) Laws protect people Laws should be in place in order to guard the peoples ' freedoms , and protect people . +1 (Lennon; changed; the title) Lennon changed the title John Lennon wrote the song after becoming disillusioned when the maharishi allegedly made a pass at the actor Mia Farrow at his Indian ashram , but Lennon later changed the title at George Harrison 's instigation . +1 (Little Theatre of Jefferson City 1005 Chestnut Street , Jefferson City; features great performances; throughout the year) Little Theatre of Jefferson City 1005 Chestnut Street , Jefferson City features great performances throughout the year Little Theatre of Jefferson City 1005 Chestnut Street , Jefferson City , MO 65101 , Jefferson City 's oldest community theatre features great performances throughout the year . +1 (Liverpool; beat Chelsea; in the champions league semi final) Liverpool beat Chelsea in the champions league semi final Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat Chelsea; last night) Liverpool beat Chelsea last night Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat; Chelsea) Liverpool beat Chelsea Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat; in the champions league semi final) Liverpool beat in the champions league semi final Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Liverpool; beat; last night) Liverpool beat last night Firstly , can i just say yeeeeeeeeeeeeeeeeee haaaaaaaaaaaaaaw get in you beauty , have it , Liverpool beat Chelsea last night in the champions league semi final . +1 (Location; was; Hayward) Location was Hayward Location was Hayward , California . +1 (Lomu; hand off; Will Carling) Lomu hand off Will Carling I thought England was a good team but then I saw Lomu hand off Will Carling , and walk over Tony Underwood , I got terrified . +1 (Louis Blues; ended; a seven-game winless streak) Louis Blues ended a seven-game winless streak Louis Blues ended a seven-game winless streak with a 3-2 win over the Toronto Maple Leafs . +1 (Luke 4:16; says; when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read) Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read . +1 (Luke 4:16; says; when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up) Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up Luke 4:16 says when Jesus came to Nazareth , as his custom was , he went into the synagogue on the sabbath day , and stood up for to read . +1 (Luke; comes; to Jesus) Luke comes to Jesus In that passage , Luke 7:1-10 , the centurion comes to Jesus to beg on behalf of a beloved servant who is close to death . +1 (Luke; comes; to beg on behalf of a beloved servant) Luke comes to beg on behalf of a beloved servant In that passage , Luke 7:1-10 , the centurion comes to Jesus to beg on behalf of a beloved servant who is close to death . +1 (Manu Ginobili; scored; 22 points) Manu Ginobili scored 22 points Manu Ginobili scored 22 points and Fabricio Oberto added 11 rebounds in 37 effective minutes , supporting Duncan 's 19-point effort and keying a 91-79 Spurs win . +1 (Many people; use the Internet; only for checking their emails) Many people use the Internet only for checking their emails Many people use the Internet only for checking their emails . +1 (Marilyn Monroe; was born; Norma Jeane Mortenson) Marilyn Monroe was born Norma Jeane Mortenson Marilyn Monroe was born Norma Jeane Mortenson on the 1st June , 1926 , in Los Angeles , California , to Gladys Baker . +1 (Marilyn Monroe; was born; on the 1st June , 1926 , in Los Angeles) Marilyn Monroe was born on the 1st June , 1926 , in Los Angeles Marilyn Monroe was born Norma Jeane Mortenson on the 1st June , 1926 , in Los Angeles , California , to Gladys Baker . +1 (Martha; complained; to Jesus) Martha complained to Jesus It is intriguing that Martha complained to Jesus and even ordered him about , as recorded in Luke 10:40 . +1 (Martha; even ordered him; about) Martha even ordered him about It is intriguing that Martha complained to Jesus and even ordered him about , as recorded in Luke 10:40 . +1 (Marty; goes; back to 1885) Marty goes back to 1885 So Marty goes back to 1885 and meets his ancestors . +1 (Marty; meets; his ancestors) Marty meets his ancestors So Marty goes back to 1885 and meets his ancestors . +1 (Marx; When wrote The Communist Manifesto; in 1848) Marx When wrote The Communist Manifesto in 1848 When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +1 (Marx; wrote The Communist Manifesto; in 1848) Marx wrote The Communist Manifesto in 1848 When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +1 (Mary; is; Co-Redemptrix) Mary is Co-Redemptrix She is trying to get the Pope to proclaim that Mary is Co-Redemptrix . +1 (Marylands # 1 Tire Company; has immediate opportunities for; the right individuals) Marylands # 1 Tire Company has immediate opportunities for the right individuals Details : Marylands # 1 Tire Company , Mr. Tire , has immediate opportunities for the right individuals . +1 (McCain; answered the question; unlike Bush) McCain answered the question unlike Bush Im not terribly bothered by this one-itsa bit aggressive , but it got a laugh , and McCain answered the question , unlike Bush , who jokes and evades questions . +1 (McCain; wins; NH) McCain wins NH Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (McIntyre; is; a magna cum laude graduate of Harvard) McIntyre is a magna cum laude graduate of Harvard McIntyre is a magna cum laude graduate of Harvard . +1 (Meetings; are held; at 1:00 PM) Meetings are held at 1:00 PM Meetings are held on the second Thursday of every month at 1:00 PM at St . +1 (Meetings; are held; at Ft) Meetings are held at Ft Meetings are held on the third Monday of every month at Ft . +1 (Meetings; are held; on the second Thursday of every month) Meetings are held on the second Thursday of every month Meetings are held on the second Thursday of every month at 1:00 PM at St . +1 (Meetings; are held; on the second Wednesday of every month) Meetings are held on the second Wednesday of every month Meetings are held on the second Wednesday of every month , 7pm at Grace College . +1 (Meetings; are held; on the third Monday of every month) Meetings are held on the third Monday of every month Meetings are held on the third Monday of every month at Ft . +1 (Meredith; pasted several stamps; Because she said it would take lots of stamps) Meredith pasted several stamps Because she said it would take lots of stamps Then Meredith pasted several stamps on the front of the envelope Because she said it would take lots of stamps to get the letter all the way to heaven . +1 (Meredith; pasted several stamps; on the front of the envelope) Meredith pasted several stamps on the front of the envelope Then Meredith pasted several stamps on the front of the envelope Because she said it would take lots of stamps to get the letter all the way to heaven . +1 (Michael Jackson; arrived; in Japan) Michael Jackson arrived in Japan Michael Jackson arrived in Japan with his 3 children . +1 (Michael and his wife; have; a son Sam and a West Highland Terrier) Michael and his wife have a son Sam and a West Highland Terrier Michael and his wife have a son Sam and a West Highland Terrier named Fergus , who makes his recording debut on Laugh and Play . +1 (Michigan; lost to Ohio State; on the field) Michigan lost to Ohio State on the field Michigan lost to Ohio State on the field . +1 (Michigan; lost; on the field) Michigan lost on the field Michigan lost to Ohio State on the field . +1 (Michigan; lost; to Ohio State) Michigan lost to Ohio State Michigan lost to Ohio State on the field . +1 (Michigan; lost; to Wisconsin) Michigan lost to Wisconsin Michigan lost to Wisconsin , and uh , Appalachian State ! +1 (Microsoft Office 2003; must be installed; on the server that is running Windows SharePoint Services as well as) Microsoft Office 2003 must be installed on the server that is running Windows SharePoint Services as well as In order to use these Web Parts , Microsoft Office 2003 must be installed on the server that is running Windows SharePoint Services as well as on the client machines . +1 (Microsoft; allows; users to customize that XML) Microsoft allows users to customize that XML Although Microsoft allows users to customize that XML , they do n't include tools or information on how to make the changes . +1 (Microsoft; discards each version; after only five years) Microsoft discards each version after only five years Microsoft spends billions of dollars developing new versions of windows , yet discards each version as worthless after only five years . +1 (Microsoft; has shown; dogged patience) Microsoft has shown dogged patience Still , Microsoft has deep pockets and has shown dogged patience . +1 (Microsoft; has; deep pockets) Microsoft has deep pockets Still , Microsoft has deep pockets and has shown dogged patience . +1 (Microsoft; owns; Bungie) Microsoft owns Bungie Since Microsoft owns Bungie , Halo games are Xbox exclusives , which may spur Halo 2 fans to finally take the plunge and upgrade to a 360 . +1 (Microsoft; revealed; that it will not release Windows Server 2008) Microsoft revealed that it will not release Windows Server 2008 Microsoft revealed today that it will not release Windows Server 2008 , the successor to Windows Server 2003 , on time . +1 (Microsoft; revealed; today) Microsoft revealed today Microsoft revealed today that it will not release Windows Server 2008 , the successor to Windows Server 2003 , on time . +1 (Mike Vick; is; the best player to ever play QB) Mike Vick is the best player to ever play QB Ive heard people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player to ever play QB. +1 (Mohammed; was the Prophet of; God) Mohammed was the Prophet of God It does NOT prove that Mohammed was the Prophet of God . +1 (Mohammed; was; the Prophet of God) Mohammed was the Prophet of God It does NOT prove that Mohammed was the Prophet of God . +1 (Montevideo; is the capital of; Uruguay) Montevideo is the capital of Uruguay Montevideo is the capital of Uruguay and is situated where the river Rio de la Plata flows into the South Atlantic . +1 (Montevideo; is; the capital of Uruguay) Montevideo is the capital of Uruguay Montevideo is the capital of Uruguay and is situated where the river Rio de la Plata flows into the South Atlantic . +1 (Moses and Aaron; lead; them) Moses and Aaron lead them God ordered Moses to command Aaron to raise the rod so that He might impel the Children of Israel to let Moses and Aaron lead them . +1 (Moses; led the people of Israel; for 40 years) Moses led the people of Israel for 40 years Moses led the people of Israel through the desert for 40 years . +1 (Moses; to command Aaron; to raise the rod so that He might impel the Children of Israel) Moses to command Aaron to raise the rod so that He might impel the Children of Israel God ordered Moses to command Aaron to raise the rod so that He might impel the Children of Israel to let Moses and Aaron lead them . +1 (Most orders; are shipped via; UPS Ground and Fedex Ground) Most orders are shipped via UPS Ground and Fedex Ground Most orders are shipped via UPS Ground and Fedex Ground . +1 (Mr Smith; goes; to Washington 37) Mr Smith goes to Washington 37 Mr Smith goes to Washington 37 Your favorite movie about movies . +1 (Multiplayer modes; add; to the value of Lost Planet) Multiplayer modes add to the value of Lost Planet Multiplayer modes add to the value of Lost Planet by allowing players to partake in intense team battles via Xbox Live online game service . +1 (My name; is; Rachael) My name is Rachael My name is Rachael and I Love all Animals ! +1 (MySpace; is being exploited; by pedophiles) MySpace is being exploited by pedophiles O'Connor said MySpace is n't at fault but rather is being exploited by pedophiles . 1 On that day did the king Ahasuerus give the house of Haman the Jew 's enemy unto Esther the queen . +1 (MySpace; is n't; at fault) MySpace is n't at fault O'Connor said MySpace is n't at fault but rather is being exploited by pedophiles . 1 On that day did the king Ahasuerus give the house of Haman the Jew 's enemy unto Esther the queen . +1 (NASA; extends; the mission) NASA extends the mission If NASA extends the mission , the spacecraft will then continue into the Kuiper Belt to study other mini-worlds . +1 (NCAA rules; prohibit from commenting; on recruits) NCAA rules prohibit from commenting on recruits NCAA rules prohibit schools from commenting on recruits until after they sign a letter of intent . +1 (NCAA rules; prohibit schools; from commenting on recruits) NCAA rules prohibit schools from commenting on recruits NCAA rules prohibit schools from commenting on recruits until after they sign a letter of intent . +1 (NCAA rules; prohibit schools; until after they sign a letter of intent) NCAA rules prohibit schools until after they sign a letter of intent NCAA rules prohibit schools from commenting on recruits until after they sign a letter of intent . +1 (Nat; becomes convinced; his voice is changing and Alex does everything) Nat becomes convinced his voice is changing and Alex does everything Nat becomes convinced his voice is changing and Alex does everything he can to convince Jesse he 's old enough to start a relationship . +1 (Nat; becomes; convinced his voice is changing and Alex does everything) Nat becomes convinced his voice is changing and Alex does everything Nat becomes convinced his voice is changing and Alex does everything he can to convince Jesse he 's old enough to start a relationship . +1 (Next Thursday; is; Good Friday) Next Thursday is Good Friday Next Thursday , which is Good Friday , there 's a Mother 's Day meeting for Fathers only . +1 (Nicolas Cage 's comic book film Ghost; entered; at number two) Nicolas Cage 's comic book film Ghost entered at number two The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (Nintendo; When was; king) Nintendo When was king When Nintendo was king you got rad prizes . +1 (Nintendo; was; king) Nintendo was king When Nintendo was king you got rad prizes . +1 (Nissan; entered; an alliance with Renault SA The Island) Nissan entered an alliance with Renault SA The Island In 1999 , Nissan entered an alliance with Renault SA The Island provides bc job search of area for picnics and bc artists bc liquor stores gatherings and even a Camping in bc Ranger program available for children . +1 (No one in the world; sells; more real estate than RE/MAX) No one in the world sells more real estate than RE/MAX No one in the world sells more real estate than RE/MAX we are The Real Estate Leaders . +1 (No one; can come; to Jesus) No one can come to Jesus No one can come to Jesus unless drawn by God . +1 (Nokia; has; plans to release the Nokia 6500 in both bar and slider form) Nokia has plans to release the Nokia 6500 in both bar and slider form Nokia has plans to release the Nokia 6500 in both bar and slider form . +1 (Normal business hours; are; 11 am to 4 pm , Tuesday) Normal business hours are 11 am to 4 pm , Tuesday Normal business hours are 11 am to 4 pm , Tuesday through Saturday . +1 (Northern Ireland; is part of; Great Britain) Northern Ireland is part of Great Britain Most of the time I say that , people say No , Northern Ireland is part of Great Britain - no it 's not . +1 (Not everyone; has; Photoshop or a slick little graphics program) Not everyone has Photoshop or a slick little graphics program Not everyone has Photoshop or a slick little graphics program or sometimes we need to just whip something up for the kids . +1 (O'Connor; said; MySpace is n't at fault but rather is being exploited by pedophiles) O'Connor said MySpace is n't at fault but rather is being exploited by pedophiles O'Connor said MySpace is n't at fault but rather is being exploited by pedophiles . 1 On that day did the king Ahasuerus give the house of Haman the Jew 's enemy unto Esther the queen . +1 (Obama; drank alcohol; in high school on Yedda-People) Obama drank alcohol in high school on Yedda-People Obama used drugs and drank alcohol in high school on Yedda-People . +1 (Obama; is; a closet Muslim) Obama is a closet Muslim Obama was born a Muslim and is a closet Muslim . +1 (Obama; is; a law professor and a state senator) Obama is a law professor and a state senator Obama is a law professor and a state senator . +1 (Obama; takes; South Carolina) Obama takes South Carolina Obama takes South Carolina by storm , and the speculations continue on whether former President husband Bill Clinton hurt Hillary Clintons campaign by going on the stump for her . +1 (Obama; used; drugs) Obama used drugs Obama used drugs and drank alcohol in high school on Yedda-People . +1 (Obama; was not in the US Senate; at that time) Obama was not in the US Senate at that time Obama was not in the US Senate at that time , though he did give a speech opposing the war while an Illinois state senator . +1 (Obama; wins the presidency; partly because of the ban) Obama wins the presidency partly because of the ban An even more interesting situation would arise if Obama wins the presidency partly because of the ban . +1 (Office hours; are Monday - Friday; 8:30 am to 6:00 pm) Office hours are Monday - Friday 8:30 am to 6:00 pm PLEASE NOTE : Office hours are Monday-Friday 8:30 am to 6:00 pm Please use the online form if you are submitting after 6 pm . +1 (Only downside; is; that Paul is in demand) Only downside is that Paul is in demand Only downside is that Paul is in demand , my guitar took almost 2 yrs from order to delivery so check the schedule with him . +1 (Oregon; is; the only state to allow a doctor to prescribe a lethal dose of medication) Oregon is the only state to allow a doctor to prescribe a lethal dose of medication Currently , Oregon is the only state to allow a doctor to prescribe a lethal dose of medication if a terminally ill patient has six months or less to live . +1 (Other users; have left; no comments for Steve) Other users have left no comments for Steve Other users have left no comments for Steve a Gilbert . +1 (PAYMENT Payment; may be made; by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card) PAYMENT Payment may be made by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card PAYMENT Payment may be made by check , money order , American Express , Discover , MasterCard , Visa or JCB credit card . +1 (PS3; is; in storage) PS3 is in storage Ive just moved house and the trusty PS3 is in storage ! +1 (Part of the reason; was; the arrogance of the party leaders) Part of the reason was the arrogance of the party leaders Part of the reason that the Democrats lost control of Congress in 1994 , and the GOP lost it in 2006 , was the arrogance of the party leaders . +1 (Pau Gasol; had; 24 points and 13 rebounds) Pau Gasol had 24 points and 13 rebounds Pau Gasol had 24 points and 13 rebounds . +1 (Paul; described the gospel; as a scandal) Paul described the gospel as a scandal Paul described the gospel as a scandal to Jews and foolishness to Greeks 1 Cor . +1 (Paul; goes; to Corinth) Paul goes to Corinth Paul leaves Athens and goes to Corinth . +1 (Paul; is; a good guy) Paul is a good guy Paul is a good guy and otherwise an intellectual-but Gravel is nothing but trash . +1 (Paul; leaves; Athens) Paul leaves Athens Paul leaves Athens and goes to Corinth . +1 (Paul; otherwise is; nothing but trash) Paul otherwise is nothing but trash Paul is a good guy and otherwise an intellectual-but Gravel is nothing but trash . +1 (Paul; provided; for his missionary trips) Paul provided for his missionary trips Paul was a tent maker and provided for his missionary trips by working . +1 (Paul; says; that the law brings the knowledge of sin , and therefore Paul has in view the moral law) Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law E Augustines evidence is that Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law . +1 (Paul; therefore has; the moral law) Paul therefore has the moral law E Augustines evidence is that Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law . +1 (Paul; was; a tent maker) Paul was a tent maker Paul was a tent maker and provided for his missionary trips by working . +1 (Paul; wrote that is; in Romans 7:18) Paul wrote that is in Romans 7:18 First of all lets have a look at what Paul wrote in Romans 7:18 I know that nothing good lives in me , that is , in my sinful nature . +1 (Payless; serves; as a low-cost alternative to major) Payless serves as a low-cost alternative to major Payless serves as a low-cost alternative to major , higher priced car rental providers . +1 (Penny; is looking; for Desmond) Penny is looking for Desmond It is interesting that Penny is looking for Desmond , but that does nt answer all the connections of the other people . +1 (People who buy the CD; are; eligible to vote online at www.youthmatters.ca for their favourite song) People who buy the CD are eligible to vote online at www.youthmatters.ca for their favourite song People who buy the CD are then eligible to vote online at www.youthmatters.ca for their favourite song . +1 (People who buy the CD; to vote online; at www.youthmatters.ca) People who buy the CD to vote online at www.youthmatters.ca People who buy the CD are then eligible to vote online at www.youthmatters.ca for their favourite song . +1 (People who buy the CD; to vote online; for their favourite song) People who buy the CD to vote online for their favourite song People who buy the CD are then eligible to vote online at www.youthmatters.ca for their favourite song . +1 (People who vote for Ron Paul; are the top 5 %; intellectually) People who vote for Ron Paul are the top 5 % intellectually People who vote for Ron Paul are the top 5 % intellectually and are neither left nor right wing . +1 (People; buy; the CD) People buy the CD People who buy the CD are then eligible to vote online at www.youthmatters.ca for their favourite song . +1 (People; vote; for Ron Paul) People vote for Ron Paul People who vote for Ron Paul are the top 5 % intellectually and are neither left nor right wing . +1 (Perseus; was the son of; Zeus) Perseus was the son of Zeus Perseus was the son of Zeus in Greek mythology . +1 (Perseus; was; the son of Zeus) Perseus was the son of Zeus Perseus was the son of Zeus in Greek mythology . +1 (Phil; has; over 20 years experience) Phil has over 20 years experience Phil has over 20 years experience as a senior executive , 15 of them as a chief executive of multinational organizations , most recently with Fujitsu , and with AT&T EasyLink , Data General and Wang . +1 (Photoshop; has; the ability to open dozens of different file formats) Photoshop has the ability to open dozens of different file formats Photoshop has the ability to open dozens of different file formats . +1 (Players; make Poffin; out of Berries) Players make Poffin out of Berries Players make Poffin out of Berries to raise their Pokemons contest stats . +1 (Players; make to raise; their Pokemons contest stats) Players make to raise their Pokemons contest stats Players make Poffin out of Berries to raise their Pokemons contest stats . +1 (Pluto; is; in Capricorn) Pluto is in Capricorn Pluto is in Capricorn and a good number of the people who read here have Pluto in Virgo which means that Saturn is transiting conjunct their Pluto which is another Pluto/Capricorn exchange . +1 (Portugal; was; the better team) Portugal was the better team Portugal was the better team but i said to myself if Greece scores first Portugal is fucked.And they did . +1 (President Bush; visits New Orleans; on the second anniversary of Hurricane Katrina) President Bush visits New Orleans on the second anniversary of Hurricane Katrina President Bush visits New Orleans on the second anniversary of Hurricane Katrina . +1 (Prizes; included; gift certificates redeemable at Collectors) Prizes included gift certificates redeemable at Collectors Prizes included gift certificates redeemable at Collectors Corner , Yu-Gi-Oh posters , promotional give-aways and Oakland Coca-Cola Street Team t-shirts to the many winners of the tournament . +1 (Pro Tools; is; the industry standard) Pro Tools is the industry standard Pro Tools is the industry standard , but the professional studios also have 200k worth of hardware to go with it . +1 (Products; must be returned in; original packaging and in original condition) Products must be returned in original packaging and in original condition Products must be returned in original packaging and in original condition with all accessories included . +1 (Products; must be returned with; all accessories) Products must be returned with all accessories Products must be returned in original packaging and in original condition with all accessories included . +1 (Progressive; announced; plans to introduce an exciting new way) Progressive announced plans to introduce an exciting new way Progressive also recently announced plans to introduce an exciting new way to play Texas Hold 'Em poker : the World Series of Poker Peer to Peer Texas Hold 'Em game . +1 (Rachel; gave birth; to Joseph) Rachel gave birth to Joseph Until Rachel gave birth to Joseph the confrontation with Esau 's angel and the ability to be confirmed as Israel were both out of the question . +1 (Rachel; was; in love with him) Rachel was in love with him Rachel was in love with him since we showed up at Hogwarts , I do n't understand why she was n't so keen on coming anyways . +1 (Raid; stands; for Redundant Array of Inexpensive Disks) Raid stands for Redundant Array of Inexpensive Disks Raid stands for Redundant Array of Inexpensive Disks . +1 (Rama; regretted; for his evil deed) Rama regretted for his evil deed History says that Rama who killed Ravana , in his endeavour to redeem his consort seetha regretted for his evil deed and worshipped the sacred place Rameswaram . +1 (Rama; worshipped; the sacred place) Rama worshipped the sacred place History says that Rama who killed Ravana , in his endeavour to redeem his consort seetha regretted for his evil deed and worshipped the sacred place Rameswaram . +1 (Reagan; when won; the nomination) Reagan when won the nomination And so when Reagan won the nomination , he selected as Vice Presidential nominee the very man who had pointed out his essential dishonesty to the world . +1 (Reagan; won; the nomination) Reagan won the nomination And so when Reagan won the nomination , he selected as Vice Presidential nominee the very man who had pointed out his essential dishonesty to the world . +1 (Registration; begins; February 1) Registration begins February 1 Registration begins February 1 at the Reference Desk . +1 (Registration; begins; at the Reference Desk) Registration begins at the Reference Desk Registration begins February 1 at the Reference Desk . +1 (Rehearsals; are held; on Sunday evenings) Rehearsals are held on Sunday evenings Rehearsals are held on Sunday evenings and include time for singing and socializing . +1 (Rehearsals; include; time for singing and socializing) Rehearsals include time for singing and socializing Rehearsals are held on Sunday evenings and include time for singing and socializing . +1 (Republicans; acted like Democrats; in terms of spending) Republicans acted like Democrats in terms of spending I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (Researchers; reported; in The New England Journal of Medicine) Researchers reported in The New England Journal of Medicine Researchers reported in The New England Journal of Medicine this year that treating advanced gum disease lowered blood pressure , thereby reducing the risk of heart disease . +1 (Researchers; reported; that treating advanced gum disease lowered blood pressure , thereby reducing the risk of heart disease) Researchers reported that treating advanced gum disease lowered blood pressure , thereby reducing the risk of heart disease Researchers reported in The New England Journal of Medicine this year that treating advanced gum disease lowered blood pressure , thereby reducing the risk of heart disease . +1 (Reuters; has the story; here) Reuters has the story here Reuters has the story here and SK blogged it earlier here . +1 (Richardson; is; the best candidate out there from any party) Richardson is the best candidate out there from any party Richardson is the best candidate out there from any party and we need him to get the nomination ! +1 (RoHS; went; in the European Union) RoHS went in the European Union When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (RoHS; went; into effect) RoHS went into effect When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (Rock Band; will ship; for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system) Rock Band will ship for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +1 (Rock Band; will ship; in Europe) Rock Band will ship in Europe Rock Band will ship in Europe for the Xbox 360video game and entertainment system from Microsoft and PLAYSTATION3 computer entertainment system and PlayStation2 computer entertainment system in the first quarter of 2008 . +1 (Rogue Ales Public House , Astoria; got a first hand look at the power of the Pacific; when winds hit 126 miles per hour on Dec) Rogue Ales Public House , Astoria got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (Rome; adopted; Christianity) Rome adopted Christianity But after Rome adopted Christianity , the organ died out . +1 (Rome; was; in power) Rome was in power In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +1 (Rome; when was; in power) Rome when was in power In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +1 (Romney; has money; because he has IT and because he is a leader) Romney has money because he has IT and because he is a leader Romney has money because he has IT and because he is a leader , a winner , a get-it-done guy . +1 (Romney; is running for President; in a time of Islamophobia) Romney is running for President in a time of Islamophobia To a certain extent , I do not blame Romney , who is running for President in a time of Islamophobia , a powerful political tool . +1 (Romney; is; the best choice) Romney is the best choice I 'm not crazy about any of the candidates , but I think Romney is the best choice . +1 (Romney; wins; MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination) Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (Ron Paul; is the best choice for; President) Ron Paul is the best choice for President I want these local Meetups because I think Ron Paul is the best choice for President in 2008 and would help point America in the right direction again . +1 (Ron Paul; is; the best choice for President) Ron Paul is the best choice for President I want these local Meetups because I think Ron Paul is the best choice for President in 2008 and would help point America in the right direction again . +1 (Ronald Reagan; had ordered; a huge buildup in the nuclear-weapons program) Ronald Reagan had ordered a huge buildup in the nuclear-weapons program Ronald Reagan was in the White House and , determined to end the Evil Empire of the Soviet Union , had ordered a huge buildup in the nuclear-weapons program . +1 (Ronald Reagan; was in office; when I turned 22 , yikes) Ronald Reagan was in office when I turned 22 , yikes Ronald Reagan was in office when I turned 22 , yikes . +1 (Ronald Reagan; was in the White House; determined to end the Evil Empire of the Soviet Union) Ronald Reagan was in the White House determined to end the Evil Empire of the Soviet Union Ronald Reagan was in the White House and , determined to end the Evil Empire of the Soviet Union , had ordered a huge buildup in the nuclear-weapons program . +1 (Roses; were; in bloom) Roses were in bloom Roses were in bloom in the little garden back of the hotel , and the orchard trees were laden with peaches , plums and other fruit , ours for the picking . +1 (Rosh HaShana; is; the Jewish New Year) Rosh HaShana is the Jewish New Year Rosh HaShanah : Rosh HaShana is the Jewish New Year commemorating the creation of the universe ; a universal day of judgment . +1 (Russia; expelled four British diplomats; on Thursday) Russia expelled four British diplomats on Thursday In retaliation , Russia expelled four British diplomats on Thursday . +1 (Ryan; goes; to school in Oak Hill) Ryan goes to school in Oak Hill Ryan goes to school in Oak Hill so I would love to find a group nearby ! +1 (SK; blogged it; earlier here) SK blogged it earlier here Reuters has the story here and SK blogged it earlier here . +1 (SMTP; stands; for Simple Mail Transfer Protocol) SMTP stands for Simple Mail Transfer Protocol SMTP stands for Simple Mail Transfer Protocol and is the standard method used for host to host transfer of messages over the internet . +1 (Sabah; is the second largest state in; Malaysia) Sabah is the second largest state in Malaysia Situated in the northeastern part of the world 's third largest island , Sabah is the second largest state in Malaysia . +1 (Sabah; is; the second largest state in Malaysia) Sabah is the second largest state in Malaysia Situated in the northeastern part of the world 's third largest island , Sabah is the second largest state in Malaysia . +1 (Saddam Hussein; had; no weapons of mass destruction) Saddam Hussein had no weapons of mass destruction Ever since it became clear that Saddam Hussein had no weapons of mass destruction , it also became clear that the real purpose of the United States ' invasion of Iraq was the acquisition of oil . +1 (Saddam Hussein; ruled; Iraq) Saddam Hussein ruled Iraq Ferguson : Saddam Hussein ruled Iraq through a political party called the Bath Party . +1 (Saddam Hussein; stood; by warnings about the future danger) Saddam Hussein stood by warnings about the future danger He said the intelligence services had never said Saddam Hussein was an imminent threat but stood by warnings about the future danger he could pose . +1 (Saddam Hussein; was; an imminent threat) Saddam Hussein was an imminent threat He said the intelligence services had never said Saddam Hussein was an imminent threat but stood by warnings about the future danger he could pose . +1 (Saddam; had; such weapons , which also was the conclusion of officials in the Clinton administration) Saddam had such weapons , which also was the conclusion of officials in the Clinton administration Compare and contrast : The lack of weapons of mass destruction in Iraq contradicts years of intelligence indicating Saddam had such weapons , which also was the conclusion of officials in the Clinton administration . +1 (Saddam; ruled; with an iron fist) Saddam ruled with an iron fist And most people thought that Saddam ruled with an iron fist ! +1 (Saddam; was n't; a nice guy) Saddam was n't a nice guy That mis-characterizes what Shark said : they inevitably invoke 9/11 or the fact that Saddam was n't a nice guy . +1 (Sami; asked for a divorce; so that she could marry EJ and end the feud between the Bradys and the Dimera) Sami asked for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (Sarah; saw; the son of Hagar) Sarah saw the son of Hagar And Sarah saw the son of Hagar . +1 (Satan and his gang; will be thrown; in the lake of fire) Satan and his gang will be thrown in the lake of fire Satan and his gang will be thrown in the lake of fire along with those who reject Jesus . +1 (Satan; fall; from the sky) Satan fall from the sky For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Satan; fall; when he made his choice) Satan fall when he made his choice For Jesus saw Satan fall like lightning from the sky when he made his choice . +1 (Satan; offers; various things that he wants or desperately needs) Satan offers various things that he wants or desperately needs Satan offers him various things that he wants or desperately needs , offering a short cut or 'fix ' to the situation Jesus finds himself in . +1 (Satan; tells Jesus; that he will give him all of the kingdoms of the world , if he will bow down and worship him) Satan tells Jesus that he will give him all of the kingdoms of the world , if he will bow down and worship him Satan tells Jesus that he will give him all of the kingdoms of the world , if he will bow down and worship him . +1 (Satan; was literally standing; before Jesus) Satan was literally standing before Jesus I know that Jesus was tempted by Satan , but Satan was literally standing before Jesus . +1 (Saturn; is transiting; their Pluto) Saturn is transiting their Pluto Pluto is in Capricorn and a good number of the people who read here have Pluto in Virgo which means that Saturn is transiting conjunct their Pluto which is another Pluto/Capricorn exchange . +1 (Scott; has; over 15 years experience in graphic design and digital publishing) Scott has over 15 years experience in graphic design and digital publishing Scott has over 15 years experience in graphic design and digital publishing . +1 (Sean Penn; directed; the movie) Sean Penn directed the movie Sean Penn wrote the screenplay and directed the movie . +1 (Sean Penn; wrote; the screenplay) Sean Penn wrote the screenplay Sean Penn wrote the screenplay and directed the movie . +1 (Seattle; had; a chance) Seattle had a chance I thought Seattle had a chance , but they had too many injuries to overcome to win . +1 (Selanne; rejoins; Ducks) Selanne rejoins Ducks Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Senate leader Harry Reid; announced; that the US had lost the war in Iraq) Senate leader Harry Reid announced that the US had lost the war in Iraq Senate leader Harry Reid recently announced that the US had lost the war in Iraq . +1 (September; is; Ovarian Cancer awareness month) September is Ovarian Cancer awareness month September is Ovarian Cancer awareness month and I would like to help spread the word as a tribute to my mom . +1 (Services; are provided regardless; to individuals) Services are provided regardless to individuals Services are provided to individuals regardless of their ability to pay . +1 (Services; are provided; to students both in and out of their regular classrooms) Services are provided to students both in and out of their regular classrooms Services are provided to students both in and out of their regular classrooms . +1 (Services; include; consultancy) Services include consultancy Services include consultancy to a client 's architect , assisting in room shaping and infrastructure acoustic design , and making recommendations regarding HVAC and mechanical noise isolation . +1 (Services; include; hospital confinement , outpatient services , emergency care and dental services) Services include hospital confinement , outpatient services , emergency care and dental services Services include hospital confinement , outpatient services , emergency care and dental services-Makati City . +1 (Services; were held; at 2:00 pm on Wednesday , Dec. 6 , 2000) Services were held at 2:00 pm on Wednesday , Dec. 6 , 2000 Services were held at 2:00 pm on Wednesday , Dec. 6 , 2000 at Rekus Funeral Home in Meta with Rev. Manuel Seaton officiating . +1 (Services; will be at 1 pm; Monday) Services will be at 1 pm Monday Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (Services; will be at 1 pm; at Four square Church in Newton) Services will be at 1 pm at Four square Church in Newton Services will be at 1 pm Monday at Four square Church in Newton , of which he was a member . +1 (Services; will be at 1:30 pm; Friday) Services will be at 1:30 pm Friday Services will be at 1:30 pm Friday at Dulle-Trimble Funeral Home . +1 (Services; will be at 1:30 pm; at Dulle-Trimble Funeral Home) Services will be at 1:30 pm at Dulle-Trimble Funeral Home Services will be at 1:30 pm Friday at Dulle-Trimble Funeral Home . +1 (Services; will be held; Friday) Services will be held Friday Aged 79 years , Services will be held Friday at 2 pm from Rohland Funeral Home , 6th & Cumberland Sts . +1 (Services; will be held; at 2 pm from Rohland Funeral Home) Services will be held at 2 pm from Rohland Funeral Home Aged 79 years , Services will be held Friday at 2 pm from Rohland Funeral Home , 6th & Cumberland Sts . +1 (Seymour; commits; suicide) Seymour commits suicide The couple are on a second honeymoon , when Seymour commits suicide . +1 (Shakespeare; came; in the late 1580 's) Shakespeare came in the late 1580 's Shakespeare came to London in the late 1580 's , joined London 's leading acting company , and over the next twenty years achieved immense popularity and unrivaled success in a variety of genres . +1 (Shakespeare; came; to London) Shakespeare came to London Shakespeare came to London in the late 1580 's , joined London 's leading acting company , and over the next twenty years achieved immense popularity and unrivaled success in a variety of genres . +1 (Shakespeare; joined; London 's leading acting company) Shakespeare joined London 's leading acting company Shakespeare came to London in the late 1580 's , joined London 's leading acting company , and over the next twenty years achieved immense popularity and unrivaled success in a variety of genres . +1 (Shakespeare; wrote; 154 sonnets around the 1590s) Shakespeare wrote 154 sonnets around the 1590s Shakespeare wrote 154 sonnets around the 1590s , and they were first published in 1609 . +1 (Shaq; is; the man) Shaq is the man I love sports too , so Brett Favre is a great football player minus his 04-05 season , and Shaq is the man . +1 (Sharon; took a nipple down hard; in her mouth) Sharon took a nipple down hard in her mouth Sharon took a nipple in her mouth and bit down hard until her Amateur Very Young Family Incest were Black Family Incest grinding together . +1 (Sharon; took down hard a nipple; in her mouth) Sharon took down hard a nipple in her mouth Sharon took a nipple in her mouth and bit down hard until her Amateur Very Young Family Incest were Black Family Incest grinding together . +1 (She; studied; at RVAS) She studied at RVAS She studied at RVAS , a boarding school in Southern Oregon , until the 5th grade , when the family moved to Spain . +1 (She; told us; about a newborn baby) She told us about a newborn baby She told us about a newborn baby whose name was Susan . +1 (Shirley; was preceded; by her father) Shirley was preceded by her father Shirley was preceded in death by her father , BC Neill . +1 (Shirley; was preceded; in death) Shirley was preceded in death Shirley was preceded in death by her father , BC Neill . +1 (Shrek; begins to have; nightmares and fears that he will not be able to be a good father) Shrek begins to have nightmares and fears that he will not be able to be a good father Finally Fiona tells Shrek that she is indeed pregnant , Shrek begins to have nightmares and fears that he will not be able to be a good father . +1 (Shrek; begins; to have nightmares and fears that he will not be able to be a good father) Shrek begins to have nightmares and fears that he will not be able to be a good father Finally Fiona tells Shrek that she is indeed pregnant , Shrek begins to have nightmares and fears that he will not be able to be a good father . +1 (Simple , Quick , Affordable eDrugsOnline; offers; online prescriptions) Simple , Quick , Affordable eDrugsOnline offers online prescriptions Simple , Quick , Affordable eDrugsOnline offers online prescriptions for FDA approved medication . +1 (Single-family homes; range; from approximately $ 100,000) Single-family homes range from approximately $ 100,000 Single-family homes range in price from approximately $ 100,000 to more than $ 800,000 , depending on size and location . +1 (Single-family homes; range; in price) Single-family homes range in price Single-family homes range in price from approximately $ 100,000 to more than $ 800,000 , depending on size and location . +1 (Single-family homes; range; to more than $ 800,000) Single-family homes range to more than $ 800,000 Single-family homes range in price from approximately $ 100,000 to more than $ 800,000 , depending on size and location . +1 (Site; includes; product descriptions , pictures , FAQs and contact information) Site includes product descriptions , pictures , FAQs and contact information Site includes product descriptions , pictures , FAQs and contact information . +1 (Skin cancer; is the most common cancer in; the United States) Skin cancer is the most common cancer in the United States Skin cancer is the most common cancer in the United States and is increasing in incidence . +1 (Skin cancer; is; the most common cancer in the United States) Skin cancer is the most common cancer in the United States Skin cancer is the most common cancer in the United States and is increasing in incidence . +1 (Snape; told; Dumbledore) Snape told Dumbledore But Snape told Dumbledore . +1 (Socrates; was born; In his early life) Socrates was born In his early life Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (Socrates; was born; in Athens about 469 BC) Socrates was born in Athens about 469 BC Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (Some people; believe; Jesus received teachings from Yoga in India) Some people believe Jesus received teachings from Yoga in India Some people believe Jesus received teachings from Yoga in India . +1 (Some; say; Hillary Clinton should n't be president because she 1 screwed up that national health care initiative of hers back in '94 , and) Some say Hillary Clinton should n't be president because she 1 screwed up that national health care initiative of hers back in '94 , and Some say Hillary Clinton should n't be president because she 1 screwed up that national health care initiative of hers back in '94 , and because 2 she 's married to Bill . +1 (Sony; dropped; the ball) Sony dropped the ball So quit whining and accept that Sony dropped the ball . +1 (Sony; was the only company that; even MADE a 40 4:3 Tube HDTV) Sony was the only company that even MADE a 40 4:3 Tube HDTV I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +1 (Sony; was; the only company that even MADE a 40 4:3 Tube HDTV) Sony was the only company that even MADE a 40 4:3 Tube HDTV I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +1 (South Africa; after losing; the right to hold the 2006 event by just a single vote) South Africa after losing the right to hold the 2006 event by just a single vote South Africa are the favourites after losing the right to hold the 2006 event by just a single vote . +1 (South Africa; are; the favourites) South Africa are the favourites South Africa are the favourites after losing the right to hold the 2006 event by just a single vote . +1 (South Africa; beat; England) South Africa beat England South Africa beat England . +1 (South Africa; were; in trouble) South Africa were in trouble South Africa were in trouble when Andy Gomarsall kicked and up-and-under and JP Pietersen dropped it . +1 (Spam , flooding , advertisem ents , chain letters , pyramid schemes , and solicitati ons; are also forbidden on; this forum) Spam , flooding , advertisem ents , chain letters , pyramid schemes , and solicitati ons are also forbidden on this forum Spam , flooding , advertisem ents , chain letters , pyramid schemes , and solicitati ons are also forbidden on this forum . +1 (Steve Buckley; discovered; that everyone hates the Patriots) Steve Buckley discovered that everyone hates the Patriots Steve Buckley just discovered that everyone hates the Patriots . +1 (Steve Jobs; announced; the MacBook Air and the iTunes Movie Rental at MacWorld 2008 in San Francisco) Steve Jobs announced the MacBook Air and the iTunes Movie Rental at MacWorld 2008 in San Francisco Steve Jobs announced the MacBook Air and the iTunes Movie Rental at MacWorld 2008 in San Francisco . +1 (Steve; Little did know; that he would be plagued with problems the next two rounds) Steve Little did know that he would be plagued with problems the next two rounds Little did Steve know that he would be plagued with problems the next two rounds . +1 (Steve; also worked; for the Computer Science department at the University of Pittsburgh) Steve also worked for the Computer Science department at the University of Pittsburgh Steve holds a BS in Computer Science from the University of Pittsburgh and also worked for the Computer Science department at the University of Pittsburgh . +1 (Steve; holds; a BS in Computer Science) Steve holds a BS in Computer Science Steve holds a BS in Computer Science from the University of Pittsburgh and also worked for the Computer Science department at the University of Pittsburgh . +1 (Stevia; has been used; for centuries) Stevia has been used for centuries Stevia has been used for centuries without adverse reactions and it is said to be particularly helpful for diabetics . +1 (Students; be; able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters) Students be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters Students must have a 3.0 GPA and be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters . +1 (Students; must have; a 3.0 GPA) Students must have a 3.0 GPA Students must have a 3.0 GPA and be able to commit to a minimum of at least 6 to 9 hours per week in the lab for at least two semesters . +1 (Stunning; blonde holds; her bountiful snack trays) Stunning blonde holds her bountiful snack trays Stunning blonde is wearing this killer Latina is squeezing the cheese out of a peeled banana in her dress and holds her bountiful snack trays . +1 (Such a large crowd; had gathered; that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore) Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore . +1 (Such a large crowd; had gathered; that Jesus got into a boat , sat down in it , and taught from there) Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore . +1 (Suharto; [is] Former dictator [of]; Indonesian) Suharto [is] Former dictator [of] Indonesian Former Indonesian dictator Suharto moved his hands and spoke in a whisper today in what doctors called a miraculous recovery after more than two weeks on life support with multiple organ failure . +1 (Surviving; are; his wife , Alma Mariani Wood , three sons , a daughter and six grandchildren) Surviving are his wife , Alma Mariani Wood , three sons , a daughter and six grandchildren Surviving are his wife , Alma Mariani Wood , three sons , a daughter and six grandchildren . +1 (Susan; had; two children) Susan had two children But Susan had two children , a determined outlook and was on a mission to testify to the important work Ian had done in the struggle to bring peace and stability to Northern Ireland . +1 (Susan; was; on a mission) Susan was on a mission But Susan had two children , a determined outlook and was on a mission to testify to the important work Ian had done in the struggle to bring peace and stability to Northern Ireland . +1 (Talks; began; in July) Talks began in July Talks began in July and continued after the contract expired Oct. 31 . +1 (Talks; continued; after the contract expired Oct) Talks continued after the contract expired Oct Talks began in July and continued after the contract expired Oct. 31 . +1 (Tasty Baking Company; is investing more than $ 75 million; to relocate its headquarters) Tasty Baking Company is investing more than $ 75 million to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +1 (Tasty Baking Company; is investing to relocate; its headquarters) Tasty Baking Company is investing to relocate its headquarters PHILADELPHIA , May 9 /PRNewswire-USNewswire/ -- Governor Edward G. Rendell announced today that Tasty Baking Company is investing more than $ 75 million to relocate its headquarters and Philadelphia manufacturing operations to the Philadelphia Navy Yard . +1 (Taxis; cost; 20) Taxis cost 20 Taxis wait outside the terminals and typically cost 20 to the hotel . +1 (Taxis; do not cruise; around) Taxis do not cruise around Taxis do not cruise around looking for custom but wait at Taxi ranks in town squares or railway stations , you will also find their 'phone numbers in bars . +1 (Taxis; wait; at Taxi ranks in town squares or railway stations) Taxis wait at Taxi ranks in town squares or railway stations Taxis do not cruise around looking for custom but wait at Taxi ranks in town squares or railway stations , you will also find their 'phone numbers in bars . +1 (Taxis; wait; outside the terminal) Taxis wait outside the terminal Taxis wait outside the terminal , an average fare to Malaga costing in the region of 15 EUR. +1 (Taxis; wait; outside the terminals) Taxis wait outside the terminals Taxis wait outside the terminals and typically cost 20 to the hotel . +1 (Taxol; stabilizes; microtubules) Taxol stabilizes microtubules Taxol stabilizes microtubules by binding to a polymer . +1 (Taylor; died; in 1850) Taylor died in 1850 After a life of rigorous service , Taylor died in office in 1850 . +1 (Taylor; died; in office) Taylor died in office After a life of rigorous service , Taylor died in office in 1850 . +1 (Teemu Selanne; returned; after missing the first half of the season) Teemu Selanne returned after missing the first half of the season Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Teemu Selanne; returned; to the Stanley Cup champion) Teemu Selanne returned to the Stanley Cup champion Selanne rejoins Ducks : Teemu Selanne returned to the Stanley Cup champion Anaheim Ducks after missing the first half of the season while contemplating retirement . +1 (Tel Aviv; is probably; where Ahmadinejad envisions the nest of Jewish cockroaches as originating from) Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from While Jerusalem is the capital of Israel , Tel Aviv is probably where Ahmadinejad envisions the nest of Jewish cockroaches as originating from . +1 (Telepresence; involves; the distant operation interface engages so much of the operator 's sensory data processing potential) Telepresence involves the distant operation interface engages so much of the operator 's sensory data processing potential Telepresence involves the distant operation interface engages so much of the operator 's sensory data processing potential that the operator feels like he or she is genuinely there at the remote location . +1 (Telstra MobileNet and Entellect; launched; Mobile Office) Telstra MobileNet and Entellect launched Mobile Office Telstra MobileNet and Entellect today launched Mobile Office for WAP enabled mobile phones , allowing real-time wireless access to corporate clients ' MS Outlook and Exchange Server information including email , calendar , contacts , tasks and notes . +1 (Texas residents; add; 8.25 % sales tax) Texas residents add 8.25 % sales tax Texas residents add 8.25 % sales tax unless you provide us with a current Texas resale tax permit number . +1 (Texas; belonged; to Mexico) Texas belonged to Mexico This meant that Texas belonged to Mexico and he had to cooperate with new officials . +1 (Thaksin; told; Thursday) Thaksin told Thursday You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thaksin; told; reporters) Thaksin told reporters You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (Thanksgiving; is; at Sharyl 's) Thanksgiving is at Sharyl 's This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (The 2010 World Equestrian Games; will be in Lexington; at the Kentucky Horse Park) The 2010 World Equestrian Games will be in Lexington at the Kentucky Horse Park United States to host games for first time 06/12/2005 FRANKFORT , KY - The 2010 World Equestrian Games will be in Lexington at the Kentucky Horse Park , Governor Ernie Fletcher announced today . +1 (The ADA; prohibits discrimination on the basis of disability; with respect to public accommodations and employment) The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment The ADA prohibits discrimination on the basis of disability with respect to public accommodations and employment . +1 (The Awards; will be presented; in New York City) The Awards will be presented in New York City The Awards will be presented in New York City on 22 November . +1 (The Awards; will be presented; on 22 November) The Awards will be presented on 22 November The Awards will be presented in New York City on 22 November . +1 (The British Institute of Sathya Sai Education; is; a charity registered in England) The British Institute of Sathya Sai Education is a charity registered in England The British Institute of Sathya Sai Education is a charity registered in England , charity number 1118625 . +1 (The British Virgin Islands; are volcanic outcrops of; a vast underwater plateau) The British Virgin Islands are volcanic outcrops of a vast underwater plateau BV I Scuba The British Virgin Islands are volcanic outcrops of a vast underwater plateau that stretches for more than 70 miles where the Caribbean meets the Atlantic . +1 (The Bucs; went; back to being the same ol same ol) The Bucs went back to being the same ol same ol The Bucs won the super bowl and went back to being the same ol same ol . +1 (The Bucs; won; the super bowl) The Bucs won the super bowl The Bucs won the super bowl and went back to being the same ol same ol . +1 (The COMPSTAT unit of the LAPD; tabulates; Part I offenses like mike in the city) The COMPSTAT unit of the LAPD tabulates Part I offenses like mike in the city The COMPSTAT unit of the LAPD tabulates Part I offenses like mike in the city . +1 (The Celts; came; quite recently) The Celts came quite recently The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Celts; came; to Ireland) The Celts came to Ireland The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Celts; isposs essing; the previous inhabitants) The Celts isposs essing the previous inhabitants The Celts came to Ireland quite recently , d isposs essing the previous inhabitants . +1 (The Company; is traded; on the Nasdaq National Market) The Company is traded on the Nasdaq National Market The Company is traded on the Nasdaq National Market under the symbol VLNC. +1 (The Company; operates; throughout Europe , North America and the Pacific Rim) The Company operates throughout Europe , North America and the Pacific Rim The Company operates throughout Europe , North America and the Pacific Rim , addressing the needs of organisations ranging from the largest multinationals through to the smallest start-ups . +1 (The DS; outsold; the PSP nearly 3 to 1) The DS outsold the PSP nearly 3 to 1 The DS outsold the PSP nearly 3 to 1 with consumers purchasing some 508,000 units of the Nintendo player and only 180,000 PSPs . +1 (The Department for International Development; is; the part of the UK government) The Department for International Development is the part of the UK government The Department for International Development is the part of the UK government that manages Britain 's aid to poor countries and works to eradicate extreme poverty . +1 (The Dow; fell 200 points; after earnings ratings slumped and concerns grew over the mortgage market) The Dow fell 200 points after earnings ratings slumped and concerns grew over the mortgage market The Dow fell 200 points after earnings ratings slumped and concerns grew over the mortgage market . +1 (The Eagles; will be; back in action this Thursday September 22 at the Todd Wehr Edgedome) The Eagles will be back in action this Thursday September 22 at the Todd Wehr Edgedome The Eagles will be back in action this Thursday September 22 at the Todd Wehr Edgedome , hosting Beloit College and on Friday September 23 against UW-Platteville . +1 (The Giants; are; on a roll) The Giants are on a roll The Giants are on a roll and gave the Patriots a great game in week 17 , but they still lost , at home ! +1 (The Giants; gave the Patriots; a great game in week 17) The Giants gave the Patriots a great game in week 17 The Giants are on a roll and gave the Patriots a great game in week 17 , but they still lost , at home ! +1 (The HCJB Global Australia studios and head office; are located; in Melbourne) The HCJB Global Australia studios and head office are located in Melbourne The HCJB Global Australia studios and head office are located in Melbourne . +1 (The Hamas; are; Sunni) The Hamas are Sunni The Hamas are Sunni and the Hezbollah are Shia . +1 (The Internet; has; great potential for providing needed support and services for patients with diabetes and other chronic illnesses) The Internet has great potential for providing needed support and services for patients with diabetes and other chronic illnesses The Internet has great potential for providing needed support and services for patients with diabetes and other chronic illnesses . +1 (The Internet; is a great source of; information) The Internet is a great source of information The Internet is a great source of information , but it is also a great source for misinformation . +1 (The Internet; is; a great source of information) The Internet is a great source of information The Internet is a great source of information , but it is also a great source for misinformation . +1 (The Japanese; attacked the Philippines; on December 8 , 1941) The Japanese attacked the Philippines on December 8 , 1941 The Japanese attacked the Philippines , still an American colony , on December 8 , 1941 , ten hours after the Japanese attack on Pearl Harbor . +1 (The Khmer Rouge; ruled Cambodia; from April 17 , 1975) The Khmer Rouge ruled Cambodia from April 17 , 1975 The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The Khmer Rouge; ruled renaming the country; Democratic Kampuchea) The Khmer Rouge ruled renaming the country Democratic Kampuchea The Khmer Rouge ruled Cambodia from April 17 , 1975 to January 7 , 1979 , renaming the country Democratic Kampuchea . +1 (The LRA; has abducted; more than 20,000 children) The LRA has abducted more than 20,000 children The LRA has abducted more than 20,000 children . +1 (The La Quinta Inn and Suites-Jacksonville Butler Blvd; is; east of the St) The La Quinta Inn and Suites-Jacksonville Butler Blvd is east of the St The La Quinta Inn and Suites-Jacksonville Butler Blvd . is east of the St . +1 (The Lord; appeared; In a dream) The Lord appeared In a dream The Lord appeared to Solomon In a dream by night After which Solomon was given Wisdom and intuitive insight . +1 (The Lord; appeared; by night) The Lord appeared by night The Lord appeared to Solomon In a dream by night After which Solomon was given Wisdom and intuitive insight . +1 (The Lord; appeared; to Solomon) The Lord appeared to Solomon The Lord appeared to Solomon In a dream by night After which Solomon was given Wisdom and intuitive insight . +1 (The Lord; commanded; Moses) The Lord commanded Moses But the Levites were not numbered among the people of Israel , as The Lord commanded Moses . +1 (The MDC OneCard and OneAccount; are brought to you; by a team) The MDC OneCard and OneAccount are brought to you by a team The MDC OneCard and OneAccount are brought to you by a team that includes Miami Dade College and Higher One . +1 (The Master bedroom; has; a King size bed cable TV , DVD and VCR) The Master bedroom has a King size bed cable TV , DVD and VCR The Master bedroom has a King size bed cable TV , DVD and VCR. +1 (The President-Elect; shall perform the duties of the President; in the absence of the President and such other duties) The President-Elect shall perform the duties of the President in the absence of the President and such other duties The President-Elect shall perform the duties of the President in the absence of the President and such other duties as disclosed herein or assigned by the President or the Board of Directors . +1 (The Rainforest Site; will preserve; 2290.0 sq) The Rainforest Site will preserve 2290.0 sq The Rainforest Site will preserve 2290.0 sq . +1 (The Regiment; returned; in 1769) The Regiment returned in 1769 The Regiment returned to England in 1769 much weakened by death injury and disease , and did not reach full effectiveness until 1775 . +1 (The Regiment; returned; to England) The Regiment returned to England The Regiment returned to England in 1769 much weakened by death injury and disease , and did not reach full effectiveness until 1775 . +1 (The Sims Life Stories; is the first release in; an all-new product line) The Sims Life Stories is the first release in an all-new product line The Sims Life Stories is the first release in an all-new product line called The Sims Stories.Play through . +1 (The Sims Life Stories; is; the first release in an all-new product line called The Sims Stories.Play through) The Sims Life Stories is the first release in an all-new product line called The Sims Stories.Play through The Sims Life Stories is the first release in an all-new product line called The Sims Stories.Play through . +1 (The South Island; is divided; along its length by the Southern Alps) The South Island is divided along its length by the Southern Alps The South Island is the largest land mass , and is divided along its length by the Southern Alps , the highest peak of which is Aoraki/Mount Cook , at 3,754 metres . +1 (The South Island; is; the largest land mass) The South Island is the largest land mass The South Island is the largest land mass , and is divided along its length by the Southern Alps , the highest peak of which is Aoraki/Mount Cook , at 3,754 metres . +1 (The State Department; bodyguards; immunity from prose) The State Department bodyguards immunity from prose 30< ;/D> ; - The State Department promised Blackwater USA bodyguards immunity from prose . +1 (The Treaty of Amsterdam; came; into force) The Treaty of Amsterdam came into force The Treaty of Amsterdam came into force on 1 May 1999 . +1 (The Treaty of Amsterdam; came; on 1 May 1999) The Treaty of Amsterdam came on 1 May 1999 The Treaty of Amsterdam came into force on 1 May 1999 . +1 (The UK; was; at risk of losing material including major directories , news sources including web-published polls , indexes , local and national government documents and e-journals) The UK was at risk of losing material including major directories , news sources including web-published polls , indexes , local and national government documents and e-journals The UK was at risk of losing material including major directories , news sources including web-published polls , indexes , local and national government documents and e-journals . +1 (The United States; emerged; from World War I) The United States emerged from World War I The United States emerged from World War I with its confidence and prosperity intact . +1 (The United States; has agreed; to transfer fighter aircraft to these three states) The United States has agreed to transfer fighter aircraft to these three states The United States has agreed in principle to transfer fighter aircraft to these three states . +1 (The actual framer of the Epistle; to have desired to insinuate; that Paul was the author , by introducing the name of Timothy in the last chapter) The actual framer of the Epistle to have desired to insinuate that Paul was the author , by introducing the name of Timothy in the last chapter The actual framer of the Epistle appears to have desired to insinuate that Paul was the author , by introducing the name of Timothy in the last chapter . +1 (The actual framer of the Epistle; to have desired; to insinuate that Paul was the author , by introducing the name of Timothy in the last chapter) The actual framer of the Epistle to have desired to insinuate that Paul was the author , by introducing the name of Timothy in the last chapter The actual framer of the Epistle appears to have desired to insinuate that Paul was the author , by introducing the name of Timothy in the last chapter . +1 (The administration; is in a panic; to keep America from finding out that Iraq is in the middle of a civil war) The administration is in a panic to keep America from finding out that Iraq is in the middle of a civil war The administration is in a panic to keep America from finding out that Iraq is in the middle of a civil war . +1 (The apparent snub; comes; amid ongoing hostility between the two powers) The apparent snub comes amid ongoing hostility between the two powers The apparent snub comes amid ongoing hostility between the two powers despite recent US claims that Iran does not have an active nuclear weapons program . +1 (The bad news; is; that Mugabe is still in power) The bad news is that Mugabe is still in power The bad news is that Mugabe is still in power . +1 (The bourgeois; sees; a mere instrument of production) The bourgeois sees a mere instrument of production When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +1 (The bourgeois; sees; in his wife) The bourgeois sees in his wife When Marx wrote The Communist Manifesto in 1848 , ideas of womens liber atio n were already a central part of revolutionary socialist theory : The bourgeois sees in his wife a mere instrument of production . +1 (The child; learned; English) The child learned English The child learned English and was forbidden to speak his native language . +1 (The committee; meets; at 4:30 pm) The committee meets at 4:30 pm The committee meets on the first Thursday of each month at 4:30 pm . +1 (The committee; meets; on the first Thursday of each month) The committee meets on the first Thursday of each month The committee meets on the first Thursday of each month at 4:30 pm . +1 (The company s clients; include; Google , Microsoft , MSN Search , Yahoo! , AOL , and numerous others) The company s clients include Google , Microsoft , MSN Search , Yahoo! , AOL , and numerous others The company s clients include Google , Microsoft , MSN Search , Yahoo! , AOL , and numerous others . +1 (The company; employs; over 350 people) The company employs over 350 people The company employs over 350 people and has offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates . +1 (The company; has entities; in 5 locations in 5 countries) The company has entities in 5 locations in 5 countries The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; has; offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates) The company has offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates The company employs over 350 people and has offices in Calgary , Alberta , the United States , the United Kingdom , Australia , and the United Arab Emirates . +1 (The company; is based; in Hong Kong) The company is based in Hong Kong The company was founded in 1995 and is based in Hong Kong , Hong Kong . +1 (The company; is established; in Stockholm) The company is established in Stockholm The company is established in Stockholm , Sweden . +1 (The company; is headquartered; in Atlanta) The company is headquartered in Atlanta The company was founded in 1982 and is headquartered in Atlanta , Georgia . +1 (The company; is headquartered; in Omaha) The company is headquartered in Omaha The company was founded in 2003 and is headquartered in Omaha , Nebraska . +1 (The company; is located; in Europe) The company is located in Europe The company is located in Europe and has entities in 5 locations in 5 countries . +1 (The company; was founded; in 1982) The company was founded in 1982 The company was founded in 1982 and is headquartered in Atlanta , Georgia . +1 (The company; was founded; in 1995) The company was founded in 1995 The company was founded in 1995 and is based in Hong Kong , Hong Kong . +1 (The company; was founded; in 2003) The company was founded in 2003 The company was founded in 2003 and is headquartered in Omaha , Nebraska . +1 (The couple; are on a second honeymoon; when Seymour commits suicide) The couple are on a second honeymoon when Seymour commits suicide The couple are on a second honeymoon , when Seymour commits suicide . +1 (The couple; had; five sons) The couple had five sons The couple had five sons , John , Eric , Philip , Christopher , Patrick and Ivon , and 11 grandchildren . +1 (The course; will be given; by Dr. Xuefei Wu) The course will be given by Dr. Xuefei Wu The course will be given in English by Dr. Xuefei Wu . +1 (The date; was; June 12) The date was June 12 The date was June 12 , l998. +1 (The event; was put on; by the Cedar Rapids Corvette Club) The event was put on by the Cedar Rapids Corvette Club The event was put on by the Cedar Rapids Corvette Club and took place Saturday , June 9th in Cedar Rapids . +1 (The families; lived; in Pennsylvania) The families lived in Pennsylvania The families lived in Pennsylvania . +1 (The festivities; began; at our martial arts school) The festivities began at our martial arts school The festivities began on Friday night at our martial arts school , Fearless Fitness . +1 (The festivities; began; on Friday night) The festivities began on Friday night The festivities began on Friday night at our martial arts school , Fearless Fitness . +1 (The film , which stars Simon Pegg and Nick Frost; held off; a challenge from Nicolas Cage 's comic book film Ghost) The film , which stars Simon Pegg and Nick Frost held off a challenge from Nicolas Cage 's comic book film Ghost The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (The film; closed; the 2007 Sundance Film Festival) The film closed the 2007 Sundance Film Festival The film closed the 2007 Sundance Film Festival and starred Queen Latifah . +1 (The film; follows; as they take part in a singing contest in New Jersey) The film follows as they take part in a singing contest in New Jersey The film is in English and follows the lives of six contestants as they take part in a singing contest in New Jersey . +1 (The film; follows; the lives of six contestants) The film follows the lives of six contestants The film is in English and follows the lives of six contestants as they take part in a singing contest in New Jersey . +1 (The film; is; in English) The film is in English The film is in English and follows the lives of six contestants as they take part in a singing contest in New Jersey . +1 (The film; starred; Abhishek Bachchan , John Abraham , Uday Chopra , Rimi Sen and Esha Deol) The film starred Abhishek Bachchan , John Abraham , Uday Chopra , Rimi Sen and Esha Deol The film starred Abhishek Bachchan , John Abraham , Uday Chopra , Rimi Sen and Esha Deol . +1 (The film; starred; Queen Latifah) The film starred Queen Latifah The film closed the 2007 Sundance Film Festival and starred Queen Latifah . +1 (The film; stars Christina Ricci; in the title role) The film stars Christina Ricci in the title role The film stars Christina Ricci in the title role . +1 (The film; stars Steve Coogan; as a high school drama teacher) The film stars Steve Coogan as a high school drama teacher The film stars Steve Coogan as a high school drama teacher who attempts to stage a musical sequel to Shakespeare` s play . +1 (The film; stars; Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando) The film stars Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando The film stars Donald Sutherland , Janet Suzman , Zakes Mokae , Jrgen Prochnow , Susan Sarandon and Marlon Brando . +1 (The film; stars; Johnny Depp , Orlando Bloom and Kiera Knightley) The film stars Johnny Depp , Orlando Bloom and Kiera Knightley The film stars Johnny Depp , Orlando Bloom and Kiera Knightley , and they all do a pretty good job , although it was n't better than the first . +1 (The film; stars; Simon Pegg and Nick Frost) The film stars Simon Pegg and Nick Frost The film , which stars Simon Pegg and Nick Frost , held off a challenge from Nicolas Cage 's comic book film Ghost Rider , which entered at number two . +1 (The film; won the Palme dOr; at the Cannes Film Festival) The film won the Palme dOr at the Cannes Film Festival The film won the Palme dOr at the Cannes Film Festival . +1 (The firm; has; offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai) The firm has offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai The firm has offices in Columbus , New York City , Seattle , San Francisco , Los Angeles , London , Beijing , and Shanghai . +1 (The first settler in Chicago; arrived; in the 1770s) The first settler in Chicago arrived in the 1770s The first settler in Chicago , Lilium saint version Jean Baptiste Pointe du Sable , arrived in the 1770s , lilium a Potawatomi woman , and bumper nuts the area 's first trading post . +1 (The first settler in Chicago; arrived; lilium a Potawatomi woman , and bumper nuts the area 's first trading post) The first settler in Chicago arrived lilium a Potawatomi woman , and bumper nuts the area 's first trading post The first settler in Chicago , Lilium saint version Jean Baptiste Pointe du Sable , arrived in the 1770s , lilium a Potawatomi woman , and bumper nuts the area 's first trading post . +1 (The game; will be televised; on ESPN2) The game will be televised on ESPN2 The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The game; will include; a special halftime performance by the world-renowned Grambling Tiger Marching Band) The game will include a special halftime performance by the world-renowned Grambling Tiger Marching Band The game will be nationally televised on ESPN2 and will include a special halftime performance by the world-renowned Grambling Tiger Marching Band . +1 (The group; meets; every Thursday) The group meets every Thursday Womens Group : The group meets every Thursday and is run by HIV infected women themselves . +1 (The highlight of the DVD; occurs; while the band is in Europe and finds its plans for the day cancelled) The highlight of the DVD occurs while the band is in Europe and finds its plans for the day cancelled The highlight of the DVD occurs while the band is in Europe and finds its plans for the day cancelled . +1 (The hotel; offers; high-speed Internet access , valet laundry service , currency exchange , and parking) The hotel offers high-speed Internet access , valet laundry service , currency exchange , and parking The hotel also offers high-speed Internet access , valet laundry service , currency exchange , and parking . +1 (The idle; is tested; after Windows has finished loading for about 5 minutes) The idle is tested after Windows has finished loading for about 5 minutes The idle is tested after Windows has finished loading for about 5 minutes . +1 (The killing; has continued; in Bali , Jakarta , Casablanca , Riyadh , Mombasa , Jerusalem , Istanbul , and Baghdad) The killing has continued in Bali , Jakarta , Casablanca , Riyadh , Mombasa , Jerusalem , Istanbul , and Baghdad The killing has continued in Bali , Jakarta , Casablanca , Riyadh , Mombasa , Jerusalem , Istanbul , and Baghdad . +1 (The lack of weapons of mass destruction in Iraq; contradicts; years of intelligence indicating Saddam had such weapons ,) The lack of weapons of mass destruction in Iraq contradicts years of intelligence indicating Saddam had such weapons , Compare and contrast : The lack of weapons of mass destruction in Iraq contradicts years of intelligence indicating Saddam had such weapons , which also was the conclusion of officials in the Clinton administration . +1 (The master bedroom; contains; one king bed) The master bedroom contains one king bed The master bedroom contains one king bed , while the 2nd bedroom has 2 twin beds . +1 (The media; hates; Hillary) The media hates Hillary The media hates Hillary and likes Obama for now . +1 (The media; likes Obama; for now) The media likes Obama for now The media hates Hillary and likes Obama for now . +1 (The meeting; took place; in UNCTAD headquarters) The meeting took place in UNCTAD headquarters The meeting took place in UNCTAD headquarters , Geneva , on 5 -6 December . +1 (The membership year; is; from January) The membership year is from January The membership year is from January to December . +1 (The movie; stars; Christian Bale , Cate Blanchett , Charlotte Gainsbourg , Richard Gere , Heath Ledger , and Julianne Moore) The movie stars Christian Bale , Cate Blanchett , Charlotte Gainsbourg , Richard Gere , Heath Ledger , and Julianne Moore The movie stars Christian Bale , Cate Blanchett , Charlotte Gainsbourg , Richard Gere , Heath Ledger , and Julianne Moore . +1 (The movie; stars; Meryl Streep and Anne Hathaway) The movie stars Meryl Streep and Anne Hathaway The movie stars Meryl Streep and Anne Hathaway . +1 (The official; said; Russia was on track) The official said Russia was on track The official said Russia was on track to meet targets of 6.5 per cent GDP growth and 8.5 per cent inflationthe latter mainly due to the Russian central banks policy of allowing flexibility in the exchange rate . +1 (The other alternative; is; Hillary) The other alternative is Hillary The other alternative is Hillary , which would be a disaster . +1 (The others; are; Ohio , Pennsylvania , Minnesota and New Mexico) The others are Ohio , Pennsylvania , Minnesota and New Mexico The others are Ohio , Pennsylvania , Minnesota and New Mexico . +1 (The owners; are; from Chicago) The owners are from Chicago The owners are from Chicago and it 's a friendly local bar . +1 (The president; asked Americans; to imagine the suicide terrorists) The president asked Americans to imagine the suicide terrorists The president asked Americans to imagine the suicide terrorists who attacked the United States if they had been armed by Iraq . +1 (The problem; is; Americans are too lazy to vote) The problem is Americans are too lazy to vote The problem is Americans are too lazy to vote . +1 (The products; are exported; to USA , Canada , Panama , Korea , India , Turkey , Lebanon , Israel , Australia , South Africa , Germany , Holand , and others) The products are exported to USA , Canada , Panama , Korea , India , Turkey , Lebanon , Israel , Australia , South Africa , Germany , Holand , and others The products are exported to USA , Canada , Panama , Korea , India , Turkey , Lebanon , Israel , Australia , South Africa , Germany , Holand , and others . +1 (The program; starts; in September) The program starts in September The program starts in September and the first block of sessions in the US is already booked . +1 (The project; started; in October 2006) The project started in October 2006 The project started in October 2006 . +1 (The rallying cry; is; The Republicans are racists) The rallying cry is The Republicans are racists The rallying cry is : The Republicans are racists , sexual predators , hypocrites , and traitors ! +1 (The repairman; came; before Chris left for work) The repairman came before Chris left for work The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (The repairman; came; late today) The repairman came late today The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (The report; provides; separate comprehensive analytics for the US , Canada , Japan , Europe , Asia-Pacific , Middle East and Latin American) The report provides separate comprehensive analytics for the US , Canada , Japan , Europe , Asia-Pacific , Middle East and Latin American The report provides separate comprehensive analytics for the US , Canada , Japan , Europe , Asia-Pacific , Middle East and Latin American . +1 (The reunification of Germany; took place; when the areas gmsp under the former Germany Republic) The reunification of Germany took place when the areas gmsp under the former Germany Republic The reunification of Germany took place when the areas gmsp under the former Germany Republic , known as east Germany were tom cruise scientology video into the Bona fide dog boarding Republic of Germany , known as west Germany . +1 (The seminar; will be held; in English) The seminar will be held in English The seminar will be held in English with simultaneous translation in Italian . +1 (The states; included; Connecticut , Missouri , New Mexico and Oregon) The states included Connecticut , Missouri , New Mexico and Oregon The states included Connecticut , Missouri , New Mexico and Oregon . +1 (The stock; has been cut; in half) The stock has been cut in half The stock has recently been cut in half , and it went down again on Friday after the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved . +1 (The story; appeared; in The New York Times) The story appeared in The New York Times The story appeared in The New York Times , Daily Business News , The Miami Herald , and 14 other publications nationwide . +1 (The student; will use the book , computer and the Internet; as their source of information) The student will use the book , computer and the Internet as their source of information The student will use the book , computer and the Internet as their source of information . +1 (The temple; will be rebuilt; in Jerusalem) The temple will be rebuilt in Jerusalem The temple will be rebuilt in Jerusalem , and the sacrificial system will be reinstated . +1 (The theme; was; Jesus) The theme was Jesus The theme was Jesus came to our rescue . +1 (The things; will destroy; America) The things will destroy America The things that will destroy America are prosperity at any price , peace at any price , safety first instead of duty first , the love of soft living and the get-rich-quick theory of life . +1 (The title of this book; is misleading; because no one believes Europe will run the 21st century) The title of this book is misleading because no one believes Europe will run the 21st century The title of this book is misleading because no one believes Europe will run the 21st century , including the author himself . +1 (The tour; kicks off; in San Francisco) The tour kicks off in San Francisco The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; kicks off; on April 12) The tour kicks off on April 12 The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; wraps up at the Honda Center in Anaheim; ) The tour wraps up at the Honda Center in Anaheim The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; wraps up; June 14) The tour wraps up June 14 The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The tour; wraps up; at the Honda Center in Anaheim) The tour wraps up at the Honda Center in Anaheim The tour kicks off in San Francisco on April 12 and wraps up June 14 at the Honda Center in Anaheim . +1 (The transmission; covers; Germany and much of Car plows) The transmission covers Germany and much of Car plows The transmission covers Germany and much of Car plows through a crowd at an indiana speedboat race and North The sea dog speedboat Europe . +1 (The world; looks to America; for the type of leadership) The world looks to America for the type of leadership The world looks to America for the type of leadership that can confront issues of the human condition , Sen. Chuck Hagel said during his keynote address at Charter Day . +1 (These Terms and Conditions; shall be governed; by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts) These Terms and Conditions shall be governed by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts These Terms and Conditions shall be governed by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts . +1 (These states; included; California , Florida , Minnesota , Washington , and Oregon) These states included California , Florida , Minnesota , Washington , and Oregon These states included California , Florida , Minnesota , Washington , and Oregon . +1 (They; considered; Hurricane Katrina a blessing from god) They considered Hurricane Katrina a blessing from god They also picket the funerals of soldiers who die in Iraq , and considered Hurricane Katrina a blessing from god . +1 (They; do not want; Earthlings to know that life exists on Mars) They do not want Earthlings to know that life exists on Mars They do not want Earthlings to know that life exists on Mars . +1 (They; knew; Zacchaeus was a tax collector) They knew Zacchaeus was a tax collector They knew Zacchaeus was a tax collector . +1 (They; picket; the funerals of soldiers) They picket the funerals of soldiers They also picket the funerals of soldiers who die in Iraq , and considered Hurricane Katrina a blessing from god . +1 (This Agreement; shall be governed; by the laws of the Province of Ontario and all claims) This Agreement shall be governed by the laws of the Province of Ontario and all claims This Agreement shall be governed by the laws of the Province of Ontario and all claims concerning this Agreement shall be brought exclusively in the provincial court located in the Province of Ontario . +1 (This entry; is filed; under Uncategorized) This entry is filed under Uncategorized This entry was posted on October 2 , 2006 at 8:33 am and is filed under Uncategorized . +1 (This entry; was posted; on January 25) This entry was posted on January 25 This entry was posted on January 25 , 2006 at 12:19 am and is filed under . +1 (This entry; was posted; on July 3) This entry was posted on July 3 This entry was posted on July 3 , 2006 at 3:38 pm and is filed under Crap . +1 (This entry; was posted; on October 2) This entry was posted on October 2 This entry was posted on October 2 , 2006 at 8:33 am and is filed under Uncategorized . +1 (This is a private sector initiative by two individuals; said; at Friday 's ceremony) This is a private sector initiative by two individuals said at Friday 's ceremony This is a private sector initiative by two individuals who are touched by poverty in Malawi and are committed to assist in alleviating it , Malawi President Bingu wa Mutharika said at Friday 's ceremony . +1 (This photo; was taken; in September) This photo was taken in September This photo was taken in September when Bounder was about 4 to 7 days old . +1 (This photo; was taken; when Bounder was about 4 to 7 days old) This photo was taken when Bounder was about 4 to 7 days old This photo was taken in September when Bounder was about 4 to 7 days old . +1 (This problem; can be caused; by a variety of issues) This problem can be caused by a variety of issues IE : Internet Explorer cannot display the webpage This problem can be caused by a variety of issues , including : Internet connectivity has been lost . +1 (This website and the images and text herein; are copyrighted; by The Cannell Perkins Group and in some cases) This website and the images and text herein are copyrighted by The Cannell Perkins Group and in some cases This website and the images and text herein are copyrighted by The Cannell Perkins Group and in some cases Ron Feir , except where indicated . +1 (Three to four sets of Manila ropes; are being preserved carefully; for execution purposes) Three to four sets of Manila ropes are being preserved carefully for execution purposes Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Three to four sets of Manila ropes; are being preserved carefully; in both jails) Three to four sets of Manila ropes are being preserved carefully in both jails Three to four sets of Manila ropes , which were acquired when India was still under British rule , are being preserved carefully in both jails for execution purposes . +1 (Tibet; has been; an independent state) Tibet has been an independent state The 17-point Agreement is embarrassing not only to those who maintain that Tibet has been an independent state , but also to those who hold that Tibet has always been part of China . +1 (Tibet; has been; part of China) Tibet has been part of China The 17-point Agreement is embarrassing not only to those who maintain that Tibet has been an independent state , but also to those who hold that Tibet has always been part of China . +1 (Tickets; are $ 10 for; adults) Tickets are $ 10 for adults Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are available; in advance as well as) Tickets are available in advance as well as Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; are sold; on board the airport bus) Tickets are sold on board the airport bus Tickets are sold on board the airport bus . +1 (Tickets; are; $ 10 for adults , $ 5 for children) Tickets are $ 10 for adults , $ 5 for children Tickets are $ 10 for adults , $ 5 for children and are available in advance as well as at the door . +1 (Tickets; cost; $ 20 per person) Tickets cost $ 20 per person Tickets cost $ 20 per person , and children under 12 are admitted free . +1 (Tickets; will be sold; at the door at the festival for a slightly higher price of 19 euros) Tickets will be sold at the door at the festival for a slightly higher price of 19 euros Tickets will also be sold at the door at the festival for a slightly higher price of 19 euros . +1 (Tipoff; is slated; for 7 pm in the Drubner Center) Tipoff is slated for 7 pm in the Drubner Center Tipoff is slated for 7 pm in the Drubner Center . +1 (Tires; are; in good condition) Tires are in good condition Tires have lots of tread , and are in good condition . +1 (Tires; have; lots of tread) Tires have lots of tread Tires have lots of tread , and are in good condition . +1 (Title VII; prohibits; discrimination in employment a) Title VII prohibits discrimination in employment a Title VII prohibits discrimination in employment a . +1 (Tokyo Tsukiji Fish Market in Tokyo; is; a sushi lovers paradise) Tokyo Tsukiji Fish Market in Tokyo is a sushi lovers paradise Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop and is a sushi lovers paradise . +1 (Tokyo Tsukiji Fish Market in Tokyo; is; an model behavior tourist stop) Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop Tokyo Tsukiji Fish Market in Tokyo is an model behavior tourist stop and is a sushi lovers paradise . +1 (Tom Ford; When left Gucci; in one of fashion 's biggest break-ups ever) Tom Ford When left Gucci in one of fashion 's biggest break-ups ever When Tom Ford left Gucci in one of fashion 's biggest break-ups ever , his response was to fall into the arms of a new mistress-Hollywood . +1 (Tom Ford; left Gucci; in one of fashion 's biggest break-ups ever) Tom Ford left Gucci in one of fashion 's biggest break-ups ever When Tom Ford left Gucci in one of fashion 's biggest break-ups ever , his response was to fall into the arms of a new mistress-Hollywood . +1 (Tom; is nt getting; through) Tom is nt getting through OK , Ive tried 3 times now to reply to that whackjob , Tom and it is nt getting through . +1 (Tony; Killed; Chris) Tony Killed Chris Before anybody gets post happy I am quite aware that Tony Killed Chris on Sunday 's episode . +1 (Total RNA; is extracted; from these samples) Total RNA is extracted from these samples Total RNA is extracted from these samples using established methods andcDNA was generated for use in the real time quantitative PCR procedure . +1 (Turkey; is; in Europe) Turkey is in Europe Turkey is in Europe and is the best State of the World ! +1 (Turkey; is; the best State of the World) Turkey is the best State of the World Turkey is in Europe and is the best State of the World ! +1 (Turkish membership of the EU; should be barred; just because Turkey is Muslim) Turkish membership of the EU should be barred just because Turkey is Muslim Turkish membership of the EU should be barred just because Turkey is Muslim . +1 (US Army Casualties The Department of Defense; announced; the death of two soldiers) US Army Casualties The Department of Defense announced the death of two soldiers US Army Casualties The Department of Defense announced today the death of two soldiers who were supporting Operation Iraqi Freedom . +1 (US officials; have cast doubt; over Washington 's capability) US officials have cast doubt over Washington 's capability Bush told Olmert he will not allow Iran to acquire nuclear weapons , but US officials have cast doubt over Washington 's capability to prevent Iran from acquiring nuclear technology . +1 (US; claims; that Iran does not have an active nuclear weapons program) US claims that Iran does not have an active nuclear weapons program The apparent snub comes amid ongoing hostility between the two powers despite recent US claims that Iran does not have an active nuclear weapons program . +1 (Ubuntu; uses; Gnome) Ubuntu uses Gnome I like KDE , but Ubuntu uses Gnome , this is my problem . +1 (United States; to host games; for first time) United States to host games for first time United States to host games for first time 06/12/2005 FRANKFORT , KY - The 2010 World Equestrian Games will be in Lexington at the Kentucky Horse Park , Governor Ernie Fletcher announced today . +1 (Uranus; was discovered; in 1781) Uranus was discovered in 1781 Uranus was discovered in 1781 and Neptune in 1846 . +1 (Usernames and passwords; are; case sensitive) Usernames and passwords are case sensitive Usernames and passwords are case sensitive , so it 's important to remember that there are no CAPITAL LETTERS in usernames and passwords . +1 (Venkatesh Mahodhaya; would not tell us; what the word means in English) Venkatesh Mahodhaya would not tell us what the word means in English Sometimes , since Venkatesh Mahodhaya would not tell us what the word means in English , we had to take a guess . +1 (Venus Williams; win; Wimbledon) Venus Williams win Wimbledon Now after seeing Venus Williams win Wimbledon , I know that the heart is what can make unlikely things happen . +1 (Verizon Wireless; announced; plans to open its mobile network to any device) Verizon Wireless announced plans to open its mobile network to any device A week earlier , Verizon Wireless , a joint venture of Verizon and Vodafone , announced plans to open its mobile network to any device that meets its technical standards . +1 (Veterans Affairs The Department of Veterans Affairs Web site; is; a worldwide resource that provides information on VA programs , veterans benefits , VA facilities worldwide , and VA medical automation software) Veterans Affairs The Department of Veterans Affairs Web site is a worldwide resource that provides information on VA programs , veterans benefits , VA facilities worldwide , and VA medical automation software Veterans Affairs The Department of Veterans Affairs Web site is a worldwide resource that provides information on VA programs , veterans benefits , VA facilities worldwide , and VA medical automation software . +1 (Visitation; will be from 6-8 PM; Friday) Visitation will be from 6-8 PM Friday Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Visitation; will be from 6-8 PM; at the Schilling Funeral Home) Visitation will be from 6-8 PM at the Schilling Funeral Home Visitation will be from 6-8 PM Friday at the Schilling Funeral Home . +1 (Visitation; will be; from 1 to 3 pm Sunday at DL Newcomer Funeral Home) Visitation will be from 1 to 3 pm Sunday at DL Newcomer Funeral Home Visitation will be from 1 to 3 pm Sunday at DL Newcomer Funeral Home , Brodhead . +1 (Voldemort; killed; Harry 's parents) Voldemort killed Harry 's parents And Voldemort killed Harry 's parents with Avada Kedavra , the only known survivor ever of which is Harry himself . +1 (Wal-Mart; has been in the news; lately) Wal-Mart has been in the news lately Wal-Mart has been in the news lately on a number of fronts . +1 (Wal-Mart; has been in the news; on a number of fronts) Wal-Mart has been in the news on a number of fronts Wal-Mart has been in the news lately on a number of fronts . +1 (Warren M. Helen; pulled her mouth; away) Warren M. Helen pulled her mouth away Howard was preceded in death by his father , Warren M. Helen pulled her mouth away and Beast Porn her handiwork . +1 (Washington; wants; Beijing to forgo many of the protections because of its large economy) Washington wants Beijing to forgo many of the protections because of its large economy Washington wants Beijing to forgo many of the protections because of its large economy . +1 (We; certainly have n't lost; the war) We certainly have n't lost the war We certainly have n't lost the war , Perry told reporters . +1 (We; learn; that the setting is San Francisco) We learn that the setting is San Francisco Chapter 2 We learn that the setting is San Francisco . +1 (We; ve had; some good times) We ve had some good times Weve had some good times me and Tim-Leeds Festival 2002/2003/2004 , Tenacious D 2003 , Hundred Reasons , Tenacious D 2007 and numerous , and I mean numerous weekends and Tim Days . +1 (Web 2.0 Innovation; keeps to assess; which behavior will be treated as a breach of this TOS and to give no refunds to the users) Web 2.0 Innovation keeps to assess which behavior will be treated as a breach of this TOS and to give no refunds to the users Resonate Web 2.0 Innovation keeps the right to assess which behavior will be treated as a breach of this TOS and to give no refunds to the users whose accounts have been suspended for violating the aforementioned rules . +1 (Web 2.0 Innovation; keeps; the right to assess which behavior will be treated as a breach of this TOS and to give no refunds to the users) Web 2.0 Innovation keeps the right to assess which behavior will be treated as a breach of this TOS and to give no refunds to the users Resonate Web 2.0 Innovation keeps the right to assess which behavior will be treated as a breach of this TOS and to give no refunds to the users whose accounts have been suspended for violating the aforementioned rules . +1 (Weltner; goes; out of his way) Weltner goes out of his way Anti-Zionism is not anti-Semitism ; Weltner goes out of his way to assure people that his issue is with Zionism rather than with Jews . +1 (West Highland Terrier; named; Fergus) West Highland Terrier named Fergus Michael and his wife have a son Sam and a West Highland Terrier named Fergus , who makes his recording debut on Laugh and Play . +1 (West Nile Virus; was isolated; in 1937) West Nile Virus was isolated in 1937 West Nile Virus was first isolated in 1937 in the West Nile district of Uganda . +1 (West Nile Virus; was isolated; in the West Nile district of Uganda) West Nile Virus was isolated in the West Nile district of Uganda West Nile Virus was first isolated in 1937 in the West Nile district of Uganda . +1 (Wi-Fi ZONE; are; trademarks of the Wi-Fi Alliance) Wi-Fi ZONE are trademarks of the Wi-Fi Alliance Wi-Fi and the Wi-Fi logo are registered trademarks of the Wi-Fi Alliance ; and Wi-Fi ZONE , the Wi-Fi CERTIFIED logo , the Wi-Fi Alliance logo and the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance . +1 (Willie; was preceded; by her grandmothers) Willie was preceded by her grandmothers Willie was preceded in death by her grandmothers , Minnie Enrike and Irene Adeky . +1 (Willie; was preceded; in death) Willie was preceded in death Willie was preceded in death by her grandmothers , Minnie Enrike and Irene Adeky . +1 (Windows XP; has; VMWare installed) Windows XP has VMWare installed Ive got a laptop running Windows XP , which also has VMWare installed . +1 (Woodke; helped; a woman whose husband is serving in Iraq) Woodke helped a woman whose husband is serving in Iraq Recently , Woodke helped a woman whose husband is serving in Iraq find someone to repair flood and wind damage to her house . +1 (Woodke; helped; find someone) Woodke helped find someone Recently , Woodke helped a woman whose husband is serving in Iraq find someone to repair flood and wind damage to her house . +1 (Woodson; chose February; because he felt that the three greatest Americans were born during that month) Woodson chose February because he felt that the three greatest Americans were born during that month Furthermore , I explained that Woodson chose February because he felt that the three greatest Americans were born during that month . +1 (Word; will support; Blogger) Word will support Blogger Im curious to see if Word will support Blogger , which is owned by Google . +1 (Yahoo; even bought; Flickr) Yahoo even bought Flickr And even after Yahoo bought Flickr , no one is really hyped about it . +1 (Yao Ming; had; 19 rebounds to help the Rockets) Yao Ming had 19 rebounds to help the Rockets Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +1 (Yao Ming; scored; 36 points) Yao Ming scored 36 points Yao Ming scored 36 points and had 19 rebounds to help the Rockets hold on to beat the Warriors on Tuesday night . +1 (You; ll; give yourself a hernia) You ll give yourself a hernia Youll give yourself a hernia ! +1 (Zacchaeus; was; a tax collector) Zacchaeus was a tax collector They knew Zacchaeus was a tax collector . +1 (Zolpidem tartrate; is classified as a Schedule IV controlled substance; by federal regulation) Zolpidem tartrate is classified as a Schedule IV controlled substance by federal regulation DRUG ABUSE AND DEPENDENCEControlled substance : Zolpidem tartrate is classified as a Schedule IV controlled substance by federal regulation . +1 (a GM spin-off; filed citing; the high burden of GM) a GM spin-off filed citing the high burden of GM Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; filed; for bankruptcy) a GM spin-off filed for bankruptcy Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; filed; in October) a GM spin-off filed in October Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a GM spin-off; negotiated; labor agreements) a GM spin-off negotiated labor agreements Delphi , a GM spin-off filed for bankruptcy in October citing the high burden of GM negotiated labor agreements . +1 (a Second Language classes; provide instruction; to students) a Second Language classes provide instruction to students English as a Second Language classes provide instruction to students who speak languages other than English . +1 (a doctor; to prescribe; a lethal dose of medication) a doctor to prescribe a lethal dose of medication Currently , Oregon is the only state to allow a doctor to prescribe a lethal dose of medication if a terminally ill patient has six months or less to live . +1 (a genuine tragedy; even occurred; on this beach) a genuine tragedy even occurred on this beach Ive seen no evidence , from the Pallywood footage , that a genuine tragedy even occurred on this beach . +1 (a great high priest; has passed; through the heavens) a great high priest has passed through the heavens Seeing then that we have a great high priest who has passed through the heavens , Jesus the Son of God , let us hold fast our confession . +1 (a high school drama teacher; attempts to stage; a musical sequel to Shakespeare` s play) a high school drama teacher attempts to stage a musical sequel to Shakespeare` s play The film stars Steve Coogan as a high school drama teacher who attempts to stage a musical sequel to Shakespeare` s play . +1 (a high school drama teacher; attempts; to stage a musical sequel to Shakespeare` s play) a high school drama teacher attempts to stage a musical sequel to Shakespeare` s play The film stars Steve Coogan as a high school drama teacher who attempts to stage a musical sequel to Shakespeare` s play . +1 (a military doctor; examined; him) a military doctor examined him Eager to prove to Iraqis that Saddam was in custody , the military also showed video of the ousted leader , haggard and gray-bearded , as a military doctor examined him . +1 (a new Parliament; was installed; under Charles II) a new Parliament was installed under Charles II England became a republic and in 1660 a new Parliament was installed under Charles II , son of Charles I. The Stuart line continued to rule England and Scotland until Anne Stuart , who became Queen in 1702 . +1 (a newborn baby; was; Susan) a newborn baby was Susan She told us about a newborn baby whose name was Susan . +1 (a political party; called; the Bath Party) a political party called the Bath Party Ferguson : Saddam Hussein ruled Iraq through a political party called the Bath Party . +1 (a priest who has sexually abused a minor; should be removed; from the priesthood) a priest who has sexually abused a minor should be removed from the priesthood But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (a priest; has sexually abused; a minor) a priest has sexually abused a minor But USA TODAY reported this week that 89 % of Catholics surveyed last week said a priest who has sexually abused a minor also should be removed from the priesthood , or defrocked . +1 (a team; includes; Miami Dade College and Higher One) a team includes Miami Dade College and Higher One The MDC OneCard and OneAccount are brought to you by a team that includes Miami Dade College and Higher One . +1 (a terminally ill patient; has; six months or less to live) a terminally ill patient has six months or less to live Currently , Oregon is the only state to allow a doctor to prescribe a lethal dose of medication if a terminally ill patient has six months or less to live . +1 (a wicket; to provide; plenty of runs) a wicket to provide plenty of runs Australia had won the toss and chose to bat on a wicket which was tipped to provide plenty of runs . +1 (a wicket; was tipped; to provide plenty of runs) a wicket was tipped to provide plenty of runs Australia had won the toss and chose to bat on a wicket which was tipped to provide plenty of runs . +1 (a woman whose husband is serving in Iraq; find; someone to repair flood and wind damage to her house) a woman whose husband is serving in Iraq find someone to repair flood and wind damage to her house Recently , Woodke helped a woman whose husband is serving in Iraq find someone to repair flood and wind damage to her house . +1 (a woman; is serving; in Iraq) a woman is serving in Iraq Recently , Woodke helped a woman whose husband is serving in Iraq find someone to repair flood and wind damage to her house . +1 (a worldwide resource; provides; information on VA programs , veterans benefits , VA facilities worldwide , and VA medical automation software) a worldwide resource provides information on VA programs , veterans benefits , VA facilities worldwide , and VA medical automation software Veterans Affairs The Department of Veterans Affairs Web site is a worldwide resource that provides information on VA programs , veterans benefits , VA facilities worldwide , and VA medical automation software . +1 (agoLOS ANGELES - Sean Young; has entered rehabilitation for alcohol abuse; following a weekend outburst) agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst 7 minutes agoLOS ANGELES - Sean Young has entered rehabilitation for alcohol abuse following a weekend outburst in which she was heckling from the audience at the . +1 (airplanes; hit; the towers) airplanes hit the towers And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (an investigation into possible fuel irregularites; is; pending) an investigation into possible fuel irregularites is pending Kimi Raikkonen wins the Brazilian Grand Prix to secure his first F1 crown , but an investigation into possible fuel irregularites is pending . +1 (an official US delegation; pursuing; the POW/MIA issue) an official US delegation pursuing the POW/MIA issue In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (an overview of poker rooms; offering; games such as Omaha Poker , Texas Hold 'em , seven-card stud , five-card stud , and one-on-one games) an overview of poker rooms offering games such as Omaha Poker , Texas Hold 'em , seven-card stud , five-card stud , and one-on-one games Description :Guide provides an overview of poker rooms offering games such as Omaha Poker , Texas Hold 'em , seven-card stud , five-card stud , and one-on-one games . +1 (any DT wheel; can be used; as a single-treadle) any DT wheel can be used as a single-treadle Ive heard so many times that any DT wheel can be used as a single-treadle if necessary . +1 (any device; meets; its technical standards) any device meets its technical standards A week earlier , Verizon Wireless , a joint venture of Verizon and Vodafone , announced plans to open its mobile network to any device that meets its technical standards . +1 (articles; appear; in the Wall Street Journal and the New York Times) articles appear in the Wall Street Journal and the New York Times Virtually every day , articles appear in the Wall Street Journal and the New York Times , indicating the need to change managed care . +1 (articles; indicating; the need to change managed care) articles indicating the need to change managed care Virtually every day , articles appear in the Wall Street Journal and the New York Times , indicating the need to change managed care . +1 (breast cancer rates; approach; those of US-born women) breast cancer rates approach those of US-born women Japanese women who move to the United States have increased breast cancer rates that approach those of US-born women . +1 (candidates; will serve a full term; in office) candidates will serve a full term in office And on December 15 , Iraqis will go to the polls once more , this time to vote for candidates who will serve a full term in office . +1 (children under 12; are admitted; free) children under 12 are admitted free Tickets cost $ 20 per person , and children under 12 are admitted free . +1 (chimpy; can brag about kicking ass; when Iraq does nt have an army) chimpy can brag about kicking ass when Iraq does nt have an army How can chimpy brag about kicking ass when Iraq does nt have an army . +1 (clients; included; Continental Bank , Chase Manhattan Bank , and Sealand Service) clients included Continental Bank , Chase Manhattan Bank , and Sealand Service Also taught business English ; clients included Continental Bank , Chase Manhattan Bank , and Sealand Service . +1 (competition; was increasing in; 1984) competition was increasing in 1984 When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (customers; pull up; in their BMWs) customers pull up in their BMWs Weve had customers pull up in their BMWs and refuse to pay 47 cents for a stamp . +1 (customers; refuse to pay 47 cents; for a stamp) customers refuse to pay 47 cents for a stamp Weve had customers pull up in their BMWs and refuse to pay 47 cents for a stamp . +1 (customers; refuse; to pay 47 cents for a stamp) customers refuse to pay 47 cents for a stamp Weve had customers pull up in their BMWs and refuse to pay 47 cents for a stamp . +1 (death; has defeated; Him) death has defeated Him If Jesus did not rise from the dead , then death has power over Him and has defeated Him . +1 (death; then has; power over Him) death then has power over Him If Jesus did not rise from the dead , then death has power over Him and has defeated Him . +1 (direct payments; As far are; on the table) direct payments As far are on the table As far as I 'm concerned , direct payments are still on the table , Harkin told reporters last week . +1 (everyone; believes; in Christ) everyone believes in Christ The English speaking world is ethnocentric and assumes that everyone believes in Christ . +1 (everyone; has; a safe holiday season) everyone has a safe holiday season Merry Christmas to all , and hope everyone has a safe holiday season . +1 (everyone; hates; the Patriots) everyone hates the Patriots Steve Buckley just discovered that everyone hates the Patriots . +1 (everyone; knew; that the Internet was the wave of the future) everyone knew that the Internet was the wave of the future Back in 2000 , everyone knew that the Internet was the wave of the future . +1 (everything you need to know to decide; is; something you want to experience) everything you need to know to decide is something you want to experience Youll learn a lot , everything you need to know to decide if this is something you want to experience . +1 (everything; happens; on the Internet) everything happens on the Internet Although I recognize that I ca n't believe everything that happens on the Internet there is much truth to what we read . +1 (few real estate sites; First have; RS S) few real estate sites First have RS S First , few real estate sites have RS S feeds today , to this is an explanation of how to make a technology that does n't yet exist in real estate better . +1 (former President husband Bill Clinton; hurt; Hillary Clintons campaign) former President husband Bill Clinton hurt Hillary Clintons campaign Obama takes South Carolina by storm , and the speculations continue on whether former President husband Bill Clinton hurt Hillary Clintons campaign by going on the stump for her . +1 (friends; had use it; for home teaching , Relief Society lessons , press releases , and other such diverse applications) friends had use it for home teaching , Relief Society lessons , press releases , and other such diverse applications I have to agree , Ive had friends use it for home teaching , Relief Society lessons , press releases , and other such diverse applications . +1 (great quotes; helped; me formulate ideas about how I wanted to do this) great quotes helped me formulate ideas about how I wanted to do this Robin : Ive talked to many people over the years and have gotten great quotes that helped me formulate ideas about how I wanted to do this . +1 (he; 's REALLY shitting; some holy bricks) he 's REALLY shitting some holy bricks I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out . +1 (he; 's; no literary expert) he 's no literary expert DUBLIN , Ireland-Will Ferrell has received the James Joyce award but concedes he 's no literary expert . +1 (he; appeared; ready to dispense with opinion) he appeared ready to dispense with opinion By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +1 (he; arrives; to vote in the Rebecca lobo of Griffith in Brisbane) he arrives to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (he; followed; the profession of his father) he followed the profession of his father Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (he; hates; the sim) he hates the sim However please know that Christ loves the Sinner , but he hates the sim . +1 (he; so did n't have to pick up; my book) he so did n't have to pick up my book The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (he; so did n't have; time to go by and pick up my book) he so did n't have time to go by and pick up my book The repairman came late today before Chris left for work , so he did n't have time to go by and pick up my book . +1 (he; spoke; at the convention) he spoke at the convention Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (he; spoke; in November 2003) he spoke in November 2003 Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (he; to dispense; with opinion) he to dispense with opinion By the time Clinton had been in office for eight months he appeared ready to dispense with opinion and thought entirely . +1 (he; to vote in the Rebecca lobo of Griffith; in Brisbane) he to vote in the Rebecca lobo of Griffith in Brisbane Labor Party leader Kevin Rudd faces the media as he arrives to vote in the Rebecca lobo of Griffith in Brisbane . +1 (he; was elected; in November 2003) he was elected in November 2003 Let 's see , Arnold was governor before he spoke at the convention ; he was elected in November 2003 . +1 (he; was fighting; at the Battle of Milvian Bridge) he was fighting at the Battle of Milvian Bridge Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (he; was fighting; for the throne) he was fighting for the throne Before Constantine became Emperor , he was fighting for the throne at the Battle of Milvian Bridge . +1 (he; will give him; all of the kingdoms of the world) he will give him all of the kingdoms of the world Satan tells Jesus that he will give him all of the kingdoms of the world , if he will bow down and worship him . +1 (he; will not be to be; a good father) he will not be to be a good father Finally Fiona tells Shrek that she is indeed pregnant , Shrek begins to have nightmares and fears that he will not be able to be a good father . +1 (he; will not be; able to be a good father) he will not be able to be a good father Finally Fiona tells Shrek that she is indeed pregnant , Shrek begins to have nightmares and fears that he will not be able to be a good father . +1 (heaven; 's just; too far) heaven 's just too far And if he could , he 'd be here , but heaven 's just too far You see he was a firefighter and died just this past year When airplanes hit the towers and taught Americans to fear . +1 (his father; was; a sculptor) his father was a sculptor Socrates was born in Athens about 469 BC In his early life he followed the profession of his father , who was a sculptor . +1 (his joy in Christ; was; contagious) his joy in Christ was contagious Though Paul was a prisoner when he wrote his letter to the Philippians , his joy in Christ was contagious . +1 (his name; was; Richmond Fontaine) his name was Richmond Fontaine He and Dave became friends , his name was Richmond Fontaine . +1 (his party; was; the only major party effectively functioning in the United States on the national level) his party was the only major party effectively functioning in the United States on the national level When Andrew Jackson was elected president in 1828 , his party was the only major party effectively functioning in the United States on the national level . +1 (his response; was to fall; into the arms of a new mistress-Hollywood) his response was to fall into the arms of a new mistress-Hollywood When Tom Ford left Gucci in one of fashion 's biggest break-ups ever , his response was to fall into the arms of a new mistress-Hollywood . +1 (his response; was; to fall into the arms of a new mistress-Hollywood) his response was to fall into the arms of a new mistress-Hollywood When Tom Ford left Gucci in one of fashion 's biggest break-ups ever , his response was to fall into the arms of a new mistress-Hollywood . +1 (his stepdaughters; died; while he was casting a spell) his stepdaughters died while he was casting a spell Harris told police his stepdaughters died while he was casting a spell that had gone bad . +1 (husbands; are to be; imitators of Christ) husbands are to be imitators of Christ For that is the way Christ loved the church , and husbands , like their wives , are to be imitators of Christ . +1 (husbands; are; to be imitators of Christ) husbands are to be imitators of Christ For that is the way Christ loved the church , and husbands , like their wives , are to be imitators of Christ . +1 (i; did n't know; how dominant that part might be- that thirsted for my blood) i did n't know how dominant that part might be- that thirsted for my blood First , Edward was a vampire Second , there was a part of him-and i did n't know how dominant that part might be- that thirsted for my blood . +1 (in all honesty music; is; the ONL Y thing) in all honesty music is the ONL Y thing This may seem corny but in all honesty music is the ONL Y thing that makes sense anymore . +1 (it; fell; short of its quota of troops) it fell short of its quota of troops Although Maryland remained in the Union , it routinely fell short of its quota of troops for the federal cause . +1 (it; got; a laugh) it got a laugh Im not terribly bothered by this one-itsa bit aggressive , but it got a laugh , and McCain answered the question , unlike Bush , who jokes and evades questions . +1 (it; is said to be; particularly helpful for diabetics) it is said to be particularly helpful for diabetics Stevia has been used for centuries without adverse reactions and it is said to be particularly helpful for diabetics . +1 (it; sa; truly great collection and a must for Valiant fans) it sa truly great collection and a must for Valiant fans Ive seen this book and it sa truly great collection and a must for Valiant fans . +1 (it; turns out; that I misread one of the questions , so now Ron Paul is in the lead) it turns out that I misread one of the questions , so now Ron Paul is in the lead Oops , it turns out that I misread one of the questions , so now Ron Paul is in the lead . +1 (just such an appreciation; had; in mind) just such an appreciation had in mind It is just such an appreciation that Nietzsche had in mind , I believe , as a this-worldly comfort that could be learned . +1 (licensed copies of their software; allowing; nonprofits to purchase them inexpensively) licensed copies of their software allowing nonprofits to purchase them inexpensively Companies like Microsoft donate licensed copies of their software allowing nonprofits to purchase them inexpensively . +1 (life; exists; on Mars) life exists on Mars They do not want Earthlings to know that life exists on Mars . +1 (most people; thought; that Saddam ruled with an iron fist) most people thought that Saddam ruled with an iron fist And most people thought that Saddam ruled with an iron fist ! +1 (much of the country; fled; to Peshawar) much of the country fled to Peshawar Nine years ago , as the Taliban took control of Kabul and much of the country , Fariba , a married mother of three , fled with her family to Peshawar in Pakistan . +1 (my first question; was; about the bass) my first question was about the bass When Alan got home , my first question was about the bass . +1 (my guitar; took almost 2 yrs; from order) my guitar took almost 2 yrs from order Only downside is that Paul is in demand , my guitar took almost 2 yrs from order to delivery so check the schedule with him . +1 (my guitar; took almost 2 yrs; so check the schedule with him) my guitar took almost 2 yrs so check the schedule with him Only downside is that Paul is in demand , my guitar took almost 2 yrs from order to delivery so check the schedule with him . +1 (my limited influence; will help to precipitate; some steps) my limited influence will help to precipitate some steps Carter went on to say , Israel needs peace and the Palestinian people need peace and justice and I hope my limited influence will help to precipitate some steps . +1 (my limited influence; will help; to precipitate some steps) my limited influence will help to precipitate some steps Carter went on to say , Israel needs peace and the Palestinian people need peace and justice and I hope my limited influence will help to precipitate some steps . +1 (my name; is; Ivan) my name is Ivan Oops I am sorry I forget to present myself my name is Ivan and I am from Bulgaria . +1 (my prepubescent world; was turned; upside-down) my prepubescent world was turned upside-down When David Lee Roth left Van Halen for the first time in 1985 , my prepubescent world was turned upside-down . +1 (no one; believes; Europe will run the 21st century) no one believes Europe will run the 21st century The title of this book is misleading because no one believes Europe will run the 21st century , including the author himself . +1 (nothing good; lives; in me) nothing good lives in me First of all lets have a look at what Paul wrote in Romans 7:18 I know that nothing good lives in me , that is , in my sinful nature . +1 (nothing; beats; a live performance) nothing beats a live performance For true alternative music fans , nothing beats a live performance , and Ted Leo & the Pharmacists always puts on a good show . +1 (nothing; can change; that) nothing can change that Jesus Christ is my Lord and Savior , and nothing can change that . +1 (one; when considers; that the Eiffel Tower is the monumentore resources NY marriage Visa) one when considers that the Eiffel Tower is the monumentore resources NY marriage Visa It 's not tim masters when one considers that the Eiffel Tower is the monumentore resources NY marriage Visa . +1 (only one; is; pro-hillary clinton) only one is pro-hillary clinton Thirdly , if you think Clinton is leading in the polls , out of the current 17 comments , only one is pro-hillary clinton . +1 (opponents; trying to weaken; my support in Jewish communities) opponents trying to weaken my support in Jewish communities Betz , Haaretz reports today , Obama : opponents trying to weaken my support in Jewish communities . +1 (opponents; trying; to weaken my support in Jewish communities) opponents trying to weaken my support in Jewish communities Betz , Haaretz reports today , Obama : opponents trying to weaken my support in Jewish communities . +1 (our emphasis on fashionnot; makes; us a style leader) our emphasis on fashionnot makes us a style leader Lane Bryant is the most recognized name in plus-size clothing , and our emphasis on fashionnot merely size makes us a style leader . +1 (parents; had at least one child; between 4 and 8 years of age) parents had at least one child between 4 and 8 years of age Interviews were conducted in Spanish with parents who identified themselves as Latino and had at least one child between 4 and 8 years of age . +1 (parents; identified themselves; as Latino) parents identified themselves as Latino Interviews were conducted in Spanish with parents who identified themselves as Latino and had at least one child between 4 and 8 years of age . +1 (parents; to discuss the Internet; with their children) parents to discuss the Internet with their children Sysconv ltd encourages parents to discuss the Internet with their children and monitor personal information that a child may provide via the Internet . +1 (parents; to monitor; personal information that a child may provide via the Internet) parents to monitor personal information that a child may provide via the Internet Sysconv ltd encourages parents to discuss the Internet with their children and monitor personal information that a child may provide via the Internet . +1 (people; hate; Israel) people hate Israel There are people who hate Israel . +1 (people; hate; Kobe) people hate Kobe If this was the argument I continually heard for why people hate Kobe , then I could understand that , but IMO I do n't hear it used hardly ever . +1 (people; know; English) people know English I admire people who know English . +1 (people; like the calf head sound; in the studio) people like the calf head sound in the studio Ive worked with people who like the calf head sound in the studio , but that s just too hard to control on the road , and theyre just not dependable . +1 (people; live; in North America) people live in North America It is the time that the sun is directly over the equator and for people who live in North America , it 's the first day of fall . +1 (people; say; that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player) people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player Ive heard people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player to ever play QB. +1 (people; should not eat; Peter Pan) people should not eat Peter Pan Because of a possible association with Salmonella , the FDA has issued a warning that people should not eat Peter Pan . +1 (players; to partake; in intense team battles) players to partake in intense team battles Multiplayer modes add to the value of Lost Planet by allowing players to partake in intense team battles via Xbox Live online game service . +1 (sellers; to add a handling charge too; to this) sellers to add a handling charge too to this Ebay allow sellers to charge for both postage and packaging and also add a handling charge to this too . +1 (sellers; to charge; for both postage and packaging) sellers to charge for both postage and packaging Ebay allow sellers to charge for both postage and packaging and also add a handling charge to this too . +1 (she; could marry; EJ) she could marry EJ In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; died; when Leia was very young) she died when Leia was very young Entry When Luke asks Leia if she remembers her real mother , she says yes , and that she died when Leia was very young . +1 (she; end; the feud between the Bradys and the Dimera) she end the feud between the Bradys and the Dimera In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; even insists; she loves Lucas) she even insists she loves Lucas In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; is indeed; pregnant) she is indeed pregnant Finally Fiona tells Shrek that she is indeed pregnant , Shrek begins to have nightmares and fears that he will not be able to be a good father . +1 (she; looked AMAZING; on New Years) she looked AMAZING on New Years I noticed that in Brody 's absence , Spencer told Heidi that she looked AMAZING on New Years . +1 (she; loves; Lucas) she loves Lucas In mid - October 2007 , even though she insists she loves Lucas , Sami asked Lucas for a divorce so that she could marry EJ and end the feud between the Bradys and the Dimera . +1 (she; said; it would take lots of stamps to get the letter all the way to heaven) she said it would take lots of stamps to get the letter all the way to heaven Then Meredith pasted several stamps on the front of the envelope Because she said it would take lots of stamps to get the letter all the way to heaven . +1 (she; says; Christmas is at my house and Thanksgiving is at Sharyl 's) she says Christmas is at my house and Thanksgiving is at Sharyl 's This year , she says , Christmas is at my house and Thanksgiving is at Sharyl 's . +1 (she; sent a gift from abroad; to her friend 's son) she sent a gift from abroad to her friend 's son Little did Laura know when she sent a gift from abroad to her friend 's son where these little shoes would take the threesome . +1 (single men; made; better soldiers than married men) single men made better soldiers than married men In the 3rd century when Rome was in power , Claudius I I decided that single men made better soldiers than married men . +1 (soldiers; die; in Iraq) soldiers die in Iraq They also picket the funerals of soldiers who die in Iraq , and considered Hurricane Katrina a blessing from god . +1 (soldiers; will be; responsible for what they have done) soldiers will be responsible for what they have done You must understand that soldiers will be responsible for what they have done , Thaksin told reporters Thursday . +1 (some Republicans; are having; second thoughts) some Republicans are having second thoughts The Washington Post reported last week that some Republicans are having second thoughts . +1 (students; speak; languages other than English) students speak languages other than English English as a Second Language classes provide instruction to students who speak languages other than English . +1 (that photograph; was taken; in 1993) that photograph was taken in 1993 In fact , that photograph was taken in 1993 , when Kerry went to Vietnam as part of an official US delegation pursuing the POW/MIA issue . +1 (the 2nd bedroom; has; 2 twin beds) the 2nd bedroom has 2 twin beds The master bedroom contains one king bed , while the 2nd bedroom has 2 twin beds . +1 (the ACLU; filed a lawsuit; accusing the agency of improperly withholding documents about racial profiling) the ACLU filed a lawsuit accusing the agency of improperly withholding documents about racial profiling As part of the litigation , the ACLU filed a lawsuit earlier this year accusing the agency of improperly withholding documents about racial profiling . +1 (the ACLU; filed a lawsuit; earlier this year) the ACLU filed a lawsuit earlier this year As part of the litigation , the ACLU filed a lawsuit earlier this year accusing the agency of improperly withholding documents about racial profiling . +1 (the ACLU; filed accusing the agency; of improperly withholding documents about racial profiling) the ACLU filed accusing the agency of improperly withholding documents about racial profiling As part of the litigation , the ACLU filed a lawsuit earlier this year accusing the agency of improperly withholding documents about racial profiling . +1 (the Caribbean; where meets; the Atlantic) the Caribbean where meets the Atlantic BV I Scuba The British Virgin Islands are volcanic outcrops of a vast underwater plateau that stretches for more than 70 miles where the Caribbean meets the Atlantic . +1 (the Colts; beat; the Jaguars) the Colts beat the Jaguars Avenging their most unpleasant NFL game loss last season , the Colts beat the Jaguars with their most heavy tricks and strength players , putting them in a hurry almost all the time . +1 (the Colts; win; the Super Bowl) the Colts win the Super Bowl This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (the Columbia River; meets; the Pacific Ocean) the Columbia River meets the Pacific Ocean Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (the County Manager; may sign; the approved plat) the County Manager may sign the approved plat If , after such hearing the Planning Commission approves the project , the County Manager may sign the approved plat . +1 (the Democrats; that lost control of Congress; in 1994) the Democrats that lost control of Congress in 1994 Part of the reason that the Democrats lost control of Congress in 1994 , and the GOP lost it in 2006 , was the arrogance of the party leaders . +1 (the Democrats; to pick up; Congressional seats) the Democrats to pick up Congressional seats But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +1 (the Democrats; to think; they have a good chance for the presidency) the Democrats to think they have a good chance for the presidency But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +1 (the Democrats; won; majorities) the Democrats won majorities I believe the Democrats won majorities largely on the basis of dissatisfaction with Republicans who acted like Democrats in terms of spending , deal-making and corruption . +1 (the Europeans; came; to the Americas) the Europeans came to the Americas So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +1 (the FBI; arrived; on the scene) the FBI arrived on the scene Within 30 minutes , the FBI arrived on the scene and pretty much took charge of the situation . +1 (the FBI; pretty much took; charge of the situation) the FBI pretty much took charge of the situation Within 30 minutes , the FBI arrived on the scene and pretty much took charge of the situation . +1 (the FDA; announced; plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved) the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved The stock has recently been cut in half , and it went down again on Friday after the FDA announced plans to review a study of its controversial cholesterol-lowering drug Vytorin that the agency had approved . +1 (the FDA; has issued; a warning that people should not eat Peter Pan) the FDA has issued a warning that people should not eat Peter Pan Because of a possible association with Salmonella , the FDA has issued a warning that people should not eat Peter Pan . +1 (the FDA; took to stop three New York physicians; from using the injectable silicone as a treatment for wrinkles) the FDA took to stop three New York physicians from using the injectable silicone as a treatment for wrinkles In 1992 , the FDA took action to stop three New York physicians from using the injectable silicone as a treatment for wrinkles . +1 (the FDA; took; action) the FDA took action In 1992 , the FDA took action to stop three New York physicians from using the injectable silicone as a treatment for wrinkles . +1 (the GOP; lost it; in 2006) the GOP lost it in 2006 Part of the reason that the Democrats lost control of Congress in 1994 , and the GOP lost it in 2006 , was the arrogance of the party leaders . +1 (the Hezbollah; are; Shia) the Hezbollah are Shia The Hamas are Sunni and the Hezbollah are Shia . +1 (the Internet; was the wave of; the future) the Internet was the wave of the future Back in 2000 , everyone knew that the Internet was the wave of the future . +1 (the Internet; was; the wave of the future) the Internet was the wave of the future Back in 2000 , everyone knew that the Internet was the wave of the future . +1 (the Israelites; offerings; as presented in Table 1 below) the Israelites offerings as presented in Table 1 below In observing the Sabbath , the Lord commanded the Israelites to make offerings as presented in Table 1 below . +1 (the Japanese; moved quickly; to take military control of French colonies in Indochina) the Japanese moved quickly to take military control of French colonies in Indochina When France fell to Germany , the Japanese moved quickly to take military control of French colonies in Indochina . +1 (the Japanese; to take military control of French colonies; in Indochina) the Japanese to take military control of French colonies in Indochina When France fell to Germany , the Japanese moved quickly to take military control of French colonies in Indochina . +1 (the Jews; run; Hollywood) the Jews run Hollywood I hope Gibson really believes that the Jews run Hollywood so that he 's REALLY shitting some holy bricks over this all getting out . +1 (the Jews; thought; John was Elijah come again) the Jews thought John was Elijah come again This is why the Jews thought John was Elijah come again , because He said he was preparing the way for the LORD in fulfillment of Isaiah 40:3. +1 (the Knicks; defeated them; in five games) the Knicks defeated them in five games The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (the Knicks; turned; the tables) the Knicks turned the tables The following bladez moby sport 33cc gas scooter , the Knicks turned the tables on the Lakers and defeated them in five games to sprint layoffs their second NBA Championship in three years . +1 (the LORD; to swallow up; Jonah) the LORD to swallow up Jonah I Like this quote I dislike this quote Now the LORD had prepared a great fish to swallow up Jonah . +1 (the Labour Government; came to; power) the Labour Government came to power When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the Levites; were not numbered; among the people of Israel) the Levites were not numbered among the people of Israel But the Levites were not numbered among the people of Israel , as The Lord commanded Moses . +1 (the Lord Jesus Christ; committed two ORDINANCES; to the church) the Lord Jesus Christ committed two ORDINANCES to the church WE BELIEVE that the Lord Jesus Christ committed two ORDINANCES to the church , Baptism and the Lord 's Supper . +1 (the Lord; commanded the Israelites; to make offerings as presented in Table 1 below) the Lord commanded the Israelites to make offerings as presented in Table 1 below In observing the Sabbath , the Lord commanded the Israelites to make offerings as presented in Table 1 below . +1 (the Mavericks; beat New Orleans 105-89; Tuesday night) the Mavericks beat New Orleans 105-89 Tuesday night Josh Howard had 25 points and 10 rebounds , and the Mavericks beat New Orleans 105-89 Tuesday night for their 21st straight victory over the Hornets . +1 (the Mavericks; beat New Orleans 105-89; for their 21st straight victory over the Hornets) the Mavericks beat New Orleans 105-89 for their 21st straight victory over the Hornets Josh Howard had 25 points and 10 rebounds , and the Mavericks beat New Orleans 105-89 Tuesday night for their 21st straight victory over the Hornets . +1 (the Medicis; began consolidating; power) the Medicis began consolidating power In the latter part of the Britney spears obituary century the Medicis began consolidating power , mary mccormick becoming bankers to the papacy . +1 (the Medicis; began; consolidating power , mary mccormick becoming bankers to the papacy) the Medicis began consolidating power , mary mccormick becoming bankers to the papacy In the latter part of the Britney spears obituary century the Medicis began consolidating power , mary mccormick becoming bankers to the papacy . +1 (the Palestinian people; need; peace and justice) the Palestinian people need peace and justice Carter went on to say , Israel needs peace and the Palestinian people need peace and justice and I hope my limited influence will help to precipitate some steps . +1 (the Pats; played; the Colts) the Pats played the Colts Where was mika when the Pats played the Colts . +1 (the Pharmacists; puts; on a good show) the Pharmacists puts on a good show For true alternative music fans , nothing beats a live performance , and Ted Leo & the Pharmacists always puts on a good show . +1 (the Philippines; is; a tropical country and it is common for shirts) the Philippines is a tropical country and it is common for shirts Thirdly , the Philippines is a tropical country and it is common for shirts worn untucked because of the hot climate . +1 (the Planning Commission; approves; the project) the Planning Commission approves the project If , after such hearing the Planning Commission approves the project , the County Manager may sign the approved plat . +1 (the Pope; to proclaim; that Mary is Co-Redemptrix) the Pope to proclaim that Mary is Co-Redemptrix She is trying to get the Pope to proclaim that Mary is Co-Redemptrix . +1 (the President; to take the necessary measured force; to protect American involvement) the President to take the necessary measured force to protect American involvement When Congress passed the Gulf of Tonkin Resolution in August 1964 it gave the President the authority to take the necessary measured force to protect American involvement . +1 (the Republicans; mostly are; in disarray) the Republicans mostly are in disarray But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +1 (the Romans; built; a fort) the Romans built a fort With the local tribes promptly subdued , the Romans built a fort and waited for the arrival of Claudius . +1 (the Romans; waited; for the arrival of Claudius) the Romans waited for the arrival of Claudius With the local tribes promptly subdued , the Romans built a fort and waited for the arrival of Claudius . +1 (the Sheenjek River basin; was included; in a presidential executive order) the Sheenjek River basin was included in a presidential executive order Soon after , Alaska became a state , and in 1960 the Sheenjek River basin was included in a presidential executive order . +1 (the Solomon Amendment; regulates; conduct) the Solomon Amendment regulates conduct As a general matter , the Solomon Amendment regulates conduct , not speech . +1 (the Taliban; took; control of Kabul) the Taliban took control of Kabul Nine years ago , as the Taliban took control of Kabul and much of the country , Fariba , a married mother of three , fled with her family to Peshawar in Pakistan . +1 (the Tigers; were; American League Champions) the Tigers were American League Champions This past baseball season the Tigers were American League Champions and went to the World Series , and now the Colts do one better and win the Super Bowl . +1 (the Timberwolves; have lost; nine of the last 10 road games) the Timberwolves have lost nine of the last 10 road games Craig Smith scored 30 points and grabbed 10 rebounds and Al Jefferson had 23 points and 15 rebounds for the Timberwolves who have lost nine of the last 10 road games . +1 (the UK government; manages; Britain 's aid) the UK government manages Britain 's aid The Department for International Development is the part of the UK government that manages Britain 's aid to poor countries and works to eradicate extreme poverty . +1 (the UK government; works to eradicate; extreme poverty) the UK government works to eradicate extreme poverty The Department for International Development is the part of the UK government that manages Britain 's aid to poor countries and works to eradicate extreme poverty . +1 (the UK government; works; to eradicate extreme poverty) the UK government works to eradicate extreme poverty The Department for International Development is the part of the UK government that manages Britain 's aid to poor countries and works to eradicate extreme poverty . +1 (the UK; has; nukes) the UK has nukes Further to this point , France has nukes , the UK has nukes . +1 (the UN; created; Israel) the UN created Israel When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (the US; When bought Alaska; from Russia) the US When bought Alaska from Russia When the US bought Alaska from Russia in 1867 , the purchase price came to two cents an acre ! +1 (the US; When bought Alaska; in 1867) the US When bought Alaska in 1867 When the US bought Alaska from Russia in 1867 , the purchase price came to two cents an acre ! +1 (the US; bought Alaska; from Russia) the US bought Alaska from Russia When the US bought Alaska from Russia in 1867 , the purchase price came to two cents an acre ! +1 (the US; bought Alaska; in 1867) the US bought Alaska in 1867 When the US bought Alaska from Russia in 1867 , the purchase price came to two cents an acre ! +1 (the US; had lost; the war in Iraq) the US had lost the war in Iraq Senate leader Harry Reid recently announced that the US had lost the war in Iraq . +1 (the US; to leave; a single political unit) the US to leave a single political unit The second reality is that Iraq already is at least two countries ; the US is not going to leave behind a single political unit in what today is Iraq . +1 (the US; to leave; behind) the US to leave behind The second reality is that Iraq already is at least two countries ; the US is not going to leave behind a single political unit in what today is Iraq . +1 (the US; to leave; in what today is Iraq) the US to leave in what today is Iraq The second reality is that Iraq already is at least two countries ; the US is not going to leave behind a single political unit in what today is Iraq . +1 (the United States; is; the aggressor and) the United States is the aggressor and In their view , the United States is the aggressor and Saddam Hussein is a Muslim victim . +1 (the United States; took steps; to remove nuclear weapons from its operational ground forces and fleets throughout the world) the United States took steps to remove nuclear weapons from its operational ground forces and fleets throughout the world In 1991 , the United States took steps to remove nuclear weapons from its operational ground forces and fleets throughout the world . +1 (the United States; was; in the lead) the United States was in the lead At last glance , the United States was in the lead , and Germany was running a close second . +1 (the Wi-Fi ZONE logo; are trademarks of; the Wi-Fi Alliance) the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance Wi-Fi and the Wi-Fi logo are registered trademarks of the Wi-Fi Alliance ; and Wi-Fi ZONE , the Wi-Fi CERTIFIED logo , the Wi-Fi Alliance logo and the Wi-Fi ZONE logo are trademarks of the Wi-Fi Alliance . +1 (the Windows Vista Start button; are; trademarks or registered trademarks of Microsoft Corporation in the United States) the Windows Vista Start button are trademarks or registered trademarks of Microsoft Corporation in the United States For the Certified for Windows Vista Logo : Windows Vista and the Windows Vista Start button are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries . +1 (the band; finds; its plans for the day) the band finds its plans for the day The highlight of the DVD occurs while the band is in Europe and finds its plans for the day cancelled . +1 (the bartender; was; a good guy) the bartender was a good guy Chris , the bartender was a good guy . +1 (the best player; to play; QB) the best player to play QB Ive heard people say that Brett Farve is the best player to ever play QB , and Ive also heard people say that Mike Vick is the best player to ever play QB. +1 (the book; When was published; in Germany) the book When was published in Germany As Dr Richard Kilminster , another Leeds sociologist colleague , explains : When the book was published in Germany , it caused a sensation . +1 (the book; was published; in Germany) the book was published in Germany As Dr Richard Kilminster , another Leeds sociologist colleague , explains : When the book was published in Germany , it caused a sensation . +1 (the bread and wine; are the body and blood of; Christ) the bread and wine are the body and blood of Christ Eucharist-The elements of the communion supper where the bread and wine are the body and blood of Christ . +1 (the bread and wine; are; the body and blood of Christ) the bread and wine are the body and blood of Christ Eucharist-The elements of the communion supper where the bread and wine are the body and blood of Christ . +1 (the centurion; to beg; on behalf of a beloved servant) the centurion to beg on behalf of a beloved servant In that passage , Luke 7:1-10 , the centurion comes to Jesus to beg on behalf of a beloved servant who is close to death . +1 (the city; is; London) the city is London The year is 2027 ; the city is London . +1 (the college admission process; is a walk in; the park) the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (the college admission process; is; a walk in the park) the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (the companies; had; these fabulous cultures) the companies had these fabulous cultures Ive read comments from say Ruby where , you know theres this kind of Tolkeinesque period of web development in which we were all creative and happy and the companies were idyllic and had these fabulous cultures . +1 (the companies; where had; these fabulous cultures) the companies where had these fabulous cultures Ive read comments from say Ruby where , you know theres this kind of Tolkeinesque period of web development in which we were all creative and happy and the companies were idyllic and had these fabulous cultures . +1 (the company; is headquartered; in Spokane , Washington) the company is headquartered in Spokane , Washington Founded in 1977 , the company is headquartered in Spokane , Washington . +1 (the countries; were; China , India , Indonesia , Bangladesh , Pakistan , Nepal and the Philippines) the countries were China , India , Indonesia , Bangladesh , Pakistan , Nepal and the Philippines In Phase-II from 1989-1992 , the countries included , were China , India , Indonesia , Bangladesh , Pakistan , Nepal and the Philippines . +1 (the couple; have; three children) the couple have three children He is married to Donna , and the couple have three children , Ruth , Anna , and Samuel . +1 (the deadline; is; December 15) the deadline is December 15 But hurry , the deadline is December 15 ! +1 (the debate; was a major success for; Hillary) the debate was a major success for Hillary Ive read in some places that the debate was a major success for Hillary and other places that she totally bombed . +1 (the debate; was; a major success for Hillary and other places) the debate was a major success for Hillary and other places Ive read in some places that the debate was a major success for Hillary and other places that she totally bombed . +1 (the device; runs Windows Mobile and Windows Vista; at the same time) the device runs Windows Mobile and Windows Vista at the same time If it indeed has both it implies the device runs Windows Mobile and Windows Vista at the same time , which would certainly be interesting . +1 (the electronics industry; was changed; forever) the electronics industry was changed forever When RoHS went into effect in the European Union , the electronics industry was changed forever . +1 (the family; moved; to Spain) the family moved to Spain She studied at RVAS , a boarding school in Southern Oregon , until the 5th grade , when the family moved to Spain . +1 (the firm; has; offices in California , New York , London , and Brussels) the firm has offices in California , New York , London , and Brussels Based in Washington , DC , the firm also has offices in California , New York , London , and Brussels . +1 (the first Ride Of Silence in Dallas after endurance cyclist Larry Schwartz; was hit; by the mirror of a passing bus) the first Ride Of Silence in Dallas after endurance cyclist Larry Schwartz was hit by the mirror of a passing bus Chris Phelan organized the first Ride Of Silence in Dallas after endurance cyclist Larry Schwartz was hit by the mirror of a passing bus and was killed . +1 (the first country; requiring hepatitis B vaccination; for schoolchildren) the first country requiring hepatitis B vaccination for schoolchildren In 1998 , France became the first country to stop requiring hepatitis B vaccination for schoolchildren . +1 (the former American administrations; had; programs for helping to dismantle some of the weapons from the former Soviet Union) the former American administrations had programs for helping to dismantle some of the weapons from the former Soviet Union So I dont think the problem is Iran as much as the existence of the weapons , and the former American administrations had programs for helping to dismantle some of the weapons from the former Soviet Union . +1 (the full Moon; will be; in the solar 7th House opposite Capricorn) the full Moon will be in the solar 7th House opposite Capricorn Jupiter is in opposition to Mars , and the full Moon will be in the solar 7th House opposite Capricorn . +1 (the gifted stylists; make up; the John Frieda team) the gifted stylists make up the John Frieda team Hair Stylists Get to know the gifted stylists who make up the John Frieda team . +1 (the girl; played; Sarah) the girl played Sarah And the girl who played Sarah was a very strong actress and obvioulsy has a strong voice , but not that well suited to the soprano range in some of the songs . +1 (the guy; met; when you wanted to be introduced to Ranger baseball) the guy met when you wanted to be introduced to Ranger baseball George was the guy that you met when you wanted to be introduced to Ranger baseball . +1 (the heart; is; what can make unlikely things happen) the heart is what can make unlikely things happen Now after seeing Venus Williams win Wimbledon , I know that the heart is what can make unlikely things happen . +1 (the house of Jacob from a people of strange language; was; his sanctuary) the house of Jacob from a people of strange language was his sanctuary When Israel went out of Egypt , the house of Jacob from a people of strange language ; Judah was his sanctuary , and Israel his dominion . +1 (the intelligence services; had never said; Saddam Hussein was an imminent threat but stood by warnings about the future danger) the intelligence services had never said Saddam Hussein was an imminent threat but stood by warnings about the future danger He said the intelligence services had never said Saddam Hussein was an imminent threat but stood by warnings about the future danger he could pose . +1 (the interface; even was at; every page change) the interface even was at every page change We had to consistently decline , even though the interface was in English at every page change . +1 (the interface; even was in; English) the interface even was in English We had to consistently decline , even though the interface was in English at every page change . +1 (the key strategy adopted for producing an internationally competitive economy; was increasing competition in; 1984) the key strategy adopted for producing an internationally competitive economy was increasing competition in 1984 When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the key strategy adopted for producing an internationally competitive economy; was increasing; competition) the key strategy adopted for producing an internationally competitive economy was increasing competition When the Labour Government came to power in 1984 the key strategy adopted for producing an internationally competitive economy , was increasing competition . +1 (the kitchen dresser; was used; in old New England days) the kitchen dresser was used in old New England days They were used much as we use a serving-table , or as ww the kitchen dresser was used in old New England days . +1 (the last American troops; left; Vietnam and all known prisoners of war) the last American troops left Vietnam and all known prisoners of war By early April the last American troops left Vietnam and all known prisoners of war were released . +1 (the law; brings; the knowledge of sin) the law brings the knowledge of sin E Augustines evidence is that Paul says that the law brings the knowledge of sin , and therefore Paul has in view the moral law . +1 (the laws of the Province of Ontario and all claims; concerning; this Agreement shall be brought exclusively in the provincial court) the laws of the Province of Ontario and all claims concerning this Agreement shall be brought exclusively in the provincial court This Agreement shall be governed by the laws of the Province of Ontario and all claims concerning this Agreement shall be brought exclusively in the provincial court located in the Province of Ontario . +1 (the main transmission period; is; between July and December) the main transmission period is between July and December Malaria is holoendemic but highly seasonal in the study area ; the rainy season lasts from July until October and the main transmission period is between July and December . +1 (the military; showed; video of the ousted leader , haggard and gray-bearded) the military showed video of the ousted leader , haggard and gray-bearded Eager to prove to Iraqis that Saddam was in custody , the military also showed video of the ousted leader , haggard and gray-bearded , as a military doctor examined him . +1 (the nation; will continue to spin; downward) the nation will continue to spin downward If Edwards becomes president without changing his mind about single payer healthcare , the nation will continue to spin downward toward dissolution . +1 (the nation; will continue to spin; toward dissolution) the nation will continue to spin toward dissolution If Edwards becomes president without changing his mind about single payer healthcare , the nation will continue to spin downward toward dissolution . +1 (the number of Americans with Alzheimer 's; could quadruple; within 50 years) the number of Americans with Alzheimer 's could quadruple within 50 years Alzheimer 's disease is the leading cause of dementia in the United States , and the number of Americans with Alzheimer 's could quadruple within 50 years , unless we find ways to prevent it . +1 (the officers; with assuming their positions; on October 1) the officers with assuming their positions on October 1 Elections are held in September with the officers assuming their positions on October 1 . +1 (the only begotten Son of God; born; of the virgin Mary) the only begotten Son of God born of the virgin Mary Jesus is the only begotten Son of God the Father , conceived of the Holy Spirit and born of the virgin Mary . +1 (the only state; to allow; a doctor to prescribe a lethal dose of medication) the only state to allow a doctor to prescribe a lethal dose of medication Currently , Oregon is the only state to allow a doctor to prescribe a lethal dose of medication if a terminally ill patient has six months or less to live . +1 (the operator; feels; like he or she is genuinely there at the remote location) the operator feels like he or she is genuinely there at the remote location Telepresence involves the distant operation interface engages so much of the operator 's sensory data processing potential that the operator feels like he or she is genuinely there at the remote location . +1 (the orchard trees; were; laden with peaches , plums and other fruit , ours for the picking) the orchard trees were laden with peaches , plums and other fruit , ours for the picking Roses were in bloom in the little garden back of the hotel , and the orchard trees were laden with peaches , plums and other fruit , ours for the picking . +1 (the parties here by; submit; to the exclusive jurisdiction of the English courts in relation to any dispute) the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute 7These Terms and Conditions and any relevant Order are governed by English law and the parties here by submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of them . +1 (the parties here by; submit; to the non-exclusive jurisdiction of the English Courts) the parties here by submit to the non-exclusive jurisdiction of the English Courts These Terms and Conditions shall be governed by the laws of England and the parties here by submit to the non-exclusive jurisdiction of the English Courts . +1 (the people; listened; on the shore) the people listened on the shore Such a large crowd had gathered that Jesus got into a boat , sat down in it , and taught from there as the people listened on the shore . +1 (the problem; is as much; Iran) the problem is as much Iran So I dont think the problem is Iran as much as the existence of the weapons , and the former American administrations had programs for helping to dismantle some of the weapons from the former Soviet Union . +1 (the rainy season; lasts; from July) the rainy season lasts from July Malaria is holoendemic but highly seasonal in the study area ; the rainy season lasts from July until October and the main transmission period is between July and December . +1 (the road leading to the Pinnacle Overlook; may be closed; for visitor safety) the road leading to the Pinnacle Overlook may be closed for visitor safety The Visitor Center is closed on Christmas Day ; During inclement weather , the road leading to the Pinnacle Overlook may be closed for visitor safety . +1 (the server; is running; Windows SharePoint Services) the server is running Windows SharePoint Services In order to use these Web Parts , Microsoft Office 2003 must be installed on the server that is running Windows SharePoint Services as well as on the client machines . +1 (the setting; is; San Francisco) the setting is San Francisco Chapter 2 We learn that the setting is San Francisco . +1 (the show; is; $ 5) the show is $ 5 Doors are at 9pm and the show is 19+ / $ 5 . +1 (the site; is in; Portuguese) the site is in Portuguese Although the site is in Portuguese , do n't be thrown off . +1 (the spacecraft; to study; other mini-worlds) the spacecraft to study other mini-worlds If NASA extends the mission , the spacecraft will then continue into the Kuiper Belt to study other mini-worlds . +1 (the spacecraft; will continue; to study other mini-worlds) the spacecraft will continue to study other mini-worlds If NASA extends the mission , the spacecraft will then continue into the Kuiper Belt to study other mini-worlds . +1 (the suicide terrorists; attacked; the United States) the suicide terrorists attacked the United States The president asked Americans to imagine the suicide terrorists who attacked the United States if they had been armed by Iraq . +1 (the text; states; that God hardened Pharaohs heart) the text states that God hardened Pharaohs heart First , the text states that God hardened Pharaohs heart . +1 (the three greatest Americans; were born; during that month) the three greatest Americans were born during that month Furthermore , I explained that Woodson chose February because he felt that the three greatest Americans were born during that month . +1 (the type of leadership; can confront; issues of the human condition) the type of leadership can confront issues of the human condition The world looks to America for the type of leadership that can confront issues of the human condition , Sen. Chuck Hagel said during his keynote address at Charter Day . +1 (the very man; had pointed out his essential dishonesty; to the world) the very man had pointed out his essential dishonesty to the world And so when Reagan won the nomination , he selected as Vice Presidential nominee the very man who had pointed out his essential dishonesty to the world . +1 (the web; has made; my life easier) the web has made my life easier Ive just moved house and have found some ways the web has made my life easier . +1 (the workers of Opar; to mine; the gold) the workers of Opar to mine the gold Ever since Atlantis sank beneath the waves , the workers of Opar have continued to mine the gold . +1 (the world; killed; Him) the world killed Him God sent His Son Jesus to us , but the world rejected Him , the world killed Him , put Him to death on the cross . +1 (the world; put Him; on the cross) the world put Him on the cross God sent His Son Jesus to us , but the world rejected Him , the world killed Him , put Him to death on the cross . +1 (the world; put Him; to death) the world put Him to death God sent His Son Jesus to us , but the world rejected Him , the world killed Him , put Him to death on the cross . +1 (the world; rejected; Him) the world rejected Him God sent His Son Jesus to us , but the world rejected Him , the world killed Him , put Him to death on the cross . +1 (their campaign; is thrown; into utter chaos) their campaign is thrown into utter chaos Huck wins IA , McCain wins NH , Romney wins MI and their campaign is thrown into utter chaos , with a down and dirty fight to the nomination . +1 (their fundraising; is not keeping; pace) their fundraising is not keeping pace But I do expect the Democrats to pick up Congressional seats and think they have a good chance for the presidency , mostly because the Republicans are in disarray and their fundraising is not keeping pace with their opponents . +1 (there; are no CAPITAL LETTERS in; usernames and passwords) there are no CAPITAL LETTERS in usernames and passwords Usernames and passwords are case sensitive , so it 's important to remember that there are no CAPITAL LETTERS in usernames and passwords . +1 (there; were an estimated 37 Elvis impersonators in; the world) there were an estimated 37 Elvis impersonators in the world According to the San Francisco Chronicle When Elvis Presley died in 1977 , there were an estimated 37 Elvis impersonators in the world . +1 (these articles; perhaps might open; a few minds and hearts) these articles perhaps might open a few minds and hearts To those that really believe Israel is not an apartheid state , perhaps these articles might open a few minds and hearts . +1 (these little shoes; would take; the threesome) these little shoes would take the threesome Little did Laura know when she sent a gift from abroad to her friend 's son where these little shoes would take the threesome . +1 (they; can help you; with any travel related assistance) they can help you with any travel related assistance All staff speaks English and they can usually help you with any travel related assistance that you need from anywhere in Japan . +1 (they; defined; a specific geographical area for their nation and the remaining lands) they defined a specific geographical area for their nation and the remaining lands When the UN created Israel they defined a specific geographical area for their nation and the remaining lands were to be for the establishment of an independent Arab nation with Jerusalem being an open city under neither nations control . +1 (they; inevitably invoke; 9/11) they inevitably invoke 9/11 That mis-characterizes what Shark said : they inevitably invoke 9/11 or the fact that Saddam was n't a nice guy . +1 (they; know; how important this game is for me) they know how important this game is for me Im stuck in the middle but I hope the gives me a day free because they know how important this game is for me . +1 (they; stopped manufacturing it; because it was just too big) they stopped manufacturing it because it was just too big I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +1 (they; stopped manufacturing; it) they stopped manufacturing it I believe Sony was the only company that even MADE a 40 4:3 Tube HDTV , and they stopped manufacturing it three or four years ago because it was just too big . +1 (they; take part; in a singing contest in New Jersey) they take part in a singing contest in New Jersey The film is in English and follows the lives of six contestants as they take part in a singing contest in New Jersey . +1 (they; unknowlingly brought all their lethal germs; with them) they unknowlingly brought all their lethal germs with them So when the Europeans came to the Americas , for example , they unknowlingly brought all their lethal germs with them . +1 (this Agreement; shall be brought exclusively; in the provincial court) this Agreement shall be brought exclusively in the provincial court This Agreement shall be governed by the laws of the Province of Ontario and all claims concerning this Agreement shall be brought exclusively in the provincial court located in the Province of Ontario . +1 (this day; has had; special significance) this day has had special significance For the past 2,000 years , this day has had special significance as Christians celebrate the birth of Jesus Christ . +1 (this technique; does not work; in every browser) this technique does not work in every browser Thats right this technique does not work in every browser and Ive only had the opportunity to test it in a select few . +1 (three New York physicians; from using the injectable silicone; as a treatment for wrinkles) three New York physicians from using the injectable silicone as a treatment for wrinkles In 1992 , the FDA took action to stop three New York physicians from using the injectable silicone as a treatment for wrinkles . +1 (today; is; January 5th) today is January 5th OK , today is January 5th . +1 (treating advanced gum disease; lowered; blood pressure) treating advanced gum disease lowered blood pressure Researchers reported in The New England Journal of Medicine this year that treating advanced gum disease lowered blood pressure , thereby reducing the risk of heart disease . +1 (two individuals; are touched; by poverty in Malawi) two individuals are touched by poverty in Malawi This is a private sector initiative by two individuals who are touched by poverty in Malawi and are committed to assist in alleviating it , Malawi President Bingu wa Mutharika said at Friday 's ceremony . +1 (two soldiers; were supporting; Operation Iraqi Freedom) two soldiers were supporting Operation Iraqi Freedom US Army Casualties The Department of Defense announced today the death of two soldiers who were supporting Operation Iraqi Freedom . +1 (useless Gartner; [is] the fat lady of; research firms) useless Gartner [is] the fat lady of research firms Gartner : Blu-ray to win in 2008 , HD DVD resistance useless Gartner , the fat lady of research firms , is singing HD DVD 's swan song this morning . +1 (users; can access; the Internet) users can access the Internet It is a unique facility in that it has multiple components including recreational programs , athletic activities and a computer learning center where users can access the Internet . +1 (users; to customize; that XML) users to customize that XML Although Microsoft allows users to customize that XML , they do n't include tools or information on how to make the changes . +1 (users; where can access; the Internet) users where can access the Internet It is a unique facility in that it has multiple components including recreational programs , athletic activities and a computer learning center where users can access the Internet . +1 (version Jean Baptiste Pointe du Sable; [is] saint [of]; Lilium) version Jean Baptiste Pointe du Sable [is] saint [of] Lilium The first settler in Chicago , Lilium saint version Jean Baptiste Pointe du Sable , arrived in the 1770s , lilium a Potawatomi woman , and bumper nuts the area 's first trading post . +1 (we; are; and grace to show us what we can become) we are and grace to show us what we can become Jesus spoke truth to show us what we are and grace to show us what we can become . +1 (we; open; to greener pastures) we open to greener pastures Because Christ is the Door , we can shut out the pain of our past and open it to greener pastures . +1 (winds; hit 126 miles per hour; on Dec) winds hit 126 miles per hour on Dec Rogue Ales Public House , Astoria , located where the Columbia River meets the Pacific Ocean , got a first hand look at the power of the Pacific when winds hit 126 miles per hour on Dec. 3 . +1 (women; getting; respect in the tech field) women getting respect in the tech field Especially since Ive spent the last four years in weblogging fighting for women getting respect in the tech field . +1 (year; ended; December 31 , 2007) year ended December 31 , 2007 24< ;/D> ; /PRNewswire-FirstCall/ -- Broadcom Corporation today reported unaudited financial results for its fourth quarter and year ended December 31 , 2007 . +1 (you; provide us; with a current Texas resale tax permit number) you provide us with a current Texas resale tax permit number Texas residents add 8.25 % sales tax unless you provide us with a current Texas resale tax permit number . +1 (you; say; that Hillary is some wannabee senator from NY) you say that Hillary is some wannabee senator from NY Jerry , Jerry , Jerry , so you say that Hillary is some wannabee senator from NY who got elected just because her last name was Clinton . +1 (you; to know; that after this experience , I can tell you the college admission process is a walk in the park) you to know that after this experience , I can tell you the college admission process is a walk in the park Ive posted the video below but want you to know that after this experience , I can tell you the college admission process is a walk in the park . +1 (you; want to witness firsthand; why Virginia is for Lovers) you want to witness firsthand why Virginia is for Lovers If you want to witness firsthand why Virginia is for Lovers , then look no further than the culturally rich and naturally beautiful region of central Virginia . +1 (you; want; to witness firsthand why Virginia is for Lovers) you want to witness firsthand why Virginia is for Lovers If you want to witness firsthand why Virginia is for Lovers , then look no further than the culturally rich and naturally beautiful region of central Virginia . diff --git a/srlie/index.html b/srlie/index.html new file mode 100644 index 0000000..c675fde --- /dev/null +++ b/srlie/index.html @@ -0,0 +1,6 @@ +Google