diff --git a/docker/.env-non-dev b/docker/.env-non-dev deleted file mode 100644 index c6e4739..0000000 --- a/docker/.env-non-dev +++ /dev/null @@ -1,46 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -COMPOSE_PROJECT_NAME=superset - -# database configurations (do not modify) -DATABASE_DB=superset -DATABASE_HOST=db -DATABASE_PASSWORD=superset -DATABASE_USER=superset - -# database engine specific environment variables -# change the below if you prefers another database engine -DATABASE_PORT=5432 -DATABASE_DIALECT=postgresql -POSTGRES_DB=superset -POSTGRES_USER=superset -POSTGRES_PASSWORD=superset -#MYSQL_DATABASE=superset -#MYSQL_USER=superset -#MYSQL_PASSWORD=superset -#MYSQL_RANDOM_ROOT_PASSWORD=yes - -# Add the mapped in /app/pythonpath_docker which allows devs to override stuff -PYTHONPATH=/app/pythonpath:/app/docker/pythonpath_dev -REDIS_HOST=redis -REDIS_PORT=6379 - -FLASK_ENV=production -SUPERSET_ENV=production -SUPERSET_LOAD_EXAMPLES=no -CYPRESS_CONFIG=false -SUPERSET_PORT=8088 diff --git a/docker/druid/Dockerfile b/docker/druid/Dockerfile deleted file mode 100644 index 1d5b440..0000000 --- a/docker/druid/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -ARG DRUID_VER=0.23.0 - -FROM apache/druid:${DRUID_VER} AS druid - -FROM ubuntu:bionic -RUN apt-get update && \ - apt-get install --yes openjdk-8-jre-headless perl-modules && \ - apt-get clean - -RUN addgroup --system -gid 1000 druid \ - && adduser --system --uid 1000 --disabled-password --home /opt/druid --shell /bin/bash --group druid - -COPY --from=druid --chown=druid:druid /opt/druid /opt/druid - -WORKDIR /opt/druid - -USER druid - -EXPOSE 8888/tcp -EXPOSE 8081/tcp - -CMD /opt/druid/bin/start-nano-quickstart \ No newline at end of file diff --git a/docker/manticore/.mysql_history b/docker/manticore/.mysql_history deleted file mode 100644 index 6313dc6..0000000 --- a/docker/manticore/.mysql_history +++ /dev/null @@ -1,12 +0,0 @@ -_HiStOrY_V2_ -SELECT * FROM films WHERE MATCH('"shark monkey boy robot"/2') AND release_year IN(2006,2007) AND rental_rate BETWEEN 2.0 and 3.0; -SELECT title, HIGHLIGHT({},'description') FROM films WHERE MATCH('"shark monkey boy robot"/2'); -SELECT * FROM films WHERE MATCH('" shark monkey boy robot "/2'); -SELECT * FROM films WHERE MATCH('Emotional drama') FACET release_year FACET category_id; -SELECT * FROM films WHERE MATCH('Emotional drama') GROUP BY release_year; -SELECT * FROM films WHERE MATCH('Emotional drama -dog -shark'); -SELECT * FROM films WHERE MATCH('Emotional drama'); -SELECT * FROM films; -DESCRIBE films; -SHOW TABLES; -SOURCE /sandbox.sql diff --git a/docker/manticore/Dockerfile b/docker/manticore/Dockerfile deleted file mode 100644 index 73bb16b..0000000 --- a/docker/manticore/Dockerfile +++ /dev/null @@ -1,76 +0,0 @@ -FROM ubuntu:focal - -ARG DEV -ARG DAEMON_URL -ARG MCL_URL - -RUN groupadd -r manticore && useradd -r -g manticore manticore - -ENV GOSU_VERSION 1.11 -ENV MCL_URL=${MCL_URL:-"https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-amd64/manticore-columnar-lib_1.15.4-220522-2fef34e_amd64.deb"} -ENV DAEMON_URL=${DAEMON_URL:-"https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/manticore_5.0.2-220530-348514c86_amd64.tgz"} -ENV BETA_URL=${BETA_URL:-"https://repo.manticoresearch.com/repository/kibana_beta/ubuntu/focal.zip"} - - -RUN set -x \ - && apt-get update && apt-get -y install --no-install-recommends ca-certificates binutils wget gnupg dirmngr unzip && rm -rf /var/lib/apt/lists/* \ - && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \ - && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \ - && export GNUPGHOME="$(mktemp -d)" \ - && gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \ - && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \ - && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \ - && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc \ - && chmod +x /usr/local/bin/gosu \ - && gosu nobody true && \ - if [ "${DEV}" = "1" ]; then \ - echo "DEV IS ONE" && \ - exit && \ - wget https://repo.manticoresearch.com/manticore-dev-repo.noarch.deb \ - && dpkg -i manticore-dev-repo.noarch.deb \ - && apt-key adv --fetch-keys 'https://repo.manticoresearch.com/GPG-KEY-manticore' && apt-get -y update && apt-get -y install manticore \ - && apt-get update \ - && echo $(apt-get -y download --print-uris manticore-columnar-lib | cut -d" " -f1 | cut -d "'" -f 2) > /mcl.url ;\ - elif [ "${DEV}" = "2" ]; then \ - echo "DEV IS TWO" && \ - wget $BETA_URL && unzip focal.zip && rm focal.zip && \ - dpkg -i build/* && echo $MCL_URL > /mcl.url; rm build/* ;\ - else \ - echo "DEV NOT EITHER" && \ - exit && \ - wget $DAEMON_URL && ARCHIVE_NAME=$(ls | grep '.tgz' | head -n1 ) && tar -xf $ARCHIVE_NAME && rm $ARCHIVE_NAME && \ - dpkg -i manticore* && echo $MCL_URL > /mcl.url && rm *.deb ; \ - fi \ - && mkdir -p /var/run/manticore && mkdir -p /var/lib/manticore/replication \ - && apt-get update && apt-get -y install libexpat1 libodbc1 libpq5 openssl libcrypto++6 libmysqlclient21 mysql-client \ - && apt-get -y purge --auto-remove \ - && rm -rf /var/lib/apt/lists/* \ - && rm -f /usr/bin/mariabackup /usr/bin/mysqldump /usr/bin/mysqlslap /usr/bin/mysqladmin /usr/bin/mysqlimport \ - /usr/bin/mysqlshow /usr/bin/mbstream /usr/bin/mysql_waitpid /usr/bin/innotop /usr/bin/mysqlaccess /usr/bin/mytop \ - /usr/bin/mysqlreport /usr/bin/mysqldumpslow /usr/bin/mysql_find_rows /usr/bin/mysql_fix_extensions \ - /usr/bin/mysql_embedded /usr/bin/mysqlcheck \ - && rm -f /usr/bin/spelldump /usr/bin/wordbreaker \ - && mkdir -p /var/run/mysqld/ && chown manticore:manticore /var/run/mysqld/ \ - && echo "\n[mysql]\nsilent\nwait\ntable\n" >> /etc/mysql/my.cnf && \ - wget -P /tmp https://repo.manticoresearch.com/repository/morphology/en.pak.tgz && \ - wget -P /tmp https://repo.manticoresearch.com/repository/morphology/de.pak.tgz && \ - wget -P /tmp https://repo.manticoresearch.com/repository/morphology/ru.pak.tgz && \ - tar -xf /tmp/en.pak.tgz -C /usr/share/manticore/ && \ - tar -xf /tmp/de.pak.tgz -C /usr/share/manticore/ && \ - tar -xf /tmp/ru.pak.tgz -C /usr/share/manticore/ - - -COPY manticore.conf /etc/manticoresearch/ -COPY sandbox.sql /sandbox.sql -COPY .mysql_history /root/.mysql_history - -COPY docker-entrypoint.sh /usr/local/bin/ -RUN ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh -WORKDIR /var/lib/manticore -ENTRYPOINT ["docker-entrypoint.sh"] -EXPOSE 9306 -EXPOSE 9308 -EXPOSE 9312 -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 -CMD ["sh", "-c", "(echo 'START WAIT' && sleep 5 && echo 'END WAIT' && mysql -P9306 -h0 -e 'set global log_management = 0; set global log_management = 1;') & searchd --nodetach"] diff --git a/docker/manticore/README.md b/docker/manticore/README.md deleted file mode 100644 index 323218c..0000000 --- a/docker/manticore/README.md +++ /dev/null @@ -1,278 +0,0 @@ -# Manticore Search Docker image - -This is the git repo of official [Docker image](https://hub.docker.com/r/manticoresearch/manticore/) for [Manticore Search](https://github.com/manticoresoftware/manticoresearch). - -Manticore Search is an easy to use open source fast database for search. It helps thousands of companies from small to large, such as Craigslist, to search and filter petabytes of text data on a single or hundreds of nodes, do stream full-text filtering, add auto-complete, spell correction, more-like-this, faceting and other search-related technologies to their websites and applications. - -The default configuration includes a sample Real-Time index and listens on the default ports: - * `9306` for connections from a MySQL client - * `9308` for connections via HTTP - * `9312` for connections via a binary protocol (e.g. in case you run a cluster) - -The image comes with libraries for easy indexing data from MySQL, PostgreSQL XML and CSV files. - -# How to run Manticore Search Docker image - -## Quick usage - -The below is the simplest way to start Manticore in a container and log in to it via mysql client: - -```bash -docker run --name manticore --rm -d manticoresearch/manticore && sleep 3 && docker exec -it manticore mysql && docker stop manticore -``` - -When you exit from the mysql client it stops and removes the container, so **use it only for testing / sandboxing purposes**. See below how to use it in production. - -The image comes with a sample index which can be loaded like this: - -```mysql -mysql> source /sandbox.sql -``` - -Also the mysql client has in history several sample queries that you can run on the above index, just use Up/Down keys in the client to see and run them. - -## Production use - - -### Ports and mounting points - -For data persistence `/var/lib/manticore/` should be mounted to local storage or other desired storage engine. - -```bash -docker run --name manticore -v $(pwd)/data:/var/lib/manticore -p 127.0.0.1:9306:9306 -p 127.0.0.1:9308:9308 -d manticoresearch/manticore -``` - -Configuration file inside the instance is located at `/etc/manticoresearch/manticore.conf`. For custom settings, this file should be mounted to your own configuration file. - -The ports are 9306/9308/9312 for SQL/HTTP/Binary, expose them depending on how you are going to use Manticore. For example: - -```bash -docker run --name manticore -v $(pwd)/manticore.conf:/etc/manticoresearch/manticore.conf -v $(pwd)/data:/var/lib/manticore/ -p 127.0.0.1:9306:9306 -p 127.0.0.1:9308:9308 -d manticoresearch/manticore -``` - -Make sure to remove `127.0.0.1:` if you want the ports to be available for external hosts. - -### Manticore Columnar Library - -The docker image doesn't include [Manticore Columnar Library](https://github.com/manticoresoftware/columnar) which has to be used if you need: -* columnar storage -* secondary indexes - -but you can easily enable it in runtime by using environment variable `MCL=1`, i.e. `docker run -e MCL=1 ... manticoresearch/manticore`. It will then download and install the library and put it to the data dir (which is normally mapped as a volume in production). Next time you run the container the library will be already there, hence it won't be downloaded again unless you change the Manticore Search version. - -### Docker-compose - -In many cases you might want to use Manticore together with other images specified in a docker-compose YAML file. Here is the minimal recommended specification for Manticore Search in docker-compose.yml: - -```yaml -version: '2.2' - -services: - manticore: - container_name: manticore - image: manticoresearch/manticore - restart: always - ports: - - 127.0.0.1:9306:9306 - - 127.0.0.1:9308:9308 - ulimits: - nproc: 65535 - nofile: - soft: 65535 - hard: 65535 - memlock: - soft: -1 - hard: -1 - environment: - - MCL=1 - volumes: - - ./data:/var/lib/manticore -# - ./manticore.conf:/etc/manticoresearch/manticore.conf # uncommment if you use a custom config -``` - -Besides using the exposed ports 9306 and 9308 you can log into the instance by running `docker-compose exec manticore mysql`. - -### HTTP protocol - -Manticore is accessible via HTTP on ports 9308 and 9312. You can map either of them locally and connect with curl: - -```bash -docker run --name manticore -p 9308:9308 -d manticoresearch/manticore -``` - -Create a table: -```bash -curl -X POST 'http://127.0.0.1:9308/sql' -d 'mode=raw&query=CREATE TABLE testrt ( title text, content text, gid integer)' -``` -Insert a document: - -```bash -curl -X POST 'http://127.0.0.1:9308/json/insert' -d'{"index":"testrt","id":1,"doc":{"title":"Hello","content":"world","gid":1}}' -``` - -Perform a simple search: - -```bash -curl -X POST 'http://127.0.0.1:9308/json/search' -d '{"index":"testrt","query":{"match":{"*":"hello world"}}}' -``` - -### Logging - -By default, Manticore logs to `/dev/stdout`, so you can watch the log on the host with: - -```bash -docker logs manticore -``` - -If you want to get log of your queries the same way you can do it by passing environment variable `QUERY_LOG_TO_STDOUT=true`. - -### Multi-node cluster with replication - -Here is a simple `docker-compose.yml` for defining a two node cluster: - -```yaml -version: '2.2' - -services: - - manticore-1: - image: manticoresearch/manticore - restart: always - ulimits: - nproc: 65535 - nofile: - soft: 65535 - hard: 65535 - memlock: - soft: -1 - hard: -1 - environment: - - MCL=1 - networks: - - manticore - manticore-2: - image: manticoresearch/manticore - restart: always - ulimits: - nproc: 65535 - nofile: - soft: 65535 - hard: 65535 - memlock: - soft: -1 - hard: -1 - environment: - - MCL=1 - networks: - - manticore -networks: - manticore: - driver: bridge -``` -* Start it: `docker-compose up` -* Create a cluster with a table: - ```mysql - $ docker-compose exec manticore-1 mysql - - mysql> CREATE TABLE testrt ( title text, content text, gid integer); - - mysql> CREATE CLUSTER posts; - Query OK, 0 rows affected (0.24 sec) - - mysql> ALTER CLUSTER posts ADD testrt; - Query OK, 0 rows affected (0.07 sec) - - MySQL [(none)]> exit - Bye - ``` -* Join to the the cluster on the 2nd instance and insert smth to the table: - ```mysql - $ docker-compose exec manticore-2 mysql - - mysql> JOIN CLUSTER posts AT 'manticore-1:9312'; - mysql> INSERT INTO posts:testrt(title,content,gid) VALUES('hello','world',1); - Query OK, 1 row affected (0.00 sec) - - MySQL [(none)]> exit - Bye - ``` - -* If you now go back to the first instance you'll see the new record: - ```mysql - $ docker-compose exec manticore-1 mysql - - MySQL [(none)]> select * from testrt; - +---------------------+------+-------+---------+ - | id | gid | title | content | - +---------------------+------+-------+---------+ - | 3891565839006040065 | 1 | hello | world | - +---------------------+------+-------+---------+ - 1 row in set (0.00 sec) - - MySQL [(none)]> exit - Bye - ``` - -## Memory locking and limits - -It's recommended to overwrite the default ulimits of docker for the Manticore instance: - -```bash - --ulimit nofile=65536:65536 -``` - -For the best performance, Manticore tables' components can be locked into memory. When Manticore is run under Docker, the instance requires additional privileges to allow memory locking. The following options must be added when running the instance: - -```bash - --cap-add=IPC_LOCK --ulimit memlock=-1:-1 -``` - -## Configuring Manticore Search with Docker - -If you want to run Manticore with your custom config containing indexes definition you will need to mount the configuration to the instance: - -```bash -docker run --name manticore -v $(pwd)/manticore.conf:/etc/manticoresearch/manticore.conf -v $(pwd)/data/:/var/lib/manticore -p 127.0.0.1:9306:9306 -d manticoresearch/manticore -``` - -Take into account that Manticore search inside the container is run under user `manticore`. Performing operations with tables (like creating or rotating plain indexes) should be also done under `manticore`. Otherwise the files will be created under `root` and the search daemon won't have rights to open them. For example here is how you can rotate all plain indexes: - -```bash -docker exec -it manticore gosu manticore indexer --all --rotate -``` - -### Environment variables - -You can also set individual `searchd` and `common` configuration settings using Docker environment variables. - -The settings must be prefixed with their section name, for example to change value of setting `mysql_version_string` in section `searchd` the variable must be named `searchd_mysql_version_string`: - - -```bash -docker run --name manticore -p 127.0.0.1:9306:9306 -e searchd_mysql_version_string='5.5.0' -d manticoresearch/manticore -``` - -In case of `listen` directive, you can pass using Docker variable `searchd_listen` new listening interfaces in addition to the default ones. Multiple interfaces can be declared separated by semi-colon ("|"). -For listening only on network address, the `$ip` (retrieved internally from `hostname -i`) can be used as address alias. - -For example `-e searchd_listen='9316:http|9307:mysql|$ip:5443:mysql_vip'` will add an additional SQL interface on port 9307, a SQL VIP on 5443 running only on the instance IP and HTTP on port 9316, beside the defaults on 9306 and 9308, respectively. - -```bash -$ docker run --rm -p 1188:9307 -e searchd_mysql_version_string='5.5.0' -e searchd_listen='9316:http|9307:mysql|$ip:5443:mysql_vip' manticore -[Mon Aug 17 07:31:58.719 2020] [1] using config file '/etc/manticoresearch/manticore.conf' (9130 chars)... -listening on all interfaces for http, port=9316 -listening on all interfaces for mysql, port=9307 -listening on 172.17.0.17:5443 for VIP mysql -listening on all interfaces for mysql, port=9306 -listening on UNIX socket /var/run/mysqld/mysqld.sock -listening on 172.17.0.17:9312 for sphinx -listening on all interfaces for http, port=9308 -prereading 0 indexes -prereaded 0 indexes in 0.000 sec -accepting connections -``` - - -# Issues - -For reporting issues, please use the [issue tracker](https://github.com/manticoresoftware/docker/issues). diff --git a/docker/manticore/docker-entrypoint.sh b/docker/manticore/docker-entrypoint.sh deleted file mode 100755 index 5dbf0bc..0000000 --- a/docker/manticore/docker-entrypoint.sh +++ /dev/null @@ -1,118 +0,0 @@ -#!/bin/bash -set -eo pipefail -echo "RUNNING ENTRYPOINT" - -# check to see if this file is being run or sourced from another script -_is_sourced() { - # https://unix.stackexchange.com/a/215279 - [ "${#FUNCNAME[@]}" -ge 2 ] && - [ "${FUNCNAME[0]}" = '_is_sourced' ] && - [ "${FUNCNAME[1]}" = 'source' ] -} -_searchd_want_help() { - local arg - for arg; do - case "$arg" in - -'?' | --help | -h | -v) - return 0 - ;; - esac - done - return 1 -} - -docker_setup_env() { - if [ -n "$QUERY_LOG_TO_STDOUT" ]; then - export searchd_query_log=/var/log/manticore/query.log - [ ! -f /var/log/manticore/query.log ] && ln -sf /dev/stdout /var/log/manticore/query.log - fi - if [[ "${MCL}" == "1" ]]; then - LIB_MANTICORE_COLUMNAR="/var/lib/manticore/.mcl/lib_manticore_columnar.so" - LIB_MANTICORE_SECONDARY="/var/lib/manticore/.mcl/lib_manticore_secondary.so" - - [ -L /usr/share/manticore/modules/lib_manticore_columnar.so ] || ln -s $LIB_MANTICORE_COLUMNAR /usr/share/manticore/modules/lib_manticore_columnar.so - [ -L /usr/share/manticore/modules/lib_manticore_secondary.so ] || ln -s $LIB_MANTICORE_SECONDARY /usr/share/manticore/modules/lib_manticore_secondary.so - - searchd -v|grep -i error|egrep "trying to load" \ - && rm $LIB_MANTICORE_COLUMNAR $LIB_MANTICORE_SECONDARY \ - && echo "WARNING: wrong MCL version was removed, installing the correct one" - - if [[ ! -f "$LIB_MANTICORE_COLUMNAR" || ! -f "$LIB_MANTICORE_SECONDARY" ]]; then - if ! mkdir -p /var/lib/manticore/.mcl/ ; then - echo "ERROR: Manticore Columnar Library is inaccessible: couldn't create /var/lib/manticore/.mcl/." - exit - fi - - MCL_URL=$(cat /mcl.url) - wget -P /tmp $MCL_URL - - LAST_PATH=$(pwd) - cd /tmp - PACKAGE_NAME=$(ls | grep manticore-columnar | head -n 1) - ar -x $PACKAGE_NAME - tar -xf data.tar.gz - find . -name '*.so' -exec cp {} /var/lib/manticore/.mcl/ \; - cd $LAST_PATH - fi - fi -} -_main() { - # first arg is `h` or some `--option` - if [ "${1#-}" != "$1" ]; then - set -- searchd "$@" - fi - # Amended from searchd to sh since we're using sh to wait until searchd starts, then set the Kibana-specific options - if [ "$1" = 'sh' ] && ! _searchd_want_help "@"; then - docker_setup_env "$@" - # allow the container to be started with `--user` - if [ "$(id -u)" = '0' ]; then - find /var/lib/manticore /var/log/manticore /var/run/manticore /etc/manticoresearch \! -user manticore -exec chown manticore '{}' + - exec gosu manticore "$0" "$@" - fi - fi - _replace_conf_from_env - exec "$@" -} - -_replace_conf_from_env() { - - sed_query="" - - while IFS='=' read -r oldname value; do - if [[ $oldname == 'searchd_'* || $oldname == 'common_'* ]]; then - value=$(echo ${!oldname} | sed 's/\//\\\//g') - oldname=$(echo $oldname | sed "s/searchd_//g;s/common_//g;") - newname=$oldname - - if [[ $newname == 'listen' ]]; then - oldname="listen_env" - IFS='|' read -ra ADDR <<<"$value" - count=0 - - for i in "${ADDR[@]}"; do - if [[ $count == 0 ]]; then - value=$i - else - value="$value\n listen = $i" - fi - count=$((count + 1)) - done - fi - - if [[ -z $sed_query ]]; then - sed_query="s/(#\s)*?$oldname\s?=\s?.*?$/$newname = $value/g" - else - sed_query="$sed_query;s/(#\s)*?$oldname\s?=\s?.*?$/$newname = $value/g" - fi - - fi - done < <(env) - - if [[ ! -z $sed_query ]]; then - sed -i -E "$sed_query" /etc/manticoresearch/manticore.conf - fi -} -# If we are sourced from elsewhere, don't perform any further actions -if ! _is_sourced; then - _main "$@" -fi diff --git a/docker/manticore/manticore.conf b/docker/manticore/manticore.conf deleted file mode 100644 index 3122ed5..0000000 --- a/docker/manticore/manticore.conf +++ /dev/null @@ -1,259 +0,0 @@ -#!/bin/sh -ip=`hostname -i|rev|cut -d\ -f 1|rev` -cat << EOF -searchd { - # https://manual.manticoresearch.com/Server_settings/Searchd#access_plain_attrs - # access_plain_attrs = mmap_preread - - # https://manual.manticoresearch.com/Server_settings/Searchd#access_blob_attrs - # access_blob_attrs = mmap_preread - - # https://manual.manticoresearch.com/Server_settings/Searchd#access_doclists - # access_doclists = file - - # https://manual.manticoresearch.com/Server_settings/Searchd#access_hitlists - # access_hitlists = file - - # https://manual.manticoresearch.com/Server_settings/Searchd#agent_connect_timeout - # agent_connect_timeout = - - # https://manual.manticoresearch.com/Server_settings/Searchd#agent_query_timeout - # agent_query_timeout = - - # https://manual.manticoresearch.com/Server_settings/Searchd#agent_retry_count - # agent_retry_count = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#agent_retry_delay - # agent_retry_delay = 500 - - # https://manual.manticoresearch.com/Server_settings/Searchd#attr_flush_period - # attr_flush_period = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#binlog_flush - # binlog_flush = 2 - - # https://manual.manticoresearch.com/Server_settings/Searchd#binlog_max_log_size - # binlog_max_log_size = 268435456 - - # https://manual.manticoresearch.com/Server_settings/Searchd#binlog_path - # binlog_path = - - # https://manual.manticoresearch.com/Server_settings/Searchd#client_timeout - # client_timeout = 300 - - # https://manual.manticoresearch.com/Server_settings/Searchd#collation_libc_locale - # collation_libc_locale = C - - # https://manual.manticoresearch.com/Server_settings/Searchd#collation_server - # collation_server = libc_ci - - # https://manual.manticoresearch.com/Server_settings/Searchd#data_dir - data_dir = /var/lib/manticore - - # https://manual.manticoresearch.com/Server_settings/Searchd#docstore_cache_size - # docstore_cache_size = 16m - - # https://manual.manticoresearch.com/Server_settings/Searchd#expansion_limit - # expansion_limit = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#grouping_in_utc - # grouping_in_utc = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#ha_period_karma - # ha_period_karma = 60 - - # https://manual.manticoresearch.com/Server_settings/Searchd#ha_ping_interval - # ha_ping_interval = 1000 - - # https://manual.manticoresearch.com/Server_settings/Searchd#hostname_lookup - # hostname_lookup = - - # https://manual.manticoresearch.com/Server_settings/Searchd#jobs_queue_size - # jobs_queue_size = - - # https://manual.manticoresearch.com/Server_settings/Searchd#listen_backlog - # listen_backlog = 5 - - # https://manual.manticoresearch.com/Server_settings/Searchd#listen - # listen_env = this directive allows to append listeners from environment variables - - listen = 9306:mysql41 - listen = /var/run/mysqld/mysqld.sock:mysql41 - listen = $ip:9312 - listen = 9308:http - listen = $ip:9315-9325:replication - - # https://manual.manticoresearch.com/Server_settings/Searchd#listen_tfo - # listen_tfo = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#log - log = /var/log/manticore/searchd.log - - # https://manual.manticoresearch.com/Server_settings/Searchd#max_batch_queries - # max_batch_queries = 32 - - # https://manual.manticoresearch.com/Server_settings/Searchd#threads - # threads = - - # https://manual.manticoresearch.com/Server_settings/Searchd#max_filters - # max_filters = 256 - - # https://manual.manticoresearch.com/Server_settings/Searchd#max_filter_values - # max_filter_values = 4096 - - # https://manual.manticoresearch.com/Server_settings/Searchd#max_open_files - # max_open_files = - - # https://manual.manticoresearch.com/Server_settings/Searchd#max_packet_size - max_packet_size = 128M - - # https://manual.manticoresearch.com/Server_settings/Searchd#mysql_version_string - # mysql_version_string = - - # https://manual.manticoresearch.com/Server_settings/Searchd#net_workers - # net_workers = 1 - - # https://manual.manticoresearch.com/Server_settings/Searchd#net_wait_tm - # net_wait_tm = -1 - - # https://manual.manticoresearch.com/Server_settings/Searchd#net_throttle_accept - # net_throttle_accept = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#net_throttle_action - # net_throttle_action = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#node_address - # node_address = - - # https://manual.manticoresearch.com/Server_settings/Searchd#ondisk_attrs_default - # ondisk_attrs_default = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#persistent_connections_limit - # persistent_connections_limit = - - # https://manual.manticoresearch.com/Server_settings/Searchd#pid_file - pid_file = /var/run/manticore/searchd.pid - - # https://manual.manticoresearch.com/Server_settings/Searchd#predicted_time_costs - # predicted_time_costs = doc=64, hit=48, skip=2048, match=64 - - # https://manual.manticoresearch.com/Server_settings/Searchd#preopen_indexes - # preopen_indexes = 1 - - # https://manual.manticoresearch.com/Server_settings/Searchd#qcache_max_bytes - # qcache_max_bytes = 16Mb - - # https://manual.manticoresearch.com/Server_settings/Searchd#qcache_thresh_msec - # qcache_thresh_msec = 3000 - - # https://manual.manticoresearch.com/Server_settings/Searchd#qcache_ttl_sec - # qcache_ttl_sec = 60 - - # https://manual.manticoresearch.com/Server_settings/Searchd#query_log_format - query_log_format = sphinxql - - # https://manual.manticoresearch.com/Server_settings/Searchd#query_log_min_msec - query_log_min_msec = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#query_log - query_log = /var/log/manticore/query.log - - # https://manual.manticoresearch.com/Server_settings/Searchd#query_log_mode - # query_log_mode = 600 - - # https://manual.manticoresearch.com/Server_settings/Searchd#max_connections - # max_connections = - - # https://manual.manticoresearch.com/Server_settings/Searchd#network_timeout - # network_timeout = 5 - - # https://manual.manticoresearch.com/Server_settings/Searchd#read_buffer - # read_buffer = 256K - - # https://manual.manticoresearch.com/Server_settings/Searchd#read_buffer_docs - # read_buffer_docs = 256K - - # https://manual.manticoresearch.com/Server_settings/Searchd#read_buffer_hits - # read_buffer_hits = 256K - - # https://manual.manticoresearch.com/Server_settings/Searchd#read_unhinted - # read_unhinted 32K - - # https://manual.manticoresearch.com/Server_settings/Searchd#rt_flush_period - # rt_flush_period = - - # https://manual.manticoresearch.com/Server_settings/Searchd#rt_merge_iops - # rt_merge_iops = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#rt_merge_maxiosize - # rt_merge_maxiosize = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#seamless_rotate - # seamless_rotate = 1 - - # https://manual.manticoresearch.com/Server_settings/Searchd#server_id - # server_id = - - # https://manual.manticoresearch.com/Server_settings/Searchd#shutdown_timeout - # shutdown_timeout = 3 - - # https://manual.manticoresearch.com/Server_settings/Searchd#shutdown_token - # shutdown_token = - - # https://manual.manticoresearch.com/Server_settings/Searchd#snippets_file_prefix - # snippets_file_prefix = - - # https://manual.manticoresearch.com/Server_settings/Searchd#sphinxql_state - # sphinxql_state = - - # https://manual.manticoresearch.com/Server_settings/Searchd#sphinxql_timeout - # sphinxql_timeout = 900 - - # https://manual.manticoresearch.com/Server_settings/Searchd#ssl_ca - # ssl_ca = - - # https://manual.manticoresearch.com/Server_settings/Searchd#ssl_cert - # ssl_cert = - - # https://manual.manticoresearch.com/Server_settings/Searchd#ssl_key - # ssl_key = - - # https://manual.manticoresearch.com/Server_settings/Searchd#subtree_docs_cache - # subtree_docs_cache = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#subtree_hits_cache - # subtree_hits_cache = 0 - - # https://manual.manticoresearch.com/Server_settings/Searchd#thread_stack - # thread_stack = - - # https://manual.manticoresearch.com/Server_settings/Searchd#unlink_old - # unlink_old = 1 - - # https://manual.manticoresearch.com/Server_settings/Searchd#watchdog - # watchdog = 1 -} - -common { - - # https://manual.manticoresearch.com/Server_settings/Common#lemmatizer_base - # lemmatizer_base = /usr/local/share - - # https://manual.manticoresearch.com/Server_settings/Common#progressive_merge - # progressive_merge = - - # https://manual.manticoresearch.com/Server_settings/Common#json_autoconv_keynames - # json_autoconv_keynames = - - # https://manual.manticoresearch.com/Server_settings/Common#json_autoconv_numbers - # json_autoconv_numbers = 0 - - # https://manual.manticoresearch.com/Server_settings/Common#on_json_attr_error - # on_json_attr_error = ignore_attr - - # https://manual.manticoresearch.com/Server_settings/Common#plugin_dir - # plugin_dir = - -} - -EOF diff --git a/docker/manticore/sandbox.sql b/docker/manticore/sandbox.sql deleted file mode 100644 index 592b377..0000000 --- a/docker/manticore/sandbox.sql +++ /dev/null @@ -1,9 +0,0 @@ - -CREATE TABLE films ( - title text, - description text, - category_id integer, - release_year integer, - rental_rate float - ); -INSERT INTO films VALUES ('19', 'AMADEUS HOLY', 'A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon', '1', '2008', '0.99'),('21', 'AMERICAN CIRCUS', 'A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank', '1', '2009', '4.99'),('29', 'ANTITRUST TOMATOES', 'A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India', '1', '2005', '2.99'),('38', 'ARK RIDGEMONT', 'A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert', '1', '2008', '0.99'),('56', 'BAREFOOT MANCHURIAN', 'A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park', '1', '2005', '2.99'),('67', 'BERETS AGENT', 'A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China', '1', '2004', '2.99'),('97', 'BRIDE INTRIGUE', 'A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans', '1', '2005', '0.99'),('105', 'BULL SHAWSHANK', 'A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies', '1', '2007', '0.99'),('111', 'CADDYSHACK JEDI', 'A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia', '1', '2002', '0.99'),('115', 'CAMPUS REMEMBER', 'A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat', '1', '2006', '2.99'),('126', 'CASUALTIES ENCINO', 'A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery', '1', '2003', '4.99'),('130', 'CELEBRITY HORN', 'A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank', '1', '2002', '0.99'),('162', 'CLUELESS BUCKET', 'A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House', '1', '2006', '2.99'),('194', 'CROW GREASE', 'A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station', '1', '2000', '0.99'),('205', 'DANCES NONE', 'A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park', '1', '2009', '0.99'),('210', 'DARKO DORADO', 'A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans', '1', '2002', '4.99'),('212', 'DARN FORRESTER', 'A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat', '1', '2000', '4.99'),('229', 'DEVIL DESIRE', 'A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan', '1', '2009', '4.99'),('250', 'DRAGON SQUAD', 'A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China', '1', '2005', '0.99'),('252', 'DREAM PICKUP', 'A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico', '1', '2007', '2.99'),('253', 'DRIFTER COMMANDMENTS', 'A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat', '1', '2007', '4.99'),('271', 'EASY GLADIATOR', 'A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India', '1', '2008', '4.99'),('287', 'ENTRAPMENT SATISFACTION', 'A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat', '1', '2003', '0.99'),('292', 'EXCITEMENT EVE', 'A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank', '1', '2008', '0.99'),('303', 'FANTASY TROOPERS', 'A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention', '1', '2005', '0.99'),('318', 'FIREHOUSE VIETNAM', 'A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert', '1', '2001', '0.99'),('327', 'FOOL MOCKINGBIRD', 'A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat', '1', '2009', '4.99'),('329', 'FORREST SONS', 'A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat', '1', '2000', '2.99'),('360', 'GLASS DYING', 'A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan', '1', '2009', '0.99'),('371', 'GOSFORD DONNIE', 'A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin', '1', '2005', '4.99'),('375', 'GRAIL FRANKENSTEIN', 'A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft', '1', '2005', '2.99'),('395', 'HANDICAP BOONDOCK', 'A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia', '1', '2008', '0.99'),('417', 'HILLS NEIGHBORS', 'A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat', '1', '2009', '0.99'),('501', 'KISSING DOLLS', 'A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station', '1', '2005', '4.99'),('511', 'LAWRENCE LOVE', 'A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin', '1', '2004', '0.99'),('530', 'LORD ARIZONA', 'A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat', '1', '2004', '2.99'),('542', 'LUST LOCK', 'A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert', '1', '2008', '2.99'),('549', 'MAGNOLIA FORRESTER', 'A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans', '1', '2009', '0.99'),('574', 'MIDNIGHT WESTWARD', 'A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery', '1', '2000', '0.99'),('579', 'MINDS TRUMAN', 'A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery', '1', '2008', '4.99'),('586', 'MOCKINGBIRD HOLLYWOOD', 'A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin', '1', '2007', '0.99'),('594', 'MONTEZUMA COMMAND', 'A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat', '1', '2009', '0.99'),('659', 'PARK CITIZEN', 'A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan', '1', '2003', '4.99'),('664', 'PATRIOT ROMAN', 'A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California', '1', '2009', '2.99'),('697', 'PRIMARY GLASS', 'A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies', '1', '2003', '0.99'),('707', 'QUEST MUSSOLINI', 'A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory', '1', '2004', '2.99'),('717', 'REAR TRADING', 'A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia', '1', '2009', '0.99'),('732', 'RINGS HEARTBREAKERS', 'A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans', '1', '2009', '0.99'),('748', 'RUGRATS SHAKESPEARE', 'A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria', '1', '2005', '0.99'),('793', 'SHRUNK DIVINE', 'A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon', '1', '2002', '2.99'),('794', 'SIDE ARK', 'A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies', '1', '2003', '0.99'),('802', 'SKY MIRACLE', 'A Epic Drama of a Mad Scientist And a Explorer who must Succumb a Waitress in An Abandoned Fun House', '1', '2002', '2.99'),('823', 'SOUTH WAIT', 'A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park', '1', '2009', '2.99'),('825', 'SPEAKEASY DATE', 'A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse', '1', '2009', '2.99'),('838', 'STAGECOACH ARMAGEDDON', 'A Touching Display of a Pioneer And a Butler who must Chase a Car in California', '1', '2006', '4.99'),('850', 'STORY SIDE', 'A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft', '1', '2009', '0.99'),('869', 'SUSPECTS QUILLS', 'A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse', '1', '2001', '2.99'),('911', 'TRIP NEWTON', 'A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park', '1', '2005', '4.99'),('915', 'TRUMAN CRAZY', 'A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery', '1', '2003', '4.99'),('927', 'UPRISING UPTOWN', 'A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin', '1', '2007', '2.99'),('964', 'WATERFRONT DELIVERANCE', 'A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria', '1', '2002', '4.99'),('968', 'WEREWOLF LOLA', 'A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery', '1', '2004', '4.99'),('982', 'WOMEN DORADO', 'A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia', '1', '2006', '0.99'),('991', 'WORST BANGER', 'A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback', '1', '2000', '2.99'),('18', 'ALTER VICTORY', 'A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies', '2', '2006', '0.99'),('23', 'ANACONDA CONFESSIONS', 'A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia', '2', '2008', '0.99'),('36', 'ARGONAUTS TOWN', 'A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft', '2', '2003', '0.99'),('70', 'BIKINI BORROWERS', 'A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station', '2', '2009', '4.99'),('78', 'BLACKOUT PRIVATE', 'A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan', '2', '2007', '2.99'),('89', 'BORROWERS BEDAZZLED', 'A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House', '2', '2003', '0.99'),('118', 'CANYON STOCK', 'A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse', '2', '2002', '0.99'),('121', 'CAROL TEXAS', 'A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery', '2', '2004', '2.99'),('134', 'CHAMPION FLATLINERS', 'A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery', '2', '2008', '4.99'),('154', 'CLASH FREDDY', 'A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia', '2', '2006', '2.99'),('160', 'CLUB GRAFFITI', 'A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat', '2', '2004', '0.99'),('193', 'CROSSROADS CASUALTIES', 'A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback', '2', '2001', '2.99'),('208', 'DARES PLUTO', 'A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans', '2', '2004', '2.99'),('223', 'DESIRE ALIEN', 'A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station', '2', '2005', '2.99'),('239', 'DOGMA FAMILY', 'A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans', '2', '2008', '4.99'),('241', 'DONNIE ALLEY', 'A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan', '2', '2000', '0.99'),('243', 'DOORS PRESIDENT', 'A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico', '2', '2005', '4.99'),('245', 'DOUBLE WRATH', 'A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico', '2', '2006', '0.99'),('259', 'DUCK RACER', 'A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank', '2', '2000', '2.99'),('268', 'EARLY HOME', 'A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback', '2', '2004', '4.99'),('300', 'FALCON VOLUME', 'A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans', '2', '2006', '4.99'),('314', 'FIGHT JAWBREAKER', 'A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse', '2', '2007', '0.99'),('325', 'FLOATS GARDEN', 'A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan', '2', '2004', '2.99'),('326', 'FLYING HOOK', 'A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria', '2', '2002', '2.99'),('330', 'FORRESTER COMANCHEROS', 'A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria', '2', '2004', '4.99'),('349', 'GANGS PRIDE', 'A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin', '2', '2005', '2.99'),('355', 'GHOSTBUSTERS ELF', 'A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin', '2', '2002', '0.99'),('402', 'HARPER DYING', 'A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert', '2', '2008', '0.99'),('430', 'HOOK CHARIOTS', 'A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia', '2', '2000', '0.99'),('433', 'HORN WORKING', 'A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank', '2', '2008', '2.99'),('456', 'INCH JET', 'A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery', '2', '2000', '4.99'),('461', 'INSECTS STONE', 'A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse', '2', '2005', '0.99'),('464', 'INTENTIONS EMPIRE', 'A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat', '2', '2000', '2.99'),('470', 'ISHTAR ROCKETEER', 'A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House', '2', '2003', '4.99'),('489', 'JUGGLER HARDLY', 'A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California', '2', '2008', '0.99'),('510', 'LAWLESS VISION', 'A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback', '2', '2003', '4.99'),('541', 'LUKE MUMMY', 'A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India', '2', '2000', '2.99'),('564', 'MASSAGE IMAGE', 'A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station', '2', '2007', '2.99'),('569', 'MENAGERIE RUSHMORE', 'A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station', '2', '2000', '2.99'),('582', 'MIRACLE VIRTUAL', 'A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert', '2', '2008', '2.99'),('583', 'MISSION ZOOLANDER', 'A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House', '2', '2003', '4.99'),('615', 'NASH CHOCOLAT', 'A Epic Reflection of a Monkey And a Mad Cow who must Kill a Forensic Psychologist in An Abandoned Mine Shaft', '2', '2007', '2.99'),('644', 'OSCAR GOLD', 'A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia', '2', '2009', '2.99'),('649', 'OZ LIAISONS', 'A Epic Yarn of a Mad Scientist And a Cat who must Confront a Womanizer in A Baloon Factory', '2', '2007', '2.99'),('651', 'PACKER MADIGAN', 'A Epic Display of a Sumo Wrestler And a Forensic Psychologist who must Build a Woman in An Abandoned Amusement Park', '2', '2009', '0.99'),('690', 'POND SEATTLE', 'A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China', '2', '2002', '2.99'),('692', 'POTLUCK MIXED', 'A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon', '2', '2003', '2.99'),('693', 'POTTER CONNECTICUT', 'A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin', '2', '2000', '2.99'),('696', 'PRIDE ALAMO', 'A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India', '2', '2002', '0.99'),('703', 'PUNK DIVORCE', 'A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies', '2', '2001', '4.99'),('743', 'ROOM ROMAN', 'A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank', '2', '2004', '0.99'),('805', 'SLEEPLESS MONSOON', 'A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia', '2', '2000', '4.99'),('816', 'SNOWMAN ROLLERCOASTER', 'A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse', '2', '2009', '0.99'),('820', 'SONS INTERVIEW', 'A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China', '2', '2001', '2.99'),('849', 'STORM HAPPINESS', 'A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank', '2', '2007', '0.99'),('859', 'SUGAR WONKA', 'A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park', '2', '2007', '4.99'),('865', 'SUNRISE LEAGUE', 'A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse', '2', '2004', '4.99'),('880', 'TELEMARK HEARTBREAKERS', 'A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse', '2', '2000', '2.99'),('886', 'THEORY MERMAID', 'A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station', '2', '2004', '0.99'),('887', 'THIEF PELICAN', 'A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft', '2', '2001', '4.99'),('892', 'TITANIC BOONDOCK', 'A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory', '2', '2008', '4.99'),('901', 'TRACY CIDER', 'A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria', '2', '2001', '0.99'),('916', 'TURN STAR', 'A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans', '2', '2002', '2.99'),('953', 'WAIT CIDER', 'A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse', '2', '2007', '0.99'),('963', 'WATCH TRACY', 'A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria', '2', '2004', '0.99'),('986', 'WONKA SEA', 'A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India', '2', '2006', '2.99'),('48', 'BACKLASH UNDEFEATED', 'A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery', '3', '2001', '4.99'),('59', 'BEAR GRACELAND', 'A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station', '3', '2007', '2.99'),('66', 'BENEATH RUSH', 'A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station', '3', '2003', '0.99'),('68', 'BETRAYED REAR', 'A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank', '3', '2002', '4.99'),('110', 'CABIN FLASH', 'A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory', '3', '2002', '0.99'),('124', 'CASPER DRAGONFLY', 'A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert', '3', '2003', '4.99'),('149', 'CHRISTMAS MOONSHINE', 'A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse', '3', '2006', '0.99'),('152', 'CIRCUS YOUTH', 'A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon', '3', '2003', '2.99'),('157', 'CLOCKWORK PARADISE', 'A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon', '3', '2001', '0.99'),('168', 'COMANCHEROS ENEMY', 'A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico', '3', '2009', '0.99'),('191', 'CROOKED FROGMEN', 'A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park', '3', '2008', '0.99'),('214', 'DAUGHTER MADIGAN', 'A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station', '3', '2008', '4.99'),('238', 'DOCTOR GRAIL', 'A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback', '3', '2009', '2.99'),('280', 'EMPIRE MALKOVICH', 'A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House', '3', '2008', '0.99'),('304', 'FARGO GANDHI', 'A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback', '3', '2007', '2.99'),('328', 'FOREVER CANDIDATE', 'A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat', '3', '2009', '2.99'),('343', 'FULL FLATLINERS', 'A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank', '3', '2003', '2.99'),('344', 'FURY MURDER', 'A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery', '3', '2000', '0.99'),('354', 'GHOST GROUNDHOG', 'A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India', '3', '2005', '4.99'),('356', 'GIANT TROOPERS', 'A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies', '3', '2006', '2.99'),('370', 'GORGEOUS BINGO', 'A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory', '3', '2007', '2.99'),('373', 'GRADUATE LORD', 'A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China', '3', '2008', '2.99'),('392', 'HALL CASSIDY', 'A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia', '3', '2006', '4.99'),('409', 'HEARTBREAKERS BRIGHT', 'A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies', '3', '2009', '4.99'),('423', 'HOLLYWOOD ANONYMOUS', 'A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat', '3', '2005', '0.99'),('424', 'HOLOCAUST HIGHBALL', 'A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia', '3', '2004', '0.99'),('450', 'IDOLS SNATCHERS', 'A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery', '3', '2004', '2.99'),('468', 'INVASION CYCLONE', 'A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery', '3', '2008', '2.99'),('485', 'JERSEY SASSY', 'A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan', '3', '2007', '4.99'),('491', 'JUMPING WRATH', 'A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin', '3', '2000', '0.99'),('505', 'LABYRINTH LEAGUE', 'A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert', '3', '2008', '2.99'),('509', 'LANGUAGE COWBOY', 'A Epic Yarn of a Cat And a Madman who must Vanquish a Dentist in An Abandoned Amusement Park', '3', '2001', '0.99'),('515', 'LEGALLY SECRETARY', 'A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert', '3', '2001', '4.99'),('547', 'MAGIC MALLRATS', 'A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California', '3', '2009', '0.99'),('553', 'MAKER GABLES', 'A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat', '3', '2004', '0.99'),('573', 'MICROCOSMOS PARADISE', 'A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria', '3', '2004', '2.99'),('588', 'MODEL FISH', 'A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia', '3', '2004', '4.99'),('608', 'MURDER ANTITRUST', 'A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention', '3', '2006', '2.99'),('626', 'NOON PAPI', 'A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse', '3', '2004', '2.99'),('688', 'POLISH BROOKLYN', 'A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback', '3', '2005', '0.99'),('735', 'ROBBERS JOON', 'A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia', '3', '2002', '2.99'),('755', 'SABRINA MIDNIGHT', 'A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert', '3', '2002', '4.99'),('761', 'SANTA PARIS', 'A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory', '3', '2003', '2.99'),('768', 'SCARFACE BANG', 'A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory', '3', '2008', '4.99'),('786', 'SHEPHERD MIDSUMMER', 'A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon', '3', '2009', '0.99'),('801', 'SISTER FREDDY', 'A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia', '3', '2007', '4.99'),('833', 'SPLENDOR PATTON', 'A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin', '3', '2008', '0.99'),('852', 'STRANGELOVE DESIRE', 'A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park', '3', '2004', '0.99'),('853', 'STRANGER STRANGERS', 'A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station', '3', '2000', '4.99'),('864', 'SUNDANCE INVASION', 'A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory', '3', '2005', '0.99'),('873', 'SWEETHEARTS SUSPECTS', 'A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico', '3', '2009', '0.99'),('883', 'TEQUILA PAST', 'A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria', '3', '2003', '4.99'),('889', 'TIES HUNGER', 'A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat', '3', '2002', '4.99'),('896', 'TOOTSIE PILOT', 'A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin', '3', '2007', '0.99'),('918', 'TWISTED PIRATES', 'A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention', '3', '2001', '4.99'),('928', 'UPTOWN YOUNG', 'A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park', '3', '2000', '2.99'),('955', 'WALLS ARTIST', 'A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House', '3', '2002', '4.99'),('959', 'WARLOCK WEREWOLF', 'A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback', '3', '2003', '2.99'),('993', 'WRONG BEHAVIOR', 'A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans', '3', '2002', '2.99'),('999', 'ZOOLANDER FICTION', 'A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China', '3', '2001', '2.99'),('14', 'ALICE FANTASIA', 'A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia', '4', '2009', '0.99'),('37', 'ARIZONA BANG', 'A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery', '4', '2006', '2.99'),('60', 'BEAST HUNCHBACK', 'A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China', '4', '2006', '4.99'),('91', 'BOUND CHEAPER', 'A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon', '4', '2008', '0.99'),('116', 'CANDIDATE PERDITION', 'A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station', '4', '2002', '2.99'),('131', 'CENTER DINOSAUR', 'A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California', '4', '2006', '4.99'),('166', 'COLOR PHILADELPHIA', 'A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert', '4', '2000', '2.99'),('180', 'CONSPIRACY SPIRIT', 'A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft', '4', '2002', '2.99'),('184', 'CORE SUIT', 'A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse', '4', '2004', '2.99'),('190', 'CREEPERS KANE', 'A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat', '4', '2000', '4.99'),('196', 'CRUELTY UNFORGIVEN', 'A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria', '4', '2009', '0.99'),('228', 'DETECTIVE VISION', 'A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan', '4', '2001', '0.99'),('249', 'DRACULA CRYSTAL', 'A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House', '4', '2000', '0.99'),('266', 'DYNAMITE TARZAN', 'A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat', '4', '2002', '0.99'),('297', 'EXTRAORDINARY CONQUERER', 'A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin', '4', '2009', '2.99'),('341', 'FROST HEAD', 'A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention', '4', '2002', '0.99'),('346', 'GALAXY SWEETHEARTS', 'A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin', '4', '2000', '4.99'),('357', 'GILBERT PELICAN', 'A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse', '4', '2004', '0.99'),('358', 'GILMORE BOILED', 'A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat', '4', '2003', '0.99'),('425', 'HOLY TADPOLE', 'A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory', '4', '2005', '0.99'),('432', 'HOPE TOOTSIE', 'A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank', '4', '2005', '2.99'),('445', 'HYDE DOCTOR', 'A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat', '4', '2000', '2.99'),('469', 'IRON MOON', 'A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon', '4', '2006', '4.99'),('471', 'ISLAND EXORCIST', 'A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House', '4', '2001', '2.99'),('480', 'JEEPERS WEDDING', 'A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia', '4', '2009', '2.99'),('482', 'JEOPARDY ENCINO', 'A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India', '4', '2004', '0.99'),('484', 'JERK PAYCHECK', 'A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan', '4', '2006', '2.99'),('487', 'JINGLE SAGEBRUSH', 'A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon', '4', '2006', '4.99'),('512', 'LEAGUE HELLFIGHTERS', 'A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China', '4', '2002', '4.99'),('523', 'LIGHTS DEER', 'A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico', '4', '2002', '0.99'),('525', 'LOATHING LEGALLY', 'A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico', '4', '2002', '0.99'),('536', 'LOVELY JINGLE', 'A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback', '4', '2005', '2.99'),('537', 'LOVER TRUMAN', 'A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat', '4', '2009', '2.99'),('548', 'MAGNIFICENT CHITTY', 'A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California', '4', '2001', '2.99'),('554', 'MALKOVICH PET', 'A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback', '4', '2001', '2.99'),('578', 'MILLION ACE', 'A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert', '4', '2002', '4.99'),('611', 'MUSKETEERS WAIT', 'A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia', '4', '2008', '4.99'),('633', 'OCTOBER SUBMARINE', 'A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat', '4', '2006', '4.99'),('652', 'PAJAMA JAWBREAKER', 'A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California', '4', '2009', '0.99'),('663', 'PATIENT SISTER', 'A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia', '4', '2008', '0.99'),('694', 'PREJUDICE OLEANDER', 'A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat', '4', '2005', '4.99'),('725', 'REQUIEM TYCOON', 'A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery', '4', '2002', '4.99'),('731', 'RIGHT CRANES', 'A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat', '4', '2003', '4.99'),('744', 'ROOTS REMEMBER', 'A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin', '4', '2003', '0.99'),('808', 'SLING LUKE', 'A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park', '4', '2001', '0.99'),('815', 'SNATCHERS MONTEZUMA', 'A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies', '4', '2006', '2.99'),('828', 'SPIKING ELEMENT', 'A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery', '4', '2003', '2.99'),('843', 'STEEL SANTA', 'A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria', '4', '2002', '4.99'),('862', 'SUMMER SCARFACE', 'A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank', '4', '2006', '0.99'),('874', 'TADPOLE PARK', 'A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park', '4', '2001', '2.99'),('891', 'TIMBERLAND SKY', 'A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat', '4', '2006', '0.99'),('895', 'TOMORROW HUSTLER', 'A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert', '4', '2002', '2.99'),('899', 'TOWERS HURRICANE', 'A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention', '4', '2007', '0.99'),('950', 'VOLUME HOUSE', 'A Boring Tale of a Dog And a Woman who must Meet a Dentist in California', '4', '2009', '4.99'),('951', 'VOYAGE LEGALLY', 'A Epic Tale of a Squirrel And a Hunter who must Conquer a Boy in An Abandoned Mine Shaft', '4', '2006', '0.99'),('962', 'WASTELAND DIVINE', 'A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China', '4', '2000', '2.99'),('970', 'WESTWARD SEABISCUIT', 'A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China', '4', '2009', '0.99'),('7', 'AIRPLANE SIERRA', 'A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat', '5', '2005', '4.99'),('28', 'ANTHEM LUKE', 'A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park', '5', '2008', '4.99'),('99', 'BRINGING HYSTERICAL', 'A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat', '5', '2001', '2.99'),('119', 'CAPER MOTIONS', 'A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention', '5', '2008', '0.99'),('127', 'CAT CONEHEADS', 'A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India', '5', '2006', '4.99'),('159', 'CLOSER BANG', 'A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India', '5', '2000', '4.99'),('178', 'CONNECTION MICROCOSMOS', 'A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station', '5', '2008', '0.99'),('182', 'CONTROL ANTHEM', 'A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery', '5', '2006', '4.99'),('188', 'CRAZY HOME', 'A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback', '5', '2005', '2.99'),('202', 'DADDY PITTSBURGH', 'A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico', '5', '2008', '4.99'),('242', 'DOOM DANCING', 'A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention', '5', '2005', '0.99'),('247', 'DOWNHILL ENOUGH', 'A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert', '5', '2006', '0.99'),('265', 'DYING MAKER', 'A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California', '5', '2004', '4.99'),('276', 'ELEMENT FREDDY', 'A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat', '5', '2004', '4.99'),('308', 'FERRIS MOTHER', 'A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico', '5', '2009', '2.99'),('317', 'FIREBALL PHILADELPHIA', 'A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft', '5', '2002', '0.99'),('324', 'FLINTSTONES HAPPINESS', 'A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California', '5', '2007', '4.99'),('332', 'FRANKENSTEIN STRANGER', 'A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria', '5', '2009', '0.99'),('335', 'FREEDOM CLEOPATRA', 'A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon', '5', '2000', '0.99'),('365', 'GOLD RIVER', 'A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory', '5', '2000', '4.99'),('385', 'GROUNDHOG UNCUT', 'A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse', '5', '2000', '4.99'),('388', 'GUNFIGHT MOON', 'A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert', '5', '2006', '0.99'),('404', 'HATE HANDICAP', 'A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station', '5', '2004', '0.99'),('410', 'HEAVEN FREEDOM', 'A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans', '5', '2007', '2.99'),('413', 'HEDWIG ALTER', 'A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery', '5', '2007', '2.99'),('443', 'HURRICANE AFFAIR', 'A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft', '5', '2006', '2.99'),('444', 'HUSTLER PARTY', 'A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert', '5', '2001', '4.99'),('478', 'JAWS HARRY', 'A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House', '5', '2000', '2.99'),('502', 'KNOCK WARLOCK', 'A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon', '5', '2006', '2.99'),('522', 'LIFE TWISTED', 'A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station', '5', '2000', '2.99'),('524', 'LION UNCUT', 'A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China', '5', '2002', '0.99'),('529', 'LONELY ELEPHANT', 'A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia', '5', '2006', '2.99'),('555', 'MALLRATS UNITED', 'A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery', '5', '2006', '0.99'),('568', 'MEMENTO ZOOLANDER', 'A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert', '5', '2002', '4.99'),('604', 'MULAN MOON', 'A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon', '5', '2000', '0.99'),('613', 'MYSTIC TRUMAN', 'A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia', '5', '2002', '0.99'),('638', 'OPERATION OPERATION', 'A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China', '5', '2001', '2.99'),('657', 'PARADISE SABRINA', 'A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse', '5', '2000', '2.99'),('660', 'PARTY KNOCK', 'A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft', '5', '2003', '2.99'),('672', 'PERFECT GROOVE', 'A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon', '5', '2004', '2.99'),('680', 'PINOCCHIO SIMON', 'A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California', '5', '2003', '4.99'),('704', 'PURE RUNNER', 'A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse', '5', '2007', '2.99'),('754', 'RUSHMORE MERMAID', 'A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank', '5', '2004', '2.99'),('756', 'SADDLE ANTITRUST', 'A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House', '5', '2000', '2.99'),('765', 'SATURN NAME', 'A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin', '5', '2006', '4.99'),('774', 'SEARCHERS WAIT', 'A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan', '5', '2008', '2.99'),('814', 'SNATCH SLIPPER', 'A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin', '5', '2004', '4.99'),('837', 'STAGE WORLD', 'A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat', '5', '2000', '2.99'),('857', 'STRICTLY SCARFACE', 'A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House', '5', '2007', '2.99'),('858', 'SUBMARINE BED', 'A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia', '5', '2003', '4.99'),('871', 'SWEDEN SHINING', 'A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies', '5', '2003', '4.99'),('905', 'TRAINSPOTTING STRANGERS', 'A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan', '5', '2004', '4.99'),('906', 'TRAMP OTHERS', 'A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India', '5', '2003', '0.99'),('932', 'VALLEY PACKER', 'A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin', '5', '2009', '0.99'),('938', 'VELVET TERMINATOR', 'A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park', '5', '2001', '4.99'),('939', 'VERTIGO NORTHWEST', 'A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan', '5', '2008', '2.99'),('978', 'WISDOM WORKER', 'A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station', '5', '2004', '0.99'),('1000', 'ZORRO ARK', 'A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery', '5', '2003', '4.99'),('1', 'ACADEMY DINOSAUR', 'A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies', '6', '2004', '0.99'),('3', 'ADAPTATION HOLES', 'A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory', '6', '2002', '2.99'),('40', 'ARMY FLINTSTONES', 'A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria', '6', '2002', '0.99'),('58', 'BEACH HEARTBREAKERS', 'A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia', '6', '2000', '2.99'),('62', 'BED HIGHBALL', 'A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House', '6', '2005', '2.99'),('72', 'BILL OTHERS', 'A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention', '6', '2003', '2.99'),('85', 'BONNIE HOLOCAUST', 'A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan', '6', '2005', '0.99'),('101', 'BROTHERHOOD BLANKET', 'A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan', '6', '2001', '0.99'),('129', 'CAUSE DATE', 'A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention', '6', '2002', '2.99'),('142', 'CHICKEN HELLFIGHTERS', 'A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia', '6', '2004', '0.99'),('150', 'CIDER DESIRE', 'A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia', '6', '2000', '2.99'),('156', 'CLERKS ANGELS', 'A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon', '6', '2008', '4.99'),('164', 'COAST RAINBOW', 'A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert', '6', '2002', '0.99'),('199', 'CUPBOARD SINNERS', 'A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park', '6', '2002', '2.99'),('206', 'DANCING FEVER', 'A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank', '6', '2002', '0.99'),('219', 'DEEP CRUSADE', 'A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia', '6', '2000', '4.99'),('221', 'DELIVERANCE MULHOLLAND', 'A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank', '6', '2004', '0.99'),('248', 'DOZEN LION', 'A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies', '6', '2001', '4.99'),('261', 'DUFFEL APOCALYPSE', 'A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention', '6', '2001', '0.99'),('274', 'EGG IGBY', 'A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station', '6', '2003', '2.99'),('295', 'EXPENDABLE STALLION', 'A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat', '6', '2008', '0.99'),('336', 'FRENCH HOLIDAY', 'A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin', '6', '2009', '4.99'),('393', 'HALLOWEEN NUTS', 'A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat', '6', '2005', '2.99'),('400', 'HARDLY ROBBERS', 'A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin', '6', '2006', '2.99'),('407', 'HAWK CHILL', 'A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia', '6', '2000', '0.99'),('412', 'HEAVYWEIGHTS BEAST', 'A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park', '6', '2006', '4.99'),('427', 'HOMEWARD CIDER', 'A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse', '6', '2006', '0.99'),('441', 'HUNTER ALTER', 'A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank', '6', '2006', '2.99'),('457', 'INDEPENDENCE HOTEL', 'A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery', '6', '2007', '0.99'),('466', 'INTOLERABLE INTENTIONS', 'A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention', '6', '2001', '4.99'),('497', 'KILL BROTHERHOOD', 'A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback', '6', '2004', '0.99'),('544', 'MADISON TRAP', 'A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat', '6', '2002', '2.99'),('552', 'MAJESTIC FLOATS', 'A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station', '6', '2006', '0.99'),('571', 'METAL ARMAGEDDON', 'A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory', '6', '2004', '2.99'),('575', 'MIDSUMMER GROUNDHOG', 'A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan', '6', '2007', '4.99'),('576', 'MIGHTY LUCK', 'A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention', '6', '2007', '2.99'),('587', 'MOD SECRETARY', 'A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans', '6', '2005', '4.99'),('589', 'MODERN DORADO', 'A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans', '6', '2004', '0.99'),('616', 'NATIONAL STORY', 'A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California', '6', '2001', '2.99'),('622', 'NEWSIES STORY', 'A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico', '6', '2006', '0.99'),('627', 'NORTH TEQUILA', 'A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans', '6', '2007', '4.99'),('629', 'NOTORIOUS REUNION', 'A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon', '6', '2001', '0.99'),('650', 'PACIFIC AMISTAD', 'A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse', '6', '2006', '0.99'),('670', 'PELICAN COMFORTS', 'A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin', '6', '2001', '4.99'),('687', 'POCUS PULP', 'A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory', '6', '2001', '0.99'),('698', 'PRINCESS GIANT', 'A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank', '6', '2007', '2.99'),('708', 'QUILLS BULL', 'A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia', '6', '2000', '4.99'),('712', 'RAIDERS ANTITRUST', 'A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station', '6', '2001', '0.99'),('713', 'RAINBOW SHOCK', 'A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India', '6', '2009', '4.99'),('734', 'ROAD ROXANNE', 'A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan', '6', '2002', '4.99'),('757', 'SAGEBRUSH CLUELESS', 'A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan', '6', '2004', '2.99'),('776', 'SECRET GROUNDHOG', 'A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans', '6', '2007', '4.99'),('788', 'SHIP WONDERLAND', 'A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback', '6', '2003', '2.99'),('791', 'SHOW LORD', 'A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan', '6', '2007', '4.99'),('812', 'SMOKING BARBARELLA', 'A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention', '6', '2003', '0.99'),('834', 'SPOILERS HELLFIGHTERS', 'A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico', '6', '2000', '0.99'),('855', 'STREAK RIDGEMONT', 'A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans', '6', '2002', '0.99'),('888', 'THIN SAGEBRUSH', 'A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India', '6', '2005', '4.99'),('925', 'UNITED PILOT', 'A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert', '6', '2008', '0.99'),('926', 'UNTOUCHABLES SUNRISE', 'A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House', '6', '2006', '2.99'),('943', 'VILLAIN DESPERATE', 'A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park', '6', '2002', '4.99'),('945', 'VIRGINIAN PLUTO', 'A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin', '6', '2002', '0.99'),('952', 'WAGON JAWS', 'A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse', '6', '2005', '2.99'),('960', 'WARS PLUTO', 'A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert', '6', '2004', '2.99'),('966', 'WEDDING APOLLO', 'A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft', '6', '2005', '0.99'),('973', 'WIFE TURN', 'A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan', '6', '2003', '4.99'),('992', 'WRATH MILE', 'A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery', '6', '2000', '0.99'),('996', 'YOUNG LANGUAGE', 'A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station', '6', '2004', '0.99'),('33', 'APOLLO TEEN', 'A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft', '7', '2004', '2.99'),('61', 'BEAUTY GREASE', 'A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft', '7', '2008', '4.99'),('64', 'BEETHOVEN EXORCIST', 'A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico', '7', '2007', '0.99'),('79', 'BLADE POLISH', 'A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station', '7', '2003', '0.99'),('98', 'BRIGHT ENCOUNTERS', 'A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat', '7', '2003', '4.99'),('107', 'BUNCH MINDS', 'A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention', '7', '2006', '2.99'),('143', 'CHILL LUCK', 'A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies', '7', '2009', '0.99'),('146', 'CHITTY LOCK', 'A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station', '7', '2007', '2.99'),('172', 'CONEHEADS SMOOCHY', 'A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria', '7', '2006', '4.99'),('173', 'CONFESSIONS MAGUIRE', 'A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon', '7', '2006', '4.99'),('179', 'CONQUERER NUTS', 'A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft', '7', '2001', '4.99'),('186', 'CRAFT OUTFIELD', 'A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory', '7', '2002', '0.99'),('204', 'DALMATIONS SWEDEN', 'A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse', '7', '2007', '0.99'),('209', 'DARKNESS WAR', 'A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert', '7', '2003', '2.99'),('218', 'DECEIVER BETRAYED', 'A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India', '7', '2004', '0.99'),('225', 'DESTINATION JERK', 'A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat', '7', '2006', '0.99'),('230', 'DIARY PANIC', 'A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India', '7', '2003', '2.99'),('272', 'EDGE KISSING', 'A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat', '7', '2000', '4.99'),('282', 'ENCOUNTERS CURTAIN', 'A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans', '7', '2009', '0.99'),('366', 'GOLDFINGER SENSIBILITY', 'A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans', '7', '2003', '0.99'),('368', 'GONE TROUBLE', 'A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse', '7', '2003', '2.99'),('379', 'GREEDY ROOTS', 'A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies', '7', '2004', '0.99'),('396', 'HANGING DEEP', 'A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin', '7', '2006', '4.99'),('401', 'HAROLD FRENCH', 'A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert', '7', '2003', '0.99'),('403', 'HARRY IDAHO', 'A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California', '7', '2004', '4.99'),('418', 'HOBBIT ALIEN', 'A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station', '7', '2007', '0.99'),('439', 'HUNCHBACK IMPOSSIBLE', 'A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan', '7', '2008', '4.99'),('473', 'JACKET FRISCO', 'A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon', '7', '2008', '2.99'),('504', 'KWAI HOMEWARD', 'A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia', '7', '2000', '0.99'),('514', 'LEBOWSKI SOLDIERS', 'A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China', '7', '2008', '2.99'),('521', 'LIES TREATMENT', 'A Fast-Paced Character Study of a Dentist And a Moose who must Defeat a Composer in The First Manned Space Station', '7', '2006', '4.99'),('539', 'LUCK OPUS', 'A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank', '7', '2001', '2.99'),('585', 'MOB DUFFEL', 'A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies', '7', '2000', '0.99'),('618', 'NECKLACE OUTBREAK', 'A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California', '7', '2004', '0.99'),('630', 'NOTTING SPEAKEASY', 'A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies', '7', '2003', '0.99'),('643', 'ORIENT CLOSER', 'A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert', '7', '2002', '2.99'),('662', 'PATHS CONTROL', 'A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China', '7', '2006', '4.99'),('666', 'PAYCHECK WAIT', 'A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert', '7', '2002', '4.99'),('683', 'PITY BOUND', 'A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria', '7', '2008', '4.99'),('706', 'QUEEN LUKE', 'A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans', '7', '2000', '4.99'),('709', 'RACER EGG', 'A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California', '7', '2001', '2.99'),('728', 'REUNION WITCHES', 'A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory', '7', '2006', '0.99'),('739', 'ROCKY WAR', 'A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria', '7', '2005', '4.99'),('758', 'SAINTS BRIDE', 'A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico', '7', '2009', '2.99'),('766', 'SAVANNAH TOWN', 'A Awe-Inspiring Tale of a Astronaut And a Database Administrator who must Chase a Secret Agent in The Gulf of Mexico', '7', '2008', '0.99'),('771', 'SCORPION APOLLO', 'A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House', '7', '2001', '4.99'),('772', 'SEA VIRGIN', 'A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat', '7', '2004', '2.99'),('775', 'SEATTLE EXPECATIONS', 'A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert', '7', '2004', '4.99'),('790', 'SHOOTIST SUPERFLY', 'A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin', '7', '2007', '0.99'),('803', 'SLACKER LIAISONS', 'A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China', '7', '2002', '4.99'),('818', 'SOMETHING DUCK', 'A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station', '7', '2000', '4.99'),('827', 'SPICE SORORITY', 'A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft', '7', '2002', '4.99'),('882', 'TENENBAUMS COMMAND', 'A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico', '7', '2008', '0.99'),('897', 'TORQUE BOUND', 'A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan', '7', '2002', '4.99'),('907', 'TRANSLATION SUMMER', 'A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention', '7', '2003', '0.99'),('910', 'TREATMENT JEKYLL', 'A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft', '7', '2009', '0.99'),('923', 'UNFAITHFUL KILL', 'A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans', '7', '2004', '2.99'),('942', 'VIETNAM SMOOCHY', 'A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia', '7', '2009', '0.99'),('944', 'VIRGIN DAISY', 'A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank', '7', '2006', '4.99'),('958', 'WARDROBE PHANTOM', 'A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India', '7', '2004', '2.99'),('969', 'WEST LION', 'A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse', '7', '2006', '4.99'),('979', 'WITCHES PANIC', 'A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria', '7', '2002', '4.99'),('5', 'AFRICAN EGG', 'A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico', '8', '2001', '2.99'),('31', 'APACHE DIVINE', 'A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat', '8', '2008', '4.99'),('43', 'ATLANTIS CAUSE', 'A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank', '8', '2001', '2.99'),('50', 'BAKED CLEOPATRA', 'A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery', '8', '2004', '2.99'),('53', 'BANG KWAI', 'A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park', '8', '2004', '2.99'),('63', 'BEDAZZLED MARRIED', 'A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House', '8', '2003', '0.99'),('71', 'BILKO ANONYMOUS', 'A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station', '8', '2000', '4.99'),('80', 'BLANKET BEVERLY', 'A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria', '8', '2003', '2.99'),('82', 'BLOOD ARGONAUTS', 'A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse', '8', '2002', '0.99'),('83', 'BLUES INSTINCT', 'A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House', '8', '2004', '2.99'),('94', 'BRAVEHEART HUMAN', 'A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin', '8', '2000', '2.99'),('139', 'CHASING FIGHT', 'A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank', '8', '2001', '4.99'),('145', 'CHISUM BEHAVIOR', 'A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India', '8', '2004', '4.99'),('147', 'CHOCOLAT HARRY', 'A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan', '8', '2004', '0.99'),('175', 'CONFUSED CANDLES', 'A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon', '8', '2004', '2.99'),('183', 'CONVERSATION DOWNHILL', 'A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention', '8', '2000', '4.99'),('213', 'DATE SPEED', 'A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention', '8', '2009', '0.99'),('231', 'DINOSAUR SECRETARY', 'A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies', '8', '2008', '2.99'),('262', 'DUMBO LUST', 'A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico', '8', '2009', '0.99'),('269', 'EARRING INSTINCT', 'A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria', '8', '2009', '0.99'),('273', 'EFFECT GLADIATOR', 'A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse', '8', '2007', '0.99'),('309', 'FEUD FROGMEN', 'A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies', '8', '2008', '0.99'),('315', 'FINDING ANACONDA', 'A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans', '8', '2006', '0.99'),('345', 'GABLES METROPOLIS', 'A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory', '8', '2002', '0.99'),('348', 'GANDHI KWAI', 'A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin', '8', '2007', '0.99'),('359', 'GLADIATOR WESTWARD', 'A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan', '8', '2004', '4.99'),('377', 'GREASE YOUTH', 'A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia', '8', '2002', '0.99'),('391', 'HALF OUTFIELD', 'A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat', '8', '2005', '2.99'),('419', 'HOCUS FRIDA', 'A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank', '8', '2000', '2.99'),('428', 'HOMICIDE PEACH', 'A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention', '8', '2008', '2.99'),('437', 'HOUSE DYNAMITE', 'A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia', '8', '2001', '2.99'),('442', 'HUNTING MUSKETEERS', 'A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft', '8', '2003', '2.99'),('458', 'INDIAN LOVE', 'A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House', '8', '2004', '0.99'),('476', 'JASON TRAP', 'A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery', '8', '2005', '2.99'),('479', 'JEDI BENEATH', 'A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria', '8', '2009', '0.99'),('498', 'KILLER INNOCENT', 'A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft', '8', '2004', '2.99'),('499', 'KING EVOLUTION', 'A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon', '8', '2005', '4.99'),('528', 'LOLITA WORLD', 'A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft', '8', '2005', '2.99'),('534', 'LOUISIANA HARRY', 'A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank', '8', '2003', '0.99'),('550', 'MAGUIRE APACHE', 'A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon', '8', '2002', '2.99'),('557', 'MANCHURIAN CURTAIN', 'A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin', '8', '2007', '2.99'),('603', 'MOVIE SHAKESPEARE', 'A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin', '8', '2006', '4.99'),('610', 'MUSIC BOONDOCK', 'A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station', '8', '2007', '0.99'),('617', 'NATURAL STOCK', 'A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory', '8', '2005', '0.99'),('621', 'NETWORK PEAK', 'A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California', '8', '2005', '2.99'),('634', 'ODDS BOOGIE', 'A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin', '8', '2003', '0.99'),('639', 'OPPOSITE NECKLACE', 'A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria', '8', '2004', '4.99'),('679', 'PILOT HOOSIERS', 'A Awe-Inspiring Reflection of a Crocodile And a Sumo Wrestler who must Meet a Forensic Psychologist in An Abandoned Mine Shaft', '8', '2001', '2.99'),('682', 'PITTSBURGH HUNCHBACK', 'A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia', '8', '2000', '4.99'),('695', 'PRESIDENT BANG', 'A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia', '8', '2003', '4.99'),('700', 'PRIX UNDEFEATED', 'A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China', '8', '2008', '2.99'),('710', 'RAGE GAMES', 'A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park', '8', '2003', '4.99'),('715', 'RANGE MOONWALKER', 'A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon', '8', '2003', '4.99'),('724', 'REMEMBER DIARY', 'A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India', '8', '2008', '2.99'),('727', 'RESURRECTION SILVERADO', 'A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention', '8', '2005', '0.99'),('736', 'ROBBERY BRIGHT', 'A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan', '8', '2006', '0.99'),('753', 'RUSH GOODFELLAS', 'A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia', '8', '2009', '0.99'),('778', 'SECRETS PARADISE', 'A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse', '8', '2000', '4.99'),('780', 'SENSIBILITY REAR', 'A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory', '8', '2005', '4.99'),('795', 'SIEGE MADRE', 'A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft', '8', '2008', '0.99'),('810', 'SLUMS DUCK', 'A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat', '8', '2002', '0.99'),('822', 'SOUP WISDOM', 'A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention', '8', '2004', '0.99'),('824', 'SPARTACUS CHEAPER', 'A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse', '8', '2003', '4.99'),('829', 'SPINAL ROCKY', 'A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California', '8', '2002', '2.99'),('832', 'SPLASH GUMP', 'A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank', '8', '2009', '0.99'),('866', 'SUNSET RACER', 'A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California', '8', '2008', '0.99'),('867', 'SUPER WYOMING', 'A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback', '8', '2008', '4.99'),('946', 'VIRTUAL SPOILERS', 'A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia', '8', '2001', '4.99'),('975', 'WILLOW TRACY', 'A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse', '8', '2005', '2.99'),('6', 'AGENT TRUMAN', 'A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China', '9', '2004', '2.99'),('11', 'ALAMO VIDEOTAPE', 'A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention', '9', '2000', '0.99'),('15', 'ALIEN CENTER', 'A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention', '9', '2009', '2.99'),('16', 'ALLEY EVOLUTION', 'A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans', '9', '2006', '2.99'),('47', 'BABY HALL', 'A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft', '9', '2008', '4.99'),('52', 'BALLROOM MOCKINGBIRD', 'A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California', '9', '2000', '0.99'),('100', 'BROOKLYN DESERT', 'A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station', '9', '2007', '4.99'),('104', 'BUGSY SONG', 'A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station', '9', '2002', '2.99'),('112', 'CALENDAR GUNFIGHT', 'A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria', '9', '2004', '4.99'),('128', 'CATCH AMISTAD', 'A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria', '9', '2000', '0.99'),('148', 'CHOCOLATE DUCK', 'A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China', '9', '2009', '2.99'),('170', 'COMMAND DARLING', 'A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan', '9', '2000', '4.99'),('185', 'COWBOY DOOM', 'A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon', '9', '2008', '2.99'),('192', 'CROSSING DIVORCE', 'A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin', '9', '2009', '4.99'),('198', 'CRYSTAL BREAKING', 'A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan', '9', '2003', '2.99'),('201', 'CYCLONE FAMILY', 'A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention', '9', '2008', '2.99'),('207', 'DANGEROUS UPTOWN', 'A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California', '9', '2006', '4.99'),('246', 'DOUBTFIRE LABYRINTH', 'A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert', '9', '2002', '4.99'),('290', 'EVERYONE CRAFT', 'A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria', '9', '2003', '0.99'),('311', 'FICTION CHRISTMAS', 'A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft', '9', '2002', '0.99'),('337', 'FRIDA SLIPPER', 'A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft', '9', '2006', '2.99'),('353', 'GENTLEMEN STAGE', 'A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station', '9', '2004', '2.99'),('376', 'GRAPES FURY', 'A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia', '9', '2001', '0.99'),('380', 'GREEK EVERYONE', 'A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station', '9', '2005', '2.99'),('399', 'HAPPINESS UNITED', 'A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan', '9', '2008', '2.99'),('414', 'HELLFIGHTERS SIERRA', 'A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia', '9', '2008', '2.99'),('416', 'HIGHBALL POTTER', 'A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert', '9', '2003', '0.99'),('421', 'HOLIDAY GAMES', 'A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan', '9', '2008', '4.99'),('431', 'HOOSIERS BIRDCAGE', 'A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station', '9', '2009', '2.99'),('435', 'HOTEL HAPPINESS', 'A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback', '9', '2007', '4.99'),('440', 'HUNGER ROOF', 'A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft', '9', '2000', '0.99'),('452', 'ILLUSION AMELIE', 'A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft', '9', '2002', '0.99'),('455', 'IMPOSSIBLE PREJUDICE', 'A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China', '9', '2005', '4.99'),('459', 'INFORMER DOUBLE', 'A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies', '9', '2001', '4.99'),('460', 'INNOCENT USUAL', 'A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback', '9', '2001', '4.99'),('467', 'INTRIGUE WORST', 'A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat', '9', '2002', '0.99'),('486', 'JET NEIGHBORS', 'A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat', '9', '2007', '4.99'),('493', 'KANE EXORCIST', 'A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin', '9', '2005', '0.99'),('500', 'KISS GLORY', 'A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies', '9', '2006', '4.99'),('531', 'LOSE INCH', 'A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station', '9', '2003', '0.99'),('533', 'LOST BIRD', 'A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse', '9', '2004', '2.99'),('545', 'MADNESS ATTACKS', 'A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico', '9', '2002', '0.99'),('565', 'MATRIX SNOWMAN', 'A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California', '9', '2009', '4.99'),('566', 'MAUDE MOD', 'A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria', '9', '2007', '0.99'),('567', 'MEET CHOCOLATE', 'A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention', '9', '2006', '2.99'),('584', 'MIXED DOORS', 'A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India', '9', '2002', '2.99'),('595', 'MOON BUNCH', 'A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory', '9', '2002', '0.99'),('605', 'MULHOLLAND BEAST', 'A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat', '9', '2002', '2.99'),('607', 'MUPPET MILE', 'A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico', '9', '2000', '4.99'),('623', 'NEWTON LABYRINTH', 'A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India', '9', '2004', '0.99'),('640', 'OPUS ICE', 'A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert', '9', '2007', '4.99'),('641', 'ORANGE GRAPES', 'A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat', '9', '2006', '0.99'),('661', 'PAST SUICIDES', 'A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery', '9', '2005', '4.99'),('669', 'PEARL DESTINY', 'A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat', '9', '2000', '2.99'),('674', 'PET HAUNTING', 'A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California', '9', '2003', '0.99'),('689', 'POLLOCK DELIVERANCE', 'A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert', '9', '2001', '2.99'),('705', 'PURPLE MOVIE', 'A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park', '9', '2002', '2.99'),('726', 'RESERVOIR ADAPTATION', 'A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California', '9', '2004', '2.99'),('738', 'ROCKETEER MOTHER', 'A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank', '9', '2003', '0.99'),('769', 'SCHOOL JACKET', 'A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse', '9', '2005', '4.99'),('770', 'SCISSORHANDS SLUMS', 'A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies', '9', '2001', '2.99'),('789', 'SHOCK CABIN', 'A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans', '9', '2003', '2.99'),('792', 'SHREK LICENSE', 'A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat', '9', '2002', '2.99'),('821', 'SORORITY QUEEN', 'A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat', '9', '2004', '0.99'),('845', 'STEPMOM DREAM', 'A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention', '9', '2009', '4.99'),('900', 'TOWN ARK', 'A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft', '9', '2000', '2.99'),('908', 'TRAP GUYS', 'A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert', '9', '2006', '4.99'),('929', 'USUAL UNTOUCHABLES', 'A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank', '9', '2009', '4.99'),('947', 'VISION TORQUE', 'A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank', '9', '2003', '0.99'),('957', 'WAR NOTTING', 'A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies', '9', '2009', '4.99'),('961', 'WASH HEAVENLY', 'A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China', '9', '2003', '4.99'),('971', 'WHALE BIKINI', 'A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention', '9', '2007', '4.99'),('984', 'WONDERFUL DROP', 'A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat', '9', '2007', '2.99'),('46', 'AUTUMN CROW', 'A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert', '10', '2006', '4.99'),('106', 'BULWORTH COMMANDMENTS', 'A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback', '10', '2001', '2.99'),('117', 'CANDLES GRAPES', 'A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House', '10', '2004', '4.99'),('141', 'CHICAGO NORTH', 'A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California', '10', '2007', '4.99'),('189', 'CREATURES SHAKESPEARE', 'A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India', '10', '2005', '0.99'),('200', 'CURTAIN VIDEOTAPE', 'A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank', '10', '2000', '0.99'),('211', 'DARLING BREAKING', 'A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico', '10', '2003', '4.99'),('215', 'DAWN POND', 'A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin', '10', '2001', '4.99'),('217', 'DAZED PUNK', 'A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park', '10', '2000', '4.99'),('227', 'DETAILS PACKER', 'A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat', '10', '2009', '4.99'),('232', 'DIRTY ACE', 'A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback', '10', '2002', '2.99'),('236', 'DIVINE RESURRECTION', 'A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park', '10', '2003', '2.99'),('264', 'DWARFS ALTER', 'A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan', '10', '2009', '2.99'),('281', 'ENCINO ELF', 'A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon', '10', '2001', '0.99'),('302', 'FANTASIA PARK', 'A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia', '10', '2000', '2.99'),('306', 'FEATHERS METAL', 'A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia', '10', '2004', '0.99'),('310', 'FEVER EMPIRE', 'A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico', '10', '2001', '4.99'),('316', 'FIRE WOLVES', 'A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria', '10', '2000', '4.99'),('331', 'FORWARD TEMPLE', 'A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans', '10', '2008', '2.99'),('352', 'GATHERING CALENDAR', 'A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention', '10', '2009', '0.99'),('362', 'GLORY TRACY', 'A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station', '10', '2002', '2.99'),('381', 'GRINCH MASSAGE', 'A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station', '10', '2003', '4.99'),('382', 'GRIT CLOCKWORK', 'A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank', '10', '2003', '0.99'),('387', 'GUN BONNIE', 'A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico', '10', '2003', '0.99'),('406', 'HAUNTING PIANIST', 'A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park', '10', '2009', '0.99'),('408', 'HEAD STRANGER', 'A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico', '10', '2004', '4.99'),('438', 'HUMAN GRAFFITI', 'A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico', '10', '2000', '2.99'),('447', 'ICE CROSSING', 'A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse', '10', '2006', '2.99'),('483', 'JERICHO MULAN', 'A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat', '10', '2001', '2.99'),('507', 'LADYBUGS ARMAGEDDON', 'A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans', '10', '2001', '0.99'),('508', 'LAMBS CINCINATTI', 'A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia', '10', '2001', '4.99'),('546', 'MADRE GABLES', 'A Intrepid Panorama of a Sumo Wrestler And a Forensic Psychologist who must Discover a Moose in The First Manned Space Station', '10', '2005', '2.99'),('556', 'MALTESE HOPE', 'A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California', '10', '2005', '4.99'),('560', 'MARS ROMAN', 'A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia', '10', '2004', '0.99'),('563', 'MASSACRE USUAL', 'A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California', '10', '2002', '4.99'),('591', 'MONSOON CAUSE', 'A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat', '10', '2005', '4.99'),('596', 'MOONSHINE CABIN', 'A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat', '10', '2001', '4.99'),('597', 'MOONWALKER FOOL', 'A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans', '10', '2009', '4.99'),('614', 'NAME DETECTIVE', 'A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria', '10', '2005', '4.99'),('624', 'NIGHTMARE CHILL', 'A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft', '10', '2003', '4.99'),('646', 'OUTBREAK DIVINE', 'A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat', '10', '2000', '0.99'),('654', 'PANKY SUBMARINE', 'A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico', '10', '2002', '4.99'),('684', 'PIZZA JUMANJI', 'A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat', '10', '2002', '2.99'),('699', 'PRIVATE DROP', 'A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon', '10', '2008', '4.99'),('701', 'PSYCHO SHRUNK', 'A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria', '10', '2007', '2.99'),('742', 'ROOF CHAMPION', 'A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon', '10', '2009', '0.99'),('746', 'ROUGE SQUAD', 'A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia', '10', '2008', '0.99'),('747', 'ROXANNE REBEL', 'A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback', '10', '2009', '0.99'),('762', 'SASSY PACKER', 'A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse', '10', '2002', '0.99'),('781', 'SEVEN SWARM', 'A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin', '10', '2006', '4.99'),('807', 'SLEUTH ORIENT', 'A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India', '10', '2004', '0.99'),('835', 'SPY MILE', 'A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon', '10', '2008', '2.99'),('840', 'STAMPEDE DISTURBING', 'A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat', '10', '2002', '0.99'),('842', 'STATE WASTELAND', 'A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat', '10', '2009', '2.99'),('861', 'SUIT WALLS', 'A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia', '10', '2002', '4.99'),('919', 'TYCOON GATHERING', 'A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse', '10', '2003', '4.99'),('934', 'VANILLA DAY', 'A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria', '10', '2005', '4.99'),('941', 'VIDEOTAPE ARSENIC', 'A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia', '10', '2004', '4.99'),('949', 'VOLCANO TEXAS', 'A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback', '10', '2009', '0.99'),('956', 'WANDA CHAMBER', 'A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback', '10', '2001', '4.99'),('976', 'WIND PHANTOM', 'A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft', '10', '2007', '0.99'),('2', 'ACE GOLDFINGER', 'A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China', '11', '2002', '4.99'),('4', 'AFFAIR PREJUDICE', 'A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank', '11', '2001', '2.99'),('8', 'AIRPORT POLLOCK', 'A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India', '11', '2005', '4.99'),('9', 'ALABAMA DEVIL', 'A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat', '11', '2000', '2.99'),('13', 'ALI FOREVER', 'A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies', '11', '2003', '4.99'),('24', 'ANALYZE HOOSIERS', 'A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert', '11', '2006', '2.99'),('30', 'ANYTHING SAVANNAH', 'A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House', '11', '2002', '2.99'),('34', 'ARABIA DOGMA', 'A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria', '11', '2008', '0.99'),('35', 'ARACHNOPHOBIA ROLLERCOASTER', 'A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station', '11', '2007', '2.99'),('65', 'BEHAVIOR RUNAWAY', 'A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin', '11', '2006', '4.99'),('92', 'BOWFINGER GABLES', 'A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California', '11', '2008', '4.99'),('122', 'CARRIE BUNCH', 'A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies', '11', '2004', '0.99'),('171', 'COMMANDMENTS EXPRESS', 'A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft', '11', '2005', '4.99'),('222', 'DESERT POSEIDON', 'A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans', '11', '2006', '4.99'),('258', 'DRUMS DYNAMITE', 'A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park', '11', '2000', '0.99'),('275', 'EGYPT TENENBAUMS', 'A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park', '11', '2007', '0.99'),('277', 'ELEPHANT TROJAN', 'A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon', '11', '2001', '4.99'),('301', 'FAMILY SWEET', 'A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin', '11', '2001', '0.99'),('313', 'FIDELITY DEVIL', 'A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat', '11', '2006', '4.99'),('334', 'FREDDY STORM', 'A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback', '11', '2008', '4.99'),('351', 'GASLIGHT CRUSADE', 'A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico', '11', '2000', '2.99'),('415', 'HIGH ENCINO', 'A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia', '11', '2001', '2.99'),('475', 'JAPANESE RUN', 'A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback', '11', '2005', '0.99'),('494', 'KARATE MOON', 'A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention', '11', '2003', '0.99'),('495', 'KENTUCKIAN GIANT', 'A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat', '11', '2000', '2.99'),('506', 'LADY STAGE', 'A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat', '11', '2009', '4.99'),('527', 'LOLA AGENT', 'A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan', '11', '2007', '4.99'),('535', 'LOVE SUICIDES', 'A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House', '11', '2005', '0.99'),('593', 'MONTEREY LABYRINTH', 'A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat', '11', '2005', '0.99'),('600', 'MOTIONS DETAILS', 'A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House', '11', '2008', '0.99'),('653', 'PANIC CLUB', 'A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon', '11', '2008', '4.99'),('658', 'PARIS WEEKEND', 'A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback', '11', '2005', '2.99'),('665', 'PATTON INTERVIEW', 'A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin', '11', '2004', '2.99'),('702', 'PULP BEVERLY', 'A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria', '11', '2002', '2.99'),('716', 'REAP UNFAITHFUL', 'A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention', '11', '2003', '2.99'),('722', 'REEF SALUTE', 'A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon', '11', '2007', '0.99'),('737', 'ROCK INSTINCT', 'A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India', '11', '2006', '0.99'),('740', 'ROLLERCOASTER BRINGING', 'A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank', '11', '2008', '2.99'),('749', 'RULES HUMAN', 'A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House', '11', '2006', '4.99'),('799', 'SIMON NORTH', 'A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank', '11', '2001', '0.99'),('800', 'SINNERS ATLANTIS', 'A Epic Display of a Dog And a Boat who must Succumb a Mad Scientist in An Abandoned Mine Shaft', '11', '2004', '2.99'),('804', 'SLEEPING SUSPECTS', 'A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention', '11', '2005', '4.99'),('830', 'SPIRIT FLINTSTONES', 'A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan', '11', '2008', '0.99'),('854', 'STRANGERS GRAFFITI', 'A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico', '11', '2000', '4.99'),('856', 'STREETCAR INTENTIONS', 'A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico', '11', '2001', '4.99'),('870', 'SWARM GOLD', 'A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention', '11', '2003', '0.99'),('876', 'TARZAN VIDEOTAPE', 'A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert', '11', '2007', '2.99'),('881', 'TEMPLE ATTRACTION', 'A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia', '11', '2006', '4.99'),('885', 'TEXAS WATCH', 'A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park', '11', '2003', '0.99'),('904', 'TRAIN BUNCH', 'A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India', '11', '2002', '4.99'),('909', 'TREASURE COMMAND', 'A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California', '11', '2003', '0.99'),('922', 'UNDEFEATED DALMATIONS', 'A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park', '11', '2000', '4.99'),('965', 'WATERSHIP FRONTIER', 'A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia', '11', '2006', '0.99'),('990', 'WORLD LEATHERNECKS', 'A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park', '11', '2004', '0.99'),('995', 'YENTL IDAHO', 'A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin', '11', '2008', '4.99'),('998', 'ZHIVAGO CORE', 'A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies', '11', '2005', '0.99'),('12', 'ALASKA PHANTOM', 'A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia', '12', '2005', '0.99'),('17', 'ALONE TRIP', 'A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House', '12', '2005', '0.99'),('20', 'AMELIE HELLFIGHTERS', 'A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon', '12', '2000', '4.99'),('51', 'BALLOON HOMEWARD', 'A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station', '12', '2008', '2.99'),('54', 'BANGER PINOCCHIO', 'A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station', '12', '2002', '0.99'),('74', 'BIRCH ANTITRUST', 'A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon', '12', '2007', '4.99'),('76', 'BIRDCAGE CASPER', 'A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India', '12', '2005', '0.99'),('86', 'BOOGIE AMELIE', 'A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico', '12', '2004', '4.99'),('133', 'CHAMBER ITALIAN', 'A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria', '12', '2000', '4.99'),('158', 'CLONES PINOCCHIO', 'A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans', '12', '2003', '2.99'),('161', 'CLUE GRAIL', 'A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China', '12', '2009', '4.99'),('174', 'CONFIDENTIAL INTERVIEW', 'A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan', '12', '2002', '4.99'),('220', 'DEER VIRGINIAN', 'A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia', '12', '2009', '2.99'),('244', 'DORADO NOTTING', 'A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California', '12', '2002', '4.99'),('255', 'DRIVING POLISH', 'A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft', '12', '2002', '4.99'),('278', 'ELF MURDER', 'A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft', '12', '2005', '4.99'),('284', 'ENEMY ODDS', 'A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India', '12', '2001', '4.99'),('333', 'FREAKY POCUS', 'A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico', '12', '2003', '2.99'),('363', 'GO PURPLE', 'A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon', '12', '2005', '0.99'),('378', 'GREATEST NORTH', 'A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin', '12', '2008', '2.99'),('384', 'GROSSE WONDERFUL', 'A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia', '12', '2007', '4.99'),('398', 'HANOVER GALAXY', 'A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention', '12', '2002', '4.99'),('411', 'HEAVENLY GUN', 'A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat', '12', '2007', '4.99'),('426', 'HOME PITY', 'A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention', '12', '2004', '4.99'),('454', 'IMPACT ALADDIN', 'A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank', '12', '2002', '0.99'),('462', 'INSIDER ARIZONA', 'A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory', '12', '2000', '2.99'),('477', 'JAWBREAKER BROOKLYN', 'A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat', '12', '2003', '0.99'),('516', 'LEGEND JEDI', 'A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback', '12', '2003', '0.99'),('540', 'LUCKY FLYING', 'A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat', '12', '2000', '2.99'),('562', 'MASKED BUBBLE', 'A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft', '12', '2001', '0.99'),('581', 'MINORITY KISS', 'A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback', '12', '2006', '0.99'),('592', 'MONSTER SPARTACUS', 'A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia', '12', '2006', '2.99'),('636', 'OLEANDER CLUE', 'A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat', '12', '2003', '0.99'),('647', 'OUTFIELD MASSACRE', 'A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India', '12', '2007', '0.99'),('673', 'PERSONAL LADYBUGS', 'A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan', '12', '2001', '0.99'),('718', 'REBEL AIRPORT', 'A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India', '12', '2003', '0.99'),('721', 'REDS POCUS', 'A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia', '12', '2002', '4.99'),('741', 'ROMAN PUNK', 'A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin', '12', '2007', '0.99'),('752', 'RUNNER MADIGAN', 'A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback', '12', '2001', '0.99'),('767', 'SCALAWAG DUCK', 'A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery', '12', '2004', '4.99'),('797', 'SILENCE KANE', 'A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon', '12', '2004', '0.99'),('819', 'SONG HEDWIG', 'A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention', '12', '2008', '0.99'),('877', 'TAXI KICK', 'A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia', '12', '2007', '0.99'),('879', 'TELEGRAPH VOYAGE', 'A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat', '12', '2002', '4.99'),('884', 'TERMINATOR CLUB', 'A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico', '12', '2000', '4.99'),('921', 'UNCUT SUICIDES', 'A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat', '12', '2008', '2.99'),('936', 'VANISHING ROCKY', 'A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention', '12', '2000', '2.99'),('980', 'WIZARD COLDBLOODED', 'A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention', '12', '2009', '4.99'),('983', 'WON DARES', 'A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat', '12', '2009', '2.99'),('987', 'WORDS HUNTER', 'A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention', '12', '2009', '2.99'),('997', 'YOUTH KICK', 'A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat', '12', '2007', '0.99'),('22', 'AMISTAD MIDSUMMER', 'A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California', '13', '2005', '2.99'),('25', 'ANGELS LIFE', 'A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin', '13', '2007', '2.99'),('32', 'APOCALYPSE FLAMINGOS', 'A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park', '13', '2001', '4.99'),('45', 'ATTRACTION NEWTON', 'A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan', '13', '2001', '4.99'),('77', 'BIRDS PERDITION', 'A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California', '13', '2000', '4.99'),('90', 'BOULEVARD MOB', 'A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China', '13', '2001', '0.99'),('93', 'BRANNIGAN SUNRISE', 'A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin', '13', '2007', '4.99'),('95', 'BREAKFAST GOLDFINGER', 'A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin', '13', '2009', '4.99'),('96', 'BREAKING HOME', 'A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft', '13', '2004', '2.99'),('108', 'BUTCH PANTHER', 'A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans', '13', '2004', '0.99'),('109', 'BUTTERFLY CHOCOLAT', 'A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank', '13', '2002', '0.99'),('136', 'CHAPLIN LICENSE', 'A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India', '13', '2007', '2.99'),('144', 'CHINATOWN GLADIATOR', 'A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India', '13', '2004', '4.99'),('155', 'CLEOPATRA DEVIL', 'A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon', '13', '2009', '0.99'),('163', 'CLYDE THEORY', 'A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat', '13', '2002', '0.99'),('216', 'DAY UNFAITHFUL', 'A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat', '13', '2003', '4.99'),('226', 'DESTINY SATURDAY', 'A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia', '13', '2002', '4.99'),('251', 'DRAGONFLY STRANGERS', 'A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria', '13', '2006', '4.99'),('267', 'EAGLES PANKY', 'A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert', '13', '2008', '4.99'),('270', 'EARTH VISION', 'A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India', '13', '2001', '0.99'),('283', 'ENDING CROWDS', 'A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin', '13', '2004', '0.99'),('289', 'EVE RESURRECTION', 'A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon', '13', '2002', '4.99'),('305', 'FATAL HAUNTED', 'A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan', '13', '2009', '2.99'),('320', 'FLAMINGOS CONNECTICUT', 'A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert', '13', '2000', '4.99'),('321', 'FLASH WARS', 'A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico', '13', '2000', '4.99'),('340', 'FRONTIER CABIN', 'A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House', '13', '2006', '4.99'),('364', 'GODFATHER DIARY', 'A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback', '13', '2009', '2.99'),('436', 'HOURS RAGE', 'A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia', '13', '2008', '0.99'),('448', 'IDAHO LOVE', 'A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback', '13', '2008', '2.99'),('465', 'INTERVIEW LIAISONS', 'A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse', '13', '2004', '4.99'),('481', 'JEKYLL FROGMEN', 'A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank', '13', '2006', '2.99'),('490', 'JUMANJI BLADE', 'A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans', '13', '2003', '2.99'),('492', 'JUNGLE CLOSER', 'A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia', '13', '2001', '0.99'),('538', 'LOVERBOY ATTACKS', 'A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia', '13', '2001', '0.99'),('551', 'MAIDEN HOME', 'A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention', '13', '2002', '4.99'),('558', 'MANNEQUIN WORST', 'A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India', '13', '2003', '2.99'),('561', 'MASK PEACH', 'A Boring Character Study of a Student And a Robot who must Meet a Woman in California', '13', '2005', '2.99'),('580', 'MINE TITANS', 'A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin', '13', '2004', '4.99'),('590', 'MONEY HAROLD', 'A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia', '13', '2009', '2.99'),('632', 'NUTS TIES', 'A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California', '13', '2009', '4.99'),('635', 'OKLAHOMA JUMANJI', 'A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert', '13', '2009', '0.99'),('675', 'PHANTOM GLORY', 'A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery', '13', '2005', '2.99'),('677', 'PIANIST OUTFIELD', 'A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery', '13', '2008', '0.99'),('685', 'PLATOON INSTINCT', 'A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia', '13', '2006', '4.99'),('686', 'PLUTO OLEANDER', 'A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank', '13', '2004', '4.99'),('720', 'REDEMPTION COMFORTS', 'A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China', '13', '2005', '2.99'),('730', 'RIDGEMONT SUBMARINE', 'A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan', '13', '2005', '0.99'),('750', 'RUN PACIFIC', 'A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention', '13', '2006', '0.99'),('751', 'RUNAWAY TENENBAUMS', 'A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House', '13', '2001', '0.99'),('759', 'SALUTE APOLLO', 'A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China', '13', '2005', '2.99'),('760', 'SAMURAI LION', 'A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon', '13', '2007', '2.99'),('806', 'SLEEPY JAPANESE', 'A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback', '13', '2002', '2.99'),('846', 'STING PERSONAL', 'A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat', '13', '2008', '4.99'),('847', 'STOCK GLASS', 'A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China', '13', '2002', '2.99'),('913', 'TROOPERS METAL', 'A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin', '13', '2007', '0.99'),('920', 'UNBREAKABLE KARATE', 'A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia', '13', '2003', '0.99'),('933', 'VAMPIRE WHALE', 'A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention', '13', '2000', '4.99'),('935', 'VANISHED GARDEN', 'A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California', '13', '2003', '0.99'),('937', 'VARSITY TRIP', 'A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention', '13', '2002', '2.99'),('948', 'VOICE PEACH', 'A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse', '13', '2009', '0.99'),('954', 'WAKE JAWS', 'A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin', '13', '2003', '4.99'),('974', 'WILD APOLLO', 'A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention', '13', '2007', '0.99'),('994', 'WYOMING STORM', 'A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat', '13', '2009', '4.99'),('26', 'ANNIE IDENTITY', 'A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park', '14', '2008', '0.99'),('39', 'ARMAGEDDON LOST', 'A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft', '14', '2003', '0.99'),('44', 'ATTACKS HATE', 'A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft', '14', '2007', '4.99'),('49', 'BADMAN DAWN', 'A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat', '14', '2001', '2.99'),('55', 'BARBARELLA STREETCAR', 'A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery', '14', '2008', '2.99'),('69', 'BEVERLY OUTLAW', 'A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station', '14', '2009', '2.99'),('73', 'BINGO TALENTED', 'A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria', '14', '2005', '2.99'),('81', 'BLINDNESS GUN', 'A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat', '14', '2008', '4.99'),('114', 'CAMELOT VACATION', 'A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention', '14', '2007', '0.99'),('132', 'CHAINSAW UPTOWN', 'A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia', '14', '2001', '0.99'),('137', 'CHARADE DUFFEL', 'A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention', '14', '2003', '2.99'),('138', 'CHARIOTS CONSPIRACY', 'A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station', '14', '2004', '2.99'),('140', 'CHEAPER CLYDE', 'A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan', '14', '2004', '0.99'),('151', 'CINCINATTI WHISPERER', 'A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin', '14', '2005', '4.99'),('153', 'CITIZEN SHREK', 'A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback', '14', '2001', '0.99'),('165', 'COLDBLOODED DARLING', 'A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico', '14', '2005', '4.99'),('177', 'CONNECTICUT TRAMP', 'A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank', '14', '2003', '4.99'),('195', 'CROWDS TELEMARK', 'A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House', '14', '2008', '4.99'),('203', 'DAISY MENAGERIE', 'A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India', '14', '2006', '4.99'),('234', 'DISTURBING SCARFACE', 'A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat', '14', '2000', '2.99'),('235', 'DIVIDE MONSTER', 'A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery', '14', '2008', '2.99'),('240', 'DOLLS RAGE', 'A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback', '14', '2005', '2.99'),('285', 'ENGLISH BULWORTH', 'A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China', '14', '2005', '0.99'),('296', 'EXPRESS LONELY', 'A Boring Drama of a Astronaut And a Boat who must Face a Boat in California', '14', '2002', '2.99'),('298', 'EYES DRIVING', 'A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback', '14', '2007', '2.99'),('312', 'FIDDLER LOST', 'A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico', '14', '2008', '4.99'),('319', 'FISH OPUS', 'A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia', '14', '2001', '2.99'),('338', 'FRISCO FORREST', 'A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank', '14', '2001', '4.99'),('350', 'GARDEN ISLAND', 'A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback', '14', '2007', '4.99'),('367', 'GOLDMINE TYCOON', 'A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback', '14', '2004', '0.99'),('369', 'GOODFELLAS SALUTE', 'A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory', '14', '2003', '4.99'),('374', 'GRAFFITI LOVE', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin', '14', '2008', '0.99'),('390', 'GUYS FALCON', 'A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat', '14', '2006', '4.99'),('394', 'HAMLET WISDOM', 'A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback', '14', '2001', '2.99'),('397', 'HANKY OCTOBER', 'A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia', '14', '2008', '2.99'),('422', 'HOLLOW JEOPARDY', 'A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery', '14', '2008', '4.99'),('449', 'IDENTITY LOVER', 'A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback', '14', '2009', '2.99'),('520', 'LICENSE WEEKEND', 'A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery', '14', '2003', '2.99'),('559', 'MARRIED GO', 'A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert', '14', '2002', '2.99'),('572', 'METROPOLIS COMA', 'A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory', '14', '2007', '2.99'),('602', 'MOURNING PURPLE', 'A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans', '14', '2000', '0.99'),('620', 'NEMO CAMPUS', 'A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse', '14', '2007', '2.99'),('625', 'NONE SPIKING', 'A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse', '14', '2005', '0.99'),('637', 'OPEN AFRICAN', 'A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat', '14', '2000', '4.99'),('655', 'PANTHER REDS', 'A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico', '14', '2006', '4.99'),('711', 'RAGING AIRPLANE', 'A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat', '14', '2002', '4.99'),('714', 'RANDOM GO', 'A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank', '14', '2004', '2.99'),('723', 'REIGN GENTLEMEN', 'A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico', '14', '2000', '2.99'),('798', 'SILVERADO GOLDFINGER', 'A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India', '14', '2001', '4.99'),('817', 'SOLDIERS EVOLUTION', 'A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station', '14', '2007', '4.99'),('831', 'SPIRITED CASUALTIES', 'A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory', '14', '2007', '0.99'),('839', 'STALLION SUNDANCE', 'A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia', '14', '2000', '0.99'),('860', 'SUICIDES SILENCE', 'A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat', '14', '2004', '4.99'),('863', 'SUN CONFESSIONS', 'A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park', '14', '2007', '0.99'),('893', 'TITANS JERK', 'A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China', '14', '2002', '4.99'),('912', 'TROJAN TOMORROW', 'A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India', '14', '2008', '2.99'),('924', 'UNFORGIVEN ZOOLANDER', 'A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory', '14', '2004', '0.99'),('930', 'VACATION BOONDOCK', 'A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia', '14', '2005', '2.99'),('967', 'WEEKEND PERSONAL', 'A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat', '14', '2005', '2.99'),('972', 'WHISPERER GIANT', 'A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan', '14', '2007', '4.99'),('985', 'WONDERLAND CHRISTMAS', 'A Awe-Inspiring Character Study of a Waitress And a Car who must Pursue a Mad Scientist in The First Manned Space Station', '14', '2007', '4.99'),('10', 'ALADDIN CALENDAR', 'A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China', '15', '2006', '4.99'),('27', 'ANONYMOUS HUMAN', 'A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank', '15', '2008', '0.99'),('42', 'ARTIST COLDBLOODED', 'A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California', '15', '2003', '2.99'),('102', 'BUBBLE GROSSE', 'A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon', '15', '2005', '4.99'),('113', 'CALIFORNIA BIRDS', 'A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India', '15', '2006', '4.99'),('120', 'CARIBBEAN LIBERTY', 'A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank', '15', '2006', '4.99'),('135', 'CHANCE RESURRECTION', 'A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China', '15', '2008', '2.99'),('176', 'CONGENIALITY QUEST', 'A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon', '15', '2003', '0.99'),('187', 'CRANES RESERVOIR', 'A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory', '15', '2006', '2.99'),('197', 'CRUSADE HONEY', 'A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park', '15', '2004', '2.99'),('237', 'DIVORCE SHINING', 'A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India', '15', '2009', '2.99'),('254', 'DRIVER ANNIE', 'A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House', '15', '2005', '2.99'),('256', 'DROP WATERFRONT', 'A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China', '15', '2007', '4.99'),('260', 'DUDE BLINDNESS', 'A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House', '15', '2002', '4.99'),('263', 'DURHAM PANKY', 'A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft', '15', '2001', '4.99'),('279', 'ELIZABETH SHANE', 'A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan', '15', '2000', '4.99'),('291', 'EVOLUTION ALTER', 'A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory', '15', '2009', '0.99'),('293', 'EXORCIST STING', 'A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin', '15', '2003', '2.99'),('322', 'FLATLINERS KILLER', 'A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft', '15', '2008', '2.99'),('323', 'FLIGHT LIES', 'A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans', '15', '2000', '4.99'),('361', 'GLEAMING JAWBREAKER', 'A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies', '15', '2006', '2.99'),('372', 'GRACELAND DYNAMITE', 'A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans', '15', '2004', '4.99'),('383', 'GROOVE FICTION', 'A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft', '15', '2005', '0.99'),('389', 'GUNFIGHTER MUSSOLINI', 'A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan', '15', '2008', '2.99'),('420', 'HOLES BRANNIGAN', 'A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies', '15', '2007', '4.99'),('429', 'HONEY TIES', 'A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank', '15', '2000', '0.99'),('446', 'HYSTERICAL GRAIL', 'A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse', '15', '2005', '4.99'),('453', 'IMAGE PRINCESS', 'A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies', '15', '2001', '2.99'),('463', 'INSTINCT AIRPORT', 'A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse', '15', '2006', '2.99'),('474', 'JADE BUNCH', 'A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station', '15', '2000', '2.99'),('488', 'JOON NORTHWEST', 'A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank', '15', '2009', '0.99'),('503', 'KRAMER CHOCOLATE', 'A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback', '15', '2008', '2.99'),('517', 'LESSON CLEOPATRA', 'A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse', '15', '2003', '0.99'),('519', 'LIBERTY MAGNIFICENT', 'A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon', '15', '2000', '2.99'),('532', 'LOSER HUSTLER', 'A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria', '15', '2002', '4.99'),('570', 'MERMAID INSECTS', 'A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California', '15', '2005', '4.99'),('577', 'MILE MULAN', 'A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention', '15', '2005', '0.99'),('598', 'MOSQUITO ARMAGEDDON', 'A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan', '15', '2003', '0.99'),('599', 'MOTHER OLEANDER', 'A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China', '15', '2007', '0.99'),('606', 'MUMMY CREATURES', 'A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia', '15', '2009', '0.99'),('612', 'MUSSOLINI SPOILERS', 'A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China', '15', '2009', '2.99'),('619', 'NEIGHBORS CHARADE', 'A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park', '15', '2004', '0.99'),('628', 'NORTHWEST POLISH', 'A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback', '15', '2005', '2.99'),('631', 'NOVOCAINE FLIGHT', 'A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria', '15', '2004', '0.99'),('667', 'PEACH INNOCENT', 'A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin', '15', '2008', '2.99'),('668', 'PEAK FOREVER', 'A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft', '15', '2007', '4.99'),('671', 'PERDITION FARGO', 'A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin', '15', '2003', '4.99'),('676', 'PHILADELPHIA WIFE', 'A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert', '15', '2004', '4.99'),('678', 'PICKUP DRIVING', 'A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory', '15', '2007', '2.99'),('681', 'PIRATES ROXANNE', 'A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies', '15', '2004', '0.99'),('691', 'POSEIDON FOREVER', 'A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery', '15', '2008', '4.99'),('719', 'RECORDS ZORRO', 'A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback', '15', '2001', '4.99'),('729', 'RIDER CADDYSHACK', 'A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria', '15', '2005', '2.99'),('733', 'RIVER OUTLAW', 'A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention', '15', '2005', '0.99'),('745', 'ROSES TREASURE', 'A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station', '15', '2003', '4.99'),('763', 'SATISFACTION CONFIDENTIAL', 'A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China', '15', '2002', '4.99'),('764', 'SATURDAY LAMBS', 'A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon', '15', '2004', '4.99'),('773', 'SEABISCUIT PUNK', 'A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention', '15', '2006', '2.99'),('777', 'SECRETARY ROUGE', 'A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory', '15', '2002', '4.99'),('779', 'SENSE GREEK', 'A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House', '15', '2003', '4.99'),('782', 'SHAKESPEARE SADDLE', 'A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention', '15', '2006', '2.99'),('796', 'SIERRA DIVIDE', 'A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California', '15', '2004', '0.99'),('809', 'SLIPPER FIDELITY', 'A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention', '15', '2007', '0.99'),('813', 'SMOOCHY CONTROL', 'A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China', '15', '2005', '0.99'),('836', 'SQUAD FISH', 'A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin', '15', '2008', '2.99'),('841', 'STAR OPERATION', 'A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank', '15', '2001', '2.99'),('844', 'STEERS ARMAGEDDON', 'A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention', '15', '2003', '4.99'),('851', 'STRAIGHT HOURS', 'A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback', '15', '2006', '0.99'),('875', 'TALENTED HOMICIDE', 'A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat', '15', '2006', '0.99'),('890', 'TIGHTS DAWN', 'A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon', '15', '2004', '0.99'),('898', 'TOURIST PELICAN', 'A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia', '15', '2009', '4.99'),('902', 'TRADING PINOCCHIO', 'A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station', '15', '2004', '4.99'),('917', 'TUXEDO MILE', 'A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India', '15', '2001', '2.99'),('940', 'VICTORY ACADEMY', 'A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert', '15', '2007', '0.99'),('41', 'ARSENIC INDEPENDENCE', 'A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin', '16', '2002', '0.99'),('57', 'BASIC EASY', 'A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat', '16', '2001', '2.99'),('75', 'BIRD INDEPENDENCE', 'A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies', '16', '2009', '4.99'),('84', 'BOILED DARES', 'A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan', '16', '2008', '4.99'),('87', 'BOONDOCK BALLROOM', 'A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico', '16', '2006', '0.99'),('88', 'BORN SPINAL', 'A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria', '16', '2008', '4.99'),('103', 'BUCKET BROTHERHOOD', 'A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory', '16', '2001', '4.99'),('123', 'CASABLANCA SUPER', 'A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station', '16', '2007', '4.99'),('125', 'CASSIDY WYOMING', 'A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans', '16', '2006', '2.99'),('167', 'COMA HEAD', 'A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California', '16', '2003', '4.99'),('169', 'COMFORTS RUSH', 'A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft', '16', '2005', '2.99'),('181', 'CONTACT ANONYMOUS', 'A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India', '16', '2006', '2.99'),('224', 'DESPERATE TRAINSPOTTING', 'A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California', '16', '2000', '4.99'),('233', 'DISCIPLE MOTHER', 'A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank', '16', '2007', '0.99'),('257', 'DRUMLINE CYCLONE', 'A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies', '16', '2000', '0.99'),('286', 'ENOUGH RAGING', 'A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert', '16', '2004', '2.99'),('288', 'ESCAPE METROPOLIS', 'A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans', '16', '2006', '2.99'),('294', 'EXPECATIONS NATURAL', 'A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat', '16', '2009', '4.99'),('299', 'FACTORY DRAGON', 'A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert', '16', '2009', '0.99'),('307', 'FELLOWSHIP AUTUMN', 'A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon', '16', '2006', '4.99'),('339', 'FROGMEN BREAKING', 'A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia', '16', '2000', '0.99'),('342', 'FUGITIVE MAGUIRE', 'A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia', '16', '2002', '4.99'),('347', 'GAMES BOWFINGER', 'A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery', '16', '2003', '4.99'),('386', 'GUMP DATE', 'A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft', '16', '2001', '4.99'),('405', 'HAUNTED ANTITRUST', 'A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India', '16', '2008', '4.99'),('434', 'HORROR REIGN', 'A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria', '16', '2006', '0.99'),('451', 'IGBY MAKER', 'A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory', '16', '2003', '4.99'),('472', 'ITALIAN AFRICAN', 'A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat', '16', '2004', '4.99'),('496', 'KICK SAVANNAH', 'A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans', '16', '2003', '0.99'),('513', 'LEATHERNECKS DWARFS', 'A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft', '16', '2007', '2.99'),('518', 'LIAISONS SWEET', 'A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies', '16', '2006', '4.99'),('526', 'LOCK REAR', 'A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan', '16', '2007', '2.99'),('543', 'MADIGAN DORADO', 'A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback', '16', '2003', '4.99'),('601', 'MOULIN WAKE', 'A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft', '16', '2009', '0.99'),('609', 'MUSCLE BRIGHT', 'A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India', '16', '2009', '2.99'),('642', 'ORDER BETRAYED', 'A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert', '16', '2000', '2.99'),('645', 'OTHERS SOUP', 'A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico', '16', '2001', '2.99'),('648', 'OUTLAW HANKY', 'A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert', '16', '2003', '4.99'),('656', 'PAPI NECKLACE', 'A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan', '16', '2006', '0.99'),('783', 'SHANE DARKNESS', 'A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin', '16', '2002', '2.99'),('784', 'SHANGHAI TYCOON', 'A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House', '16', '2005', '2.99'),('785', 'SHAWSHANK BUBBLE', 'A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park', '16', '2009', '4.99'),('787', 'SHINING ROSES', 'A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India', '16', '2008', '0.99'),('811', 'SMILE EARRING', 'A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin', '16', '2008', '2.99'),('826', 'SPEED SUIT', 'A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China', '16', '2006', '4.99'),('848', 'STONE FIRE', 'A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia', '16', '2009', '0.99'),('868', 'SUPERFLY TRIP', 'A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House', '16', '2005', '0.99'),('872', 'SWEET BROTHERHOOD', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon', '16', '2006', '2.99'),('878', 'TEEN APOLLO', 'A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank', '16', '2007', '4.99'),('894', 'TOMATOES HELLFIGHTERS', 'A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank', '16', '2008', '0.99'),('903', 'TRAFFIC HOBBIT', 'A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat', '16', '2009', '4.99'),('914', 'TROUBLE DATE', 'A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan', '16', '2001', '2.99'),('931', 'VALENTINE VANISHING', 'A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California', '16', '2009', '0.99'),('977', 'WINDOW SIDE', 'A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery', '16', '2009', '2.99'),('981', 'WOLVES DESIRE', 'A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse', '16', '2001', '0.99'),('988', 'WORKER TARZAN', 'A Action-Packed Yarn of a Secret Agent And a Technical Writer who must Battle a Sumo Wrestler in The First Manned Space Station', '16', '2006', '2.99'),('989', 'WORKING MICROCOSMOS', 'A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China', '16', '2007', '4.99'); diff --git a/docker/requirements.txt b/docker/requirements.txt index b3f7703..3f702c3 100644 --- a/docker/requirements.txt +++ b/docker/requirements.txt @@ -7,7 +7,7 @@ python-dotenv #manticoresearch numpy aioredis[hiredis] -aiokafka +#aiokafka vaderSentiment polyglot pyicu @@ -21,3 +21,4 @@ python-Levenshtein orjson uvloop numba +elasticsearch[async] diff --git a/docker/superset/docker-bootstrap.sh b/docker/superset/docker-bootstrap.sh deleted file mode 100755 index 150f351..0000000 --- a/docker/superset/docker-bootstrap.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -set -eo pipefail - -REQUIREMENTS_LOCAL="/app/docker/requirements-local.txt" -# If Cypress run – overwrite the password for admin and export env variables -if [ "$CYPRESS_CONFIG" == "true" ]; then - export SUPERSET_CONFIG=tests.integration_tests.superset_test_config - export SUPERSET_TESTENV=true - export SUPERSET__SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://superset:superset@db:5432/superset -fi -# -# Make sure we have dev requirements installed -# -if [ -f "${REQUIREMENTS_LOCAL}" ]; then - echo "Installing local overrides at ${REQUIREMENTS_LOCAL}" - pip install -r "${REQUIREMENTS_LOCAL}" -else - echo "Skipping local overrides" -fi - -if [[ "${1}" == "worker" ]]; then - echo "Starting Celery worker..." - celery --app=superset.tasks.celery_app:app worker -Ofair -l INFO -elif [[ "${1}" == "beat" ]]; then - echo "Starting Celery beat..." - celery --app=superset.tasks.celery_app:app beat --pidfile /tmp/celerybeat.pid -l INFO -s "${SUPERSET_HOME}"/celerybeat-schedule -elif [[ "${1}" == "app" ]]; then - echo "Starting web app..." - flask run -p 8088 --with-threads --reload --debugger --host=0.0.0.0 -elif [[ "${1}" == "app-gunicorn" ]]; then - echo "Starting web app..." - /usr/bin/run-server.sh -fi diff --git a/docker/superset/docker-init.sh b/docker/superset/docker-init.sh deleted file mode 100755 index c98f498..0000000 --- a/docker/superset/docker-init.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env bash -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -set -e - -# -# Always install local overrides first -# -/app/docker/docker-bootstrap.sh - -STEP_CNT=4 - -echo_step() { -cat <